diff --git a/company_linkage/README.md b/company_linkage/README.md
index 6a585284..b9ededab 100644
--- a/company_linkage/README.md
+++ b/company_linkage/README.md
@@ -14,42 +14,7 @@ script to get top conference papers and total papers, these tests will work for
This code is dependent on internal CSET BigQuery datasets; without access to these datasets, you will not be able to
run some of this code as-is.
-## Tasks to build visualization data
-
-1. [organizations.sql](sql/organizations.sql)
-2. [ai_publications.sql](sql/ai_publications.sql)
-3. [linked_ai_patents.sql](sql/linked_ai_patents.sql)
-4. [top_conference_pubs.sql](sql/top_conference_pubs.sql)
-5. [pubs_in_top_conferences.sql](sql/pubs_in_top_conferences.sql)
-6. [all_publications.sql](sql/all_publications.sql)
-7. `python3 aggregate_organizations.py aggregated_organizations.jsonl`
-8. Replace `high_resolution_entities.aggregated_organizations` with the data from `aggregated_organizations.jsonl` using the [aggregated_organizations_schema](schemas/aggregated_organizations_schema.json)
-9. `python3 get_ai_counts.py data/ai_company_papers.jsonl data/ai_company_patents.jsonl`
-10. Upload `ai_company_papers.jsonl` to `ai_companies_visualization.ai_company_pubs` using the [ai_papers_schema](schemas/ai_papers_schema.json)
-11. Upload `ai_company_patents.jsonl` to `ai_companies_visualization.ai_company_patents` using the [ai_patents_schema](schemas/ai_patents_schema.json)
-12. `python3 top_papers.py top_paper_counts.jsonl`
-13. Upload `top_paper_counts.jsonl` to `ai_companies_visualization.top_paper_counts` using the [top_papers_schema](schemas/top_papers_schema.json)
-14. `python3 all_papers.py all_paper_counts.jsonl`
-15. Upload `all_paper_counts.jsonl` to `ai_companies_visualization.total_paper_counts` using the [all_papers_schema](schemas/all_papers_schema.json)
-16. [initial_visualization_data.sql](sql/initial_visualization_data.sql)
-17. [visualization_data_with_by_year.sql](sql/visualization_data_with_by_year.sql)
-18. [visualization_data_with_top_papers.sql](sql/visualization_data_with_top_papers.sql)
-19. [visualization_data_with_all_papers.sql](sql/visualization_data_with_all_papers.sql)
-20. [initial_patent_visualization_data.sql](sql/initial_patent_visualization_data.sql)
-21. [patent_visualization_data_with_by_year.sql](sql/patent_visualization_data_with_by_year.sql)
-22. [initial_paper_visualization_data.sql](sql/initial_paper_visualization_data.sql)
-23. [paper_visualization_data_with_mag.sql](sql/paper_visualization_data_with_mag.sql)
-24. [paper_visualization_data_with_clusters.sql](sql/paper_visualization_data_with_clusters.sql)
-25. [paper_visualization_data_with_company_references.sql](sql/paper_visualization_data_with_company_references.sql)
-26. [paper_visualization_data_with_tasks.sql](sql/paper_visualization_data_with_tasks.sql)
-27. [paper_visualization_data_with_methods.sql](sql/paper_visualization_data_with_methods.sql)
-28. [initial_workforce_visualization_data.sql](sql/initial_workforce_visualization_data.sql)
-29. [workforce_visualization_data_with_ai_jobs.sql](sql/workforce_visualization_data_with_ai_jobs.sql)
-30. [visualization_data_omit_by_rule.sql](sql/visualization_data_omit_by_rule.sql)
-31. [visualization_data.sql](sql/visualization_data.sql)
-32. [patent_visualization_data.sql](sql/patent_visualization_data.sql)
-33. [paper_visualization_data.sql](sql/paper_visualization_data.sql)
-34. [workforce_visualization_data.sql](sql/workforce_visualization_data.sql)
+To view the order of tasks necessary to build visualization data, see the airflow DAG.
# Deployment
diff --git a/company_linkage/parat_data_dag.py b/company_linkage/parat_data_dag.py
index 4cfcd805..07058eb6 100644
--- a/company_linkage/parat_data_dag.py
+++ b/company_linkage/parat_data_dag.py
@@ -153,7 +153,8 @@
cmds=["/bin/bash"],
arguments=["-c", (f"echo 'getting AI counts!' ; rm -r ai || true ; "
f"mkdir -p ai && "
- f"python3 get_ai_counts.py ai/ai_company_papers.jsonl ai/ai_company_patents.jsonl && "
+ f"python3 get_ai_counts.py ai/ai_company_papers.jsonl ai/ai_company_patents.jsonl "
+ f"ai/ai_company_patent_grants.jsonl && "
f"gsutil -m cp -r ai gs://{DATA_BUCKET}/{tmp_dir}/ ")],
namespace="default",
image=f"us.gcr.io/{PROJECT_ID}/parat",
@@ -199,6 +200,17 @@
write_disposition="WRITE_TRUNCATE"
)
+ load_ai_patent_grants = GCSToBigQueryOperator(
+ task_id=f"load_ai_company_patent_grants",
+ bucket=DATA_BUCKET,
+ source_objects=[f"{tmp_dir}/ai/ai_company_patent_grants.jsonl"],
+ schema_object=f"{schema_dir}/ai_patents_schema.json",
+ destination_project_dataset_table=f"{staging_dataset}.ai_company_patent_grants",
+ source_format="NEWLINE_DELIMITED_JSON",
+ create_disposition="CREATE_IF_NEEDED",
+ write_disposition="WRITE_TRUNCATE"
+ )
+
run_papers = []
for paper_type in ["top", "all"]:
@@ -350,6 +362,7 @@
>> run_get_ai_counts
>> load_ai_papers
>> load_ai_patents
+ >> load_ai_patent_grants
>> run_papers
>> load_top_papers
>> load_all_papers
diff --git a/company_linkage/parat_scripts/get_ai_counts.py b/company_linkage/parat_scripts/get_ai_counts.py
index 681f704d..5df57e13 100644
--- a/company_linkage/parat_scripts/get_ai_counts.py
+++ b/company_linkage/parat_scripts/get_ai_counts.py
@@ -191,7 +191,7 @@ def run_query_id_papers(self, table_name: str, test: bool = False) -> list:
"nlp": element["nlp"], "robotics": element["robotics"]})
return company_rows
- def run_query_id_patents(self):
+ def run_query_id_patents(self, table_name: str):
"""
Get patent counts one by one using CSET_ids.
:return:
@@ -240,7 +240,7 @@ def run_query_id_patents(self):
Machine_Learning,
Search_Methods
FROM
- staging_ai_companies_visualization.linked_ai_patents
+ staging_ai_companies_visualization.{table_name}
WHERE regexp_contains(assignee, r'(?i){regexes[0]}') """
# if we have more than one regex for an org, include all of them
if len(regexes) > 1:
@@ -274,8 +274,12 @@ def write_output(self, row_list: list, output_file) -> None:
def main() -> None:
parser = argparse.ArgumentParser()
- parser.add_argument("output_papers", type=str, help="A jsonl file for writing output paper data to create new tables")
- parser.add_argument("output_patents", type=str, help="A jsonl file for writing output patent data to create new tables")
+ parser.add_argument("output_papers", type=str,
+ help="A jsonl file for writing output paper data to create new tables")
+ parser.add_argument("output_patents", type=str,
+ help="A jsonl file for writing output patent data to create new tables")
+ parser.add_argument("output_patent_grants", type=str,
+ help="A jsonl file for writing output patent grants data to create new tables")
args = parser.parse_args()
if "jsonl" not in args.output_papers or "jsonl" not in args.output_patents:
parser.print_help()
@@ -287,10 +291,14 @@ def main() -> None:
company_rows = count_getter.run_query_id_papers(table_name)
print("Writing results")
count_getter.write_output(company_rows, args.output_papers)
- print("Fetching patent data")
- patent_companies = count_getter.run_query_id_patents()
+ print("Fetching patent applications data")
+ patent_companies = count_getter.run_query_id_patents("linked_ai_patents")
print("Writing results")
count_getter.write_output(patent_companies, args.output_patents)
+ print("Fetching patent grants data")
+ patent_grant_companies = count_getter.run_query_id_patents("linked_ai_patents_grants")
+ print("Writing results")
+ count_getter.write_output(patent_grant_companies, args.output_patent_grants)
if __name__ == "__main__":
main()
\ No newline at end of file
diff --git a/company_linkage/sequences/initial_data.csv b/company_linkage/sequences/initial_data.csv
index c1a10432..b7aa753e 100644
--- a/company_linkage/sequences/initial_data.csv
+++ b/company_linkage/sequences/initial_data.csv
@@ -1,6 +1,7 @@
high_resolution_entities,organizations
staging_ai_companies_visualization,ai_publications
staging_ai_companies_visualization,linked_ai_patents
+staging_ai_companies_visualization,linked_ai_patents_grants
staging_ai_companies_visualization,top_conference_pubs
staging_ai_companies_visualization,pubs_in_top_conferences
staging_ai_companies_visualization,all_publications
\ No newline at end of file
diff --git a/company_linkage/sequences/visualization_data.csv b/company_linkage/sequences/visualization_data.csv
index 09ae1630..30a711cf 100644
--- a/company_linkage/sequences/visualization_data.csv
+++ b/company_linkage/sequences/visualization_data.csv
@@ -4,6 +4,8 @@ staging_ai_companies_visualization,visualization_data_with_top_papers
staging_ai_companies_visualization,visualization_data_with_all_papers
staging_ai_companies_visualization,initial_patent_visualization_data
staging_ai_companies_visualization,patent_visualization_data_with_by_year
+staging_ai_companies_visualization,patent_visualization_data_with_grants
+staging_ai_companies_visualization,patent_visualization_data_with_grants_by_year
staging_ai_companies_visualization,initial_paper_visualization_data
staging_ai_companies_visualization,paper_visualization_data_with_mag
staging_ai_companies_visualization,paper_visualization_data_with_clusters
diff --git a/company_linkage/sql/linked_ai_patents.sql b/company_linkage/sql/linked_ai_patents.sql
index ee7360b2..fd15d8de 100644
--- a/company_linkage/sql/linked_ai_patents.sql
+++ b/company_linkage/sql/linked_ai_patents.sql
@@ -1,9 +1,9 @@
--- Pulling every AI-associated patent family id linked to every grid id of any assignee for that patent, and all the assignee names
+-- Pulling every AI-associated patent family id linked to every ror id of any assignee for that patent, and all the assignee names
-- We also pull in the AI subcategories and the years
-- We also attempt to add in "fake" families for the patents that are missing patent families
with patents_orig as (
SELECT
- -- Pulling in the current assignee ror ids from dimensions
+ -- Pulling in the current assignee ror ids
patent_id,
family_id,
assignee,
diff --git a/company_linkage/sql/linked_ai_patents_grants.sql b/company_linkage/sql/linked_ai_patents_grants.sql
new file mode 100644
index 00000000..c8948d14
--- /dev/null
+++ b/company_linkage/sql/linked_ai_patents_grants.sql
@@ -0,0 +1,121 @@
+-- Pulling every AI-associated patent family id linked to every grid id of any assignee for that patent, and all the assignee names
+-- We also pull in the AI subcategories and the years
+-- We also attempt to add in "fake" families for the patents that are missing patent families
+with patents_orig as (
+SELECT
+ -- Pulling in the current assignee ror ids from dimensions
+ patent_id,
+ assignees_normalized.family_id,
+ assignee,
+ ror_id,
+ granted
+FROM
+ unified_patents.assignees_normalized
+ LEFT JOIN
+ unified_patents.metadata
+ USING
+ (patent_id)),
+all_ai as (
+ -- Selecting all the family ids and patent IDs to get AI patents
+ -- Also select the year so we can get counts by year
+ SELECT
+ patent_id,
+ Physical_Sciences_and_Engineering,
+ Life_Sciences,
+ Security__eg_cybersecurity,
+ Transportation,
+ Industrial_and_Manufacturing,
+ Education,
+ Document_Mgt_and_Publishing,
+ Military,
+ Agricultural,
+ Computing_in_Government,
+ Personal_Devices_and_Computing,
+ Banking_and_Finance,
+ Telecommunications,
+ Networks__eg_social_IOT_etc,
+ Business,
+ Energy_Management,
+ Entertainment,
+ Nanotechnology,
+ Semiconductors,
+ Language_Processing,
+ Speech_Processing,
+ Knowledge_Representation,
+ Planning_and_Scheduling,
+ Control, Distributed_AI,
+ Robotics,
+ Computer_Vision,
+ Analytics_and_Algorithms,
+ Measuring_and_Testing,
+ Logic_Programming,
+ Fuzzy_Logic,
+ Probabilistic_Reasoning,
+ Ontology_Engineering,
+ Machine_Learning,
+ Search_Methods
+ FROM
+ unified_patents.ai_patents),
+ patent_years as (
+ SELECT
+ patent_id,
+ EXTRACT(year FROM first_priority_date) as priority_year
+ FROM
+ unified_patents.dates
+ )
+ SELECT
+ DISTINCT
+ -- If the family id is null we can't group by family id so we create a fake family id using the patent id
+ -- Since we can't group by family id there should only be one patent id in these cases
+ -- We're just doing this so our counts aren't blank
+ COALESCE(family_id, "X-" || patent_id) as family_id,
+ assignee,
+ ror_id,
+ MIN(priority_year) as priority_year,
+ LOGICAL_OR(granted) as granted,
+ LOGICAL_OR(Physical_Sciences_and_Engineering) as Physical_Sciences_and_Engineering,
+ LOGICAL_OR(Life_Sciences) as Life_Sciences,
+ LOGICAL_OR(Security__eg_cybersecurity) as Security__eg_cybersecurity,
+ LOGICAL_OR(Transportation) as Transportation,
+ LOGICAL_OR(Industrial_and_Manufacturing) as Industrial_and_Manufacturing,
+ LOGICAL_OR(Education) as Education,
+ LOGICAL_OR(Document_Mgt_and_Publishing) as Document_Mgt_and_Publishing,
+ LOGICAL_OR(Military) as Military,
+ LOGICAL_OR(Agricultural) as Agricultural,
+ LOGICAL_OR(Computing_in_Government) as Computing_in_Government,
+ LOGICAL_OR(Personal_Devices_and_Computing) as Personal_Devices_and_Computing,
+ LOGICAL_OR(Banking_and_Finance) as Banking_and_Finance,
+ LOGICAL_OR(Telecommunications) as Telecommunications,
+ LOGICAL_OR(Networks__eg_social_IOT_etc) as Networks__eg_social_IOT_etc,
+ LOGICAL_OR(Business) as Business,
+ LOGICAL_OR(Energy_Management) as Energy_Management,
+ LOGICAL_OR(Entertainment) as Entertainment,
+ LOGICAL_OR(Nanotechnology) as Nanotechnology,
+ LOGICAL_OR(Semiconductors) as Semiconductors,
+ LOGICAL_OR(Language_Processing) as Language_Processing,
+ LOGICAL_OR(Speech_Processing) as Speech_Processing,
+ LOGICAL_OR(Knowledge_Representation) as Knowledge_Representation,
+ LOGICAL_OR(Planning_and_Scheduling) as Planning_and_Scheduling,
+ LOGICAL_OR(Control) as Control,
+ LOGICAL_OR(Distributed_AI) as Distributed_AI,
+ LOGICAL_OR(Robotics) as Robotics,
+ LOGICAL_OR(Computer_Vision) as Computer_Vision,
+ LOGICAL_OR(Analytics_and_Algorithms) as Analytics_and_Algorithms,
+ LOGICAL_OR(Measuring_and_Testing) as Measuring_and_Testing,
+ LOGICAL_OR(Logic_Programming) as Logic_Programming,
+ LOGICAL_OR(Fuzzy_Logic) as Fuzzy_Logic,
+ LOGICAL_OR(Probabilistic_Reasoning) as Probabilistic_Reasoning,
+ LOGICAL_OR(Ontology_Engineering) as Ontology_Engineering,
+ LOGICAL_OR(Machine_Learning) as Machine_Learning,
+ LOGICAL_OR(Search_Methods) as Search_Methods
+ -- Only including patents if their ids are in or AI patent set, ensuring we have AI patents
+ FROM ( all_ai
+ LEFT JOIN patents_orig
+ USING (patent_id)
+ LEFT JOIN patent_years
+ USING (patent_id))
+ WHERE priority_year IS NOT NULL and granted is true
+ GROUP BY
+ ror_id,
+ assignee,
+ family_id
\ No newline at end of file
diff --git a/company_linkage/sql/patent_visualization_data.sql b/company_linkage/sql/patent_visualization_data.sql
index 8047506a..475c5460 100644
--- a/company_linkage/sql/patent_visualization_data.sql
+++ b/company_linkage/sql/patent_visualization_data.sql
@@ -11,13 +11,13 @@ WITH
FROM
staging_ai_companies_visualization.visualization_data_omit_by_rule
RIGHT JOIN
- staging_ai_companies_visualization.patent_visualization_data_with_by_year
+ staging_ai_companies_visualization.patent_visualization_data_with_grants_by_year
USING (cset_id)
WHERE visualization_data_omit_by_rule.cset_id IS NULL)
SELECT
*
FROM
- staging_ai_companies_visualization.patent_visualization_data_with_by_year
+ staging_ai_companies_visualization.patent_visualization_data_with_grants_by_year
WHERE
CSET_id NOT IN (
SELECT
diff --git a/company_linkage/sql/patent_visualization_data_with_grants.sql b/company_linkage/sql/patent_visualization_data_with_grants.sql
new file mode 100644
index 00000000..eb1546f7
--- /dev/null
+++ b/company_linkage/sql/patent_visualization_data_with_grants.sql
@@ -0,0 +1,107 @@
+WITH
+ aipats AS (
+ -- Pulling all the patents from any of our companies
+ SELECT
+ *
+ FROM
+ staging_ai_companies_visualization.ai_company_patent_grants),
+ pattable AS (
+ -- Getting the count of patents
+ SELECT
+ CSET_id,
+ COUNT(DISTINCT family_id) AS ai_patents_grants,
+ COUNT(DISTINCT CASE WHEN Physical_Sciences_and_Engineering IS TRUE THEN family_id END) as Physical_Sciences_and_Engineering_pats_grants,
+ COUNT(DISTINCT CASE WHEN Life_Sciences IS TRUE THEN family_id END) as Life_Sciences_pats_grants,
+ COUNT(DISTINCT CASE WHEN Security__eg_cybersecurity IS TRUE THEN family_id END) as Security__eg_cybersecurity_pats_grants,
+ COUNT(DISTINCT CASE WHEN Transportation IS TRUE THEN family_id END) as Transportation_pats_grants,
+ COUNT(DISTINCT CASE WHEN Industrial_and_Manufacturing IS TRUE THEN family_id END) as Industrial_and_Manufacturing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Education IS TRUE THEN family_id END) as Education_pats_grants,
+ COUNT(DISTINCT CASE WHEN Document_Mgt_and_Publishing IS TRUE THEN family_id END) as Document_Mgt_and_Publishing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Military IS TRUE THEN family_id END) as Military_pats_grants,
+ COUNT(DISTINCT CASE WHEN Agricultural IS TRUE THEN family_id END) as Agricultural_pats_grants,
+ COUNT(DISTINCT CASE WHEN Computing_in_Government IS TRUE THEN family_id END) as Computing_in_Government_pats_grants,
+ COUNT(DISTINCT CASE WHEN Personal_Devices_and_Computing IS TRUE THEN family_id END) as Personal_Devices_and_Computing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Banking_and_Finance IS TRUE THEN family_id END) as Banking_and_Finance_pats_grants,
+ COUNT(DISTINCT CASE WHEN Telecommunications IS TRUE THEN family_id END) as Telecommunications_pats_grants,
+ COUNT(DISTINCT CASE WHEN Networks__eg_social_IOT_etc IS TRUE THEN family_id END) as Networks__eg_social_IOT_etc_pats_grants,
+ COUNT(DISTINCT CASE WHEN Business IS TRUE THEN family_id END) as Business_pats_grants,
+ COUNT(DISTINCT CASE WHEN Energy_Management IS TRUE THEN family_id END) as Energy_Management_pats_grants,
+ COUNT(DISTINCT CASE WHEN Entertainment IS TRUE THEN family_id END) as Entertainment_pats_grants,
+ COUNT(DISTINCT CASE WHEN Nanotechnology IS TRUE THEN family_id END) as Nanotechnology_pats_grants,
+ COUNT(DISTINCT CASE WHEN Semiconductors IS TRUE THEN family_id END) as Semiconductors_pats_grants,
+ COUNT(DISTINCT CASE WHEN Language_Processing IS TRUE THEN family_id END) as Language_Processing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Speech_Processing IS TRUE THEN family_id END) as Speech_Processing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Knowledge_Representation IS TRUE THEN family_id END) as Knowledge_Representation_pats_grants,
+ COUNT(DISTINCT CASE WHEN Planning_and_Scheduling IS TRUE THEN family_id END) as Planning_and_Scheduling_pats_grants,
+ COUNT(DISTINCT CASE WHEN Control IS TRUE THEN family_id END) as Control_pats_grants,
+ COUNT(DISTINCT CASE WHEN Distributed_AI IS TRUE THEN family_id END) as Distributed_AI_pats_grants,
+ COUNT(DISTINCT CASE WHEN Robotics IS TRUE THEN family_id END) as Robotics_pats_grants,
+ COUNT(DISTINCT CASE WHEN Computer_Vision IS TRUE THEN family_id END) as Computer_Vision_pats_grants,
+ COUNT(DISTINCT CASE WHEN Analytics_and_Algorithms IS TRUE THEN family_id END) as Analytics_and_Algorithms_pats_grants,
+ COUNT(DISTINCT CASE WHEN Measuring_and_Testing IS TRUE THEN family_id END) as Measuring_and_Testing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Logic_Programming IS TRUE THEN family_id END) as Logic_Programming_pats_grants,
+ COUNT(DISTINCT CASE WHEN Fuzzy_Logic IS TRUE THEN family_id END) as Fuzzy_Logic_pats_grants,
+ COUNT(DISTINCT CASE WHEN Probabilistic_Reasoning IS TRUE THEN family_id END) as Probabilistic_Reasoning_pats_grants,
+ COUNT(DISTINCT CASE WHEN Ontology_Engineering IS TRUE THEN family_id END) as Ontology_Engineering_pats_grants,
+ COUNT(DISTINCT CASE WHEN Machine_Learning IS TRUE THEN family_id END) as Machine_Learning_pats_grants,
+ COUNT(DISTINCT CASE WHEN Search_Methods IS TRUE THEN family_id END) as Search_Methods_pats_grants
+
+ FROM aipats
+ GROUP BY
+ CSET_id),
+grants_all as
+ -- Pulling CSET_id and name, plus ai_pats
+(SELECT
+ CSET_id,
+ COALESCE(ai_patents_grants, 0) as ai_patents_grants,
+ COALESCE(Physical_Sciences_and_Engineering_pats_grants, 0) as Physical_Sciences_and_Engineering_pats_grants,
+ COALESCE(Life_Sciences_pats_grants, 0) as Life_Sciences_pats_grants,
+ COALESCE(Security__eg_cybersecurity_pats_grants, 0) as Security__eg_cybersecurity_pats_grants,
+ COALESCE(Transportation_pats_grants, 0) as Transportation_pats_grants,
+ COALESCE(Industrial_and_Manufacturing_pats_grants, 0) as Industrial_and_Manufacturing_pats_grants,
+ COALESCE(Education_pats_grants, 0) as Education_pats_grants,
+ COALESCE(Document_Mgt_and_Publishing_pats_grants, 0) as Document_Mgt_and_Publishing_pats_grants,
+ COALESCE(Military_pats_grants, 0) as Military_pats_grants,
+ COALESCE(Agricultural_pats_grants, 0) as Agricultural_pats_grants,
+ COALESCE(Computing_in_Government_pats_grants, 0) as Computing_in_Government_pats_grants,
+ COALESCE(Personal_Devices_and_Computing_pats_grants, 0) as Personal_Devices_and_Computing_pats_grants,
+ COALESCE(Banking_and_Finance_pats_grants, 0) as Banking_and_Finance_pats_grants,
+ COALESCE(Telecommunications_pats_grants, 0) as Telecommunications_pats_grants,
+ COALESCE(Networks__eg_social_IOT_etc_pats_grants, 0) as Networks__eg_social_IOT_etc_pats_grants,
+ COALESCE(Business_pats_grants, 0) as Business_pats_grants,
+ COALESCE(Energy_Management_pats_grants, 0) as Energy_Management_pats_grants,
+ COALESCE(Entertainment_pats_grants, 0) as Entertainment_pats_grants,
+ COALESCE(Nanotechnology_pats_grants, 0) as Nanotechnology_pats_grants,
+ COALESCE(Semiconductors_pats_grants, 0) as Semiconductors_pats_grants,
+ COALESCE(Language_Processing_pats_grants, 0) as Language_Processing_pats_grants,
+ COALESCE(Speech_Processing_pats_grants, 0) as Speech_Processing_pats_grants,
+ COALESCE(Knowledge_Representation_pats_grants, 0) as Knowledge_Representation_pats_grants,
+ COALESCE(Planning_and_Scheduling_pats_grants, 0) as Planning_and_Scheduling_pats_grants,
+ COALESCE(Control_pats_grants, 0) as Control_pats_grants,
+ COALESCE(Distributed_AI_pats_grants, 0) as Distributed_AI_pats_grants,
+ COALESCE(Robotics_pats_grants, 0) as Robotics_pats_grants,
+ COALESCE(Computer_Vision_pats_grants, 0) as Computer_Vision_pats_grants,
+ COALESCE(Analytics_and_Algorithms_pats_grants, 0) as Analytics_and_Algorithms_pats_grants,
+ COALESCE(Measuring_and_Testing_pats_grants, 0) as Measuring_and_Testing_pats_grants,
+ COALESCE(Logic_Programming_pats_grants, 0) as Logic_Programming_pats_grants,
+ COALESCE(Fuzzy_Logic_pats_grants, 0) as Fuzzy_Logic_pats_grants,
+ COALESCE(Probabilistic_Reasoning_pats_grants, 0) as Probabilistic_Reasoning_pats_grants,
+ COALESCE(Ontology_Engineering_pats_grants, 0) as Ontology_Engineering_pats_grants,
+ COALESCE(Machine_Learning_pats_grants, 0) as Machine_Learning_pats_grants,
+ COALESCE(Search_Methods_pats_grants, 0) as Search_Methods_pats_grants,
+FROM
+ high_resolution_entities.aggregated_organizations
+LEFT JOIN
+ pattable
+USING
+ (CSET_id)
+)
+SELECT
+ viz.*,
+ grants_all.* EXCEPT (CSET_id)
+FROM
+ staging_ai_companies_visualization.patent_visualization_data_with_by_year AS viz
+LEFT JOIN
+ grants_all
+USING
+ (CSET_id)
\ No newline at end of file
diff --git a/company_linkage/sql/patent_visualization_data_with_grants_by_year.sql b/company_linkage/sql/patent_visualization_data_with_grants_by_year.sql
new file mode 100644
index 00000000..f83ec62a
--- /dev/null
+++ b/company_linkage/sql/patent_visualization_data_with_grants_by_year.sql
@@ -0,0 +1,220 @@
+WITH
+ aipats AS (
+ -- Pulling all the patents from any of our companies
+ SELECT
+ *
+ FROM
+ staging_ai_companies_visualization.ai_company_patent_grants),
+ pattable AS (
+ -- Getting the count of patents
+ SELECT
+ CSET_id,
+ priority_year,
+ COUNT(DISTINCT family_id) AS ai_patents,
+ COUNT(DISTINCT CASE WHEN Physical_Sciences_and_Engineering IS TRUE THEN family_id END) as Physical_Sciences_and_Engineering_pats_grants,
+ COUNT(DISTINCT CASE WHEN Life_Sciences IS TRUE THEN family_id END) as Life_Sciences_pats_grants,
+ COUNT(DISTINCT CASE WHEN Security__eg_cybersecurity IS TRUE THEN family_id END) as Security__eg_cybersecurity_pats_grants,
+ COUNT(DISTINCT CASE WHEN Transportation IS TRUE THEN family_id END) as Transportation_pats_grants,
+ COUNT(DISTINCT CASE WHEN Industrial_and_Manufacturing IS TRUE THEN family_id END) as Industrial_and_Manufacturing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Education IS TRUE THEN family_id END) as Education_pats_grants,
+ COUNT(DISTINCT CASE WHEN Document_Mgt_and_Publishing IS TRUE THEN family_id END) as Document_Mgt_and_Publishing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Military IS TRUE THEN family_id END) as Military_pats_grants,
+ COUNT(DISTINCT CASE WHEN Agricultural IS TRUE THEN family_id END) as Agricultural_pats_grants,
+ COUNT(DISTINCT CASE WHEN Computing_in_Government IS TRUE THEN family_id END) as Computing_in_Government_pats_grants,
+ COUNT(DISTINCT CASE WHEN Personal_Devices_and_Computing IS TRUE THEN family_id END) as Personal_Devices_and_Computing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Banking_and_Finance IS TRUE THEN family_id END) as Banking_and_Finance_pats_grants,
+ COUNT(DISTINCT CASE WHEN Telecommunications IS TRUE THEN family_id END) as Telecommunications_pats_grants,
+ COUNT(DISTINCT CASE WHEN Networks__eg_social_IOT_etc IS TRUE THEN family_id END) as Networks__eg_social_IOT_etc_pats_grants,
+ COUNT(DISTINCT CASE WHEN Business IS TRUE THEN family_id END) as Business_pats_grants,
+ COUNT(DISTINCT CASE WHEN Energy_Management IS TRUE THEN family_id END) as Energy_Management_pats_grants,
+ COUNT(DISTINCT CASE WHEN Entertainment IS TRUE THEN family_id END) as Entertainment_pats_grants,
+ COUNT(DISTINCT CASE WHEN Nanotechnology IS TRUE THEN family_id END) as Nanotechnology_pats_grants,
+ COUNT(DISTINCT CASE WHEN Semiconductors IS TRUE THEN family_id END) as Semiconductors_pats_grants,
+ COUNT(DISTINCT CASE WHEN Language_Processing IS TRUE THEN family_id END) as Language_Processing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Speech_Processing IS TRUE THEN family_id END) as Speech_Processing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Knowledge_Representation IS TRUE THEN family_id END) as Knowledge_Representation_pats_grants,
+ COUNT(DISTINCT CASE WHEN Planning_and_Scheduling IS TRUE THEN family_id END) as Planning_and_Scheduling_pats_grants,
+ COUNT(DISTINCT CASE WHEN Control IS TRUE THEN family_id END) as Control_pats_grants,
+ COUNT(DISTINCT CASE WHEN Distributed_AI IS TRUE THEN family_id END) as Distributed_AI_pats_grants,
+ COUNT(DISTINCT CASE WHEN Robotics IS TRUE THEN family_id END) as Robotics_pats_grants,
+ COUNT(DISTINCT CASE WHEN Computer_Vision IS TRUE THEN family_id END) as Computer_Vision_pats_grants,
+ COUNT(DISTINCT CASE WHEN Analytics_and_Algorithms IS TRUE THEN family_id END) as Analytics_and_Algorithms_pats_grants,
+ COUNT(DISTINCT CASE WHEN Measuring_and_Testing IS TRUE THEN family_id END) as Measuring_and_Testing_pats_grants,
+ COUNT(DISTINCT CASE WHEN Logic_Programming IS TRUE THEN family_id END) as Logic_Programming_pats_grants,
+ COUNT(DISTINCT CASE WHEN Fuzzy_Logic IS TRUE THEN family_id END) as Fuzzy_Logic_pats_grants,
+ COUNT(DISTINCT CASE WHEN Probabilistic_Reasoning IS TRUE THEN family_id END) as Probabilistic_Reasoning_pats_grants,
+ COUNT(DISTINCT CASE WHEN Ontology_Engineering IS TRUE THEN family_id END) as Ontology_Engineering_pats_grants,
+ COUNT(DISTINCT CASE WHEN Machine_Learning IS TRUE THEN family_id END) as Machine_Learning_pats_grants,
+ COUNT(DISTINCT CASE WHEN Search_Methods IS TRUE THEN family_id END) as Search_Methods_pats_grants
+ FROM aipats
+ GROUP BY
+ CSET_id,
+ priority_year),
+ by_year as (
+ -- Get the counts by year
+ SELECT
+ CSET_id,
+ ARRAY_AGG(STRUCT(priority_year,
+ ai_patents)
+ ORDER BY
+ priority_year) AS ai_patents_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Physical_Sciences_and_Engineering_pats_grants)
+ ORDER BY
+ priority_year) AS Physical_Sciences_and_Engineering_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Life_Sciences_pats_grants)
+ ORDER BY
+ priority_year) AS Life_Sciences_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Security__eg_cybersecurity_pats_grants)
+ ORDER BY
+ priority_year) AS Security__eg_cybersecurity_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Transportation_pats_grants)
+ ORDER BY
+ priority_year) AS Transportation_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Industrial_and_Manufacturing_pats_grants)
+ ORDER BY
+ priority_year) AS Industrial_and_Manufacturing_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Education_pats_grants)
+ ORDER BY
+ priority_year) AS Education_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Document_Mgt_and_Publishing_pats_grants)
+ ORDER BY
+ priority_year) AS Document_Mgt_and_Publishing_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Military_pats_grants)
+ ORDER BY
+ priority_year) AS Military_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Agricultural_pats_grants)
+ ORDER BY
+ priority_year) AS Agricultural_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Computing_in_Government_pats_grants)
+ ORDER BY
+ priority_year) AS Computing_in_Government_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Personal_Devices_and_Computing_pats_grants)
+ ORDER BY
+ priority_year) AS Personal_Devices_and_Computing_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Banking_and_Finance_pats_grants)
+ ORDER BY
+ priority_year) AS Banking_and_Finance_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Telecommunications_pats_grants)
+ ORDER BY
+ priority_year) AS Telecommunications_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Networks__eg_social_IOT_etc_pats_grants)
+ ORDER BY
+ priority_year) AS Networks__eg_social_IOT_etc_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Business_pats_grants)
+ ORDER BY
+ priority_year) AS Business_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Energy_Management_pats_grants)
+ ORDER BY
+ priority_year) AS Energy_Management_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Entertainment_pats_grants)
+ ORDER BY
+ priority_year) AS Entertainment_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Nanotechnology_pats_grants)
+ ORDER BY
+ priority_year) AS Nanotechnology_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Semiconductors_pats_grants)
+ ORDER BY
+ priority_year) AS Semiconductors_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Language_Processing_pats_grants)
+ ORDER BY
+ priority_year) AS Language_Processing_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Speech_Processing_pats_grants)
+ ORDER BY
+ priority_year) AS Speech_Processing_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Knowledge_Representation_pats_grants)
+ ORDER BY
+ priority_year) AS Knowledge_Representation_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Planning_and_Scheduling_pats_grants)
+ ORDER BY
+ priority_year) AS Planning_and_Scheduling_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Control_pats_grants)
+ ORDER BY
+ priority_year) AS Control_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Distributed_AI_pats_grants)
+ ORDER BY
+ priority_year) AS Distributed_AI_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Robotics_pats_grants)
+ ORDER BY
+ priority_year) AS Robotics_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Computer_Vision_pats_grants)
+ ORDER BY
+ priority_year) AS Computer_Vision_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Analytics_and_Algorithms_pats_grants)
+ ORDER BY
+ priority_year) AS Analytics_and_Algorithms_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Measuring_and_Testing_pats_grants)
+ ORDER BY
+ priority_year) AS Measuring_and_Testing_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Logic_Programming_pats_grants)
+ ORDER BY
+ priority_year) AS Logic_Programming_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Fuzzy_Logic_pats_grants)
+ ORDER BY
+ priority_year) AS Fuzzy_Logic_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Probabilistic_Reasoning_pats_grants)
+ ORDER BY
+ priority_year) AS Probabilistic_Reasoning_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Ontology_Engineering_pats_grants)
+ ORDER BY
+ priority_year) AS Ontology_Engineering_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Machine_Learning_pats_grants)
+ ORDER BY
+ priority_year) AS Machine_Learning_pats_grants_by_year,
+ ARRAY_AGG(STRUCT(priority_year,
+ Search_Methods_pats_grants)
+ ORDER BY
+ priority_year) AS Search_Methods_pats_grants_by_year,
+
+ FROM
+ high_resolution_entities.aggregated_organizations
+ LEFT JOIN
+ pattable
+ USING
+ (CSET_id)
+ GROUP BY
+ CSET_id
+)
+ -- Pulling CSET_id and name, plus ai_pats_grants
+SELECT
+ viz.*,
+ by_year.* EXCEPT (CSET_id)
+FROM
+ staging_ai_companies_visualization.patent_visualization_data_with_grants AS viz
+LEFT JOIN
+ by_year
+USING
+ (CSET_id)
\ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
index 7551a29c..4473fe92 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -10,7 +10,7 @@ google-auth
google-cloud-bigquery-storage
google-cloud-bigquery
google-cloud-core
-google-cloud-translate
+google-cloud-translate==1.6.0
google-crc32c
google-resumable-media
googleapis-common-protos
diff --git a/web/gui-v2/src/components/DetailViewPatents.jsx b/web/gui-v2/src/components/DetailViewPatents.jsx
index d571818d..5ec53561 100644
--- a/web/gui-v2/src/components/DetailViewPatents.jsx
+++ b/web/gui-v2/src/components/DetailViewPatents.jsx
@@ -72,9 +72,9 @@ const DetailViewPatents = ({
text: <>growth in {data.name}'s AI patenting ({yearSpanNdash})>,
},
{
- key: "ai-patent-applications",
- stat: <>{commas(data.patents.ai_patent_applications.total)}>,
- text:
AI patent applications were filed by {data.name} ({yearSpanNdash})
,
+ key: "ai-patent-grants",
+ stat: <>{commas(data.patents.ai_patents_grants.total)}>,
+ text: AI patents were granted to {data.name} ({yearSpanNdash})
,
},
{
key: "ai-focused-percent",
diff --git a/web/gui-v2/src/components/ListView.test.js b/web/gui-v2/src/components/ListView.test.js
index 30fc4f5e..5a027a79 100644
--- a/web/gui-v2/src/components/ListView.test.js
+++ b/web/gui-v2/src/components/ListView.test.js
@@ -25,16 +25,16 @@ describe("ListView", () => {
);
// Filter by Europe and verify that the count updates
- expect(screen.getByText('Viewing 1760 companies')).toBeVisible();
+ expect(screen.getByText('Viewing 1779 companies')).toBeVisible();
const regionHeader = screen.getByRole('columnheader', { name: /country/i });
await user.click(getByRole(regionHeader, 'button'));
const menu = screen.getByRole('listbox');
await user.click(getByText(menu, 'China'));
- expect(screen.getByText('Viewing 267 of 1760 companies')).toBeVisible();
+ expect(screen.getByText('Viewing 269 of 1779 companies')).toBeVisible();
// Reset the filters and verify that the count updates
await user.click(screen.getByRole('button', { name: /reset filters/i }));
- expect(screen.getByText('Viewing 1760 companies')).toBeVisible();
+ expect(screen.getByText('Viewing 1779 companies')).toBeVisible();
}, 20000);
@@ -49,7 +49,7 @@ describe("ListView", () => {
await user.click(getByRole(companyHeader, 'combobox'));
const menu = screen.getByRole('listbox');
await user.click(getByText(menu, 'S&P 500'));
- expect(screen.getByText('Viewing 499 of 1760 companies')).toBeVisible();
+ expect(screen.getByText('Viewing 503 of 1779 companies')).toBeVisible();
}, 20000);
diff --git a/web/gui-v2/src/static_data/data.js b/web/gui-v2/src/static_data/data.js
index a2e7122b..0d540c82 100644
--- a/web/gui-v2/src/static_data/data.js
+++ b/web/gui-v2/src/static_data/data.js
@@ -1,3 +1,3 @@
-const company_data = [{"cset_id": 803, "country": "Ireland", "website": "https://www.accenture.com/us-en", "crunchbase": {"text": "0d5171b3-68b3-37c3-cb50-8cd8ccb8930b", "url": "https://www.crunchbase.com/organization/accenture"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/accenture"], "stage": "Mature", "name": "Accenture PLC", "patent_name": "accenture plc", "continent": "Europe", "local_logo": "accenture_plc.png", "aliases": "Accenture; Andersen", "permid_links": [{"text": 4295903017, "url": "https://permid.org/1-4295903017"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ACN", "url": "https://www.google.com/finance/quote/acn:nyse"}], "market_full": [{"text": "FRA:CSA", "url": "https://www.google.com/finance/quote/csa:fra"}, {"text": "FWB:CSA", "url": "https://www.google.com/finance/quote/csa:fwb"}, {"text": "MEX:ACNN", "url": "https://www.google.com/finance/quote/acnn:mex"}, {"text": "LSE:0Y0Y", "url": "https://www.google.com/finance/quote/0y0y:lse"}, {"text": "NYSE:ACN", "url": "https://www.google.com/finance/quote/acn:nyse"}], "crunchbase_description": "Accenture is a professional services company, providing services and solutions in strategy, consulting, digital, technology and operations.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 9}, {"field_name": "Convolutional neural network", "field_count": 5}, {"field_name": "Artificial neural network", "field_count": 5}, {"field_name": "Sentence", "field_count": 4}, {"field_name": "Topic model", "field_count": 4}, {"field_name": "Cluster analysis", "field_count": 4}, {"field_name": "Semantic similarity", "field_count": 3}, {"field_name": "Sentiment analysis", "field_count": 3}, {"field_name": "Biometrics", "field_count": 3}, {"field_name": "Robot", "field_count": 3}], "clusters": [{"cluster_id": 12638, "cluster_count": 9}, {"cluster_id": 7496, "cluster_count": 5}, {"cluster_id": 5109, "cluster_count": 5}, {"cluster_id": 19500, "cluster_count": 3}, {"cluster_id": 1149, "cluster_count": 3}, {"cluster_id": 20825, "cluster_count": 3}, {"cluster_id": 75688, "cluster_count": 2}, {"cluster_id": 12712, "cluster_count": 2}, {"cluster_id": 2621, "cluster_count": 2}, {"cluster_id": 53938, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 194}, {"ref_CSET_id": 163, "referenced_count": 119}, {"ref_CSET_id": 115, "referenced_count": 73}, {"ref_CSET_id": 87, "referenced_count": 59}, {"ref_CSET_id": 803, "referenced_count": 31}, {"ref_CSET_id": 6, "referenced_count": 14}, {"ref_CSET_id": 127, "referenced_count": 14}, {"ref_CSET_id": 1126, "referenced_count": 13}, {"ref_CSET_id": 792, "referenced_count": 13}, {"ref_CSET_id": 21, "referenced_count": 12}], "tasks": [{"referent": "classification", "task_count": 29}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 14}, {"referent": "decision_making", "task_count": 11}, {"referent": "information_extraction", "task_count": 7}, {"referent": "system_identification", "task_count": 6}, {"referent": "natural_language_processing", "task_count": 6}, {"referent": "software_defect_prediction", "task_count": 6}, {"referent": "knowledge_base", "task_count": 6}, {"referent": "multi_task_learning", "task_count": 6}, {"referent": "image_processing", "task_count": 5}], "methods": [{"referent": "mad_learning", "method_count": 27}, {"referent": "vqa_models", "method_count": 17}, {"referent": "q_learning", "method_count": 16}, {"referent": "recurrent_neural_networks", "method_count": 14}, {"referent": "convolutional_neural_networks", "method_count": 12}, {"referent": "auto_classifier", "method_count": 12}, {"referent": "double_q_learning", "method_count": 10}, {"referent": "symbolic_deep_learning", "method_count": 10}, {"referent": "griffin_lim_algorithm", "method_count": 9}, {"referent": "natural_language_processing", "method_count": 9}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [114, 112, 107, 129, 137, 167, 173, 192, 161, 67, 4], "total": 1363, "isTopResearch": false, "rank": 156, "sp500_rank": 120, "fortune500_rank": 57}, "ai_publications": {"counts": [7, 10, 6, 20, 14, 32, 27, 44, 46, 7, 1], "total": 214, "isTopResearch": false, "rank": 77, "sp500_rank": 60, "fortune500_rank": 23}, "ai_publications_growth": {"counts": [], "total": -5.758063729078221, "isTopResearch": false, "rank": 1238, "sp500_rank": 299, "fortune500_rank": 356}, "ai_pubs_top_conf": {"counts": [0, 1, 1, 0, 1, 4, 2, 3, 6, 1, 0], "total": 19, "isTopResearch": false, "rank": 82, "sp500_rank": 44, "fortune500_rank": 27}, "citation_counts": {"counts": [29, 49, 78, 71, 99, 162, 254, 400, 562, 361, 20], "total": 2085, "isTopResearch": false, "rank": 130, "sp500_rank": 81, "fortune500_rank": 39}, "cv_pubs": {"counts": [0, 0, 0, 1, 1, 2, 4, 3, 6, 2, 0], "total": 19, "isTopResearch": true, "rank": 143, "sp500_rank": 89, "fortune500_rank": 40}, "nlp_pubs": {"counts": [4, 5, 2, 7, 4, 14, 5, 10, 16, 1, 1], "total": 69, "isTopResearch": true, "rank": 36, "sp500_rank": 26, "fortune500_rank": 14}, "robotics_pubs": {"counts": [0, 0, 0, 1, 1, 3, 0, 3, 3, 0, 0], "total": 11, "isTopResearch": true, "rank": 106, "sp500_rank": 77, "fortune500_rank": 29}, "citations_per_article": {"counts": [4.142857142857143, 4.9, 13.0, 3.55, 7.071428571428571, 5.0625, 9.407407407407407, 9.090909090909092, 12.217391304347826, 51.57142857142857, 20.0], "total": 9.742990654205608, "isTopResearch": false, "rank": 550, "sp500_rank": 205, "fortune500_rank": 159}}, "patents": {"ai_patents": {"counts": [7, 11, 25, 60, 116, 161, 143, 167, 48, 0, 0], "total": 738, "table": null, "rank": 37, "sp500_rank": 30, "fortune500_rank": 9}, "ai_patents_growth": {"counts": [], "total": 14.798732002630056, "table": null, "rank": 314, "sp500_rank": 147, "fortune500_rank": 100}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [70, 110, 250, 600, 1160, 1610, 1430, 1670, 480, 0, 0], "total": 7380, "table": null, "rank": 37, "sp500_rank": 30, "fortune500_rank": 9}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0], "total": 4, "table": null, "rank": 88, "sp500_rank": 72, "fortune500_rank": 28}, "Life_Sciences": {"counts": [0, 2, 0, 1, 7, 12, 5, 11, 2, 0, 0], "total": 40, "table": null, "rank": 28, "sp500_rank": 22, "fortune500_rank": 10}, "Security__eg_cybersecurity": {"counts": [1, 1, 1, 3, 6, 11, 14, 18, 3, 0, 0], "total": 58, "table": "industry", "rank": 21, "sp500_rank": 17, "fortune500_rank": 7}, "Transportation": {"counts": [0, 2, 0, 1, 3, 3, 4, 4, 0, 0, 0], "total": 17, "table": null, "rank": 79, "sp500_rank": 62, "fortune500_rank": 23}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 4, 2, 5, 2, 1, 0, 0], "total": 14, "table": null, "rank": 57, "sp500_rank": 42, "fortune500_rank": 16}, "Education": {"counts": [0, 0, 0, 1, 0, 4, 1, 2, 0, 0, 0], "total": 8, "table": null, "rank": 18, "sp500_rank": 13, "fortune500_rank": 5}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 29, "sp500_rank": 25, "fortune500_rank": 8}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [7, 6, 15, 40, 88, 117, 91, 114, 26, 0, 0], "total": 504, "table": "industry", "rank": 17, "sp500_rank": 14, "fortune500_rank": 5}, "Banking_and_Finance": {"counts": [0, 1, 2, 6, 11, 16, 6, 8, 0, 0, 0], "total": 50, "table": "industry", "rank": 21, "sp500_rank": 16, "fortune500_rank": 10}, "Telecommunications": {"counts": [6, 5, 2, 17, 29, 27, 35, 29, 6, 0, 0], "total": 156, "table": "industry", "rank": 29, "sp500_rank": 26, "fortune500_rank": 13}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 4, 6, 0, 0, 1, 1, 0, 0], "total": 12, "table": null, "rank": 15, "sp500_rank": 11, "fortune500_rank": 8}, "Business": {"counts": [0, 5, 5, 21, 48, 58, 35, 46, 13, 0, 0], "total": 231, "table": "industry", "rank": 13, "sp500_rank": 13, "fortune500_rank": 5}, "Energy_Management": {"counts": [0, 0, 3, 0, 0, 0, 2, 1, 1, 0, 0], "total": 7, "table": null, "rank": 62, "sp500_rank": 58, "fortune500_rank": 15}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39, "fortune500_rank": 23}, "Language_Processing": {"counts": [0, 1, 3, 9, 21, 36, 16, 0, 0, 0, 0], "total": 86, "table": "application", "rank": 6, "sp500_rank": 4, "fortune500_rank": 3}, "Speech_Processing": {"counts": [0, 0, 0, 1, 7, 7, 8, 6, 2, 0, 0], "total": 31, "table": null, "rank": 34, "sp500_rank": 26, "fortune500_rank": 10}, "Knowledge_Representation": {"counts": [2, 2, 3, 13, 33, 57, 39, 33, 5, 0, 0], "total": 187, "table": "application", "rank": 3, "sp500_rank": 3, "fortune500_rank": 3}, "Planning_and_Scheduling": {"counts": [0, 4, 3, 19, 38, 43, 28, 36, 9, 0, 0], "total": 180, "table": "application", "rank": 7, "sp500_rank": 7, "fortune500_rank": 3}, "Control": {"counts": [0, 2, 1, 7, 11, 8, 7, 6, 1, 0, 0], "total": 43, "table": null, "rank": 59, "sp500_rank": 46, "fortune500_rank": 22}, "Distributed_AI": {"counts": [1, 0, 0, 2, 0, 4, 2, 3, 1, 0, 0], "total": 13, "table": null, "rank": 3, "sp500_rank": 3, "fortune500_rank": 3}, "Robotics": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14, "fortune500_rank": 8}, "Computer_Vision": {"counts": [0, 2, 4, 5, 30, 47, 44, 48, 11, 0, 0], "total": 191, "table": "application", "rank": 44, "sp500_rank": 34, "fortune500_rank": 13}, "Analytics_and_Algorithms": {"counts": [1, 1, 1, 4, 8, 7, 7, 15, 3, 0, 0], "total": 47, "table": "application", "rank": 30, "sp500_rank": 27, "fortune500_rank": 12}, "Measuring_and_Testing": {"counts": [0, 1, 1, 1, 2, 3, 6, 3, 1, 0, 0], "total": 18, "table": null, "rank": 91, "sp500_rank": 68, "fortune500_rank": 29}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 190708, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "ai_jobs": {"counts": null, "total": 12773, "rank": 2, "sp500_rank": 2, "fortune500_rank": 2}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Accenture plc is an Irish multinational company selling consulting and processing services. A Fortune Global 500 company, it reported revenues of $44.33 billion in 2020 and had 506,000 employees. In 2015, the company had about 150,000 employees in India, 48,000 in the US, and 50,000 in the Philippines. Accenture's current clients include 91 of the Fortune Global 100 and more than three-quarters of the Fortune Global 500.", "wikipedia_link": "https://en.wikipedia.org/wiki/Accenture", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 115, "country": "United States", "website": "http://www.ibm.com/", "crunchbase": {"text": "fc5fbe7a-562d-d577-b05e-46797caa134c", "url": "https://www.crunchbase.com/organization/ibm"}, "child_crunchbase": [{"text": "b16a7278-55aa-9fbf-2c33-5af6bde83b30", "url": "https://www.crunchbase.com/organization/ibm-research"}, {"text": "4325ee7e-7fbe-a98e-0dc3-7ace70887311", "url": "https://www.crunchbase.com/organization/apprente"}], "linkedin": ["https://www.linkedin.com/company/ibm-research", "https://www.linkedin.com/company/ibm", "https://www.linkedin.com/company/apprente"], "stage": "Mature", "name": "IBM", "patent_name": "ibm", "continent": "North America", "local_logo": "ibm.png", "aliases": "Computing Tabulating Recording; International Business Machines; International Business Machines Corp; International Business Machines Corporation", "permid_links": [{"text": 4295904307, "url": "https://permid.org/1-4295904307"}, {"text": 5057832433, "url": "https://permid.org/1-5057832433"}], "parent_info": null, "agg_child_info": "IBM Research, Apprente", "unagg_child_info": null, "market_filt": [{"text": "NYSE:IBM", "url": "https://www.google.com/finance/quote/ibm:nyse"}], "market_full": [{"text": "NYSE:IBM", "url": "https://www.google.com/finance/quote/ibm:nyse"}, {"text": "MEX:IBM", "url": "https://www.google.com/finance/quote/ibm:mex"}, {"text": "VIE:IBM", "url": "https://www.google.com/finance/quote/ibm:vie"}, {"text": "SWX:IBM", "url": "https://www.google.com/finance/quote/ibm:swx"}, {"text": "XETR:IBM", "url": "https://www.google.com/finance/quote/ibm:xetr"}, {"text": "BCBA:IBM", "url": "https://www.google.com/finance/quote/bcba:ibm"}, {"text": "FRA:IBM", "url": "https://www.google.com/finance/quote/fra:ibm"}], "crunchbase_description": "IBM is an IT technology and consulting firm providing computer hardware, software, infrastructure, and hosting services.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 240}, {"field_name": "Artificial neural network", "field_count": 172}, {"field_name": "Cluster analysis", "field_count": 165}, {"field_name": "Feature (computer vision)", "field_count": 121}, {"field_name": "Convolutional neural network", "field_count": 115}, {"field_name": "Reinforcement learning", "field_count": 110}, {"field_name": "Question answering", "field_count": 108}, {"field_name": "Robustness (computer science)", "field_count": 101}, {"field_name": "Language model", "field_count": 99}, {"field_name": "Analytics", "field_count": 96}], "clusters": [{"cluster_id": 1149, "cluster_count": 138}, {"cluster_id": 1193, "cluster_count": 129}, {"cluster_id": 1422, "cluster_count": 120}, {"cluster_id": 5109, "cluster_count": 87}, {"cluster_id": 2381, "cluster_count": 83}, {"cluster_id": 1989, "cluster_count": 77}, {"cluster_id": 5367, "cluster_count": 64}, {"cluster_id": 1621, "cluster_count": 55}, {"cluster_id": 16537, "cluster_count": 54}, {"cluster_id": 655, "cluster_count": 50}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 10631}, {"ref_CSET_id": 101, "referenced_count": 10486}, {"ref_CSET_id": 163, "referenced_count": 6169}, {"ref_CSET_id": 87, "referenced_count": 3370}, {"ref_CSET_id": 792, "referenced_count": 587}, {"ref_CSET_id": 23, "referenced_count": 573}, {"ref_CSET_id": 184, "referenced_count": 567}, {"ref_CSET_id": 245, "referenced_count": 476}, {"ref_CSET_id": 37, "referenced_count": 458}, {"ref_CSET_id": 6, "referenced_count": 444}], "tasks": [{"referent": "classification", "task_count": 1103}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 591}, {"referent": "classification_tasks", "task_count": 350}, {"referent": "speech_recognition", "task_count": 259}, {"referent": "image_processing", "task_count": 223}, {"referent": "natural_language_processing", "task_count": 220}, {"referent": "image_analysis", "task_count": 198}, {"referent": "decision_making", "task_count": 177}, {"referent": "question_answering", "task_count": 171}, {"referent": "feature_selection", "task_count": 166}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 781}, {"referent": "3d_representations", "method_count": 595}, {"referent": "vqa_models", "method_count": 557}, {"referent": "q_learning", "method_count": 432}, {"referent": "auto_classifier", "method_count": 410}, {"referent": "double_q_learning", "method_count": 356}, {"referent": "mad_learning", "method_count": 356}, {"referent": "meta_learning_algorithms", "method_count": 339}, {"referent": "convolutional_neural_networks", "method_count": 336}, {"referent": "optimization", "method_count": 297}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5090, 5532, 4768, 4685, 5014, 4834, 4826, 4446, 3612, 2372, 42], "total": 45221, "isTopResearch": false, "rank": 3, "sp500_rank": 3, "fortune500_rank": 2}, "ai_publications": {"counts": [525, 540, 557, 647, 800, 987, 1130, 1129, 945, 206, 1], "total": 7467, "isTopResearch": false, "rank": 3, "sp500_rank": 2, "fortune500_rank": 2}, "ai_publications_growth": {"counts": [], "total": -31.529054093126508, "isTopResearch": false, "rank": 1395, "sp500_rank": 383, "fortune500_rank": 404}, "ai_pubs_top_conf": {"counts": [110, 113, 137, 111, 153, 235, 292, 313, 313, 69, 0], "total": 1846, "isTopResearch": false, "rank": 3, "sp500_rank": 2, "fortune500_rank": 2}, "citation_counts": {"counts": [4475, 6585, 9266, 11663, 14911, 20422, 28828, 37083, 41676, 26155, 914], "total": 201978, "isTopResearch": false, "rank": 4, "sp500_rank": 3, "fortune500_rank": 3}, "cv_pubs": {"counts": [67, 73, 111, 118, 124, 165, 191, 176, 149, 39, 0], "total": 1213, "isTopResearch": true, "rank": 5, "sp500_rank": 4, "fortune500_rank": 2}, "nlp_pubs": {"counts": [112, 127, 124, 145, 189, 250, 234, 278, 238, 46, 0], "total": 1743, "isTopResearch": true, "rank": 3, "sp500_rank": 2, "fortune500_rank": 2}, "robotics_pubs": {"counts": [5, 3, 9, 13, 24, 16, 15, 8, 7, 8, 0], "total": 108, "isTopResearch": true, "rank": 24, "sp500_rank": 22, "fortune500_rank": 7}, "citations_per_article": {"counts": [8.523809523809524, 12.194444444444445, 16.635547576301615, 18.026275115919628, 18.63875, 20.690982776089157, 25.51150442477876, 32.8458813108946, 44.1015873015873, 126.96601941747574, 914.0], "total": 27.049417436721576, "isTopResearch": false, "rank": 215, "sp500_rank": 57, "fortune500_rank": 66}}, "patents": {"ai_patents": {"counts": [173, 293, 443, 603, 914, 1239, 1496, 1413, 374, 0, 0], "total": 6948, "table": null, "rank": 2, "sp500_rank": 2, "fortune500_rank": 1}, "ai_patents_growth": {"counts": [], "total": 16.917464276835833, "table": null, "rank": 305, "sp500_rank": 144, "fortune500_rank": 95}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [1730, 2930, 4430, 6030, 9140, 12390, 14960, 14130, 3740, 0, 0], "total": 69480, "table": null, "rank": 2, "sp500_rank": 2, "fortune500_rank": 1}, "Physical_Sciences_and_Engineering": {"counts": [1, 2, 5, 9, 17, 12, 9, 10, 4, 0, 0], "total": 69, "table": null, "rank": 6, "sp500_rank": 4, "fortune500_rank": 3}, "Life_Sciences": {"counts": [12, 20, 34, 66, 124, 127, 155, 115, 20, 0, 0], "total": 673, "table": "industry", "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Security__eg_cybersecurity": {"counts": [7, 11, 16, 28, 58, 102, 126, 104, 33, 0, 0], "total": 485, "table": "industry", "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Transportation": {"counts": [2, 7, 27, 46, 48, 58, 46, 26, 2, 0, 0], "total": 262, "table": null, "rank": 10, "sp500_rank": 9, "fortune500_rank": 4}, "Industrial_and_Manufacturing": {"counts": [2, 2, 1, 12, 23, 11, 24, 18, 5, 0, 0], "total": 98, "table": null, "rank": 6, "sp500_rank": 4, "fortune500_rank": 1}, "Education": {"counts": [5, 12, 13, 6, 26, 23, 21, 19, 5, 0, 0], "total": 130, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 6, "sp500_rank": 4, "fortune500_rank": 4}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 4, 6, 7, 7, 17, 11, 1, 0, 0], "total": 53, "table": null, "rank": 3, "sp500_rank": 3, "fortune500_rank": 2}, "Computing_in_Government": {"counts": [1, 0, 0, 1, 0, 1, 4, 9, 0, 0, 0], "total": 16, "table": null, "rank": 3, "sp500_rank": 3, "fortune500_rank": 1}, "Personal_Devices_and_Computing": {"counts": [100, 184, 263, 327, 574, 819, 923, 816, 201, 0, 0], "total": 4207, "table": "industry", "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Banking_and_Finance": {"counts": [1, 3, 11, 10, 21, 26, 51, 49, 13, 0, 0], "total": 185, "table": null, "rank": 5, "sp500_rank": 5, "fortune500_rank": 2}, "Telecommunications": {"counts": [21, 52, 74, 99, 171, 276, 266, 226, 60, 0, 0], "total": 1245, "table": "industry", "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Networks__eg_social_IOT_etc": {"counts": [6, 14, 17, 22, 30, 39, 20, 41, 7, 0, 0], "total": 196, "table": null, "rank": 3, "sp500_rank": 3, "fortune500_rank": 3}, "Business": {"counts": [36, 54, 85, 104, 143, 168, 189, 213, 37, 0, 0], "total": 1029, "table": "industry", "rank": 2, "sp500_rank": 2, "fortune500_rank": 1}, "Energy_Management": {"counts": [4, 3, 1, 4, 20, 12, 2, 10, 3, 0, 0], "total": 59, "table": null, "rank": 11, "sp500_rank": 11, "fortune500_rank": 1}, "Entertainment": {"counts": [1, 0, 4, 5, 6, 13, 12, 7, 0, 0, 0], "total": 48, "table": null, "rank": 4, "sp500_rank": 3, "fortune500_rank": 2}, "Nanotechnology": {"counts": [0, 0, 3, 0, 1, 3, 6, 2, 0, 0, 0], "total": 15, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Semiconductors": {"counts": [1, 2, 8, 7, 19, 28, 26, 21, 1, 0, 0], "total": 113, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Language_Processing": {"counts": [18, 47, 76, 90, 122, 186, 208, 0, 0, 0, 0], "total": 747, "table": "application", "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Speech_Processing": {"counts": [8, 10, 11, 29, 64, 92, 94, 71, 13, 0, 0], "total": 392, "table": "application", "rank": 3, "sp500_rank": 3, "fortune500_rank": 1}, "Knowledge_Representation": {"counts": [65, 95, 112, 154, 249, 300, 305, 188, 30, 0, 0], "total": 1498, "table": "application", "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Planning_and_Scheduling": {"counts": [29, 37, 60, 65, 93, 108, 120, 141, 25, 0, 0], "total": 678, "table": "application", "rank": 2, "sp500_rank": 2, "fortune500_rank": 1}, "Control": {"counts": [9, 12, 36, 54, 67, 71, 69, 44, 5, 0, 0], "total": 367, "table": null, "rank": 6, "sp500_rank": 6, "fortune500_rank": 3}, "Distributed_AI": {"counts": [3, 3, 5, 8, 24, 23, 25, 14, 2, 0, 0], "total": 107, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Robotics": {"counts": [0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 7, "sp500_rank": 3, "fortune500_rank": 3}, "Computer_Vision": {"counts": [6, 25, 35, 73, 147, 269, 397, 400, 102, 0, 0], "total": 1454, "table": "application", "rank": 4, "sp500_rank": 4, "fortune500_rank": 1}, "Analytics_and_Algorithms": {"counts": [3, 4, 16, 36, 49, 58, 66, 76, 10, 0, 0], "total": 318, "table": null, "rank": 3, "sp500_rank": 3, "fortune500_rank": 1}, "Measuring_and_Testing": {"counts": [4, 7, 22, 34, 36, 43, 51, 58, 3, 0, 0], "total": 258, "table": null, "rank": 3, "sp500_rank": 3, "fortune500_rank": 1}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 152022, "rank": 2, "sp500_rank": 2, "fortune500_rank": 2}, "ai_jobs": {"counts": null, "total": 6614, "rank": 4, "sp500_rank": 3, "fortune500_rank": 3}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "International Business Machines Corporation (IBM) is an American multinational technology company headquartered in Armonk, New York, with operations in over 170 countries. The company began in 1911, founded in Endicott, New York, as the Computing-Tabulating-Recording Company (CTR) and was renamed \"International Business Machines\" in 1924. IBM is incorporated in New York.", "wikipedia_link": "https://en.wikipedia.org/wiki/IBM", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 806, "country": "United States", "website": "https://www.cognizant.com", "crunchbase": {"text": "86537fe4-b762-e63a-8969-2223e1185a2a", "url": "https://www.crunchbase.com/organization/cognizant-technology-solutions"}, "child_crunchbase": [{"text": "9eaaaec6-6158-93d7-fe81-9ede0cd452ff", "url": "https://www.crunchbase.com/organization/advanced-technology-group-inc"}], "linkedin": ["https://www.linkedin.com/company/cognizant", "https://www.linkedin.com/company/advanced-technology-group-atg-"], "stage": "Mature", "name": "Cognizant", "patent_name": "Cognizant", "continent": "North America", "local_logo": "cognizant.png", "aliases": "Cognizant; Cognizant Technology Solutions; Cognizant Technology Solutions U.S. Corporation", "permid_links": [{"text": 4295905973, "url": "https://permid.org/1-4295905973"}, {"text": 5002686026, "url": "https://permid.org/1-5002686026"}], "parent_info": null, "agg_child_info": "Advanced Technology Group", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CTSH", "url": "https://www.google.com/finance/quote/CTSH:NASDAQ"}], "market_full": [{"text": "DUS:COZ", "url": "https://www.google.com/finance/quote/COZ:DUS"}, {"text": "GER:COZX", "url": "https://www.google.com/finance/quote/COZX:GER"}, {"text": "SWX:CTSH", "url": "https://www.google.com/finance/quote/CTSH:SWX"}, {"text": "MCX:CTSH-RM", "url": "https://www.google.com/finance/quote/CTSH-RM:MCX"}, {"text": "VIE:CTSH", "url": "https://www.google.com/finance/quote/CTSH:VIE"}, {"text": "MUN:COZ", "url": "https://www.google.com/finance/quote/COZ:MUN"}, {"text": "HAN:COZ", "url": "https://www.google.com/finance/quote/COZ:HAN"}, {"text": "NASDAQ:CTSH", "url": "https://www.google.com/finance/quote/CTSH:NASDAQ"}, {"text": "STU:COZ", "url": "https://www.google.com/finance/quote/COZ:STU"}, {"text": "DEU:CTSH", "url": "https://www.google.com/finance/quote/CTSH:DEU"}, {"text": "FRA:COZ", "url": "https://www.google.com/finance/quote/COZ:FRA"}, {"text": "MEX:CTSH*", "url": "https://www.google.com/finance/quote/CTSH*:MEX"}, {"text": "BER:COZ", "url": "https://www.google.com/finance/quote/BER:COZ"}, {"text": "SAO:CTSH34", "url": "https://www.google.com/finance/quote/CTSH34:SAO"}, {"text": "LSE:0QZ5", "url": "https://www.google.com/finance/quote/0QZ5:LSE"}, {"text": "BRN:COZ", "url": "https://www.google.com/finance/quote/BRN:COZ"}, {"text": "HAM:COZ", "url": "https://www.google.com/finance/quote/COZ:HAM"}], "crunchbase_description": "Cognizant is a professional services company, transforming clients\u2019 business, operating and technology models for the digital era.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Cluster analysis", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Applications of artificial intelligence", "field_count": 2}, {"field_name": "Intrusion detection system", "field_count": 2}, {"field_name": "Augmented reality", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Robot", "field_count": 2}, {"field_name": "Segmentation", "field_count": 2}], "clusters": [{"cluster_id": 123397, "cluster_count": 6}, {"cluster_id": 67007, "cluster_count": 3}, {"cluster_id": 1683, "cluster_count": 2}, {"cluster_id": 3886, "cluster_count": 2}, {"cluster_id": 94519, "cluster_count": 2}, {"cluster_id": 5339, "cluster_count": 2}, {"cluster_id": 112043, "cluster_count": 2}, {"cluster_id": 15989, "cluster_count": 2}, {"cluster_id": 12638, "cluster_count": 1}, {"cluster_id": 59900, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 56}, {"ref_CSET_id": 163, "referenced_count": 15}, {"ref_CSET_id": 87, "referenced_count": 14}, {"ref_CSET_id": 806, "referenced_count": 14}, {"ref_CSET_id": 115, "referenced_count": 10}, {"ref_CSET_id": 800, "referenced_count": 5}, {"ref_CSET_id": 792, "referenced_count": 3}, {"ref_CSET_id": 737, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 19}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 10}, {"referent": "feature_selection", "task_count": 8}, {"referent": "disease_detection", "task_count": 6}, {"referent": "image_processing", "task_count": 5}, {"referent": "automl", "task_count": 4}, {"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "robots", "task_count": 3}, {"referent": "segmentation", "task_count": 3}, {"referent": "fault_detection", "task_count": 2}], "methods": [{"referent": "mad_learning", "method_count": 12}, {"referent": "recurrent_neural_networks", "method_count": 11}, {"referent": "double_q_learning", "method_count": 8}, {"referent": "meta_learning_algorithms", "method_count": 5}, {"referent": "cgnn", "method_count": 5}, {"referent": "auto_classifier", "method_count": 5}, {"referent": "automl", "method_count": 4}, {"referent": "q_learning", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "clustering", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [18, 37, 29, 35, 27, 45, 46, 52, 63, 49, 0], "total": 401, "isTopResearch": false, "rank": 313, "fortune500_rank": 120}, "ai_publications": {"counts": [3, 3, 3, 5, 5, 14, 19, 13, 10, 2, 0], "total": 77, "isTopResearch": false, "rank": 142, "fortune500_rank": 45}, "ai_publications_growth": {"counts": [], "total": -44.88529014844804, "isTopResearch": false, "rank": 1434, "fortune500_rank": 417}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [8, 11, 20, 20, 27, 60, 113, 189, 271, 212, 13], "total": 944, "isTopResearch": false, "rank": 197, "fortune500_rank": 61}, "cv_pubs": {"counts": [2, 3, 0, 2, 1, 11, 8, 2, 4, 1, 0], "total": 34, "isTopResearch": true, "rank": 106, "fortune500_rank": 31}, "nlp_pubs": {"counts": [0, 0, 2, 0, 0, 0, 0, 2, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 161, "fortune500_rank": 50}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 2, 1, 1, 1, 1, 0], "total": 7, "isTopResearch": true, "rank": 142, "fortune500_rank": 40}, "citations_per_article": {"counts": [2.6666666666666665, 3.6666666666666665, 6.666666666666667, 4.0, 5.4, 4.285714285714286, 5.947368421052632, 14.538461538461538, 27.1, 106.0, 0], "total": 12.25974025974026, "isTopResearch": false, "rank": 466, "fortune500_rank": 140}}, "patents": {"ai_patents": {"counts": [0, 3, 2, 7, 17, 12, 14, 16, 2, 0, 0], "total": 73, "table": null, "rank": 186, "fortune500_rank": 58}, "ai_patents_growth": {"counts": [], "total": 0.5135387488328677, "table": null, "rank": 360, "fortune500_rank": 120}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 30, 20, 70, 170, 120, 140, 160, 20, 0, 0], "total": 730, "table": null, "rank": 186, "fortune500_rank": 58}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 1, 0, 1, 2, 1, 0, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 113, "fortune500_rank": 47}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 157, "fortune500_rank": 58}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [0, 0, 2, 2, 7, 3, 9, 5, 2, 0, 0], "total": 30, "table": "industry", "rank": 152, "fortune500_rank": 55}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 1, 0, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 115, "fortune500_rank": 41}, "Telecommunications": {"counts": [0, 1, 0, 2, 0, 1, 2, 1, 0, 0, 0], "total": 7, "table": "industry", "rank": 194, "fortune500_rank": 72}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 2, 1, 0, 4, 0, 0, 0], "total": 8, "table": "industry", "rank": 168, "fortune500_rank": 57}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 139, "fortune500_rank": 43}, "Knowledge_Representation": {"counts": [0, 2, 0, 2, 2, 1, 1, 2, 0, 0, 0], "total": 10, "table": "application", "rank": 72, "fortune500_rank": 39}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 1, 1, 0, 3, 0, 0, 0], "total": 6, "table": "application", "rank": 163, "fortune500_rank": 55}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 0, 5, 0, 3, 4, 0, 0, 0], "total": 13, "table": "application", "rank": 224, "fortune500_rank": 67}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191, "fortune500_rank": 77}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 137598, "rank": 3, "fortune500_rank": 3}, "ai_jobs": {"counts": null, "total": 4823, "rank": 7, "fortune500_rank": 5}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 23, "country": "United States", "website": "http://amazon.com", "crunchbase": {"text": "05554f65-6aa9-4dd1-6271-8ce2d60f10c4", "url": "https://www.crunchbase.com/organization/amazon"}, "child_crunchbase": [{"text": "2a9baed0-57fa-4a64-84ac-55064875e29b", "url": "https://www.crunchbase.com/organization/amazon-advertising"}, {"text": "55d51aed-f69d-bb3b-3ee9-30ffc0fd8f18", "url": "https://www.crunchbase.com/organization/zoox"}, {"text": "bd23a50d-2ae3-be33-2a35-383ea9ed13fd", "url": "https://www.crunchbase.com/organization/amazon-web-services"}, {"text": "e5436893-b28f-f17c-52d5-db929ee24d95", "url": "https://www.crunchbase.com/organization/amazon-lab126"}], "linkedin": ["https://www.linkedin.com/company/amazon", "https://www.linkedin.com/company/zoox-inc", "https://www.linkedin.com/company/amazon-web-services", "https://www.linkedin.com/company/lab126"], "stage": "Mature", "name": "Amazon", "patent_name": "amazon", "continent": "North America", "local_logo": "amazon.png", "aliases": "Amazon.com; Amazon.com Inc", "permid_links": [{"text": 5079891193, "url": "https://permid.org/1-5079891193"}, {"text": 4295905494, "url": "https://permid.org/1-4295905494"}, {"text": 5051388112, "url": "https://permid.org/1-5051388112"}, {"text": 5038056692, "url": "https://permid.org/1-5038056692"}, {"text": 5057959319, "url": "https://permid.org/1-5057959319"}], "parent_info": null, "agg_child_info": "Amazon Advertising, Zoox Inc., Amazon Web Services, Amazon Lab126", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:AMZN", "url": "https://www.google.com/finance/quote/amzn:nasdaq"}], "market_full": [{"text": "MOEX:AMZN", "url": "https://www.google.com/finance/quote/amzn:moex"}, {"text": "NASDAQ:AMZN", "url": "https://www.google.com/finance/quote/amzn:nasdaq"}, {"text": "SGO:AMZN-RM", "url": "https://www.google.com/finance/quote/amzn-rm:sgo"}, {"text": "MIL:AMZN", "url": "https://www.google.com/finance/quote/amzn:mil"}], "crunchbase_description": "Amazon is an e-commerce website for consumers, sellers, and content creators.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 91}, {"field_name": "Question answering", "field_count": 75}, {"field_name": "Language model", "field_count": 59}, {"field_name": "Reinforcement learning", "field_count": 56}, {"field_name": "Machine translation", "field_count": 54}, {"field_name": "Feature learning", "field_count": 44}, {"field_name": "Artificial neural network", "field_count": 43}, {"field_name": "Automatic summarization", "field_count": 40}, {"field_name": "Word error rate", "field_count": 40}, {"field_name": "Convolutional neural network", "field_count": 39}], "clusters": [{"cluster_id": 1193, "cluster_count": 100}, {"cluster_id": 18737, "cluster_count": 83}, {"cluster_id": 1422, "cluster_count": 63}, {"cluster_id": 3527, "cluster_count": 49}, {"cluster_id": 2644, "cluster_count": 36}, {"cluster_id": 5109, "cluster_count": 33}, {"cluster_id": 1989, "cluster_count": 32}, {"cluster_id": 1149, "cluster_count": 31}, {"cluster_id": 14903, "cluster_count": 28}, {"cluster_id": 13405, "cluster_count": 27}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8656}, {"ref_CSET_id": 163, "referenced_count": 4649}, {"ref_CSET_id": 87, "referenced_count": 3000}, {"ref_CSET_id": 23, "referenced_count": 2561}, {"ref_CSET_id": 115, "referenced_count": 1236}, {"ref_CSET_id": 6, "referenced_count": 535}, {"ref_CSET_id": 184, "referenced_count": 471}, {"ref_CSET_id": 245, "referenced_count": 467}, {"ref_CSET_id": 792, "referenced_count": 409}, {"ref_CSET_id": 37, "referenced_count": 391}], "tasks": [{"referent": "classification", "task_count": 287}, {"referent": "classification_tasks", "task_count": 140}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 116}, {"referent": "speech_recognition", "task_count": 99}, {"referent": "natural_language_understanding", "task_count": 85}, {"referent": "question_answering", "task_count": 76}, {"referent": "natural_language_processing", "task_count": 74}, {"referent": "multi_task_learning", "task_count": 68}, {"referent": "computer_vision", "task_count": 63}, {"referent": "inference_attack", "task_count": 60}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 265}, {"referent": "3d_representations", "method_count": 239}, {"referent": "vqa_models", "method_count": 228}, {"referent": "q_learning", "method_count": 150}, {"referent": "double_q_learning", "method_count": 106}, {"referent": "auto_classifier", "method_count": 102}, {"referent": "symbolic_deep_learning", "method_count": 100}, {"referent": "convolutional_neural_networks", "method_count": 96}, {"referent": "language_models", "method_count": 95}, {"referent": "neural_architecture_search", "method_count": 94}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [261, 308, 435, 568, 566, 863, 1152, 1622, 1884, 1459, 17], "total": 9135, "isTopResearch": false, "rank": 41, "sp500_rank": 37, "fortune500_rank": 13}, "ai_publications": {"counts": [20, 35, 58, 66, 155, 271, 465, 699, 764, 315, 0], "total": 2848, "isTopResearch": false, "rank": 8, "sp500_rank": 7, "fortune500_rank": 4}, "ai_publications_growth": {"counts": [], "total": 0.2839819022309058, "isTopResearch": false, "rank": 198, "sp500_rank": 98, "fortune500_rank": 50}, "ai_pubs_top_conf": {"counts": [4, 11, 13, 20, 49, 108, 181, 245, 288, 162, 0], "total": 1081, "isTopResearch": false, "rank": 8, "sp500_rank": 7, "fortune500_rank": 4}, "citation_counts": {"counts": [45, 177, 430, 820, 2002, 4886, 10672, 17153, 23090, 15231, 483], "total": 74989, "isTopResearch": false, "rank": 8, "sp500_rank": 6, "fortune500_rank": 6}, "cv_pubs": {"counts": [5, 10, 10, 15, 36, 54, 89, 128, 147, 70, 0], "total": 564, "isTopResearch": true, "rank": 20, "sp500_rank": 14, "fortune500_rank": 8}, "nlp_pubs": {"counts": [2, 7, 14, 16, 39, 100, 198, 272, 317, 98, 0], "total": 1063, "isTopResearch": true, "rank": 4, "sp500_rank": 3, "fortune500_rank": 3}, "robotics_pubs": {"counts": [2, 1, 1, 3, 9, 7, 7, 16, 27, 17, 0], "total": 90, "isTopResearch": true, "rank": 33, "sp500_rank": 31, "fortune500_rank": 9}, "citations_per_article": {"counts": [2.25, 5.057142857142857, 7.413793103448276, 12.424242424242424, 12.916129032258064, 18.029520295202953, 22.9505376344086, 24.53934191702432, 30.222513089005236, 48.352380952380955, 0], "total": 26.330407303370787, "isTopResearch": false, "rank": 219, "sp500_rank": 61, "fortune500_rank": 68}}, "patents": {"ai_patents": {"counts": [32, 92, 109, 100, 202, 280, 285, 136, 18, 0, 0], "total": 1254, "table": null, "rank": 20, "sp500_rank": 17, "fortune500_rank": 4}, "ai_patents_growth": {"counts": [], "total": -3.960375360844355, "table": null, "rank": 1432, "sp500_rank": 418, "fortune500_rank": 409}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [320, 920, 1090, 1000, 2020, 2800, 2850, 1360, 180, 0, 0], "total": 12540, "table": null, "rank": 20, "sp500_rank": 17, "fortune500_rank": 4}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 105, "sp500_rank": 81, "fortune500_rank": 36}, "Life_Sciences": {"counts": [0, 1, 0, 0, 1, 1, 2, 1, 1, 0, 0], "total": 7, "table": null, "rank": 104, "sp500_rank": 68, "fortune500_rank": 42}, "Security__eg_cybersecurity": {"counts": [3, 3, 7, 1, 11, 12, 5, 3, 0, 0, 0], "total": 45, "table": null, "rank": 25, "sp500_rank": 21, "fortune500_rank": 9}, "Transportation": {"counts": [1, 3, 39, 18, 35, 56, 87, 17, 5, 0, 0], "total": 261, "table": "industry", "rank": 11, "sp500_rank": 10, "fortune500_rank": 5}, "Industrial_and_Manufacturing": {"counts": [2, 1, 6, 3, 12, 17, 2, 3, 0, 0, 0], "total": 46, "table": "industry", "rank": 16, "sp500_rank": 14, "fortune500_rank": 4}, "Education": {"counts": [0, 1, 2, 2, 0, 1, 0, 1, 0, 0, 0], "total": 7, "table": null, "rank": 21, "sp500_rank": 15, "fortune500_rank": 6}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [16, 43, 41, 51, 81, 161, 129, 59, 8, 0, 0], "total": 589, "table": "industry", "rank": 14, "sp500_rank": 12, "fortune500_rank": 4}, "Banking_and_Finance": {"counts": [1, 2, 8, 1, 9, 5, 11, 6, 0, 0, 0], "total": 43, "table": null, "rank": 23, "sp500_rank": 18, "fortune500_rank": 12}, "Telecommunications": {"counts": [9, 31, 32, 20, 59, 65, 53, 38, 5, 0, 0], "total": 312, "table": "industry", "rank": 13, "sp500_rank": 11, "fortune500_rank": 6}, "Networks__eg_social_IOT_etc": {"counts": [0, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0], "total": 5, "table": null, "rank": 37, "sp500_rank": 25, "fortune500_rank": 19}, "Business": {"counts": [8, 14, 28, 28, 39, 35, 19, 18, 0, 0, 0], "total": 189, "table": "industry", "rank": 15, "sp500_rank": 15, "fortune500_rank": 7}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 97, "sp500_rank": 78, "fortune500_rank": 24}, "Entertainment": {"counts": [0, 0, 2, 1, 2, 0, 2, 1, 0, 0, 0], "total": 8, "table": null, "rank": 18, "sp500_rank": 11, "fortune500_rank": 8}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 1, 1, 0, 2, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 24, "sp500_rank": 14, "fortune500_rank": 12}, "Language_Processing": {"counts": [1, 1, 4, 18, 4, 2, 4, 0, 0, 0, 0], "total": 34, "table": null, "rank": 15, "sp500_rank": 11, "fortune500_rank": 8}, "Speech_Processing": {"counts": [6, 5, 9, 21, 29, 35, 45, 11, 4, 0, 0], "total": 165, "table": "application", "rank": 8, "sp500_rank": 6, "fortune500_rank": 3}, "Knowledge_Representation": {"counts": [5, 22, 12, 14, 15, 24, 7, 6, 0, 0, 0], "total": 105, "table": "application", "rank": 14, "sp500_rank": 12, "fortune500_rank": 6}, "Planning_and_Scheduling": {"counts": [5, 7, 17, 12, 18, 18, 7, 10, 0, 0, 0], "total": 94, "table": null, "rank": 19, "sp500_rank": 18, "fortune500_rank": 6}, "Control": {"counts": [1, 4, 39, 19, 42, 69, 95, 19, 2, 0, 0], "total": 290, "table": "application", "rank": 12, "sp500_rank": 10, "fortune500_rank": 5}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], "total": 3, "table": null, "rank": 23, "sp500_rank": 19, "fortune500_rank": 13}, "Robotics": {"counts": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 7, "sp500_rank": 3, "fortune500_rank": 3}, "Computer_Vision": {"counts": [1, 17, 22, 10, 50, 91, 95, 43, 4, 0, 0], "total": 333, "table": "application", "rank": 30, "sp500_rank": 21, "fortune500_rank": 7}, "Analytics_and_Algorithms": {"counts": [1, 3, 7, 5, 10, 14, 12, 6, 1, 0, 0], "total": 59, "table": null, "rank": 26, "sp500_rank": 23, "fortune500_rank": 11}, "Measuring_and_Testing": {"counts": [2, 1, 25, 6, 15, 36, 37, 12, 4, 0, 0], "total": 138, "table": "application", "rank": 14, "sp500_rank": 12, "fortune500_rank": 6}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 135848, "rank": 4, "sp500_rank": 3, "fortune500_rank": 4}, "ai_jobs": {"counts": null, "total": 15712, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "Amazon.com, Inc. is an American multinational technology company based in Seattle, Washington, which focuses on e-commerce, cloud computing, digital streaming, and artificial intelligence. It is one of the Big Five companies in the U.S. information technology industry, along with Google, Apple, Microsoft, and Facebook. The company has been referred to as \"one of the most influential economic and cultural forces in the world\", as well as the world's most valuable brand.", "wikipedia_link": "https://en.wikipedia.org/wiki/Amazon_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 163, "country": "United States", "website": "http://www.microsoft.com", "crunchbase": {"text": "fd80725f-53fc-7009-9878-aeecf1e9ffbb", "url": "https://www.crunchbase.com/organization/microsoft"}, "child_crunchbase": [{"text": "002dba78-a5db-27e4-feb9-eb432b51fdfc", "url": "https://www.crunchbase.com/organization/microsoft-research"}, {"text": "546d3969-f9d3-1e43-bda5-5d989faf04ca", "url": "https://www.crunchbase.com/organization/nuance"}, {"text": "309c897e-9413-7f05-002a-2856d8a46dfd", "url": "https://www.crunchbase.com/organization/semantic-machines"}], "linkedin": ["https://www.linkedin.com/company/microsoft", "https://www.linkedin.com/company/nuance-communications", "https://www.linkedin.com/company/semantic-machines"], "stage": "Mature", "name": "Microsoft", "patent_name": "microsoft", "continent": "North America", "local_logo": "microsoft.png", "aliases": "Microsoft Corp; Microsoft Corporation", "permid_links": [{"text": 5073957652, "url": "https://permid.org/1-5073957652"}, {"text": 5026988025, "url": "https://permid.org/1-5026988025"}, {"text": 4295907168, "url": "https://permid.org/1-4295907168"}, {"text": 4295914878, "url": "https://permid.org/1-4295914878"}, {"text": 5048229492, "url": "https://permid.org/1-5048229492"}], "parent_info": null, "agg_child_info": "Microsoft Research India, Microsoft Research, Nuance Communications, Semantic Machines", "unagg_child_info": "LinkedIn", "market_filt": [{"text": "NASDAQ:MSFT", "url": "https://www.google.com/finance/quote/msft:nasdaq"}, {"text": "HKG:4338", "url": "https://www.google.com/finance/quote/4338:hkg"}], "market_full": [{"text": "MIL:MSFT", "url": "https://www.google.com/finance/quote/mil:msft"}, {"text": "MOEX:MSFT-RM", "url": "https://www.google.com/finance/quote/moex:msft-rm"}, {"text": "NASDAQ:MSFT", "url": "https://www.google.com/finance/quote/msft:nasdaq"}, {"text": "HKG:4338", "url": "https://www.google.com/finance/quote/4338:hkg"}, {"text": "BMV:MSFT", "url": "https://www.google.com/finance/quote/bmv:msft"}], "crunchbase_description": "Microsoft is a software corporation that develops, manufactures, licenses, supports, and sells a range of software products and services.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Reinforcement learning", "field_count": 250}, {"field_name": "Deep learning", "field_count": 242}, {"field_name": "Language model", "field_count": 233}, {"field_name": "Machine translation", "field_count": 205}, {"field_name": "Feature (computer vision)", "field_count": 201}, {"field_name": "Artificial neural network", "field_count": 177}, {"field_name": "Convolutional neural network", "field_count": 177}, {"field_name": "Ranking", "field_count": 163}, {"field_name": "Word error rate", "field_count": 151}, {"field_name": "Question answering", "field_count": 144}], "clusters": [{"cluster_id": 1193, "cluster_count": 262}, {"cluster_id": 1422, "cluster_count": 253}, {"cluster_id": 3527, "cluster_count": 149}, {"cluster_id": 18737, "cluster_count": 129}, {"cluster_id": 5300, "cluster_count": 112}, {"cluster_id": 13405, "cluster_count": 110}, {"cluster_id": 3167, "cluster_count": 107}, {"cluster_id": 1149, "cluster_count": 106}, {"cluster_id": 3291, "cluster_count": 98}, {"cluster_id": 148, "cluster_count": 95}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 32786}, {"ref_CSET_id": 101, "referenced_count": 22678}, {"ref_CSET_id": 87, "referenced_count": 8086}, {"ref_CSET_id": 115, "referenced_count": 3997}, {"ref_CSET_id": 6, "referenced_count": 2062}, {"ref_CSET_id": 792, "referenced_count": 1666}, {"ref_CSET_id": 37, "referenced_count": 1362}, {"ref_CSET_id": 245, "referenced_count": 1311}, {"ref_CSET_id": 184, "referenced_count": 1276}, {"ref_CSET_id": 23, "referenced_count": 1268}], "tasks": [{"referent": "classification", "task_count": 1293}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 573}, {"referent": "classification_tasks", "task_count": 493}, {"referent": "speech_recognition", "task_count": 389}, {"referent": "computer_vision", "task_count": 345}, {"referent": "natural_language_processing", "task_count": 277}, {"referent": "inference_attack", "task_count": 247}, {"referent": "information_retrieval", "task_count": 243}, {"referent": "image_processing", "task_count": 243}, {"referent": "multi_task_learning", "task_count": 240}], "methods": [{"referent": "3d_representations", "method_count": 1011}, {"referent": "recurrent_neural_networks", "method_count": 905}, {"referent": "vqa_models", "method_count": 880}, {"referent": "q_learning", "method_count": 652}, {"referent": "convolutional_neural_networks", "method_count": 464}, {"referent": "meta_learning_algorithms", "method_count": 417}, {"referent": "double_q_learning", "method_count": 403}, {"referent": "auto_classifier", "method_count": 390}, {"referent": "optimization", "method_count": 386}, {"referent": "language_models", "method_count": 381}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3162, 3209, 2906, 2834, 2614, 2719, 2971, 3153, 3097, 1967, 19], "total": 28651, "isTopResearch": false, "rank": 9, "sp500_rank": 7, "fortune500_rank": 4}, "ai_publications": {"counts": [850, 928, 845, 843, 838, 1040, 1357, 1551, 1507, 461, 2], "total": 10222, "isTopResearch": false, "rank": 2, "sp500_rank": 1, "fortune500_rank": 1}, "ai_publications_growth": {"counts": [], "total": -19.31668680568823, "isTopResearch": false, "rank": 1319, "sp500_rank": 347, "fortune500_rank": 385}, "ai_pubs_top_conf": {"counts": [237, 282, 347, 323, 322, 430, 562, 638, 657, 264, 0], "total": 4062, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "citation_counts": {"counts": [11943, 17146, 22834, 29303, 38385, 54496, 79801, 98881, 113469, 79484, 2695], "total": 548437, "isTopResearch": false, "rank": 2, "sp500_rank": 1, "fortune500_rank": 1}, "cv_pubs": {"counts": [238, 286, 237, 235, 218, 265, 307, 383, 382, 141, 0], "total": 2692, "isTopResearch": true, "rank": 2, "sp500_rank": 1, "fortune500_rank": 1}, "nlp_pubs": {"counts": [227, 238, 235, 226, 218, 311, 429, 460, 446, 125, 0], "total": 2915, "isTopResearch": true, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "robotics_pubs": {"counts": [11, 21, 9, 18, 19, 26, 23, 34, 32, 13, 0], "total": 206, "isTopResearch": true, "rank": 9, "sp500_rank": 7, "fortune500_rank": 2}, "citations_per_article": {"counts": [14.050588235294118, 18.476293103448278, 27.02248520710059, 34.760379596678526, 45.8054892601432, 52.4, 58.8069270449521, 63.75306254029658, 75.29462508294625, 172.4164859002169, 1347.5], "total": 53.65261201330464, "isTopResearch": false, "rank": 86, "sp500_rank": 14, "fortune500_rank": 20}}, "patents": {"ai_patents": {"counts": [104, 178, 203, 319, 421, 601, 544, 445, 203, 0, 0], "total": 3018, "table": null, "rank": 6, "sp500_rank": 6, "fortune500_rank": 2}, "ai_patents_growth": {"counts": [], "total": 5.024207331546763, "table": null, "rank": 346, "sp500_rank": 162, "fortune500_rank": 112}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [1040, 1780, 2030, 3190, 4210, 6010, 5440, 4450, 2030, 0, 0], "total": 30180, "table": null, "rank": 6, "sp500_rank": 6, "fortune500_rank": 2}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 1, 0, 0, 3, 4, 1, 0, 0, 0], "total": 9, "table": null, "rank": 56, "sp500_rank": 47, "fortune500_rank": 19}, "Life_Sciences": {"counts": [5, 6, 12, 14, 14, 14, 8, 10, 5, 0, 0], "total": 88, "table": null, "rank": 16, "sp500_rank": 14, "fortune500_rank": 6}, "Security__eg_cybersecurity": {"counts": [2, 8, 4, 17, 27, 35, 42, 31, 12, 0, 0], "total": 178, "table": "industry", "rank": 3, "sp500_rank": 3, "fortune500_rank": 2}, "Transportation": {"counts": [2, 7, 9, 9, 14, 48, 22, 39, 4, 0, 0], "total": 154, "table": null, "rank": 19, "sp500_rank": 15, "fortune500_rank": 7}, "Industrial_and_Manufacturing": {"counts": [0, 2, 0, 2, 3, 1, 3, 3, 3, 0, 0], "total": 17, "table": null, "rank": 49, "sp500_rank": 38, "fortune500_rank": 14}, "Education": {"counts": [3, 3, 3, 2, 10, 9, 4, 5, 1, 0, 0], "total": 40, "table": null, "rank": 3, "sp500_rank": 3, "fortune500_rank": 2}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 38, "sp500_rank": 31, "fortune500_rank": 11}, "Computing_in_Government": {"counts": [1, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0], "total": 6, "table": null, "rank": 9, "sp500_rank": 6, "fortune500_rank": 3}, "Personal_Devices_and_Computing": {"counts": [58, 94, 115, 213, 278, 386, 337, 256, 128, 0, 0], "total": 1865, "table": "industry", "rank": 2, "sp500_rank": 2, "fortune500_rank": 2}, "Banking_and_Finance": {"counts": [1, 1, 1, 3, 10, 7, 6, 7, 1, 0, 0], "total": 37, "table": null, "rank": 27, "sp500_rank": 21, "fortune500_rank": 14}, "Telecommunications": {"counts": [19, 32, 44, 73, 125, 131, 131, 101, 47, 0, 0], "total": 703, "table": "industry", "rank": 3, "sp500_rank": 3, "fortune500_rank": 2}, "Networks__eg_social_IOT_etc": {"counts": [11, 10, 24, 40, 62, 37, 14, 12, 1, 0, 0], "total": 211, "table": "industry", "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Business": {"counts": [18, 29, 49, 78, 109, 107, 106, 66, 23, 0, 0], "total": 585, "table": "industry", "rank": 3, "sp500_rank": 3, "fortune500_rank": 2}, "Energy_Management": {"counts": [1, 1, 1, 0, 0, 3, 6, 2, 0, 0, 0], "total": 14, "table": null, "rank": 39, "sp500_rank": 36, "fortune500_rank": 7}, "Entertainment": {"counts": [3, 1, 2, 2, 3, 5, 7, 4, 4, 0, 0], "total": 31, "table": null, "rank": 6, "sp500_rank": 5, "fortune500_rank": 3}, "Nanotechnology": {"counts": [1, 1, 0, 0, 1, 2, 1, 0, 0, 0, 0], "total": 6, "table": null, "rank": 2, "sp500_rank": 2, "fortune500_rank": 2}, "Semiconductors": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 3, "table": null, "rank": 28, "sp500_rank": 17, "fortune500_rank": 14}, "Language_Processing": {"counts": [16, 15, 36, 59, 62, 59, 51, 0, 0, 0, 0], "total": 298, "table": "application", "rank": 2, "sp500_rank": 2, "fortune500_rank": 2}, "Speech_Processing": {"counts": [13, 23, 21, 28, 48, 44, 51, 34, 16, 0, 0], "total": 278, "table": "application", "rank": 6, "sp500_rank": 5, "fortune500_rank": 2}, "Knowledge_Representation": {"counts": [25, 19, 33, 58, 92, 77, 40, 33, 14, 0, 0], "total": 391, "table": "application", "rank": 2, "sp500_rank": 2, "fortune500_rank": 2}, "Planning_and_Scheduling": {"counts": [10, 18, 38, 63, 81, 88, 82, 52, 20, 0, 0], "total": 452, "table": "application", "rank": 3, "sp500_rank": 3, "fortune500_rank": 2}, "Control": {"counts": [4, 6, 7, 6, 22, 43, 31, 24, 3, 0, 0], "total": 146, "table": null, "rank": 24, "sp500_rank": 19, "fortune500_rank": 8}, "Distributed_AI": {"counts": [1, 1, 0, 4, 4, 5, 5, 1, 0, 0, 0], "total": 21, "table": null, "rank": 2, "sp500_rank": 2, "fortune500_rank": 2}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [15, 27, 16, 49, 73, 176, 145, 123, 42, 0, 0], "total": 666, "table": "application", "rank": 11, "sp500_rank": 8, "fortune500_rank": 2}, "Analytics_and_Algorithms": {"counts": [5, 5, 11, 8, 8, 16, 15, 10, 8, 0, 0], "total": 86, "table": null, "rank": 17, "sp500_rank": 15, "fortune500_rank": 6}, "Measuring_and_Testing": {"counts": [2, 9, 8, 10, 15, 44, 23, 33, 5, 0, 0], "total": 149, "table": null, "rank": 13, "sp500_rank": 11, "fortune500_rank": 5}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 121425, "rank": 5, "sp500_rank": 4, "fortune500_rank": 5}, "ai_jobs": {"counts": null, "total": 5721, "rank": 6, "sp500_rank": 4, "fortune500_rank": 4}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Microsoft Corporation is an American multinational technology company with headquarters in Redmond, Washington. It develops, manufactures, licenses, supports, and sells computer software, consumer electronics, personal computers, and related services. Its best known software products are the Microsoft Windows line of operating systems, the Microsoft Office suite, and the Internet Explorer and Edge web browsers. Its flagship hardware products are the Xbox video game consoles and the Microsoft Surface lineup of touchscreen personal computers. Microsoft ranked No. 21 in the 2020 Fortune 500 rankings of the largest United States corporations by total revenue; it was the world's largest software maker by revenue as of 2016. It is considered one of the Big Five companies in the U.S. information technology industry, along with Google, Apple, Amazon, and Facebook.", "wikipedia_link": "https://en.wikipedia.org/wiki/Microsoft", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 101, "country": "United States", "website": "http://www.google.com/", "crunchbase": {"text": "6acfa7da-1dbd-936e-d985-cf07a1b27711", "url": "https://www.crunchbase.com/organization/google"}, "child_crunchbase": [{"text": "08963f4b-85db-ae4a-196a-e03b52d21234", "url": "https://www.crunchbase.com/organization/google-research"}, {"text": "557d6676-fc1a-33f0-656b-9871f4a66438", "url": "https://www.crunchbase.com/organization/deepmind"}, {"text": "248f4214-eedd-0432-0807-8c186ccca30f", "url": "https://www.crunchbase.com/organization/fitbit"}, {"text": "fad91586-3ea8-5301-9e16-d0a34702d698", "url": "https://www.crunchbase.com/organization/nest"}], "linkedin": ["https://www.linkedin.com/company/deepmind", "https://www.linkedin.com/company/google", "https://www.linkedin.com/company/fitbit", "https://www.linkedin.com/company/nest-ideas"], "stage": "Mature", "name": "Google", "patent_name": "google", "continent": "North America", "local_logo": "google.png", "aliases": "Google Inc; Google LLC", "permid_links": [{"text": 5040958065, "url": "https://permid.org/1-5040958065"}, {"text": 4295899948, "url": "https://permid.org/1-4295899948"}, {"text": 4298082502, "url": "https://permid.org/1-4298082502"}], "parent_info": "Alphabet", "agg_child_info": "Google Brain, DeepMind, Fitbit, Nest, Google Robotics", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:GOOG", "url": "https://www.google.com/finance/quote/goog:nasdaq"}], "market_full": [{"text": "NASDAQ:GOOG", "url": "https://www.google.com/finance/quote/goog:nasdaq"}], "crunchbase_description": "Google is a multinational corporation that specializes in Internet-related services and products.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 895}, {"field_name": "Reinforcement learning", "field_count": 774}, {"field_name": "Artificial neural network", "field_count": 333}, {"field_name": "Deep learning", "field_count": 280}, {"field_name": "Feature (computer vision)", "field_count": 227}, {"field_name": "Convolutional neural network", "field_count": 204}, {"field_name": "Robustness (computer science)", "field_count": 188}, {"field_name": "Language model", "field_count": 188}, {"field_name": "Cluster analysis", "field_count": 155}, {"field_name": "Segmentation", "field_count": 144}], "clusters": [{"cluster_id": 1609, "cluster_count": 441}, {"cluster_id": 1193, "cluster_count": 254}, {"cluster_id": 1422, "cluster_count": 215}, {"cluster_id": 10558, "cluster_count": 161}, {"cluster_id": 7095, "cluster_count": 156}, {"cluster_id": 3446, "cluster_count": 146}, {"cluster_id": 3527, "cluster_count": 127}, {"cluster_id": 5300, "cluster_count": 119}, {"cluster_id": 1149, "cluster_count": 115}, {"cluster_id": 30192, "cluster_count": 110}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 55599}, {"ref_CSET_id": 163, "referenced_count": 15774}, {"ref_CSET_id": 87, "referenced_count": 11103}, {"ref_CSET_id": 115, "referenced_count": 3468}, {"ref_CSET_id": 6, "referenced_count": 2825}, {"ref_CSET_id": 184, "referenced_count": 1996}, {"ref_CSET_id": 23, "referenced_count": 1822}, {"ref_CSET_id": 127, "referenced_count": 1579}, {"ref_CSET_id": 37, "referenced_count": 1312}, {"ref_CSET_id": 792, "referenced_count": 1278}], "tasks": [{"referent": "classification", "task_count": 1643}, {"referent": "robots", "task_count": 1454}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 706}, {"referent": "classification_tasks", "task_count": 524}, {"referent": "steering_control", "task_count": 432}, {"referent": "mobile_robot", "task_count": 401}, {"referent": "image_processing", "task_count": 383}, {"referent": "computer_vision", "task_count": 352}, {"referent": "autonomous_navigation", "task_count": 335}, {"referent": "object_detection", "task_count": 307}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 1350}, {"referent": "vqa_models", "method_count": 1011}, {"referent": "3d_representations", "method_count": 974}, {"referent": "reinforcement_learning", "method_count": 754}, {"referent": "q_learning", "method_count": 739}, {"referent": "double_q_learning", "method_count": 533}, {"referent": "griffin_lim_algorithm", "method_count": 531}, {"referent": "convolutional_neural_networks", "method_count": 526}, {"referent": "optimization", "method_count": 520}, {"referent": "meta_learning_algorithms", "method_count": 506}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2183, 2494, 2847, 2873, 3313, 3835, 4938, 5290, 5218, 3289, 61], "total": 36341, "isTopResearch": false, "rank": 5}, "ai_publications": {"counts": [730, 834, 926, 1030, 1298, 1756, 2383, 2696, 2465, 878, 3], "total": 14999, "isTopResearch": false, "rank": 1}, "ai_publications_growth": {"counts": [], "total": -19.93829461537552, "isTopResearch": false, "rank": 1323}, "ai_pubs_top_conf": {"counts": [91, 119, 183, 188, 315, 509, 772, 832, 834, 209, 0], "total": 4052, "isTopResearch": false, "rank": 2}, "citation_counts": {"counts": [6632, 10929, 17389, 27011, 42426, 67457, 105113, 137474, 162487, 111370, 3326], "total": 691614, "isTopResearch": false, "rank": 1}, "cv_pubs": {"counts": [140, 153, 194, 211, 287, 400, 580, 681, 657, 289, 0], "total": 3592, "isTopResearch": true, "rank": 1}, "nlp_pubs": {"counts": [81, 120, 125, 139, 172, 235, 341, 415, 382, 67, 0], "total": 2077, "isTopResearch": true, "rank": 2}, "robotics_pubs": {"counts": [297, 335, 333, 364, 395, 453, 517, 524, 530, 305, 2], "total": 4055, "isTopResearch": true, "rank": 1}, "citations_per_article": {"counts": [9.084931506849315, 13.10431654676259, 18.778617710583152, 26.224271844660194, 32.685670261941446, 38.415148063781324, 44.10952580780529, 50.99183976261128, 65.91764705882353, 126.84510250569475, 1108.6666666666667], "total": 46.11067404493633, "isTopResearch": false, "rank": 104}}, "patents": {"ai_patents": {"counts": [145, 117, 194, 297, 357, 449, 574, 535, 265, 60, 0], "total": 2993, "table": null, "rank": 7}, "ai_patents_growth": {"counts": [], "total": 15.605175562900845, "table": null, "rank": 312}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [1450, 1170, 1940, 2970, 3570, 4490, 5740, 5350, 2650, 600, 0], "total": 29930, "table": null, "rank": 7}, "Physical_Sciences_and_Engineering": {"counts": [1, 4, 2, 2, 6, 2, 9, 9, 0, 0, 0], "total": 35, "table": null, "rank": 19}, "Life_Sciences": {"counts": [9, 3, 13, 21, 20, 29, 28, 22, 7, 1, 0], "total": 153, "table": null, "rank": 10}, "Security__eg_cybersecurity": {"counts": [5, 3, 8, 10, 12, 15, 17, 16, 8, 0, 0], "total": 94, "table": null, "rank": 12}, "Transportation": {"counts": [23, 22, 21, 19, 24, 44, 36, 14, 3, 2, 0], "total": 208, "table": "industry", "rank": 14}, "Industrial_and_Manufacturing": {"counts": [4, 5, 10, 23, 29, 33, 43, 24, 15, 8, 0], "total": 194, "table": "industry", "rank": 2}, "Education": {"counts": [2, 0, 2, 2, 2, 5, 6, 5, 1, 0, 0], "total": 25, "table": null, "rank": 4}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 4}, "Agricultural": {"counts": [0, 0, 1, 0, 1, 7, 8, 3, 0, 0, 0], "total": 20, "table": null, "rank": 8}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 34}, "Personal_Devices_and_Computing": {"counts": [55, 41, 72, 138, 164, 148, 165, 158, 59, 11, 0], "total": 1011, "table": "industry", "rank": 8}, "Banking_and_Finance": {"counts": [3, 1, 2, 1, 4, 10, 6, 4, 0, 0, 0], "total": 31, "table": null, "rank": 36}, "Telecommunications": {"counts": [29, 25, 37, 53, 65, 73, 91, 74, 28, 3, 0], "total": 478, "table": "industry", "rank": 8}, "Networks__eg_social_IOT_etc": {"counts": [6, 1, 2, 9, 2, 3, 4, 1, 0, 0, 0], "total": 28, "table": null, "rank": 5}, "Business": {"counts": [21, 18, 9, 32, 27, 29, 23, 16, 7, 3, 0], "total": 185, "table": "industry", "rank": 16}, "Energy_Management": {"counts": [3, 3, 1, 1, 7, 4, 6, 1, 1, 1, 0], "total": 28, "table": null, "rank": 21}, "Entertainment": {"counts": [2, 3, 4, 7, 3, 2, 2, 4, 2, 0, 0], "total": 29, "table": null, "rank": 7}, "Nanotechnology": {"counts": [0, 0, 1, 2, 1, 1, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 3}, "Semiconductors": {"counts": [0, 2, 4, 1, 1, 1, 0, 0, 0, 0, 0], "total": 9, "table": null, "rank": 15}, "Language_Processing": {"counts": [10, 10, 14, 34, 25, 13, 4, 0, 0, 0, 0], "total": 110, "table": null, "rank": 4}, "Speech_Processing": {"counts": [19, 17, 26, 42, 33, 60, 68, 76, 36, 1, 0], "total": 378, "table": "application", "rank": 5}, "Knowledge_Representation": {"counts": [23, 15, 8, 19, 21, 14, 12, 10, 2, 1, 0], "total": 125, "table": null, "rank": 8}, "Planning_and_Scheduling": {"counts": [6, 10, 6, 25, 17, 18, 14, 9, 6, 3, 0], "total": 114, "table": null, "rank": 12}, "Control": {"counts": [25, 26, 21, 34, 38, 52, 56, 23, 8, 1, 0], "total": 284, "table": "application", "rank": 13}, "Distributed_AI": {"counts": [0, 1, 0, 0, 0, 2, 4, 1, 0, 0, 0], "total": 8, "table": null, "rank": 7}, "Robotics": {"counts": [5, 4, 2, 4, 0, 1, 0, 0, 0, 0, 0], "total": 16, "table": null, "rank": 1}, "Computer_Vision": {"counts": [30, 17, 30, 67, 107, 171, 201, 210, 100, 25, 0], "total": 958, "table": "application", "rank": 7}, "Analytics_and_Algorithms": {"counts": [10, 3, 8, 15, 14, 14, 32, 30, 14, 0, 0], "total": 140, "table": "application", "rank": 9}, "Measuring_and_Testing": {"counts": [18, 5, 14, 9, 19, 34, 33, 24, 13, 3, 0], "total": 172, "table": "application", "rank": 11}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 97196, "rank": 6}, "ai_jobs": {"counts": null, "total": 6798, "rank": 3}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Google LLC is an American multinational technology company that specializes in Internet-related services and products, which include online advertising technologies, a search engine, cloud computing, software, and hardware. It is considered one of the Big Five technology companies in the U.S. information technology industry, alongside Amazon, Facebook, Apple, and Microsoft.", "wikipedia_link": "https://en.wikipedia.org/wiki/Google", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 617, "country": "United States", "website": "https://www.oracle.com", "crunchbase": {"text": "bef5bd4b-72c6-7877-d7ab-8bbe43f7bda7", "url": "https://www.crunchbase.com/organization/oracle"}, "child_crunchbase": [{"text": "67973798-ac6a-b8f2-0077-9550256505fd", "url": "https://www.crunchbase.com/organization/cerner-corporation"}, {"text": "6463253d-1f59-09b2-8d09-d96e51d14a89", "url": "https://www.crunchbase.com/organization/moat"}], "linkedin": ["https://www.linkedin.com/company/cerner-corporation", "https://www.linkedin.com/company/moat-com", "https://www.linkedin.com/company/oracle"], "stage": "Mature", "name": "Oracle", "patent_name": "oracle", "continent": "North America", "local_logo": "oracle.png", "aliases": "Oracle Corp; Oracle Corporation", "permid_links": [{"text": 4295905917, "url": "https://permid.org/1-4295905917"}, {"text": 5036190303, "url": "https://permid.org/1-5036190303"}, {"text": 4295907485, "url": "https://permid.org/1-4295907485"}], "parent_info": null, "agg_child_info": "Cerner Corporation, Moat", "unagg_child_info": null, "market_filt": [{"text": "TYO:4716", "url": "https://www.google.com/finance/quote/4716:tyo"}, {"text": "NYSE:ORCL", "url": "https://www.google.com/finance/quote/nyse:orcl"}], "market_full": [{"text": "MOEX:ORCL-RM", "url": "https://www.google.com/finance/quote/moex:orcl-rm"}, {"text": "FWB:ORC", "url": "https://www.google.com/finance/quote/fwb:orc"}, {"text": "DUS:ORC", "url": "https://www.google.com/finance/quote/dus:orc"}, {"text": "HAM:ORC", "url": "https://www.google.com/finance/quote/ham:orc"}, {"text": "TYO:4716", "url": "https://www.google.com/finance/quote/4716:tyo"}, {"text": "BCBA:ORCL", "url": "https://www.google.com/finance/quote/bcba:orcl"}, {"text": "HAN:ORC", "url": "https://www.google.com/finance/quote/han:orc"}, {"text": "VIE:ORCL", "url": "https://www.google.com/finance/quote/orcl:vie"}, {"text": "FRA:ORC", "url": "https://www.google.com/finance/quote/fra:orc"}, {"text": "OTC:OHAQ", "url": "https://www.google.com/finance/quote/ohaq:otc"}, {"text": "BER:ORC", "url": "https://www.google.com/finance/quote/ber:orc"}, {"text": "NYSE:ORCL", "url": "https://www.google.com/finance/quote/nyse:orcl"}, {"text": "XETR:ORC", "url": "https://www.google.com/finance/quote/orc:xetr"}, {"text": "BMV:ORCL", "url": "https://www.google.com/finance/quote/bmv:orcl"}, {"text": "MUN:ORC", "url": "https://www.google.com/finance/quote/mun:orc"}, {"text": "MEX:ORCL", "url": "https://www.google.com/finance/quote/mex:orcl"}], "crunchbase_description": "Oracle is an integrated cloud application and platform services that sells a range of enterprise information technology solutions.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Chatbot", "field_count": 10}, {"field_name": "Cluster analysis", "field_count": 9}, {"field_name": "Inference", "field_count": 8}, {"field_name": "Language model", "field_count": 5}, {"field_name": "Question answering", "field_count": 4}, {"field_name": "Temporal database", "field_count": 3}, {"field_name": "Parsing", "field_count": 3}, {"field_name": "Machine translation", "field_count": 3}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Discriminative model", "field_count": 2}], "clusters": [{"cluster_id": 82164, "cluster_count": 37}, {"cluster_id": 16633, "cluster_count": 9}, {"cluster_id": 1193, "cluster_count": 7}, {"cluster_id": 58882, "cluster_count": 4}, {"cluster_id": 34017, "cluster_count": 4}, {"cluster_id": 18418, "cluster_count": 3}, {"cluster_id": 1149, "cluster_count": 3}, {"cluster_id": 484, "cluster_count": 3}, {"cluster_id": 76843, "cluster_count": 3}, {"cluster_id": 18274, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 207}, {"ref_CSET_id": 617, "referenced_count": 139}, {"ref_CSET_id": 163, "referenced_count": 118}, {"ref_CSET_id": 429, "referenced_count": 98}, {"ref_CSET_id": 87, "referenced_count": 70}, {"ref_CSET_id": 115, "referenced_count": 50}, {"ref_CSET_id": 23, "referenced_count": 14}, {"ref_CSET_id": 792, "referenced_count": 12}, {"ref_CSET_id": 6, "referenced_count": 11}, {"ref_CSET_id": 787, "referenced_count": 10}], "tasks": [{"referent": "classification", "task_count": 32}, {"referent": "question_answering", "task_count": 15}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 13}, {"referent": "reasoning", "task_count": 11}, {"referent": "natural_language_processing", "task_count": 11}, {"referent": "inference_attack", "task_count": 11}, {"referent": "image_processing", "task_count": 9}, {"referent": "discourse_analysis", "task_count": 8}, {"referent": "srm", "task_count": 8}, {"referent": "decision_making", "task_count": 7}], "methods": [{"referent": "vqa_models", "method_count": 17}, {"referent": "griffin_lim_algorithm", "method_count": 16}, {"referent": "mad_learning", "method_count": 15}, {"referent": "q_learning", "method_count": 14}, {"referent": "causal_inference", "method_count": 11}, {"referent": "recurrent_neural_networks", "method_count": 11}, {"referent": "optimization", "method_count": 11}, {"referent": "3d_representations", "method_count": 9}, {"referent": "clustering", "method_count": 9}, {"referent": "gts", "method_count": 8}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [262, 254, 296, 244, 201, 187, 189, 153, 152, 198, 1], "total": 2137, "isTopResearch": false, "rank": 119, "sp500_rank": 93, "fortune500_rank": 46}, "ai_publications": {"counts": [11, 10, 19, 14, 19, 19, 44, 41, 39, 16, 0], "total": 232, "isTopResearch": false, "rank": 74, "sp500_rank": 59, "fortune500_rank": 22}, "ai_publications_growth": {"counts": [], "total": -23.55686319100953, "isTopResearch": false, "rank": 1358, "sp500_rank": 365, "fortune500_rank": 396}, "ai_pubs_top_conf": {"counts": [1, 2, 2, 2, 3, 4, 6, 8, 5, 0, 0], "total": 33, "isTopResearch": false, "rank": 53, "sp500_rank": 28, "fortune500_rank": 18}, "citation_counts": {"counts": [100, 152, 189, 238, 285, 384, 560, 754, 870, 629, 20], "total": 4181, "isTopResearch": false, "rank": 79, "sp500_rank": 53, "fortune500_rank": 29}, "cv_pubs": {"counts": [1, 0, 1, 3, 2, 3, 1, 6, 7, 3, 0], "total": 27, "isTopResearch": true, "rank": 120, "sp500_rank": 77, "fortune500_rank": 37}, "nlp_pubs": {"counts": [0, 2, 0, 3, 5, 7, 22, 16, 18, 9, 0], "total": 82, "isTopResearch": true, "rank": 29, "sp500_rank": 22, "fortune500_rank": 12}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140, "fortune500_rank": 67}, "citations_per_article": {"counts": [9.090909090909092, 15.2, 9.947368421052632, 17.0, 15.0, 20.210526315789473, 12.727272727272727, 18.390243902439025, 22.307692307692307, 39.3125, 0], "total": 18.021551724137932, "isTopResearch": false, "rank": 346, "sp500_rank": 109, "fortune500_rank": 109}}, "patents": {"ai_patents": {"counts": [11, 18, 26, 31, 64, 84, 143, 92, 50, 0, 0], "total": 519, "table": null, "rank": 58, "sp500_rank": 46, "fortune500_rank": 17}, "ai_patents_growth": {"counts": [], "total": 21.941253191253193, "table": null, "rank": 299, "sp500_rank": 140, "fortune500_rank": 92}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [110, 180, 260, 310, 640, 840, 1430, 920, 500, 0, 0], "total": 5190, "table": null, "rank": 58, "sp500_rank": 46, "fortune500_rank": 17}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [3, 5, 6, 3, 5, 3, 7, 7, 1, 0, 0], "total": 40, "table": "industry", "rank": 28, "sp500_rank": 22, "fortune500_rank": 10}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 3, 9, 5, 7, 9, 3, 0, 0], "total": 37, "table": "industry", "rank": 28, "sp500_rank": 24, "fortune500_rank": 10}, "Transportation": {"counts": [0, 0, 1, 0, 0, 1, 2, 1, 1, 0, 0], "total": 6, "table": null, "rank": 123, "sp500_rank": 89, "fortune500_rank": 37}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0], "total": 4, "table": null, "rank": 116, "sp500_rank": 80, "fortune500_rank": 38}, "Education": {"counts": [0, 0, 0, 0, 2, 1, 0, 1, 0, 0, 0], "total": 4, "table": null, "rank": 39, "sp500_rank": 28, "fortune500_rank": 13}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [5, 7, 21, 21, 46, 60, 103, 70, 34, 0, 0], "total": 367, "table": "industry", "rank": 26, "sp500_rank": 22, "fortune500_rank": 10}, "Banking_and_Finance": {"counts": [0, 1, 0, 0, 1, 1, 9, 4, 1, 0, 0], "total": 17, "table": null, "rank": 53, "sp500_rank": 43, "fortune500_rank": 21}, "Telecommunications": {"counts": [3, 6, 5, 7, 10, 17, 26, 18, 12, 0, 0], "total": 104, "table": "industry", "rank": 39, "sp500_rank": 35, "fortune500_rank": 18}, "Networks__eg_social_IOT_etc": {"counts": [2, 0, 0, 1, 0, 1, 1, 2, 0, 0, 0], "total": 7, "table": null, "rank": 26, "sp500_rank": 19, "fortune500_rank": 14}, "Business": {"counts": [3, 5, 5, 8, 15, 21, 40, 17, 4, 0, 0], "total": 118, "table": "industry", "rank": 26, "sp500_rank": 23, "fortune500_rank": 10}, "Energy_Management": {"counts": [0, 2, 1, 0, 2, 4, 5, 0, 0, 0, 0], "total": 14, "table": null, "rank": 39, "sp500_rank": 36, "fortune500_rank": 7}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 6, 3, 11, 9, 6, 0, 0, 0, 0], "total": 35, "table": "application", "rank": 14, "sp500_rank": 10, "fortune500_rank": 7}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 3, 15, 5, 1, 0, 0], "total": 25, "table": null, "rank": 44, "sp500_rank": 35, "fortune500_rank": 13}, "Knowledge_Representation": {"counts": [0, 2, 7, 6, 17, 18, 20, 14, 3, 0, 0], "total": 87, "table": "application", "rank": 15, "sp500_rank": 13, "fortune500_rank": 7}, "Planning_and_Scheduling": {"counts": [0, 4, 5, 8, 11, 14, 32, 14, 3, 0, 0], "total": 91, "table": "application", "rank": 21, "sp500_rank": 20, "fortune500_rank": 7}, "Control": {"counts": [0, 2, 1, 0, 1, 5, 4, 3, 0, 0, 0], "total": 16, "table": null, "rank": 106, "sp500_rank": 76, "fortune500_rank": 34}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 1, 3, 0, 0, 0], "total": 5, "table": null, "rank": 14, "sp500_rank": 12, "fortune500_rank": 9}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [2, 0, 3, 4, 13, 27, 40, 24, 11, 0, 0], "total": 124, "table": "application", "rank": 59, "sp500_rank": 46, "fortune500_rank": 16}, "Analytics_and_Algorithms": {"counts": [2, 2, 7, 0, 2, 4, 7, 4, 3, 0, 0], "total": 31, "table": "application", "rank": 43, "sp500_rank": 36, "fortune500_rank": 22}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 5, 5, 3, 1, 0, 0], "total": 15, "table": null, "rank": 98, "sp500_rank": 75, "fortune500_rank": 30}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 59732, "rank": 7, "sp500_rank": 5, "fortune500_rank": 6}, "ai_jobs": {"counts": null, "total": 1311, "rank": 32, "sp500_rank": 20, "fortune500_rank": 22}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our mission is to help people see data in new ways, discover insights, unlock endless possibilities.", "company_site_link": "https://www.oracle.com/corporate/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 27, "country": "United States", "website": "http://www.apple.com", "crunchbase": {"text": "2d62fec3-1058-462f-a244-02e3ce3c34a0", "url": "https://www.crunchbase.com/organization/apple-inc"}, "child_crunchbase": [{"text": "10f04cfc-0143-a957-1bde-44f2866adf1e", "url": "https://www.crunchbase.com/organization/drive-ai"}, {"text": "1ac5c6f1-ca85-98df-545c-cbd12152bb08", "url": "https://www.crunchbase.com/organization/xnor-ai"}, {"text": "bad387dc-a7cf-4eab-b153-200e2dd18522", "url": "https://www.crunchbase.com/organization/graphlab"}, {"text": "90759a0c-4031-6af9-94b8-10dc8689ede9", "url": "https://www.crunchbase.com/organization/metaio"}, {"text": "a86da69a-20d1-78cf-09e9-8d960c3d60a3", "url": "https://www.crunchbase.com/organization/flyby-media"}], "linkedin": ["https://www.linkedin.com/company/apple", "https://www.linkedin.com/company/drive.ai", "https://www.linkedin.com/company/xnor-ai", "https://www.linkedin.com/company/turi", "https://www.linkedin.com/company/metaio", "https://www.linkedin.com/company/flyby-media-inc"], "stage": "Mature", "name": "Apple", "patent_name": "apple", "continent": "North America", "local_logo": "apple.png", "aliases": "Apple Inc; Apple, Inc", "permid_links": [{"text": 4295905573, "url": "https://permid.org/1-4295905573"}, {"text": 5056413098, "url": "https://permid.org/1-5056413098"}, {"text": 5053733140, "url": "https://permid.org/1-5053733140"}, {"text": 5039843976, "url": "https://permid.org/1-5039843976"}, {"text": 5046040850, "url": "https://permid.org/1-5046040850"}, {"text": 5000778139, "url": "https://permid.org/1-5000778139"}], "parent_info": null, "agg_child_info": "Drive.ai, Xnor.ai, Turi (formerly Dato), Metaio, Flyby Media Inc. (acquired by Apple)", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:AAPL", "url": "https://www.google.com/finance/quote/aapl:nasdaq"}], "market_full": [{"text": "HAN:APC", "url": "https://www.google.com/finance/quote/apc:han"}, {"text": "NASDAQ:AAPL", "url": "https://www.google.com/finance/quote/aapl:nasdaq"}, {"text": "MOEX:AAPL-RM", "url": "https://www.google.com/finance/quote/aapl-rm:moex"}, {"text": "NEO:AAPL", "url": "https://www.google.com/finance/quote/aapl:neo"}, {"text": "BER:APC", "url": "https://www.google.com/finance/quote/apc:ber"}, {"text": "HAM:APC", "url": "https://www.google.com/finance/quote/apc:ham"}, {"text": "DUS:APC", "url": "https://www.google.com/finance/quote/apc:dus"}, {"text": "BCBA:AAPL", "url": "https://www.google.com/finance/quote/aapl:bcba"}, {"text": "FWB:APC", "url": "https://www.google.com/finance/quote/apc:fwb"}, {"text": "MEX:AAPL", "url": "https://www.google.com/finance/quote/aapl:mex"}, {"text": "XETR:APC", "url": "https://www.google.com/finance/quote/apc:xetr"}, {"text": "MUN:APC", "url": "https://www.google.com/finance/quote/apc:mun"}], "crunchbase_description": "Apple Inc. is a software company", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Question answering", "field_count": 11}, {"field_name": "Artificial neural network", "field_count": 11}, {"field_name": "Language model", "field_count": 11}, {"field_name": "Augmented reality", "field_count": 10}, {"field_name": "Reinforcement learning", "field_count": 9}, {"field_name": "Task (computing)", "field_count": 8}, {"field_name": "Feature (computer vision)", "field_count": 8}, {"field_name": "Machine translation", "field_count": 8}, {"field_name": "Deep learning", "field_count": 8}, {"field_name": "Segmentation", "field_count": 7}], "clusters": [{"cluster_id": 6386, "cluster_count": 14}, {"cluster_id": 1422, "cluster_count": 11}, {"cluster_id": 5507, "cluster_count": 11}, {"cluster_id": 2644, "cluster_count": 7}, {"cluster_id": 11988, "cluster_count": 7}, {"cluster_id": 1193, "cluster_count": 7}, {"cluster_id": 3446, "cluster_count": 7}, {"cluster_id": 3104, "cluster_count": 6}, {"cluster_id": 3527, "cluster_count": 5}, {"cluster_id": 32830, "cluster_count": 5}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1312}, {"ref_CSET_id": 163, "referenced_count": 754}, {"ref_CSET_id": 87, "referenced_count": 402}, {"ref_CSET_id": 27, "referenced_count": 187}, {"ref_CSET_id": 115, "referenced_count": 167}, {"ref_CSET_id": 23, "referenced_count": 160}, {"ref_CSET_id": 184, "referenced_count": 93}, {"ref_CSET_id": 6, "referenced_count": 75}, {"ref_CSET_id": 37, "referenced_count": 64}, {"ref_CSET_id": 127, "referenced_count": 64}], "tasks": [{"referent": "classification", "task_count": 39}, {"referent": "speech_recognition", "task_count": 27}, {"referent": "object_detection", "task_count": 18}, {"referent": "classification_tasks", "task_count": 17}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 17}, {"referent": "image_processing", "task_count": 12}, {"referent": "multi_task_learning", "task_count": 12}, {"referent": "domain_generalization", "task_count": 12}, {"referent": "image_recognition", "task_count": 12}, {"referent": "computer_vision", "task_count": 10}], "methods": [{"referent": "vqa_models", "method_count": 32}, {"referent": "recurrent_neural_networks", "method_count": 32}, {"referent": "3d_representations", "method_count": 27}, {"referent": "double_q_learning", "method_count": 26}, {"referent": "q_learning", "method_count": 24}, {"referent": "convolutional_neural_networks", "method_count": 20}, {"referent": "language_models", "method_count": 14}, {"referent": "neural_architecture_search", "method_count": 12}, {"referent": "1d_cnn", "method_count": 12}, {"referent": "generative_models", "method_count": 12}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [81, 97, 90, 111, 107, 166, 218, 249, 234, 168, 1], "total": 1522, "isTopResearch": false, "rank": 143, "sp500_rank": 111, "fortune500_rank": 54}, "ai_publications": {"counts": [8, 17, 15, 20, 28, 34, 56, 96, 84, 31, 0], "total": 389, "isTopResearch": false, "rank": 48, "sp500_rank": 38, "fortune500_rank": 13}, "ai_publications_growth": {"counts": [], "total": -1.3888888888888882, "isTopResearch": false, "rank": 1213, "sp500_rank": 286, "fortune500_rank": 348}, "ai_pubs_top_conf": {"counts": [2, 2, 1, 6, 8, 12, 28, 22, 26, 14, 0], "total": 121, "isTopResearch": false, "rank": 26, "sp500_rank": 16, "fortune500_rank": 10}, "citation_counts": {"counts": [119, 177, 269, 398, 856, 2346, 4322, 5884, 7459, 4717, 135], "total": 26682, "isTopResearch": false, "rank": 24, "sp500_rank": 16, "fortune500_rank": 12}, "cv_pubs": {"counts": [4, 6, 4, 5, 5, 9, 15, 16, 24, 13, 0], "total": 101, "isTopResearch": true, "rank": 53, "sp500_rank": 38, "fortune500_rank": 13}, "nlp_pubs": {"counts": [0, 2, 2, 5, 9, 9, 23, 33, 28, 9, 0], "total": 120, "isTopResearch": true, "rank": 19, "sp500_rank": 14, "fortune500_rank": 9}, "robotics_pubs": {"counts": [2, 1, 4, 3, 3, 5, 2, 4, 4, 1, 0], "total": 29, "isTopResearch": true, "rank": 66, "sp500_rank": 51, "fortune500_rank": 20}, "citations_per_article": {"counts": [14.875, 10.411764705882353, 17.933333333333334, 19.9, 30.571428571428573, 69.0, 77.17857142857143, 61.291666666666664, 88.79761904761905, 152.16129032258064, 0], "total": 68.59125964010283, "isTopResearch": false, "rank": 60, "sp500_rank": 8, "fortune500_rank": 13}}, "patents": {"ai_patents": {"counts": [20, 18, 25, 40, 73, 110, 114, 65, 13, 0, 0], "total": 478, "table": null, "rank": 60, "sp500_rank": 48, "fortune500_rank": 18}, "ai_patents_growth": {"counts": [], "total": 3.7796130009540243, "table": null, "rank": 353, "sp500_rank": 165, "fortune500_rank": 116}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [200, 180, 250, 400, 730, 1100, 1140, 650, 130, 0, 0], "total": 4780, "table": null, "rank": 60, "sp500_rank": 48, "fortune500_rank": 18}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [2, 3, 2, 2, 7, 2, 7, 2, 2, 0, 0], "total": 29, "table": "industry", "rank": 37, "sp500_rank": 28, "fortune500_rank": 15}, "Security__eg_cybersecurity": {"counts": [1, 0, 0, 2, 12, 9, 5, 4, 1, 0, 0], "total": 34, "table": "industry", "rank": 31, "sp500_rank": 27, "fortune500_rank": 11}, "Transportation": {"counts": [2, 1, 4, 11, 15, 10, 3, 0, 0, 0, 0], "total": 46, "table": "industry", "rank": 47, "sp500_rank": 36, "fortune500_rank": 16}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132, "fortune500_rank": 66}, "Education": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43, "fortune500_rank": 20}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [7, 5, 11, 16, 41, 57, 59, 34, 7, 0, 0], "total": 237, "table": "industry", "rank": 35, "sp500_rank": 29, "fortune500_rank": 13}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 2, 3, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 103, "sp500_rank": 71, "fortune500_rank": 36}, "Telecommunications": {"counts": [3, 6, 8, 6, 14, 24, 23, 15, 4, 0, 0], "total": 103, "table": "industry", "rank": 40, "sp500_rank": 36, "fortune500_rank": 19}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 55, "sp500_rank": 41, "fortune500_rank": 26}, "Business": {"counts": [5, 1, 2, 1, 4, 4, 5, 0, 1, 0, 0], "total": 23, "table": null, "rank": 92, "sp500_rank": 66, "fortune500_rank": 36}, "Energy_Management": {"counts": [0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 97, "sp500_rank": 78, "fortune500_rank": 24}, "Entertainment": {"counts": [0, 1, 0, 3, 1, 1, 1, 0, 0, 0, 0], "total": 7, "table": null, "rank": 21, "sp500_rank": 14, "fortune500_rank": 9}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [2, 0, 4, 4, 3, 8, 5, 0, 0, 0, 0], "total": 26, "table": null, "rank": 20, "sp500_rank": 15, "fortune500_rank": 12}, "Speech_Processing": {"counts": [2, 1, 9, 4, 11, 9, 11, 2, 1, 0, 0], "total": 50, "table": "application", "rank": 19, "sp500_rank": 15, "fortune500_rank": 5}, "Knowledge_Representation": {"counts": [5, 0, 4, 3, 4, 11, 4, 2, 0, 0, 0], "total": 33, "table": "application", "rank": 31, "sp500_rank": 25, "fortune500_rank": 17}, "Planning_and_Scheduling": {"counts": [3, 1, 1, 1, 4, 2, 2, 0, 0, 0, 0], "total": 14, "table": null, "rank": 103, "sp500_rank": 72, "fortune500_rank": 40}, "Control": {"counts": [1, 0, 5, 10, 10, 10, 5, 3, 0, 0, 0], "total": 44, "table": "application", "rank": 58, "sp500_rank": 45, "fortune500_rank": 21}, "Distributed_AI": {"counts": [0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 23, "sp500_rank": 19, "fortune500_rank": 13}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [11, 4, 0, 12, 26, 46, 49, 27, 4, 0, 0], "total": 179, "table": "application", "rank": 48, "sp500_rank": 37, "fortune500_rank": 15}, "Analytics_and_Algorithms": {"counts": [1, 4, 5, 2, 7, 4, 7, 3, 0, 0, 0], "total": 33, "table": null, "rank": 37, "sp500_rank": 32, "fortune500_rank": 18}, "Measuring_and_Testing": {"counts": [3, 4, 5, 6, 14, 7, 4, 4, 1, 0, 0], "total": 48, "table": "application", "rank": 44, "sp500_rank": 34, "fortune500_rank": 15}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 43244, "rank": 8, "sp500_rank": 6, "fortune500_rank": 7}, "ai_jobs": {"counts": null, "total": 3956, "rank": 8, "sp500_rank": 5, "fortune500_rank": 6}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Apple Inc. is an American multinational technology company headquartered in Cupertino, California, that designs, develops, and sells consumer electronics, computer software, and online services. It is considered one of the Big Five companies in the U.S. information technology industry, along with Amazon, Google, Microsoft, and Facebook. Its hardware products include the iPhone smartphone, the iPad tablet computer, the Mac personal computer, the iPod portable media player, the Apple Watch smartwatch, the Apple TV digital media player, the AirPods wireless earbuds, the AirPods Max headphones, and the HomePod smart speaker line. Apple's software includes iOS, iPadOS, macOS, watchOS, and tvOS operating systems, the iTunes media player, the Safari web browser, the Shazam music identifier, and the iLife and iWork creativity and productivity suites, as well as professional applications like Final Cut Pro X, Logic Pro, and Xcode. Its online services include the iTunes Store, the iOS App Store, Mac App Store, Apple Arcade, Apple Music, Apple TV+, Apple Fitness+, iMessage, and iCloud. Other services include Apple Store, Genius Bar, AppleCare, Apple Pay, Apple Pay Cash, and Apple Card.", "wikipedia_link": "https://en.wikipedia.org/wiki/Apple_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 383, "country": "United States", "website": "http://www.cisco.com", "crunchbase": {"text": "e0906c05-fae5-9591-ba5f-2142d8b0065a", "url": "https://www.crunchbase.com/organization/cisco"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cisco"], "stage": "Mature", "name": "Cisco Systems Inc", "patent_name": "cisco systems inc", "continent": "North America", "local_logo": "cisco_systems_inc.png", "aliases": "Cisco; Cisco Systems; Cisco Systems Inc; Cisco Systems, Inc", "permid_links": [{"text": 4295905952, "url": "https://permid.org/1-4295905952"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CSCO", "url": "https://www.google.com/finance/quote/csco:nasdaq"}, {"text": "HKG:4333", "url": "https://www.google.com/finance/quote/4333:hkg"}], "market_full": [{"text": "NASDAQ:CSCO", "url": "https://www.google.com/finance/quote/csco:nasdaq"}, {"text": "BRU:CSCO", "url": "https://www.google.com/finance/quote/bru:csco"}, {"text": "FRA:CSCO", "url": "https://www.google.com/finance/quote/csco:fra"}, {"text": "MEX:CSCO", "url": "https://www.google.com/finance/quote/csco:mex"}, {"text": "MOEX:CSCO-RM", "url": "https://www.google.com/finance/quote/csco-rm:moex"}, {"text": "VIE:CSCO", "url": "https://www.google.com/finance/quote/csco:vie"}, {"text": "XETR:CIS", "url": "https://www.google.com/finance/quote/cis:xetr"}, {"text": "HKG:4333", "url": "https://www.google.com/finance/quote/4333:hkg"}, {"text": "BMV:CSCO", "url": "https://www.google.com/finance/quote/bmv:csco"}, {"text": "SAO:CSCO", "url": "https://www.google.com/finance/quote/csco:sao"}], "crunchbase_description": "Cisco develops, manufactures, and sells networking hardware, telecommunications equipment, and other technology services and products.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 10}, {"field_name": "Anomaly detection", "field_count": 9}, {"field_name": "Feature (computer vision)", "field_count": 7}, {"field_name": "Cluster analysis", "field_count": 6}, {"field_name": "Artificial neural network", "field_count": 6}, {"field_name": "Salience (neuroscience)", "field_count": 5}, {"field_name": "Bayesian network", "field_count": 3}, {"field_name": "Feature extraction", "field_count": 3}, {"field_name": "Convolutional neural network", "field_count": 3}, {"field_name": "Object (computer science)", "field_count": 2}], "clusters": [{"cluster_id": 65, "cluster_count": 5}, {"cluster_id": 3886, "cluster_count": 4}, {"cluster_id": 61426, "cluster_count": 4}, {"cluster_id": 8457, "cluster_count": 4}, {"cluster_id": 27850, "cluster_count": 4}, {"cluster_id": 1436, "cluster_count": 3}, {"cluster_id": 2894, "cluster_count": 3}, {"cluster_id": 27185, "cluster_count": 3}, {"cluster_id": 48952, "cluster_count": 3}, {"cluster_id": 2858, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 173}, {"ref_CSET_id": 163, "referenced_count": 99}, {"ref_CSET_id": 383, "referenced_count": 70}, {"ref_CSET_id": 87, "referenced_count": 63}, {"ref_CSET_id": 115, "referenced_count": 28}, {"ref_CSET_id": 112, "referenced_count": 20}, {"ref_CSET_id": 223, "referenced_count": 13}, {"ref_CSET_id": 245, "referenced_count": 12}, {"ref_CSET_id": 23, "referenced_count": 12}, {"ref_CSET_id": 1797, "referenced_count": 11}], "tasks": [{"referent": "classification", "task_count": 45}, {"referent": "community_detection", "task_count": 10}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 8}, {"referent": "malware_classification", "task_count": 8}, {"referent": "network_traffic_classification", "task_count": 8}, {"referent": "object_detection", "task_count": 7}, {"referent": "computer_vision", "task_count": 7}, {"referent": "image_analysis", "task_count": 7}, {"referent": "image_processing", "task_count": 7}, {"referent": "portfolio_optimization", "task_count": 6}], "methods": [{"referent": "auto_classifier", "method_count": 16}, {"referent": "double_q_learning", "method_count": 14}, {"referent": "recurrent_neural_networks", "method_count": 14}, {"referent": "mad_learning", "method_count": 13}, {"referent": "symbolic_deep_learning", "method_count": 13}, {"referent": "hit_detector", "method_count": 11}, {"referent": "meta_learning_algorithms", "method_count": 10}, {"referent": "vqa_models", "method_count": 10}, {"referent": "3d_representations", "method_count": 9}, {"referent": "q_learning", "method_count": 9}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [390, 386, 344, 360, 308, 253, 283, 216, 209, 165, 2], "total": 2916, "isTopResearch": false, "rank": 96, "sp500_rank": 77, "fortune500_rank": 38}, "ai_publications": {"counts": [12, 21, 27, 26, 21, 25, 31, 26, 27, 17, 0], "total": 233, "isTopResearch": false, "rank": 73, "sp500_rank": 58, "fortune500_rank": 21}, "ai_publications_growth": {"counts": [], "total": -16.439971816315904, "isTopResearch": false, "rank": 1298, "sp500_rank": 338, "fortune500_rank": 377}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 4, 1, 2, 6, 0, 0, 2, 0], "total": 16, "isTopResearch": false, "rank": 91, "sp500_rank": 48, "fortune500_rank": 31}, "citation_counts": {"counts": [83, 112, 181, 263, 343, 566, 877, 1044, 1317, 1079, 36], "total": 5901, "isTopResearch": false, "rank": 68, "sp500_rank": 46, "fortune500_rank": 25}, "cv_pubs": {"counts": [1, 6, 2, 5, 2, 9, 6, 3, 6, 5, 0], "total": 45, "isTopResearch": true, "rank": 91, "sp500_rank": 62, "fortune500_rank": 25}, "nlp_pubs": {"counts": [4, 0, 2, 0, 1, 1, 4, 1, 4, 1, 0], "total": 18, "isTopResearch": true, "rank": 68, "sp500_rank": 48, "fortune500_rank": 22}, "robotics_pubs": {"counts": [0, 2, 2, 0, 2, 0, 2, 0, 1, 0, 0], "total": 9, "isTopResearch": true, "rank": 124, "sp500_rank": 89, "fortune500_rank": 36}, "citations_per_article": {"counts": [6.916666666666667, 5.333333333333333, 6.703703703703703, 10.115384615384615, 16.333333333333332, 22.64, 28.29032258064516, 40.15384615384615, 48.77777777777778, 63.470588235294116, 0], "total": 25.326180257510728, "isTopResearch": false, "rank": 235, "sp500_rank": 67, "fortune500_rank": 72}}, "patents": {"ai_patents": {"counts": [31, 33, 38, 75, 95, 129, 126, 65, 15, 0, 0], "total": 607, "table": null, "rank": 48, "sp500_rank": 39, "fortune500_rank": 16}, "ai_patents_growth": {"counts": [], "total": -4.982935374612239, "table": null, "rank": 1433, "sp500_rank": 419, "fortune500_rank": 410}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [310, 330, 380, 750, 950, 1290, 1260, 650, 150, 0, 0], "total": 6070, "table": null, "rank": 48, "sp500_rank": 39, "fortune500_rank": 16}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 158, "sp500_rank": 91, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 3, 4, 8, 12, 9, 7, 4, 1, 0, 0], "total": 48, "table": "industry", "rank": 24, "sp500_rank": 20, "fortune500_rank": 8}, "Transportation": {"counts": [0, 0, 0, 0, 1, 5, 1, 0, 0, 0, 0], "total": 7, "table": null, "rank": 112, "sp500_rank": 83, "fortune500_rank": 32}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [7, 9, 14, 23, 33, 47, 37, 21, 6, 0, 0], "total": 197, "table": "industry", "rank": 43, "sp500_rank": 33, "fortune500_rank": 18}, "Banking_and_Finance": {"counts": [0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 141, "sp500_rank": 91, "fortune500_rank": 50}, "Telecommunications": {"counts": [25, 29, 31, 63, 79, 115, 101, 49, 11, 0, 0], "total": 503, "table": "industry", "rank": 6, "sp500_rank": 6, "fortune500_rank": 3}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 1, 2, 2, 0, 0], "total": 6, "table": null, "rank": 31, "sp500_rank": 22, "fortune500_rank": 16}, "Business": {"counts": [1, 3, 0, 3, 1, 4, 8, 2, 1, 0, 0], "total": 23, "table": "industry", "rank": 92, "sp500_rank": 66, "fortune500_rank": 36}, "Energy_Management": {"counts": [2, 1, 0, 0, 0, 2, 1, 2, 0, 0, 0], "total": 8, "table": "industry", "rank": 55, "sp500_rank": 52, "fortune500_rank": 11}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [1, 0, 3, 0, 3, 2, 2, 0, 0, 0, 0], "total": 11, "table": null, "rank": 37, "sp500_rank": 26, "fortune500_rank": 21}, "Speech_Processing": {"counts": [1, 0, 0, 0, 2, 10, 5, 0, 0, 0, 0], "total": 18, "table": "application", "rank": 56, "sp500_rank": 42, "fortune500_rank": 17}, "Knowledge_Representation": {"counts": [2, 6, 4, 3, 9, 12, 7, 9, 0, 0, 0], "total": 52, "table": "application", "rank": 24, "sp500_rank": 19, "fortune500_rank": 12}, "Planning_and_Scheduling": {"counts": [1, 2, 0, 2, 1, 2, 4, 2, 0, 0, 0], "total": 14, "table": null, "rank": 103, "sp500_rank": 72, "fortune500_rank": 40}, "Control": {"counts": [0, 1, 1, 1, 3, 4, 5, 1, 0, 0, 0], "total": 16, "table": "application", "rank": 106, "sp500_rank": 76, "fortune500_rank": 34}, "Distributed_AI": {"counts": [0, 0, 1, 3, 0, 1, 3, 4, 0, 0, 0], "total": 12, "table": null, "rank": 4, "sp500_rank": 4, "fortune500_rank": 4}, "Robotics": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14, "fortune500_rank": 8}, "Computer_Vision": {"counts": [0, 0, 2, 3, 2, 19, 20, 12, 1, 0, 0], "total": 59, "table": "application", "rank": 103, "sp500_rank": 69, "fortune500_rank": 31}, "Analytics_and_Algorithms": {"counts": [16, 19, 16, 23, 33, 59, 54, 29, 7, 0, 0], "total": 256, "table": "application", "rank": 4, "sp500_rank": 4, "fortune500_rank": 2}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 0, 3, 3, 2, 0, 0, 0], "total": 9, "table": null, "rank": 128, "sp500_rank": 100, "fortune500_rank": 40}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 40331, "rank": 9, "sp500_rank": 7, "fortune500_rank": 8}, "ai_jobs": {"counts": null, "total": 1098, "rank": 38, "sp500_rank": 25, "fortune500_rank": 25}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Cisco Systems, Inc. is an American multinational technology conglomerate headquartered in San Jose, California, in the center of Silicon Valley. Cisco develops, manufactures and sells networking hardware, software, telecommunications equipment and other high-technology services and products.", "wikipedia_link": "https://en.wikipedia.org/wiki/Cisco_Systems", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 804, "country": "United Kingdom", "website": "https://www2.deloitte.com/uk/en.html", "crunchbase": {"text": "8c048fd6-de2d-4cc4-6a09-18d7a38cbc30", "url": "https://www.crunchbase.com/organization/deloitte"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/deloitte"], "stage": "Unknown", "name": "Deloitte Touche Tohmatsu Ltd/United Kingdom", "patent_name": "deloitte touche tohmatsu ltd/united kingdom", "continent": "Europe", "local_logo": "deloitte_touche_tohmatsu_ltd_united_kingdom.png", "aliases": "Deloitte; Deloitte Touche Tohmatsu Limited; Deloitte Touche Tohmatsu Ltd; Dttl", "permid_links": [{"text": 5001041930, "url": "https://permid.org/1-5001041930"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Deloitte provides audit, consulting, financial advisory, risk management, tax, and other related services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 3}, {"field_name": "Sentiment analysis", "field_count": 3}, {"field_name": "Knowledge representation and reasoning", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Hidden Markov model", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Feature vector", "field_count": 1}, {"field_name": "Hyperspectral imaging", "field_count": 1}, {"field_name": "Bayesian network", "field_count": 1}, {"field_name": "F1 score", "field_count": 1}], "clusters": [{"cluster_id": 52771, "cluster_count": 4}, {"cluster_id": 2190, "cluster_count": 2}, {"cluster_id": 12712, "cluster_count": 2}, {"cluster_id": 5273, "cluster_count": 2}, {"cluster_id": 2259, "cluster_count": 2}, {"cluster_id": 694, "cluster_count": 1}, {"cluster_id": 2644, "cluster_count": 1}, {"cluster_id": 38981, "cluster_count": 1}, {"cluster_id": 4184, "cluster_count": 1}, {"cluster_id": 76157, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 49}, {"ref_CSET_id": 163, "referenced_count": 20}, {"ref_CSET_id": 87, "referenced_count": 13}, {"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 4}, {"ref_CSET_id": 23, "referenced_count": 3}, {"ref_CSET_id": 1126, "referenced_count": 3}, {"ref_CSET_id": 792, "referenced_count": 3}, {"ref_CSET_id": 804, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "image_processing", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "natural_language_processing", "task_count": 3}, {"referent": "clustering", "task_count": 3}, {"referent": "sentiment_detection", "task_count": 3}, {"referent": "interpretable_machine_learning", "task_count": 2}, {"referent": "classification_tasks", "task_count": 2}, {"referent": "point_processes", "task_count": 2}, {"referent": "action_understanding", "task_count": 2}], "methods": [{"referent": "vqa_models", "method_count": 6}, {"referent": "clustering", "method_count": 5}, {"referent": "meta_learning_algorithms", "method_count": 5}, {"referent": "3d_representations", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "mad_learning", "method_count": 4}, {"referent": "1d_cnn", "method_count": 4}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "feature_extractors", "method_count": 3}, {"referent": "optimization", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [89, 125, 111, 143, 119, 174, 171, 175, 209, 138, 1], "total": 1455, "isTopResearch": false, "rank": 147}, "ai_publications": {"counts": [2, 1, 5, 5, 3, 9, 6, 12, 11, 5, 0], "total": 59, "isTopResearch": false, "rank": 163}, "ai_publications_growth": {"counts": [], "total": 12.373737373737375, "isTopResearch": false, "rank": 144}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [8, 16, 15, 18, 30, 54, 68, 84, 125, 119, 8], "total": 545, "isTopResearch": false, "rank": 263}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 2, 1, 2, 1, 2, 0], "total": 9, "isTopResearch": true, "rank": 217}, "nlp_pubs": {"counts": [0, 0, 1, 1, 1, 1, 2, 2, 1, 1, 0], "total": 10, "isTopResearch": true, "rank": 92}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 214}, "citations_per_article": {"counts": [4.0, 16.0, 3.0, 3.6, 10.0, 6.0, 11.333333333333334, 7.0, 11.363636363636363, 23.8, 0], "total": 9.23728813559322, "isTopResearch": false, "rank": 569}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 78}, "Business": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 37529, "rank": 10}, "ai_jobs": {"counts": null, "total": 6160, "rank": 5}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Deloitte Touche Tohmatsu Limited /d\u0259\u02c8l\u0254\u026at \u02c8tu\u02d0\u0283 to\u028a\u02c8m\u0251\u02d0tsu\u02d0/, commonly referred to as Deloitte, is an Anglo-American multinational professional services network. Deloitte is one of the Big Four accounting organizations and the largest professional services network in the world by revenue and number of professionals, with headquarters in London, England.", "wikipedia_link": "https://en.wikipedia.org/wiki/Deloitte", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 805, "country": "United States", "website": "https://www.att.com/", "crunchbase": {"text": "8b69af97-cb83-b6f0-789b-45f6f4211171", "url": "https://www.crunchbase.com/organization/at-t"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/att"], "stage": "Mature", "name": "AT&T Inc", "patent_name": "at&t inc", "continent": "North America", "local_logo": "at&t_inc.png", "aliases": "AT&T; At&T Inc", "permid_links": [{"text": 4295904853, "url": "https://permid.org/1-4295904853"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:T", "url": "https://www.google.com/finance/quote/nyse:t"}], "market_full": [{"text": "DUS:SOBA", "url": "https://www.google.com/finance/quote/dus:soba"}, {"text": "GER:SOBX.A", "url": "https://www.google.com/finance/quote/ger:sobx.a"}, {"text": "MEX:T*", "url": "https://www.google.com/finance/quote/mex:t*"}, {"text": "STU:SOBA", "url": "https://www.google.com/finance/quote/soba:stu"}, {"text": "BRN:SOBA", "url": "https://www.google.com/finance/quote/brn:soba"}, {"text": "NYQ:T", "url": "https://www.google.com/finance/quote/nyq:t"}, {"text": "LSE:0QZ1", "url": "https://www.google.com/finance/quote/0qz1:lse"}, {"text": "SWX:T", "url": "https://www.google.com/finance/quote/swx:t"}, {"text": "SGO:T", "url": "https://www.google.com/finance/quote/sgo:t"}, {"text": "XETR:SOBA", "url": "https://www.google.com/finance/quote/soba:xetr"}, {"text": "ASE:T", "url": "https://www.google.com/finance/quote/ase:t"}, {"text": "BER:SOBA", "url": "https://www.google.com/finance/quote/ber:soba"}, {"text": "HAN:SOBA", "url": "https://www.google.com/finance/quote/han:soba"}, {"text": "VIE:ATT", "url": "https://www.google.com/finance/quote/att:vie"}, {"text": "MUN:SOBA", "url": "https://www.google.com/finance/quote/mun:soba"}, {"text": "BUE:T3", "url": "https://www.google.com/finance/quote/bue:t3"}, {"text": "HAM:SOBA", "url": "https://www.google.com/finance/quote/ham:soba"}, {"text": "SAO:ATTB34", "url": "https://www.google.com/finance/quote/attb34:sao"}, {"text": "FRA:SOBA", "url": "https://www.google.com/finance/quote/fra:soba"}, {"text": "DEU:T", "url": "https://www.google.com/finance/quote/deu:t"}, {"text": "NYSE:T", "url": "https://www.google.com/finance/quote/nyse:t"}, {"text": "MCX:T-RM", "url": "https://www.google.com/finance/quote/mcx:t-rm"}], "crunchbase_description": "AT&T is a telecommunications company that provides wireless communications, local exchange, and long-distance services.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Cluster analysis", "field_count": 8}, {"field_name": "Artificial neural network", "field_count": 6}, {"field_name": "Augmented reality", "field_count": 6}, {"field_name": "Voice search", "field_count": 5}, {"field_name": "Deep learning", "field_count": 4}, {"field_name": "Language model", "field_count": 4}, {"field_name": "Differential privacy", "field_count": 3}, {"field_name": "Search engine indexing", "field_count": 3}, {"field_name": "Intelligibility (communication)", "field_count": 3}, {"field_name": "Machine translation", "field_count": 3}], "clusters": [{"cluster_id": 45151, "cluster_count": 10}, {"cluster_id": 23094, "cluster_count": 9}, {"cluster_id": 26274, "cluster_count": 7}, {"cluster_id": 34838, "cluster_count": 6}, {"cluster_id": 67425, "cluster_count": 6}, {"cluster_id": 981, "cluster_count": 4}, {"cluster_id": 3104, "cluster_count": 4}, {"cluster_id": 33, "cluster_count": 4}, {"cluster_id": 2644, "cluster_count": 4}, {"cluster_id": 5364, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 123}, {"ref_CSET_id": 805, "referenced_count": 90}, {"ref_CSET_id": 163, "referenced_count": 87}, {"ref_CSET_id": 115, "referenced_count": 50}, {"ref_CSET_id": 87, "referenced_count": 23}, {"ref_CSET_id": 792, "referenced_count": 21}, {"ref_CSET_id": 949, "referenced_count": 19}, {"ref_CSET_id": 127, "referenced_count": 10}, {"ref_CSET_id": 6, "referenced_count": 9}, {"ref_CSET_id": 787, "referenced_count": 5}], "tasks": [{"referent": "classification", "task_count": 32}, {"referent": "speech_recognition", "task_count": 17}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 10}, {"referent": "image_recognition", "task_count": 9}, {"referent": "classification_tasks", "task_count": 7}, {"referent": "image_analysis", "task_count": 7}, {"referent": "clustering", "task_count": 6}, {"referent": "data_mining", "task_count": 6}, {"referent": "code_search", "task_count": 6}, {"referent": "computer_vision", "task_count": 5}], "methods": [{"referent": "double_q_learning", "method_count": 16}, {"referent": "3d_representations", "method_count": 15}, {"referent": "language_models", "method_count": 13}, {"referent": "recurrent_neural_networks", "method_count": 12}, {"referent": "vqa_models", "method_count": 11}, {"referent": "clustering", "method_count": 10}, {"referent": "mad_learning", "method_count": 10}, {"referent": "meta_learning_algorithms", "method_count": 10}, {"referent": "gru", "method_count": 9}, {"referent": "auto_classifier", "method_count": 9}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [267, 209, 147, 207, 173, 186, 84, 66, 41, 31, 1], "total": 1412, "isTopResearch": false, "rank": 151, "sp500_rank": 117, "fortune500_rank": 55}, "ai_publications": {"counts": [29, 25, 15, 12, 10, 22, 10, 14, 10, 4, 0], "total": 151, "isTopResearch": false, "rank": 94, "sp500_rank": 72, "fortune500_rank": 28}, "ai_publications_growth": {"counts": [], "total": -16.19047619047619, "isTopResearch": false, "rank": 1295, "sp500_rank": 335, "fortune500_rank": 375}, "ai_pubs_top_conf": {"counts": [3, 2, 2, 2, 3, 2, 3, 2, 1, 0, 0], "total": 20, "isTopResearch": false, "rank": 81, "sp500_rank": 43, "fortune500_rank": 26}, "citation_counts": {"counts": [401, 568, 949, 1548, 2557, 4352, 6380, 7516, 7589, 3708, 192], "total": 35760, "isTopResearch": false, "rank": 20, "sp500_rank": 14, "fortune500_rank": 10}, "cv_pubs": {"counts": [5, 3, 3, 3, 3, 3, 1, 3, 3, 1, 0], "total": 28, "isTopResearch": true, "rank": 118, "sp500_rank": 76, "fortune500_rank": 35}, "nlp_pubs": {"counts": [10, 10, 3, 1, 1, 1, 1, 1, 0, 0, 0], "total": 28, "isTopResearch": true, "rank": 58, "sp500_rank": 42, "fortune500_rank": 20}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [13.827586206896552, 22.72, 63.266666666666666, 129.0, 255.7, 197.8181818181818, 638.0, 536.8571428571429, 758.9, 927.0, 0], "total": 236.82119205298014, "isTopResearch": false, "rank": 9, "sp500_rank": 1, "fortune500_rank": 2}}, "patents": {"ai_patents": {"counts": [8, 4, 9, 12, 40, 61, 74, 74, 36, 0, 0], "total": 318, "table": null, "rank": 73, "sp500_rank": 57, "fortune500_rank": 23}, "ai_patents_growth": {"counts": [], "total": 24.60382513661202, "table": null, "rank": 294, "sp500_rank": 137, "fortune500_rank": 90}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [80, 40, 90, 120, 400, 610, 740, 740, 360, 0, 0], "total": 3180, "table": null, "rank": 73, "sp500_rank": 57, "fortune500_rank": 23}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [3, 0, 0, 0, 2, 0, 1, 2, 2, 0, 0], "total": 10, "table": null, "rank": 85, "sp500_rank": 57, "fortune500_rank": 34}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 0, 1, 3, 3, 5, 3, 0, 0], "total": 16, "table": "industry", "rank": 69, "sp500_rank": 52, "fortune500_rank": 31}, "Transportation": {"counts": [1, 0, 1, 1, 7, 1, 4, 6, 0, 0, 0], "total": 21, "table": "industry", "rank": 69, "sp500_rank": 54, "fortune500_rank": 20}, "Industrial_and_Manufacturing": {"counts": [2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 131, "sp500_rank": 89, "fortune500_rank": 46}, "Education": {"counts": [0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0], "total": 4, "table": null, "rank": 39, "sp500_rank": 28, "fortune500_rank": 13}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [7, 3, 3, 4, 17, 34, 21, 22, 10, 0, 0], "total": 121, "table": "industry", "rank": 65, "sp500_rank": 47, "fortune500_rank": 28}, "Banking_and_Finance": {"counts": [0, 0, 1, 0, 5, 0, 3, 4, 1, 0, 0], "total": 14, "table": null, "rank": 60, "sp500_rank": 49, "fortune500_rank": 23}, "Telecommunications": {"counts": [5, 2, 5, 7, 27, 49, 49, 42, 19, 0, 0], "total": 205, "table": "industry", "rank": 21, "sp500_rank": 18, "fortune500_rank": 9}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 0, 1, 4, 2, 0, 0], "total": 8, "table": null, "rank": 21, "sp500_rank": 15, "fortune500_rank": 11}, "Business": {"counts": [1, 1, 4, 1, 6, 8, 13, 21, 6, 0, 0], "total": 61, "table": "industry", "rank": 43, "sp500_rank": 34, "fortune500_rank": 19}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 2, 1, 1, 3, 0, 0, 0], "total": 7, "table": null, "rank": 21, "sp500_rank": 14, "fortune500_rank": 9}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 10, "sp500_rank": 9, "fortune500_rank": 5}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 1, 1, 0, 1, 2, 2, 0, 0, 0, 0], "total": 7, "table": null, "rank": 45, "sp500_rank": 34, "fortune500_rank": 25}, "Speech_Processing": {"counts": [0, 1, 2, 0, 1, 3, 2, 3, 1, 0, 0], "total": 13, "table": null, "rank": 73, "sp500_rank": 52, "fortune500_rank": 21}, "Knowledge_Representation": {"counts": [2, 0, 1, 0, 3, 6, 2, 1, 1, 0, 0], "total": 16, "table": "application", "rank": 61, "sp500_rank": 44, "fortune500_rank": 35}, "Planning_and_Scheduling": {"counts": [0, 1, 1, 1, 2, 6, 7, 6, 3, 0, 0], "total": 27, "table": "application", "rank": 64, "sp500_rank": 51, "fortune500_rank": 24}, "Control": {"counts": [0, 0, 1, 1, 7, 1, 5, 4, 1, 0, 0], "total": 20, "table": "application", "rank": 92, "sp500_rank": 65, "fortune500_rank": 30}, "Distributed_AI": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 23, "sp500_rank": 19, "fortune500_rank": 13}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 2, 1, 7, 16, 17, 16, 4, 0, 0], "total": 64, "table": "application", "rank": 95, "sp500_rank": 64, "fortune500_rank": 28}, "Analytics_and_Algorithms": {"counts": [1, 0, 1, 1, 12, 15, 22, 9, 8, 0, 0], "total": 69, "table": "application", "rank": 21, "sp500_rank": 19, "fortune500_rank": 8}, "Measuring_and_Testing": {"counts": [1, 0, 0, 0, 0, 1, 1, 7, 0, 0, 0], "total": 10, "table": null, "rank": 121, "sp500_rank": 94, "fortune500_rank": 37}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 35745, "rank": 11, "sp500_rank": 8, "fortune500_rank": 9}, "ai_jobs": {"counts": null, "total": 1496, "rank": 26, "sp500_rank": 17, "fortune500_rank": 19}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "AT&T Inc. is an American multinational conglomerate holding company, Delaware-registered but headquartered at Whitacre Tower in Downtown Dallas, Texas. It is the world's largest telecommunications company, the largest provider of mobile telephone services, and the largest provider of fixed telephone services in the United States through AT&T Communications.[citation needed] Since June 14, 2018, it is also the parent company of mass media conglomerate WarnerMedia, making it the world's largest media and entertainment company in terms of revenue. As of 2020, AT&T was ranked 9 on the Fortune 500 rankings of the largest United States corporations, with revenues of $181 billion.", "wikipedia_link": "https://en.wikipedia.org/wiki/AT%26T", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 127, "country": "United States", "website": "http://www.intel.com/", "crunchbase": {"text": "1e4f199c-363b-451b-a164-f94571075ee5", "url": "https://www.crunchbase.com/organization/intel"}, "child_crunchbase": [{"text": "5a233399-aeb1-d554-9766-4fcbd7da566a", "url": "https://www.crunchbase.com/organization/sigopt"}, {"text": "d7bda434-ab7a-49df-bb7d-71f15865de5b", "url": "https://www.crunchbase.com/organization/habana"}, {"text": "83c98395-5f1e-77a7-8013-9f260f016359", "url": "https://www.crunchbase.com/organization/intel-labs"}], "linkedin": ["https://www.linkedin.com/company/intel-corporation", "https://www.linkedin.com/company/sigopt", "https://www.linkedin.com/company/habana-ai", "https://www.linkedin.com/company/intel-labs"], "stage": "Mature", "name": "Intel", "patent_name": "intel", "continent": "North America", "local_logo": "intel.png", "aliases": "Integrated And Electronics; Intel Corp; Intel Corporation; N M Electronics", "permid_links": [{"text": 4295906830, "url": "https://permid.org/1-4295906830"}, {"text": 5046059407, "url": "https://permid.org/1-5046059407"}, {"text": 5067501686, "url": "https://permid.org/1-5067501686"}, {"text": 5074885380, "url": "https://permid.org/1-5074885380"}, {"text": 5045049260, "url": "https://permid.org/1-5045049260"}], "parent_info": null, "agg_child_info": "Sigopt, Habana Labs, Intel Labs, Intel Federal LLC", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:INTC", "url": "https://www.google.com/finance/quote/intc:nasdaq"}], "market_full": [{"text": "NASDAQ:INTC", "url": "https://www.google.com/finance/quote/intc:nasdaq"}, {"text": "MOEX:INTC-RM", "url": "https://www.google.com/finance/quote/intc-rm:moex"}], "crunchbase_description": "Intel designs, manufactures, and sells integrated digital technology platforms worldwide.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 92}, {"field_name": "Convolutional neural network", "field_count": 68}, {"field_name": "Artificial neural network", "field_count": 58}, {"field_name": "Reinforcement learning", "field_count": 39}, {"field_name": "Robot", "field_count": 31}, {"field_name": "Segmentation", "field_count": 30}, {"field_name": "Feature (computer vision)", "field_count": 30}, {"field_name": "Object (computer science)", "field_count": 27}, {"field_name": "Robustness (computer science)", "field_count": 22}, {"field_name": "Pose", "field_count": 22}], "clusters": [{"cluster_id": 1621, "cluster_count": 96}, {"cluster_id": 1149, "cluster_count": 35}, {"cluster_id": 3446, "cluster_count": 28}, {"cluster_id": 4816, "cluster_count": 28}, {"cluster_id": 1989, "cluster_count": 25}, {"cluster_id": 5070, "cluster_count": 22}, {"cluster_id": 214, "cluster_count": 22}, {"cluster_id": 1609, "cluster_count": 22}, {"cluster_id": 3886, "cluster_count": 18}, {"cluster_id": 2381, "cluster_count": 17}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3109}, {"ref_CSET_id": 163, "referenced_count": 1938}, {"ref_CSET_id": 127, "referenced_count": 1723}, {"ref_CSET_id": 87, "referenced_count": 1114}, {"ref_CSET_id": 184, "referenced_count": 543}, {"ref_CSET_id": 115, "referenced_count": 420}, {"ref_CSET_id": 6, "referenced_count": 379}, {"ref_CSET_id": 23, "referenced_count": 184}, {"ref_CSET_id": 37, "referenced_count": 160}, {"ref_CSET_id": 223, "referenced_count": 149}], "tasks": [{"referent": "classification", "task_count": 241}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 122}, {"referent": "computer_vision", "task_count": 109}, {"referent": "object_detection", "task_count": 95}, {"referent": "image_processing", "task_count": 90}, {"referent": "inference_attack", "task_count": 82}, {"referent": "autonomous_driving", "task_count": 74}, {"referent": "classification_tasks", "task_count": 67}, {"referent": "robots", "task_count": 67}, {"referent": "image_recognition", "task_count": 66}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 283}, {"referent": "convolutional_neural_networks", "method_count": 186}, {"referent": "vqa_models", "method_count": 150}, {"referent": "1d_cnn", "method_count": 116}, {"referent": "3d_representations", "method_count": 108}, {"referent": "optimization", "method_count": 107}, {"referent": "symbolic_deep_learning", "method_count": 105}, {"referent": "q_learning", "method_count": 102}, {"referent": "mad_learning", "method_count": 101}, {"referent": "ggs_nns", "method_count": 94}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1712, 1769, 2201, 2174, 2084, 2063, 1943, 1766, 1668, 1297, 7], "total": 18684, "isTopResearch": false, "rank": 20, "sp500_rank": 18, "fortune500_rank": 7}, "ai_publications": {"counts": [88, 104, 100, 147, 200, 264, 359, 327, 285, 114, 0], "total": 1988, "isTopResearch": false, "rank": 12, "sp500_rank": 10, "fortune500_rank": 6}, "ai_publications_growth": {"counts": [], "total": -27.252561907439116, "isTopResearch": false, "rank": 1377, "sp500_rank": 374, "fortune500_rank": 398}, "ai_pubs_top_conf": {"counts": [6, 6, 10, 20, 35, 46, 67, 51, 52, 20, 0], "total": 313, "isTopResearch": false, "rank": 16, "sp500_rank": 11, "fortune500_rank": 8}, "citation_counts": {"counts": [1663, 2403, 3070, 3397, 4642, 7087, 11622, 15864, 18859, 12199, 394], "total": 81200, "isTopResearch": false, "rank": 6, "sp500_rank": 4, "fortune500_rank": 5}, "cv_pubs": {"counts": [38, 46, 49, 63, 94, 99, 138, 110, 91, 40, 0], "total": 768, "isTopResearch": true, "rank": 13, "sp500_rank": 10, "fortune500_rank": 5}, "nlp_pubs": {"counts": [0, 2, 6, 8, 4, 11, 24, 22, 23, 4, 0], "total": 104, "isTopResearch": true, "rank": 21, "sp500_rank": 15, "fortune500_rank": 11}, "robotics_pubs": {"counts": [6, 13, 10, 8, 14, 23, 42, 24, 32, 18, 0], "total": 190, "isTopResearch": true, "rank": 11, "sp500_rank": 9, "fortune500_rank": 3}, "citations_per_article": {"counts": [18.897727272727273, 23.10576923076923, 30.7, 23.108843537414966, 23.21, 26.84469696969697, 32.373259052924794, 48.51376146788991, 66.1719298245614, 107.00877192982456, 0], "total": 40.84507042253521, "isTopResearch": false, "rank": 128, "sp500_rank": 29, "fortune500_rank": 35}}, "patents": {"ai_patents": {"counts": [29, 42, 74, 170, 318, 298, 299, 313, 169, 35, 0], "total": 1747, "table": null, "rank": 12, "sp500_rank": 10, "fortune500_rank": 3}, "ai_patents_growth": {"counts": [], "total": -0.4238211529367775, "table": null, "rank": 1426, "sp500_rank": 415, "fortune500_rank": 405}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [290, 420, 740, 1700, 3180, 2980, 2990, 3130, 1690, 350, 0], "total": 17470, "table": null, "rank": 12, "sp500_rank": 10, "fortune500_rank": 3}, "Physical_Sciences_and_Engineering": {"counts": [1, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0], "total": 6, "table": null, "rank": 68, "sp500_rank": 56, "fortune500_rank": 23}, "Life_Sciences": {"counts": [4, 3, 3, 7, 8, 8, 4, 2, 0, 0, 0], "total": 39, "table": null, "rank": 30, "sp500_rank": 24, "fortune500_rank": 12}, "Security__eg_cybersecurity": {"counts": [8, 9, 8, 15, 16, 29, 21, 39, 13, 2, 0], "total": 160, "table": "industry", "rank": 5, "sp500_rank": 5, "fortune500_rank": 3}, "Transportation": {"counts": [3, 2, 8, 19, 31, 50, 36, 38, 11, 0, 0], "total": 198, "table": "industry", "rank": 15, "sp500_rank": 11, "fortune500_rank": 6}, "Industrial_and_Manufacturing": {"counts": [0, 1, 0, 3, 6, 4, 4, 1, 7, 0, 0], "total": 26, "table": null, "rank": 32, "sp500_rank": 28, "fortune500_rank": 10}, "Education": {"counts": [0, 0, 4, 2, 0, 2, 0, 1, 0, 0, 0], "total": 9, "table": null, "rank": 13, "sp500_rank": 10, "fortune500_rank": 4}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 6, "sp500_rank": 4, "fortune500_rank": 4}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 1, 3, 0, 0, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 23, "sp500_rank": 19, "fortune500_rank": 6}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [18, 24, 36, 75, 164, 166, 186, 143, 78, 20, 0], "total": 910, "table": "industry", "rank": 9, "sp500_rank": 7, "fortune500_rank": 3}, "Banking_and_Finance": {"counts": [2, 1, 1, 2, 9, 8, 3, 7, 1, 0, 0], "total": 34, "table": null, "rank": 32, "sp500_rank": 26, "fortune500_rank": 16}, "Telecommunications": {"counts": [10, 13, 22, 36, 68, 75, 72, 120, 45, 8, 0], "total": 469, "table": "industry", "rank": 9, "sp500_rank": 8, "fortune500_rank": 4}, "Networks__eg_social_IOT_etc": {"counts": [0, 1, 0, 2, 1, 1, 2, 1, 0, 0, 0], "total": 8, "table": null, "rank": 21, "sp500_rank": 15, "fortune500_rank": 11}, "Business": {"counts": [0, 4, 2, 8, 20, 7, 8, 11, 2, 0, 0], "total": 62, "table": "industry", "rank": 41, "sp500_rank": 32, "fortune500_rank": 18}, "Energy_Management": {"counts": [1, 2, 1, 2, 3, 2, 0, 2, 1, 1, 0], "total": 15, "table": null, "rank": 37, "sp500_rank": 34, "fortune500_rank": 6}, "Entertainment": {"counts": [0, 1, 1, 3, 1, 2, 3, 1, 1, 0, 0], "total": 13, "table": null, "rank": 12, "sp500_rank": 7, "fortune500_rank": 5}, "Nanotechnology": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 3, "table": null, "rank": 6, "sp500_rank": 5, "fortune500_rank": 3}, "Semiconductors": {"counts": [0, 0, 0, 5, 5, 10, 3, 3, 1, 0, 0], "total": 27, "table": null, "rank": 9, "sp500_rank": 6, "fortune500_rank": 5}, "Language_Processing": {"counts": [1, 0, 3, 0, 5, 2, 5, 0, 0, 0, 0], "total": 16, "table": null, "rank": 30, "sp500_rank": 22, "fortune500_rank": 16}, "Speech_Processing": {"counts": [2, 4, 4, 9, 16, 16, 8, 11, 4, 1, 0], "total": 75, "table": null, "rank": 14, "sp500_rank": 11, "fortune500_rank": 4}, "Knowledge_Representation": {"counts": [6, 3, 6, 10, 19, 7, 11, 9, 5, 2, 0], "total": 78, "table": "application", "rank": 17, "sp500_rank": 14, "fortune500_rank": 9}, "Planning_and_Scheduling": {"counts": [0, 2, 1, 8, 17, 6, 6, 11, 1, 0, 0], "total": 52, "table": null, "rank": 33, "sp500_rank": 30, "fortune500_rank": 12}, "Control": {"counts": [4, 2, 9, 20, 49, 53, 43, 34, 13, 3, 0], "total": 230, "table": "application", "rank": 17, "sp500_rank": 14, "fortune500_rank": 6}, "Distributed_AI": {"counts": [0, 0, 0, 0, 2, 2, 0, 2, 2, 0, 0], "total": 8, "table": null, "rank": 7, "sp500_rank": 6, "fortune500_rank": 7}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [7, 6, 26, 46, 133, 101, 113, 101, 33, 5, 0], "total": 571, "table": "application", "rank": 13, "sp500_rank": 10, "fortune500_rank": 3}, "Analytics_and_Algorithms": {"counts": [1, 5, 2, 6, 20, 16, 11, 30, 17, 3, 0], "total": 111, "table": "application", "rank": 12, "sp500_rank": 10, "fortune500_rank": 4}, "Measuring_and_Testing": {"counts": [3, 4, 4, 20, 20, 24, 18, 29, 5, 0, 0], "total": 127, "table": "application", "rank": 17, "sp500_rank": 14, "fortune500_rank": 7}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 32270, "rank": 12, "sp500_rank": 9, "fortune500_rank": 10}, "ai_jobs": {"counts": null, "total": 1350, "rank": 31, "sp500_rank": 19, "fortune500_rank": 21}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Intel Corporation is an American multinational corporation and technology company headquartered in Santa Clara, California, in Silicon Valley. It is the world's largest semiconductor chip manufacturer on the basis of revenue, and is the developer of the x86 series of microprocessors, the processors found in most personal computers (PCs). Incorporated in Delaware, Intel ranked No. 46 in the 2018 Fortune 500 list of the largest United States corporations by total revenue.", "wikipedia_link": "https://en.wikipedia.org/wiki/Intel", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2296, "country": "United States", "website": "http://www.dxc.technology/", "crunchbase": {"text": "6109ec65-1597-bc71-b2db-b21b57d7c106", "url": "https://www.crunchbase.com/organization/dxc-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dxctechnology"], "stage": "Mature", "name": "DXC Technology", "patent_name": "dxc technology", "continent": "North America", "local_logo": "dxc_technology.png", "aliases": "Computer Sciences Corporation; DXC Technology Co", "permid_links": [{"text": 5054883975, "url": "https://permid.org/1-5054883975"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DXC", "url": "https://www.google.com/finance/quote/dxc:nyse"}], "market_full": [{"text": "FRA:2XT", "url": "https://www.google.com/finance/quote/2xt:fra"}, {"text": "NYSE:DXC", "url": "https://www.google.com/finance/quote/dxc:nyse"}, {"text": "BER:2XT", "url": "https://www.google.com/finance/quote/2xt:ber"}, {"text": "HAM:2XT", "url": "https://www.google.com/finance/quote/2xt:ham"}, {"text": "NYQ:DXC", "url": "https://www.google.com/finance/quote/dxc:nyq"}, {"text": "MOEX:DXC-RM", "url": "https://www.google.com/finance/quote/dxc-rm:moex"}, {"text": "BRN:2XT", "url": "https://www.google.com/finance/quote/2xt:brn"}, {"text": "HAN:2XT", "url": "https://www.google.com/finance/quote/2xt:han"}, {"text": "DUS:2XT", "url": "https://www.google.com/finance/quote/2xt:dus"}, {"text": "ASE:DXC", "url": "https://www.google.com/finance/quote/ase:dxc"}, {"text": "STU:2XT", "url": "https://www.google.com/finance/quote/2xt:stu"}, {"text": "SAO:D1XC34", "url": "https://www.google.com/finance/quote/d1xc34:sao"}, {"text": "LSE:0I6U", "url": "https://www.google.com/finance/quote/0i6u:lse"}, {"text": "MUN:2XT", "url": "https://www.google.com/finance/quote/2xt:mun"}, {"text": "DEU:2XT", "url": "https://www.google.com/finance/quote/2xt:deu"}, {"text": "GER:2XTX", "url": "https://www.google.com/finance/quote/2xtx:ger"}, {"text": "MEX:DXC*", "url": "https://www.google.com/finance/quote/dxc*:mex"}], "crunchbase_description": "DXC Technology is a end-to-end IT services company, helping clients harness the power of innovation to thrive on change.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Intelligent agent", "field_count": 1}, {"field_name": "Subspace topology", "field_count": 1}, {"field_name": "Point cloud", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Augmented reality", "field_count": 1}], "clusters": [{"cluster_id": 4301, "cluster_count": 1}, {"cluster_id": 42678, "cluster_count": 1}, {"cluster_id": 61508, "cluster_count": 1}, {"cluster_id": 52220, "cluster_count": 1}, {"cluster_id": 16940, "cluster_count": 1}, {"cluster_id": 3378, "cluster_count": 1}, {"cluster_id": 56206, "cluster_count": 1}, {"cluster_id": 10168, "cluster_count": 1}, {"cluster_id": 7462, "cluster_count": 1}, {"cluster_id": 214, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 396, "referenced_count": 1}, {"ref_CSET_id": 795, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "decision_making", "task_count": 3}, {"referent": "image_processing", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "disease_detection", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "natural_language_processing", "task_count": 2}, {"referent": "image_recognition", "task_count": 2}, {"referent": "background_subtraction", "task_count": 1}, {"referent": "foreground_detection", "task_count": 1}, {"referent": "behavioural_cloning", "task_count": 1}], "methods": [{"referent": "reinforcement_learning", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "hopfield_layer", "method_count": 1}, {"referent": "image_to_image_translation", "method_count": 1}, {"referent": "momentum_rules", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [52, 28, 39, 18, 17, 14, 12, 11, 12, 9, 0], "total": 212, "isTopResearch": false, "rank": 405, "fortune500_rank": 156}, "ai_publications": {"counts": [1, 1, 0, 0, 2, 3, 1, 1, 4, 0, 0], "total": 13, "isTopResearch": false, "rank": 375, "fortune500_rank": 111}, "ai_publications_growth": {"counts": [], "total": 66.66666666666667, "isTopResearch": false, "rank": 44, "fortune500_rank": 9}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [3, 2, 6, 10, 9, 23, 27, 38, 42, 37, 3], "total": 200, "isTopResearch": false, "rank": 389, "fortune500_rank": 115}, "cv_pubs": {"counts": [0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 313, "fortune500_rank": 84}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [3.0, 2.0, 0, 0, 4.5, 7.666666666666667, 27.0, 38.0, 10.5, 0, 0], "total": 15.384615384615385, "isTopResearch": false, "rank": 397, "fortune500_rank": 121}}, "patents": {"ai_patents": {"counts": [1, 1, 2, 0, 0, 1, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525, "fortune500_rank": 169}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 10, 20, 0, 0, 10, 0, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525, "fortune500_rank": 169}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 31899, "rank": 13, "fortune500_rank": 11}, "ai_jobs": {"counts": null, "total": 892, "rank": 47, "fortune500_rank": 27}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "DXC Technology is an American multinational corporation that provides B2B IT services.", "wikipedia_link": "https://en.wikipedia.org/wiki/DXC_Technology", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 949, "country": "Finland", "website": "http://www.nokia.com", "crunchbase": {"text": "c1a672fb-98fb-5284-1236-bdfa905a982e", "url": "https://www.crunchbase.com/organization/nokia"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nokia"], "stage": "Mature", "name": "Nokia", "patent_name": "Nokia", "continent": "Europe", "local_logo": "nokia.png", "aliases": "Nokia; Nokia Corporation; Nokia Mobile", "permid_links": [{"text": 4295866480, "url": "https://permid.org/1-4295866480"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NOK", "url": "https://www.google.com/finance/quote/NOK:NYSE"}], "market_full": [{"text": "MUN:NOAA", "url": "https://www.google.com/finance/quote/MUN:NOAA"}, {"text": "NYSE:NOK", "url": "https://www.google.com/finance/quote/NOK:NYSE"}, {"text": "GER:NOA3X", "url": "https://www.google.com/finance/quote/GER:NOA3X"}, {"text": "LSE:0K8D", "url": "https://www.google.com/finance/quote/0K8D:LSE"}, {"text": "BUE:NOKA3", "url": "https://www.google.com/finance/quote/BUE:NOKA3"}, {"text": "PKC:NOKBF", "url": "https://www.google.com/finance/quote/NOKBF:PKC"}, {"text": "DUS:NOA3", "url": "https://www.google.com/finance/quote/DUS:NOA3"}, {"text": "PAR:NOKIA", "url": "https://www.google.com/finance/quote/NOKIA:PAR"}, {"text": "PRA:NOKIA", "url": "https://www.google.com/finance/quote/NOKIA:PRA"}, {"text": "FRA:NOA3", "url": "https://www.google.com/finance/quote/FRA:NOA3"}, {"text": "ASE:NOK", "url": "https://www.google.com/finance/quote/ASE:NOK"}, {"text": "HAM:NOA3", "url": "https://www.google.com/finance/quote/HAM:NOA3"}, {"text": "NYQ:NOK", "url": "https://www.google.com/finance/quote/NOK:NYQ"}, {"text": "SWX:NOKIA", "url": "https://www.google.com/finance/quote/NOKIA:SWX"}, {"text": "BRN:NOA3", "url": "https://www.google.com/finance/quote/BRN:NOA3"}, {"text": "DUS:NOAA", "url": "https://www.google.com/finance/quote/DUS:NOAA"}, {"text": "FRA:NOAA", "url": "https://www.google.com/finance/quote/FRA:NOAA"}, {"text": "STO:NOKIA SEK", "url": "https://www.google.com/finance/quote/NOKIA SEK:STO"}, {"text": "VIE:NOKI", "url": "https://www.google.com/finance/quote/NOKI:VIE"}, {"text": "STU:NOAA", "url": "https://www.google.com/finance/quote/NOAA:STU"}, {"text": "DEU:NOAA", "url": "https://www.google.com/finance/quote/DEU:NOAA"}, {"text": "STU:NOA3", "url": "https://www.google.com/finance/quote/NOA3:STU"}, {"text": "EBT:NOKIAM", "url": "https://www.google.com/finance/quote/EBT:NOKIAm"}, {"text": "LSE:0HAF", "url": "https://www.google.com/finance/quote/0HAF:LSE"}, {"text": "DEU:NOKS", "url": "https://www.google.com/finance/quote/DEU:NOKS"}, {"text": "MUN:NOA3", "url": "https://www.google.com/finance/quote/MUN:NOA3"}, {"text": "MIL:NOKIA", "url": "https://www.google.com/finance/quote/MIL:NOKIA"}, {"text": "MEX:NOKN", "url": "https://www.google.com/finance/quote/MEX:NOKN"}, {"text": "BER:NOAA", "url": "https://www.google.com/finance/quote/BER:NOAA"}, {"text": "BER:NOA3", "url": "https://www.google.com/finance/quote/BER:NOA3"}, {"text": "HAN:NOA3", "url": "https://www.google.com/finance/quote/HAN:NOA3"}], "crunchbase_description": "Nokia is a Finnish multinational communications corporation engaged in the manufacturing of mobile devices and network infrastructure.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 21}, {"field_name": "Deep learning", "field_count": 20}, {"field_name": "Reinforcement learning", "field_count": 19}, {"field_name": "Artificial neural network", "field_count": 14}, {"field_name": "Compressed sensing", "field_count": 11}, {"field_name": "Augmented reality", "field_count": 11}, {"field_name": "Gesture", "field_count": 11}, {"field_name": "Segmentation", "field_count": 10}, {"field_name": "Object (computer science)", "field_count": 9}, {"field_name": "Sparse approximation", "field_count": 8}], "clusters": [{"cluster_id": 13372, "cluster_count": 15}, {"cluster_id": 62141, "cluster_count": 15}, {"cluster_id": 2846, "cluster_count": 14}, {"cluster_id": 43403, "cluster_count": 13}, {"cluster_id": 2214, "cluster_count": 13}, {"cluster_id": 1781, "cluster_count": 11}, {"cluster_id": 26274, "cluster_count": 10}, {"cluster_id": 6913, "cluster_count": 10}, {"cluster_id": 47174, "cluster_count": 9}, {"cluster_id": 43776, "cluster_count": 9}], "company_references": [{"ref_CSET_id": 949, "referenced_count": 481}, {"ref_CSET_id": 101, "referenced_count": 419}, {"ref_CSET_id": 163, "referenced_count": 335}, {"ref_CSET_id": 87, "referenced_count": 101}, {"ref_CSET_id": 115, "referenced_count": 68}, {"ref_CSET_id": 805, "referenced_count": 55}, {"ref_CSET_id": 6, "referenced_count": 38}, {"ref_CSET_id": 127, "referenced_count": 37}, {"ref_CSET_id": 23, "referenced_count": 28}, {"ref_CSET_id": 112, "referenced_count": 26}], "tasks": [{"referent": "classification", "task_count": 88}, {"referent": "image_processing", "task_count": 36}, {"referent": "image_restoration", "task_count": 35}, {"referent": "network_pruning", "task_count": 31}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 26}, {"referent": "image_analysis", "task_count": 19}, {"referent": "computer_vision", "task_count": 19}, {"referent": "tensor_networks", "task_count": 18}, {"referent": "semantic_segmentation", "task_count": 18}, {"referent": "compressive_sensing", "task_count": 16}], "methods": [{"referent": "vqa_models", "method_count": 46}, {"referent": "mad_learning", "method_count": 43}, {"referent": "recurrent_neural_networks", "method_count": 42}, {"referent": "double_q_learning", "method_count": 40}, {"referent": "q_learning", "method_count": 36}, {"referent": "convolutional_neural_networks", "method_count": 33}, {"referent": "symbolic_deep_learning", "method_count": 32}, {"referent": "reinforcement_learning", "method_count": 31}, {"referent": "meta_learning_algorithms", "method_count": 30}, {"referent": "auto_classifier", "method_count": 29}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [742, 668, 599, 699, 786, 760, 641, 587, 517, 318, 2], "total": 6319, "isTopResearch": false, "rank": 55, "sp500_rank": 49}, "ai_publications": {"counts": [56, 44, 26, 34, 36, 61, 65, 88, 96, 21, 0], "total": 527, "isTopResearch": false, "rank": 38, "sp500_rank": 30}, "ai_publications_growth": {"counts": [], "total": -11.21649184149184, "isTopResearch": false, "rank": 1276, "sp500_rank": 320}, "ai_pubs_top_conf": {"counts": [3, 2, 6, 7, 4, 7, 11, 7, 4, 0, 0], "total": 51, "isTopResearch": false, "rank": 42, "sp500_rank": 22}, "citation_counts": {"counts": [875, 1158, 1343, 1466, 1683, 2046, 2807, 3268, 3449, 2495, 97], "total": 20687, "isTopResearch": false, "rank": 31, "sp500_rank": 21}, "cv_pubs": {"counts": [31, 25, 7, 11, 11, 21, 17, 27, 22, 1, 0], "total": 173, "isTopResearch": true, "rank": 35, "sp500_rank": 26}, "nlp_pubs": {"counts": [2, 0, 0, 0, 1, 2, 2, 3, 3, 0, 0], "total": 13, "isTopResearch": true, "rank": 81, "sp500_rank": 53}, "robotics_pubs": {"counts": [0, 1, 0, 0, 2, 3, 2, 3, 5, 0, 0], "total": 16, "isTopResearch": true, "rank": 88, "sp500_rank": 65}, "citations_per_article": {"counts": [15.625, 26.318181818181817, 51.65384615384615, 43.11764705882353, 46.75, 33.540983606557376, 43.184615384615384, 37.13636363636363, 35.927083333333336, 118.80952380952381, 0], "total": 39.25426944971537, "isTopResearch": false, "rank": 134, "sp500_rank": 30}}, "patents": {"ai_patents": {"counts": [11, 23, 17, 46, 66, 103, 97, 120, 66, 0, 0], "total": 549, "table": null, "rank": 53, "sp500_rank": 43}, "ai_patents_growth": {"counts": [], "total": 24.648901182781675, "table": null, "rank": 293, "sp500_rank": 136}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [110, 230, 170, 460, 660, 1030, 970, 1200, 660, 0, 0], "total": 5490, "table": null, "rank": 53, "sp500_rank": 43}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 2, 0, 6, 9, 6, 4, 1, 2, 0, 0], "total": 30, "table": "industry", "rank": 34, "sp500_rank": 26}, "Security__eg_cybersecurity": {"counts": [0, 1, 2, 4, 7, 3, 4, 1, 0, 0, 0], "total": 22, "table": "industry", "rank": 52, "sp500_rank": 39}, "Transportation": {"counts": [0, 4, 2, 0, 1, 0, 3, 0, 0, 0, 0], "total": 10, "table": null, "rank": 100, "sp500_rank": 77}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 0], "total": 5, "table": null, "rank": 104, "sp500_rank": 72}, "Education": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [5, 9, 7, 10, 19, 19, 17, 12, 7, 0, 0], "total": 105, "table": "industry", "rank": 71, "sp500_rank": 52}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [4, 10, 5, 19, 35, 66, 67, 88, 50, 0, 0], "total": 344, "table": "industry", "rank": 12, "sp500_rank": 10}, "Networks__eg_social_IOT_etc": {"counts": [1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 47, "sp500_rank": 34}, "Business": {"counts": [0, 2, 1, 3, 0, 1, 6, 1, 0, 0, 0], "total": 14, "table": "industry", "rank": 131, "sp500_rank": 92}, "Energy_Management": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94}, "Entertainment": {"counts": [1, 1, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 29, "sp500_rank": 20}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "sp500_rank": 67}, "Speech_Processing": {"counts": [1, 0, 0, 1, 3, 3, 3, 4, 0, 0, 0], "total": 15, "table": "application", "rank": 66, "sp500_rank": 48}, "Knowledge_Representation": {"counts": [4, 2, 0, 2, 2, 2, 0, 0, 0, 0, 0], "total": 12, "table": null, "rank": 66, "sp500_rank": 48}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 2, 0, 1, 6, 0, 0, 0, 0], "total": 10, "table": null, "rank": 124, "sp500_rank": 89}, "Control": {"counts": [0, 4, 2, 1, 3, 2, 2, 3, 0, 0, 0], "total": 17, "table": "application", "rank": 103, "sp500_rank": 73}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [3, 6, 6, 15, 30, 33, 19, 14, 4, 0, 0], "total": 130, "table": "application", "rank": 58, "sp500_rank": 45}, "Analytics_and_Algorithms": {"counts": [1, 5, 3, 15, 13, 21, 18, 35, 19, 0, 0], "total": 130, "table": "application", "rank": 10, "sp500_rank": 8}, "Measuring_and_Testing": {"counts": [0, 3, 1, 1, 2, 1, 8, 5, 3, 0, 0], "total": 24, "table": "application", "rank": 71, "sp500_rank": 54}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 30995, "rank": 14, "sp500_rank": 10}, "ai_jobs": {"counts": null, "total": 501, "rank": 113, "sp500_rank": 71}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 3114, "country": "Sweden", "website": "https://www.ericsson.com/", "crunchbase": {"text": " dfdddecb-c719-02ec-56f6-da4f071ab6e6", "url": " https://www.crunchbase.com/organization/ericsson"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ericsson"], "stage": "Mature", "name": "Ericsson", "patent_name": "Ericsson", "continent": "Europe", "local_logo": null, "aliases": "Ericsson; Telefonaktiebolaget Lm Ericsson", "permid_links": [{"text": 4295890008, "url": "https://permid.org/1-4295890008"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ERIC", "url": "https://www.google.com/finance/quote/ERIC:NASDAQ"}], "market_full": [{"text": "BER:ERCG", "url": "https://www.google.com/finance/quote/BER:ERCG"}, {"text": "PKC:ERIXF", "url": "https://www.google.com/finance/quote/ERIXF:PKC"}, {"text": "BUE:ERIC3", "url": "https://www.google.com/finance/quote/BUE:ERIC3"}, {"text": "FRA:ERCA", "url": "https://www.google.com/finance/quote/ERCA:FRA"}, {"text": "STU:ERCG", "url": "https://www.google.com/finance/quote/ERCG:STU"}, {"text": "SAO:E1RI34", "url": "https://www.google.com/finance/quote/E1RI34:SAO"}, {"text": "HAM:ERCA", "url": "https://www.google.com/finance/quote/ERCA:HAM"}, {"text": "MEX:ERICN", "url": "https://www.google.com/finance/quote/ERICN:MEX"}, {"text": "GER:ERICX,A", "url": "https://www.google.com/finance/quote/ERICX,A:GER"}, {"text": "GER:ERICX,B", "url": "https://www.google.com/finance/quote/ERICX,B:GER"}, {"text": "LSE:0O86", "url": "https://www.google.com/finance/quote/0O86:LSE"}, {"text": "DEU:ERICB", "url": "https://www.google.com/finance/quote/DEU:ERICb"}, {"text": "HAN:ERCA", "url": "https://www.google.com/finance/quote/ERCA:HAN"}, {"text": "DUS:ERCB", "url": "https://www.google.com/finance/quote/DUS:ERCB"}, {"text": "BRN:ERCA", "url": "https://www.google.com/finance/quote/BRN:ERCA"}, {"text": "FRA:ERCG", "url": "https://www.google.com/finance/quote/ERCG:FRA"}, {"text": "LSE:0O87", "url": "https://www.google.com/finance/quote/0O87:LSE"}, {"text": "MEX:ERICBN", "url": "https://www.google.com/finance/quote/ERICBN:MEX"}, {"text": "HAN:ERCB", "url": "https://www.google.com/finance/quote/ERCB:HAN"}, {"text": "FRA:ERCB", "url": "https://www.google.com/finance/quote/ERCB:FRA"}, {"text": "STO:ERIC A", "url": "https://www.google.com/finance/quote/ERIC A:STO"}, {"text": "BRN:ERCB", "url": "https://www.google.com/finance/quote/BRN:ERCB"}, {"text": "BER:ERCA", "url": "https://www.google.com/finance/quote/BER:ERCA"}, {"text": "DEU:ERCA", "url": "https://www.google.com/finance/quote/DEU:ERCA"}, {"text": "HAM:ERCB", "url": "https://www.google.com/finance/quote/ERCB:HAM"}, {"text": "EBT:ERICBS", "url": "https://www.google.com/finance/quote/EBT:ERICBs"}, {"text": "LSE:0IID", "url": "https://www.google.com/finance/quote/0IID:LSE"}, {"text": "STO:ERIC B", "url": "https://www.google.com/finance/quote/ERIC B:STO"}, {"text": "MUN:ERCA", "url": "https://www.google.com/finance/quote/ERCA:MUN"}, {"text": "MUN:ERCB", "url": "https://www.google.com/finance/quote/ERCB:MUN"}, {"text": "EBT:ERICAS", "url": "https://www.google.com/finance/quote/EBT:ERICAs"}, {"text": "STU:ERCB", "url": "https://www.google.com/finance/quote/ERCB:STU"}, {"text": "STU:ERCA", "url": "https://www.google.com/finance/quote/ERCA:STU"}, {"text": "HEX:ERIBR", "url": "https://www.google.com/finance/quote/ERIBR:HEX"}, {"text": "DUS:ERCA", "url": "https://www.google.com/finance/quote/DUS:ERCA"}, {"text": "MUN:ERCG", "url": "https://www.google.com/finance/quote/ERCG:MUN"}, {"text": "NASDAQ:ERIC", "url": "https://www.google.com/finance/quote/ERIC:NASDAQ"}, {"text": "BER:ERCB", "url": "https://www.google.com/finance/quote/BER:ERCB"}, {"text": "DEU:ERICA", "url": "https://www.google.com/finance/quote/DEU:ERICa"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 27}, {"field_name": "Artificial neural network", "field_count": 12}, {"field_name": "Robot", "field_count": 11}, {"field_name": "Anomaly detection", "field_count": 10}, {"field_name": "Cluster analysis", "field_count": 8}, {"field_name": "Deep learning", "field_count": 6}, {"field_name": "Robotic arm", "field_count": 5}, {"field_name": "Analytics", "field_count": 4}, {"field_name": "Active learning (machine learning)", "field_count": 4}, {"field_name": "Recommender system", "field_count": 3}], "clusters": [{"cluster_id": 1149, "cluster_count": 13}, {"cluster_id": 43403, "cluster_count": 12}, {"cluster_id": 16998, "cluster_count": 9}, {"cluster_id": 94553, "cluster_count": 9}, {"cluster_id": 3023, "cluster_count": 9}, {"cluster_id": 53140, "cluster_count": 7}, {"cluster_id": 34657, "cluster_count": 6}, {"cluster_id": 18709, "cluster_count": 6}, {"cluster_id": 49222, "cluster_count": 6}, {"cluster_id": 39447, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 276}, {"ref_CSET_id": 3114, "referenced_count": 166}, {"ref_CSET_id": 163, "referenced_count": 112}, {"ref_CSET_id": 87, "referenced_count": 65}, {"ref_CSET_id": 115, "referenced_count": 62}, {"ref_CSET_id": 112, "referenced_count": 25}, {"ref_CSET_id": 23, "referenced_count": 25}, {"ref_CSET_id": 127, "referenced_count": 23}, {"ref_CSET_id": 184, "referenced_count": 21}, {"ref_CSET_id": 949, "referenced_count": 20}], "tasks": [{"referent": "classification", "task_count": 56}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 33}, {"referent": "autonomous_vehicles", "task_count": 16}, {"referent": "network_pruning", "task_count": 14}, {"referent": "robots", "task_count": 13}, {"referent": "image_processing", "task_count": 13}, {"referent": "safety_perception_recognition", "task_count": 12}, {"referent": "software_defect_prediction", "task_count": 11}, {"referent": "image_analysis", "task_count": 10}, {"referent": "tensor_networks", "task_count": 10}], "methods": [{"referent": "mad_learning", "method_count": 45}, {"referent": "reinforcement_learning", "method_count": 34}, {"referent": "twin_networks", "method_count": 29}, {"referent": "recurrent_neural_networks", "method_count": 29}, {"referent": "vqa_models", "method_count": 28}, {"referent": "meta_learning_algorithms", "method_count": 23}, {"referent": "q_learning", "method_count": 23}, {"referent": "griffin_lim_algorithm", "method_count": 21}, {"referent": "self_supervised_learning", "method_count": 18}, {"referent": "double_q_learning", "method_count": 18}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [422, 514, 658, 554, 523, 583, 616, 597, 620, 458, 3], "total": 5548, "isTopResearch": false, "rank": 60, "sp500_rank": 53}, "ai_publications": {"counts": [13, 14, 14, 13, 20, 37, 68, 92, 102, 46, 0], "total": 419, "isTopResearch": false, "rank": 47, "sp500_rank": 37}, "ai_publications_growth": {"counts": [], "total": -2.912759306621197, "isTopResearch": false, "rank": 1224, "sp500_rank": 295}, "ai_pubs_top_conf": {"counts": [0, 2, 1, 0, 0, 1, 0, 4, 2, 0, 0], "total": 10, "isTopResearch": false, "rank": 114, "sp500_rank": 57}, "citation_counts": {"counts": [329, 492, 593, 639, 711, 823, 698, 971, 1222, 1142, 58], "total": 7678, "isTopResearch": false, "rank": 58, "sp500_rank": 38}, "cv_pubs": {"counts": [2, 1, 0, 0, 2, 1, 7, 5, 9, 4, 0], "total": 31, "isTopResearch": true, "rank": 110, "sp500_rank": 73}, "nlp_pubs": {"counts": [0, 1, 1, 0, 0, 1, 2, 4, 3, 0, 0], "total": 12, "isTopResearch": true, "rank": 84, "sp500_rank": 56}, "robotics_pubs": {"counts": [1, 1, 0, 1, 2, 9, 10, 16, 13, 7, 0], "total": 60, "isTopResearch": true, "rank": 41, "sp500_rank": 38}, "citations_per_article": {"counts": [25.307692307692307, 35.142857142857146, 42.357142857142854, 49.15384615384615, 35.55, 22.243243243243242, 10.264705882352942, 10.554347826086957, 11.980392156862745, 24.82608695652174, 0], "total": 18.324582338902147, "isTopResearch": false, "rank": 343, "sp500_rank": 108}}, "patents": {"ai_patents": {"counts": [19, 12, 17, 19, 42, 65, 129, 154, 65, 0, 0], "total": 522, "table": null, "rank": 57, "sp500_rank": 45}, "ai_patents_growth": {"counts": [], "total": 57.53442939489451, "table": null, "rank": 182, "sp500_rank": 87}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [190, 120, 170, 190, 420, 650, 1290, 1540, 650, 0, 0], "total": 5220, "table": null, "rank": 57, "sp500_rank": 45}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 1, 2, 0, 0, 1, 0, 0, 0], "total": 4, "table": null, "rank": 139, "sp500_rank": 85}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 2, 4, 12, 2, 0, 0], "total": 21, "table": "industry", "rank": 54, "sp500_rank": 41}, "Transportation": {"counts": [0, 0, 1, 0, 1, 4, 3, 5, 1, 0, 0], "total": 15, "table": "industry", "rank": 82, "sp500_rank": 64}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0], "total": 5, "table": null, "rank": 104, "sp500_rank": 72}, "Education": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [4, 2, 6, 3, 9, 15, 22, 26, 6, 0, 0], "total": 93, "table": "industry", "rank": 80, "sp500_rank": 57}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 2, 1, 3, 0, 0, 0, 0], "total": 6, "table": null, "rank": 95, "sp500_rank": 67}, "Telecommunications": {"counts": [13, 10, 14, 10, 32, 45, 90, 101, 47, 0, 0], "total": 362, "table": "industry", "rank": 10, "sp500_rank": 9}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 55, "sp500_rank": 41}, "Business": {"counts": [2, 1, 1, 1, 2, 5, 1, 3, 1, 0, 0], "total": 17, "table": "industry", "rank": 114, "sp500_rank": 80}, "Energy_Management": {"counts": [1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 86, "sp500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "sp500_rank": 67}, "Speech_Processing": {"counts": [0, 0, 0, 2, 0, 0, 1, 1, 1, 0, 0], "total": 5, "table": null, "rank": 117, "sp500_rank": 72}, "Knowledge_Representation": {"counts": [3, 3, 0, 5, 1, 1, 4, 8, 2, 0, 0], "total": 27, "table": "application", "rank": 39, "sp500_rank": 30}, "Planning_and_Scheduling": {"counts": [1, 0, 1, 1, 2, 2, 1, 2, 1, 0, 0], "total": 11, "table": null, "rank": 121, "sp500_rank": 86}, "Control": {"counts": [1, 0, 1, 0, 1, 5, 4, 4, 1, 0, 0], "total": 17, "table": "application", "rank": 103, "sp500_rank": 73}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 0], "total": 6, "table": null, "rank": 12, "sp500_rank": 10}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 1, 3, 5, 9, 15, 8, 0, 0, 0], "total": 41, "table": "application", "rank": 130, "sp500_rank": 81}, "Analytics_and_Algorithms": {"counts": [4, 6, 6, 3, 16, 17, 43, 31, 16, 0, 0], "total": 142, "table": "application", "rank": 8, "sp500_rank": 7}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 2, 2, 2, 6, 0, 0, 0], "total": 12, "table": "application", "rank": 110, "sp500_rank": 86}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 30273, "rank": 15, "sp500_rank": 11}, "ai_jobs": {"counts": null, "total": 829, "rank": 56, "sp500_rank": 39}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1779, "country": "United States", "website": "https://www.dell.com/en-us", "crunchbase": {"text": "e83b8f68-8bc9-6b56-220c-0ffbd470b931", "url": "https://www.crunchbase.com/organization/dell"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/delltechnologies"], "stage": "Mature", "name": "Dell Inc", "patent_name": "dell inc", "continent": "North America", "local_logo": "dell_inc.png", "aliases": "Dell; Dell Corporation Ltd", "permid_links": [{"text": 4295906157, "url": "https://permid.org/1-4295906157"}], "parent_info": "Dell Technologies", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DELL", "url": "https://www.google.com/finance/quote/dell:nyse"}], "market_full": [{"text": "DUS:12DA", "url": "https://www.google.com/finance/quote/12da:dus"}, {"text": "MUN:12DA", "url": "https://www.google.com/finance/quote/12da:mun"}, {"text": "HAM:12DA", "url": "https://www.google.com/finance/quote/12da:ham"}, {"text": "GER:12DX.A", "url": "https://www.google.com/finance/quote/12dx.a:ger"}, {"text": "DEU:12DA", "url": "https://www.google.com/finance/quote/12da:deu"}, {"text": "NYQ:DELL", "url": "https://www.google.com/finance/quote/dell:nyq"}, {"text": "NYSE:DELL", "url": "https://www.google.com/finance/quote/dell:nyse"}, {"text": "LSE:0A7D", "url": "https://www.google.com/finance/quote/0a7d:lse"}, {"text": "HAN:12DA", "url": "https://www.google.com/finance/quote/12da:han"}, {"text": "SAO:D1EL34", "url": "https://www.google.com/finance/quote/d1el34:sao"}, {"text": "ASE:DELL", "url": "https://www.google.com/finance/quote/ase:dell"}, {"text": "STU:12DA", "url": "https://www.google.com/finance/quote/12da:stu"}, {"text": "BER:12DA", "url": "https://www.google.com/finance/quote/12da:ber"}, {"text": "MEX:DELLC", "url": "https://www.google.com/finance/quote/dellc:mex"}, {"text": "FRA:12DA", "url": "https://www.google.com/finance/quote/12da:fra"}, {"text": "VIE:DELL", "url": "https://www.google.com/finance/quote/dell:vie"}, {"text": "MCX:DELL-RM", "url": "https://www.google.com/finance/quote/dell-rm:mcx"}], "crunchbase_description": "Dell transforms computing and provides high-quality solutions for people and businesses to be ready to move forward.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Semantics", "field_count": 1}, {"field_name": "Intelligent control", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Hyperparameter", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}, {"field_name": "Ranking", "field_count": 1}, {"field_name": "Bayesian probability", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 37103, "cluster_count": 2}, {"cluster_id": 52529, "cluster_count": 2}, {"cluster_id": 1621, "cluster_count": 2}, {"cluster_id": 20336, "cluster_count": 1}, {"cluster_id": 2196, "cluster_count": 1}, {"cluster_id": 45791, "cluster_count": 1}, {"cluster_id": 3167, "cluster_count": 1}, {"cluster_id": 25609, "cluster_count": 1}, {"cluster_id": 7975, "cluster_count": 1}, {"cluster_id": 3148, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 50}, {"ref_CSET_id": 163, "referenced_count": 34}, {"ref_CSET_id": 127, "referenced_count": 17}, {"ref_CSET_id": 115, "referenced_count": 15}, {"ref_CSET_id": 87, "referenced_count": 11}, {"ref_CSET_id": 184, "referenced_count": 4}, {"ref_CSET_id": 21, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 3}, {"ref_CSET_id": 1779, "referenced_count": 3}, {"ref_CSET_id": 805, "referenced_count": 3}], "tasks": [{"referent": "multimodal_deep_learning", "task_count": 4}, {"referent": "clustering", "task_count": 3}, {"referent": "classification", "task_count": 3}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "cloud_detection", "task_count": 2}, {"referent": "natural_language_processing", "task_count": 2}, {"referent": "point_processes", "task_count": 1}, {"referent": "detecting_shadows", "task_count": 1}, {"referent": "image_augmentation", "task_count": 1}, {"referent": "remote_sensing", "task_count": 1}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 8}, {"referent": "recurrent_neural_networks", "method_count": 7}, {"referent": "wgan_gp", "method_count": 5}, {"referent": "dnas", "method_count": 4}, {"referent": "ggs_nns", "method_count": 4}, {"referent": "glow", "method_count": 4}, {"referent": "vqa_models", "method_count": 4}, {"referent": "pafs", "method_count": 3}, {"referent": "distributions", "method_count": 3}, {"referent": "mad_learning", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [51, 54, 47, 47, 56, 54, 71, 46, 33, 18, 0], "total": 477, "isTopResearch": false, "rank": 282, "sp500_rank": 187}, "ai_publications": {"counts": [1, 0, 0, 4, 1, 4, 8, 9, 5, 1, 0], "total": 33, "isTopResearch": false, "rank": 227, "sp500_rank": 139}, "ai_publications_growth": {"counts": [], "total": -37.31481481481482, "isTopResearch": false, "rank": 1419, "sp500_rank": 392}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99}, "citation_counts": {"counts": [30, 27, 24, 28, 28, 38, 65, 107, 158, 171, 5], "total": 681, "isTopResearch": false, "rank": 232, "sp500_rank": 125}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [30.0, 0, 0, 7.0, 28.0, 9.5, 8.125, 11.88888888888889, 31.6, 171.0, 0], "total": 20.636363636363637, "isTopResearch": false, "rank": 302, "sp500_rank": 87}}, "patents": {"ai_patents": {"counts": [32, 21, 42, 35, 50, 170, 264, 312, 108, 1, 0], "total": 1035, "table": null, "rank": 22, "sp500_rank": 19}, "ai_patents_growth": {"counts": [], "total": 104.49197860962568, "table": null, "rank": 109, "sp500_rank": 52}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [320, 210, 420, 350, 500, 1700, 2640, 3120, 1080, 10, 0], "total": 10350, "table": null, "rank": 22, "sp500_rank": 19}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0], "total": 5, "table": null, "rank": 78, "sp500_rank": 64}, "Life_Sciences": {"counts": [0, 1, 2, 0, 0, 0, 1, 3, 1, 0, 0], "total": 8, "table": null, "rank": 95, "sp500_rank": 62}, "Security__eg_cybersecurity": {"counts": [1, 1, 3, 4, 8, 18, 26, 26, 7, 0, 0], "total": 94, "table": "industry", "rank": 12, "sp500_rank": 11}, "Transportation": {"counts": [0, 0, 1, 0, 0, 1, 1, 2, 0, 0, 0], "total": 5, "table": null, "rank": 133, "sp500_rank": 96}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 0, 0, 3, 4, 0, 0, 0], "total": 8, "table": null, "rank": 81, "sp500_rank": 56}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], "total": 4, "table": null, "rank": 39, "sp500_rank": 28}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [20, 16, 31, 23, 39, 143, 209, 230, 80, 1, 0], "total": 792, "table": "industry", "rank": 11, "sp500_rank": 9}, "Banking_and_Finance": {"counts": [0, 0, 1, 1, 0, 3, 3, 5, 1, 0, 0], "total": 14, "table": "industry", "rank": 60, "sp500_rank": 49}, "Telecommunications": {"counts": [7, 10, 16, 12, 21, 53, 68, 78, 42, 1, 0], "total": 308, "table": "industry", "rank": 14, "sp500_rank": 12}, "Networks__eg_social_IOT_etc": {"counts": [0, 1, 0, 0, 0, 0, 1, 6, 1, 0, 0], "total": 9, "table": null, "rank": 19, "sp500_rank": 14}, "Business": {"counts": [6, 1, 4, 8, 11, 18, 40, 58, 8, 0, 0], "total": 154, "table": "industry", "rank": 20, "sp500_rank": 18}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 2, 5, 0, 0, 0], "total": 7, "table": null, "rank": 62, "sp500_rank": 58}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22}, "Language_Processing": {"counts": [2, 1, 1, 1, 1, 10, 9, 0, 0, 0, 0], "total": 25, "table": null, "rank": 22, "sp500_rank": 17}, "Speech_Processing": {"counts": [0, 0, 1, 1, 0, 7, 3, 12, 4, 0, 0], "total": 28, "table": "application", "rank": 41, "sp500_rank": 32}, "Knowledge_Representation": {"counts": [10, 3, 8, 6, 13, 21, 21, 22, 8, 0, 0], "total": 112, "table": "application", "rank": 12, "sp500_rank": 10}, "Planning_and_Scheduling": {"counts": [5, 1, 3, 6, 9, 5, 25, 40, 6, 0, 0], "total": 100, "table": "application", "rank": 17, "sp500_rank": 16}, "Control": {"counts": [1, 1, 2, 1, 2, 0, 3, 10, 2, 0, 0], "total": 22, "table": null, "rank": 85, "sp500_rank": 61}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 4, 0, 1, 1, 0, 0], "total": 6, "table": null, "rank": 12, "sp500_rank": 10}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [1, 0, 2, 1, 6, 41, 54, 67, 35, 0, 0], "total": 207, "table": "application", "rank": 41, "sp500_rank": 31}, "Analytics_and_Algorithms": {"counts": [3, 6, 3, 0, 7, 14, 17, 27, 6, 1, 0], "total": 84, "table": "application", "rank": 18, "sp500_rank": 16}, "Measuring_and_Testing": {"counts": [0, 1, 0, 0, 0, 1, 1, 3, 2, 0, 0], "total": 8, "table": null, "rank": 139, "sp500_rank": 105}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 28043, "rank": 16, "sp500_rank": 12}, "ai_jobs": {"counts": null, "total": 1463, "rank": 27, "sp500_rank": 18}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Dell is an American multinational computer technology company that develops, sells, repairs, and supports computers and related products and services. Named after its founder, Michael Dell, the company is one of the largest technology corporations in the world, employing more than 165,000 people in the U.S. and around the world. It is one of the biggest PC product companies in the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/Dell", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 792, "country": "United States", "website": "http://www.verizon.com/", "crunchbase": {"text": "e693e2f0-50bb-05ab-8a27-4078f5dacf11", "url": "https://www.crunchbase.com/organization/verizon"}, "child_crunchbase": [{"text": "71d51015-1800-ed61-8bc3-8dca49caec15", "url": "https://www.crunchbase.com/organization/yahoo"}], "linkedin": ["https://www.linkedin.com/company/yahoo", "https://www.linkedin.com/company/verizon", "https://www.linkedin.com/company/yahoo-research"], "stage": "Mature", "name": "Apollo", "patent_name": "apollo ", "continent": "North America", "local_logo": "apollo_.png", "aliases": "Verizon Communications Inc; apollo ", "permid_links": [{"text": 4295908504, "url": "https://permid.org/1-4295908504"}, {"text": 4295911976, "url": "https://permid.org/1-4295911976"}], "parent_info": null, "agg_child_info": "Yahoo, Yahoo! Labs", "unagg_child_info": null, "market_filt": [{"text": "NYSE:VZ", "url": "https://www.google.com/finance/quote/nyse:vz"}], "market_full": [{"text": "MOEX:VZ-RM", "url": "https://www.google.com/finance/quote/moex:vz-rm"}, {"text": "VIE:VZ", "url": "https://www.google.com/finance/quote/vie:vz"}, {"text": "FRA:VZ", "url": "https://www.google.com/finance/quote/fra:vz"}, {"text": "HAM:BAC", "url": "https://www.google.com/finance/quote/bac:ham"}, {"text": "HAN:BAC", "url": "https://www.google.com/finance/quote/bac:han"}, {"text": "BER:BAC", "url": "https://www.google.com/finance/quote/bac:ber"}, {"text": "BMV:VZ", "url": "https://www.google.com/finance/quote/bmv:vz"}, {"text": "DUS:BAC", "url": "https://www.google.com/finance/quote/bac:dus"}, {"text": "MUN:BAC", "url": "https://www.google.com/finance/quote/bac:mun"}, {"text": "MEX:VZ", "url": "https://www.google.com/finance/quote/mex:vz"}, {"text": "BCBA:VZ", "url": "https://www.google.com/finance/quote/bcba:vz"}, {"text": "FWB:BAC", "url": "https://www.google.com/finance/quote/bac:fwb"}, {"text": "XETR:BAC", "url": "https://www.google.com/finance/quote/bac:xetr"}, {"text": "NYSE:VZ", "url": "https://www.google.com/finance/quote/nyse:vz"}, {"text": "SGO:VZ", "url": "https://www.google.com/finance/quote/sgo:vz"}], "crunchbase_description": "Verizon Communications is a broadband and telecommunications company that provides information and entertainment services.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Ranking", "field_count": 55}, {"field_name": "Cluster analysis", "field_count": 36}, {"field_name": "Relevance (information retrieval)", "field_count": 32}, {"field_name": "Recommender system", "field_count": 27}, {"field_name": "Automatic summarization", "field_count": 23}, {"field_name": "Question answering", "field_count": 20}, {"field_name": "Active learning (machine learning)", "field_count": 18}, {"field_name": "Sentiment analysis", "field_count": 17}, {"field_name": "Topic model", "field_count": 16}, {"field_name": "Regret", "field_count": 16}], "clusters": [{"cluster_id": 10485, "cluster_count": 49}, {"cluster_id": 13494, "cluster_count": 33}, {"cluster_id": 5300, "cluster_count": 33}, {"cluster_id": 13618, "cluster_count": 26}, {"cluster_id": 14994, "cluster_count": 21}, {"cluster_id": 46634, "cluster_count": 21}, {"cluster_id": 47366, "cluster_count": 20}, {"cluster_id": 148, "cluster_count": 18}, {"cluster_id": 9084, "cluster_count": 18}, {"cluster_id": 6016, "cluster_count": 16}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 1060}, {"ref_CSET_id": 792, "referenced_count": 1055}, {"ref_CSET_id": 101, "referenced_count": 998}, {"ref_CSET_id": 115, "referenced_count": 312}, {"ref_CSET_id": 87, "referenced_count": 248}, {"ref_CSET_id": 6, "referenced_count": 73}, {"ref_CSET_id": 3131, "referenced_count": 72}, {"ref_CSET_id": 786, "referenced_count": 61}, {"ref_CSET_id": 1784, "referenced_count": 60}, {"ref_CSET_id": 23, "referenced_count": 56}], "tasks": [{"referent": "classification", "task_count": 190}, {"referent": "advertising", "task_count": 75}, {"referent": "recommendation", "task_count": 69}, {"referent": "retrieval", "task_count": 57}, {"referent": "information_retrieval", "task_count": 50}, {"referent": "classification_tasks", "task_count": 46}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 45}, {"referent": "clustering", "task_count": 42}, {"referent": "recommendation_systems", "task_count": 38}, {"referent": "graph_ranking", "task_count": 37}], "methods": [{"referent": "vqa_models", "method_count": 94}, {"referent": "q_learning", "method_count": 87}, {"referent": "3d_representations", "method_count": 78}, {"referent": "auto_classifier", "method_count": 71}, {"referent": "meta_learning_algorithms", "method_count": 54}, {"referent": "double_q_learning", "method_count": 52}, {"referent": "griffin_lim_algorithm", "method_count": 46}, {"referent": "clustering", "method_count": 45}, {"referent": "recurrent_neural_networks", "method_count": 43}, {"referent": "optimization", "method_count": 34}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [956, 938, 939, 811, 747, 774, 716, 788, 586, 85, 1], "total": 7341, "isTopResearch": false, "rank": 50, "sp500_rank": 45, "fortune500_rank": 17}, "ai_publications": {"counts": [107, 146, 132, 154, 95, 71, 93, 75, 54, 13, 0], "total": 940, "isTopResearch": false, "rank": 26, "sp500_rank": 21, "fortune500_rank": 9}, "ai_publications_growth": {"counts": [], "total": -41.09358821186778, "isTopResearch": false, "rank": 1427, "sp500_rank": 396, "fortune500_rank": 414}, "ai_pubs_top_conf": {"counts": [65, 68, 100, 83, 58, 26, 37, 22, 25, 6, 0], "total": 490, "isTopResearch": false, "rank": 12, "sp500_rank": 8, "fortune500_rank": 6}, "citation_counts": {"counts": [2715, 3420, 4338, 5214, 5874, 6412, 7807, 8364, 8086, 4351, 183], "total": 56764, "isTopResearch": false, "rank": 12, "sp500_rank": 8, "fortune500_rank": 8}, "cv_pubs": {"counts": [17, 19, 21, 31, 10, 10, 8, 10, 6, 3, 0], "total": 135, "isTopResearch": true, "rank": 41, "sp500_rank": 31, "fortune500_rank": 10}, "nlp_pubs": {"counts": [27, 30, 31, 36, 23, 26, 25, 25, 20, 2, 0], "total": 245, "isTopResearch": true, "rank": 13, "sp500_rank": 10, "fortune500_rank": 6}, "robotics_pubs": {"counts": [1, 2, 1, 2, 2, 1, 0, 0, 0, 1, 0], "total": 10, "isTopResearch": true, "rank": 114, "sp500_rank": 82, "fortune500_rank": 31}, "citations_per_article": {"counts": [25.373831775700936, 23.424657534246574, 32.86363636363637, 33.857142857142854, 61.83157894736842, 90.30985915492958, 83.94623655913979, 111.52, 149.74074074074073, 334.6923076923077, 0], "total": 60.38723404255319, "isTopResearch": false, "rank": 72, "sp500_rank": 10, "fortune500_rank": 16}}, "patents": {"ai_patents": {"counts": [25, 43, 34, 44, 54, 34, 56, 56, 19, 0, 0], "total": 365, "table": null, "rank": 68, "sp500_rank": 53, "fortune500_rank": 21}, "ai_patents_growth": {"counts": [], "total": 9.222948438634711, "table": null, "rank": 338, "sp500_rank": 158, "fortune500_rank": 108}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [250, 430, 340, 440, 540, 340, 560, 560, 190, 0, 0], "total": 3650, "table": null, "rank": 68, "sp500_rank": 53, "fortune500_rank": 21}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 139, "sp500_rank": 85, "fortune500_rank": 59}, "Security__eg_cybersecurity": {"counts": [1, 0, 2, 0, 2, 1, 0, 3, 2, 0, 0], "total": 11, "table": null, "rank": 86, "sp500_rank": 63, "fortune500_rank": 37}, "Transportation": {"counts": [1, 2, 3, 0, 1, 5, 4, 3, 2, 0, 0], "total": 21, "table": "industry", "rank": 69, "sp500_rank": 54, "fortune500_rank": 20}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 165, "sp500_rank": 110, "fortune500_rank": 55}, "Education": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43, "fortune500_rank": 20}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [12, 17, 21, 23, 26, 15, 14, 19, 7, 0, 0], "total": 154, "table": "industry", "rank": 51, "sp500_rank": 40, "fortune500_rank": 22}, "Banking_and_Finance": {"counts": [0, 0, 1, 1, 2, 1, 2, 2, 0, 0, 0], "total": 9, "table": null, "rank": 80, "sp500_rank": 60, "fortune500_rank": 30}, "Telecommunications": {"counts": [6, 11, 8, 12, 23, 12, 40, 35, 12, 0, 0], "total": 159, "table": "industry", "rank": 27, "sp500_rank": 24, "fortune500_rank": 11}, "Networks__eg_social_IOT_etc": {"counts": [1, 1, 0, 2, 7, 1, 1, 0, 0, 0, 0], "total": 13, "table": "industry", "rank": 12, "sp500_rank": 9, "fortune500_rank": 6}, "Business": {"counts": [5, 13, 7, 12, 16, 8, 9, 6, 1, 0, 0], "total": 77, "table": "industry", "rank": 37, "sp500_rank": 29, "fortune500_rank": 15}, "Energy_Management": {"counts": [0, 1, 0, 1, 1, 0, 0, 1, 0, 0, 0], "total": 4, "table": null, "rank": 86, "sp500_rank": 72, "fortune500_rank": 21}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 1, 2, 6, 5, 3, 3, 0, 0, 0, 0], "total": 20, "table": "application", "rank": 25, "sp500_rank": 19, "fortune500_rank": 14}, "Speech_Processing": {"counts": [0, 0, 1, 0, 5, 0, 0, 1, 2, 0, 0], "total": 9, "table": null, "rank": 86, "sp500_rank": 58, "fortune500_rank": 25}, "Knowledge_Representation": {"counts": [4, 6, 4, 8, 9, 4, 2, 0, 1, 0, 0], "total": 38, "table": "application", "rank": 30, "sp500_rank": 24, "fortune500_rank": 16}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 2, 7, 1, 5, 2, 1, 0, 0], "total": 19, "table": null, "rank": 83, "sp500_rank": 61, "fortune500_rank": 31}, "Control": {"counts": [0, 1, 1, 2, 1, 4, 5, 4, 1, 0, 0], "total": 19, "table": null, "rank": 95, "sp500_rank": 67, "fortune500_rank": 31}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [4, 2, 6, 6, 6, 10, 11, 16, 3, 0, 0], "total": 64, "table": "application", "rank": 95, "sp500_rank": 64, "fortune500_rank": 28}, "Analytics_and_Algorithms": {"counts": [2, 0, 2, 4, 0, 3, 13, 11, 3, 0, 0], "total": 38, "table": "application", "rank": 35, "sp500_rank": 31, "fortune500_rank": 16}, "Measuring_and_Testing": {"counts": [2, 1, 2, 1, 2, 3, 4, 7, 2, 0, 0], "total": 24, "table": "application", "rank": 71, "sp500_rank": 54, "fortune500_rank": 23}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 26259, "rank": 17, "sp500_rank": 13, "fortune500_rank": 12}, "ai_jobs": {"counts": null, "total": 1577, "rank": 24, "sp500_rank": 15, "fortune500_rank": 17}}, "sector": "Financials", "business_sector": "Collective Investments"}, {"cset_id": 2856, "country": "Canada", "website": "https://www.cgi.com/", "crunchbase": {"text": "e3fbf2ab-4862-b7cc-1b4e-9382668c0836", "url": "https://www.crunchbase.com/organization/cgi"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cgi"], "stage": "Mature", "name": "CGI Inc", "patent_name": "cgi inc", "continent": "North America", "local_logo": "cgi_inc.png", "aliases": "Cgi", "permid_links": [{"text": 4295861259, "url": "https://permid.org/1-4295861259"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:GIB", "url": "https://www.google.com/finance/quote/gib:nyse"}], "market_full": [{"text": "ASE:GIB", "url": "https://www.google.com/finance/quote/ase:gib"}, {"text": "TOR:GIB.A", "url": "https://www.google.com/finance/quote/gib.a:tor"}, {"text": "NYQ:GIB", "url": "https://www.google.com/finance/quote/gib:nyq"}, {"text": "NYSE:GIB", "url": "https://www.google.com/finance/quote/gib:nyse"}, {"text": "FRA:CJ5A", "url": "https://www.google.com/finance/quote/cj5a:fra"}, {"text": "LSE:0A18", "url": "https://www.google.com/finance/quote/0a18:lse"}], "crunchbase_description": "CGI provides consulting, cyber security, analytics, cloud, digital transformation, infrastructure, and IT services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Ontology (information science)", "field_count": 1}, {"field_name": "Emerging technologies", "field_count": 1}, {"field_name": "Point cloud", "field_count": 1}], "clusters": [{"cluster_id": 17559, "cluster_count": 4}, {"cluster_id": 13886, "cluster_count": 2}, {"cluster_id": 55116, "cluster_count": 1}, {"cluster_id": 3842, "cluster_count": 1}, {"cluster_id": 25806, "cluster_count": 1}, {"cluster_id": 8144, "cluster_count": 1}, {"cluster_id": 18709, "cluster_count": 1}, {"cluster_id": 69905, "cluster_count": 1}, {"cluster_id": 68189, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2856, "referenced_count": 4}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 787, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 2794, "referenced_count": 1}], "tasks": [{"referent": "building_extraction", "task_count": 2}, {"referent": "indoor_navigation", "task_count": 2}, {"referent": "human_activity_recognition", "task_count": 1}, {"referent": "knowledge_base", "task_count": 1}, {"referent": "severity_prediction", "task_count": 1}, {"referent": "software_defect_prediction", "task_count": 1}, {"referent": "path_planning", "task_count": 1}, {"referent": "drones", "task_count": 1}, {"referent": "real_time_object_detection", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}, {"referent": "pafs", "method_count": 1}, {"referent": "maddpg", "method_count": 1}, {"referent": "transformer_xl", "method_count": 1}, {"referent": "amsbound", "method_count": 1}, {"referent": "pointnet", "method_count": 1}, {"referent": "heatmap", "method_count": 1}, {"referent": "sm3", "method_count": 1}, {"referent": "ikshananet", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [4, 5, 5, 4, 7, 4, 10, 3, 6, 6, 0], "total": 54, "isTopResearch": false, "rank": 604}, "ai_publications": {"counts": [1, 0, 1, 0, 2, 2, 3, 0, 3, 0, 0], "total": 12, "isTopResearch": false, "rank": 384}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [2, 3, 5, 3, 3, 10, 17, 29, 31, 30, 0], "total": 133, "isTopResearch": false, "rank": 459}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [2.0, 0, 5.0, 0, 1.5, 5.0, 5.666666666666667, 0, 10.333333333333334, 0, 0], "total": 11.083333333333334, "isTopResearch": false, "rank": 501}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 25753, "rank": 18}, "ai_jobs": {"counts": null, "total": 622, "rank": 85}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "CGI Inc., also known as CGI Group Inc., is a Canadian multinational information technology (IT) consulting and systems integration company headquartered in Montreal, Quebec, Canada.", "wikipedia_link": "https://en.wikipedia.org/wiki/CGI_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 789, "country": "Germany", "website": "http://www.siemens.com", "crunchbase": {"text": "8483fc50-b82d-5ffa-5f92-6c72ac4bdaff", "url": "https://www.crunchbase.com/organization/siemens"}, "child_crunchbase": [{"text": "140e9dfc-f9e8-a509-5836-a572c2edb632", "url": "https://www.crunchbase.com/organization/mentor-graphics"}, {"text": "d77835d3-ffc8-40f9-717f-4a6dbd0f08e8", "url": "https://www.crunchbase.com/organization/siemens-healthcare"}, {"text": "306b1ace-315f-8f78-b4e5-6fbe8414db79", "url": "https://www.crunchbase.com/organization/varian-medical-systems"}], "linkedin": ["https://www.linkedin.com/company/siemens", "https://www.linkedin.com/company/mentor_graphics", "https://www.linkedin.com/company/siemens-healthineers", "https://www.linkedin.com/company/varian-medical-systems"], "stage": "Mature", "name": "Siemens", "patent_name": "siemens", "continent": "Europe", "local_logo": "siemens.png", "aliases": "Siemens Ag", "permid_links": [{"text": 4295869238, "url": "https://permid.org/1-4295869238"}, {"text": 4295907127, "url": "https://permid.org/1-4295907127"}, {"text": 5046274429, "url": "https://permid.org/1-5046274429"}, {"text": 4295912319, "url": "https://permid.org/1-4295912319"}], "parent_info": null, "agg_child_info": "Mentor Graphics, Siemens Healthineers, Varian Medical Systems", "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "XETR:SIE", "url": "https://www.google.com/finance/quote/sie:xetr"}, {"text": "BME:SGRE", "url": "https://www.google.com/finance/quote/bme:sgre"}, {"text": "DUS:SIE", "url": "https://www.google.com/finance/quote/dus:sie"}, {"text": "NSE:SIEMENS", "url": "https://www.google.com/finance/quote/nse:siemens"}, {"text": "FRA:SIE", "url": "https://www.google.com/finance/quote/fra:sie"}, {"text": "LSE:0P6M", "url": "https://www.google.com/finance/quote/0p6m:lse"}, {"text": "MIL:SIE", "url": "https://www.google.com/finance/quote/mil:sie"}, {"text": "BER:SIE", "url": "https://www.google.com/finance/quote/ber:sie"}, {"text": "OTC:SIEGY", "url": "https://www.google.com/finance/quote/otc:siegy"}], "crunchbase_description": "Siemens is an engineering and electronics company that specializes in the fields of industry, energy, transportation, and healthcare.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Segmentation", "field_count": 137}, {"field_name": "Reinforcement learning", "field_count": 60}, {"field_name": "Feature (computer vision)", "field_count": 52}, {"field_name": "Deep learning", "field_count": 46}, {"field_name": "Robustness (computer science)", "field_count": 43}, {"field_name": "Pose", "field_count": 37}, {"field_name": "Artificial neural network", "field_count": 36}, {"field_name": "Convolutional neural network", "field_count": 34}, {"field_name": "Iterative reconstruction", "field_count": 28}, {"field_name": "Motion estimation", "field_count": 27}], "clusters": [{"cluster_id": 35442, "cluster_count": 124}, {"cluster_id": 34928, "cluster_count": 58}, {"cluster_id": 7496, "cluster_count": 44}, {"cluster_id": 970, "cluster_count": 39}, {"cluster_id": 3775, "cluster_count": 37}, {"cluster_id": 9956, "cluster_count": 34}, {"cluster_id": 26012, "cluster_count": 22}, {"cluster_id": 28719, "cluster_count": 22}, {"cluster_id": 322, "cluster_count": 21}, {"cluster_id": 6871, "cluster_count": 20}], "company_references": [{"ref_CSET_id": 789, "referenced_count": 2500}, {"ref_CSET_id": 101, "referenced_count": 1530}, {"ref_CSET_id": 163, "referenced_count": 839}, {"ref_CSET_id": 87, "referenced_count": 519}, {"ref_CSET_id": 184, "referenced_count": 179}, {"ref_CSET_id": 115, "referenced_count": 175}, {"ref_CSET_id": 201, "referenced_count": 142}, {"ref_CSET_id": 785, "referenced_count": 118}, {"ref_CSET_id": 6, "referenced_count": 101}, {"ref_CSET_id": 127, "referenced_count": 96}], "tasks": [{"referent": "classification", "task_count": 337}, {"referent": "segmentation", "task_count": 221}, {"referent": "image_registration", "task_count": 167}, {"referent": "disease_detection", "task_count": 143}, {"referent": "image_restoration", "task_count": 110}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 93}, {"referent": "image_processing", "task_count": 78}, {"referent": "motion_planning", "task_count": 67}, {"referent": "semantic_segmentation", "task_count": 59}, {"referent": "image_analysis", "task_count": 58}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 164}, {"referent": "vqa_models", "method_count": 155}, {"referent": "mad_learning", "method_count": 146}, {"referent": "convolutional_neural_networks", "method_count": 126}, {"referent": "3d_representations", "method_count": 107}, {"referent": "3d_reconstruction", "method_count": 105}, {"referent": "q_learning", "method_count": 103}, {"referent": "symbolic_deep_learning", "method_count": 100}, {"referent": "optimization", "method_count": 97}, {"referent": "double_q_learning", "method_count": 95}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2347, 2185, 2216, 2523, 2269, 2471, 2346, 2444, 2379, 1913, 25], "total": 23118, "isTopResearch": false, "rank": 16, "sp500_rank": 14}, "ai_publications": {"counts": [183, 144, 125, 150, 159, 238, 262, 288, 277, 95, 0], "total": 1921, "isTopResearch": false, "rank": 13, "sp500_rank": 11}, "ai_publications_growth": {"counts": [], "total": -19.866583813813538, "isTopResearch": false, "rank": 1322, "sp500_rank": 350}, "ai_pubs_top_conf": {"counts": [1, 7, 13, 9, 16, 24, 24, 15, 19, 2, 0], "total": 130, "isTopResearch": false, "rank": 25, "sp500_rank": 15}, "citation_counts": {"counts": [1657, 2050, 2455, 2701, 3088, 3875, 5311, 6992, 8089, 5948, 228], "total": 42394, "isTopResearch": false, "rank": 18, "sp500_rank": 13}, "cv_pubs": {"counts": [90, 70, 66, 89, 77, 99, 114, 102, 94, 38, 0], "total": 839, "isTopResearch": true, "rank": 11, "sp500_rank": 9}, "nlp_pubs": {"counts": [5, 9, 2, 2, 4, 15, 10, 9, 11, 1, 0], "total": 68, "isTopResearch": true, "rank": 37, "sp500_rank": 27}, "robotics_pubs": {"counts": [8, 8, 11, 7, 9, 28, 33, 31, 24, 11, 0], "total": 170, "isTopResearch": true, "rank": 14, "sp500_rank": 12}, "citations_per_article": {"counts": [9.05464480874317, 14.23611111111111, 19.64, 18.006666666666668, 19.42138364779874, 16.281512605042018, 20.270992366412212, 24.27777777777778, 29.20216606498195, 62.61052631578947, 0], "total": 22.068714211348254, "isTopResearch": false, "rank": 277, "sp500_rank": 77}}, "patents": {"ai_patents": {"counts": [46, 48, 75, 128, 264, 322, 388, 348, 124, 6, 0], "total": 1749, "table": null, "rank": 11, "sp500_rank": 9}, "ai_patents_growth": {"counts": [], "total": 10.719104343039797, "table": null, "rank": 331, "sp500_rank": 156}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [460, 480, 750, 1280, 2640, 3220, 3880, 3480, 1240, 60, 0], "total": 17490, "table": null, "rank": 11, "sp500_rank": 9}, "Physical_Sciences_and_Engineering": {"counts": [5, 1, 4, 1, 5, 9, 11, 3, 2, 0, 0], "total": 41, "table": null, "rank": 13, "sp500_rank": 11}, "Life_Sciences": {"counts": [19, 14, 33, 61, 97, 123, 127, 113, 40, 0, 0], "total": 627, "table": "industry", "rank": 3, "sp500_rank": 2}, "Security__eg_cybersecurity": {"counts": [1, 0, 1, 4, 3, 8, 10, 8, 0, 0, 0], "total": 35, "table": null, "rank": 29, "sp500_rank": 25}, "Transportation": {"counts": [1, 0, 3, 10, 11, 9, 10, 7, 5, 0, 0], "total": 56, "table": null, "rank": 39, "sp500_rank": 31}, "Industrial_and_Manufacturing": {"counts": [0, 3, 8, 6, 18, 30, 50, 18, 13, 3, 0], "total": 149, "table": "industry", "rank": 4, "sp500_rank": 2}, "Education": {"counts": [1, 0, 1, 1, 0, 1, 0, 1, 1, 0, 0], "total": 6, "table": null, "rank": 22, "sp500_rank": 16}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [20, 14, 31, 47, 80, 83, 107, 68, 26, 1, 0], "total": 477, "table": "industry", "rank": 20, "sp500_rank": 17}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 5, 7, 4, 0, 0, 0, 0], "total": 17, "table": null, "rank": 53, "sp500_rank": 43}, "Telecommunications": {"counts": [3, 0, 1, 8, 19, 17, 24, 14, 6, 0, 0], "total": 92, "table": "industry", "rank": 46, "sp500_rank": 41}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [4, 5, 7, 8, 10, 17, 29, 17, 4, 1, 0], "total": 102, "table": "industry", "rank": 27, "sp500_rank": 24}, "Energy_Management": {"counts": [2, 5, 5, 4, 10, 10, 15, 8, 7, 0, 0], "total": 66, "table": null, "rank": 8, "sp500_rank": 8}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 10, "sp500_rank": 9}, "Semiconductors": {"counts": [0, 1, 0, 0, 3, 0, 2, 2, 0, 0, 0], "total": 8, "table": null, "rank": 17, "sp500_rank": 10}, "Language_Processing": {"counts": [0, 1, 5, 4, 3, 9, 3, 1, 0, 0, 0], "total": 26, "table": null, "rank": 20, "sp500_rank": 15}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 4, 3, 2, 1, 0, 0], "total": 11, "table": null, "rank": 77, "sp500_rank": 55}, "Knowledge_Representation": {"counts": [6, 3, 7, 11, 15, 19, 28, 32, 8, 0, 0], "total": 129, "table": "application", "rank": 7, "sp500_rank": 7}, "Planning_and_Scheduling": {"counts": [3, 5, 7, 7, 9, 16, 28, 14, 3, 1, 0], "total": 93, "table": null, "rank": 20, "sp500_rank": 19}, "Control": {"counts": [8, 14, 14, 26, 54, 54, 84, 59, 25, 0, 0], "total": 338, "table": "application", "rank": 9, "sp500_rank": 8}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14}, "Computer_Vision": {"counts": [17, 19, 37, 71, 148, 145, 167, 134, 44, 3, 0], "total": 785, "table": "application", "rank": 9, "sp500_rank": 7}, "Analytics_and_Algorithms": {"counts": [9, 6, 11, 16, 27, 37, 61, 56, 18, 0, 0], "total": 241, "table": "application", "rank": 6, "sp500_rank": 5}, "Measuring_and_Testing": {"counts": [5, 9, 6, 23, 47, 42, 54, 46, 16, 0, 0], "total": 248, "table": "application", "rank": 4, "sp500_rank": 4}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 25235, "rank": 19, "sp500_rank": 14}, "ai_jobs": {"counts": null, "total": 909, "rank": 45, "sp500_rank": 32}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Siemens AG is a German multinational conglomerate company headquartered in Munich and the largest industrial manufacturing company in Europe with branch offices abroad.", "wikipedia_link": "https://en.wikipedia.org/wiki/Siemens", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 112, "country": "China", "website": "https://www.huawei.com/", "crunchbase": {"text": "09cce08a-c9fc-0e79-e825-249b00642c79", "url": "https://www.crunchbase.com/organization/huawei"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/huawei"], "stage": "Mature", "name": "Huawei", "patent_name": "huawei", "continent": "Asia", "local_logo": "huawei.png", "aliases": "Huawei Technologies; Huawei Technologies Co., Ltd; \u534e\u4e3a; \u534e\u4e3a\u6280\u672f\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4296309931, "url": "https://permid.org/1-4296309931"}], "parent_info": "Huawei Investment & Holding Co., Ltd.", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Huawei Technologies provides infrastructure application software and devices with wireline, wireless, and IP technologies.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 112}, {"field_name": "Deep learning", "field_count": 107}, {"field_name": "Feature (computer vision)", "field_count": 104}, {"field_name": "Artificial neural network", "field_count": 87}, {"field_name": "Convolutional neural network", "field_count": 69}, {"field_name": "Robustness (computer science)", "field_count": 63}, {"field_name": "Feature learning", "field_count": 50}, {"field_name": "Language model", "field_count": 49}, {"field_name": "Machine translation", "field_count": 45}, {"field_name": "Segmentation", "field_count": 42}], "clusters": [{"cluster_id": 1193, "cluster_count": 67}, {"cluster_id": 3886, "cluster_count": 66}, {"cluster_id": 5070, "cluster_count": 56}, {"cluster_id": 1149, "cluster_count": 44}, {"cluster_id": 1621, "cluster_count": 43}, {"cluster_id": 3527, "cluster_count": 42}, {"cluster_id": 981, "cluster_count": 36}, {"cluster_id": 10485, "cluster_count": 36}, {"cluster_id": 1436, "cluster_count": 35}, {"cluster_id": 2381, "cluster_count": 33}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8166}, {"ref_CSET_id": 163, "referenced_count": 4917}, {"ref_CSET_id": 87, "referenced_count": 3239}, {"ref_CSET_id": 112, "referenced_count": 2502}, {"ref_CSET_id": 115, "referenced_count": 1040}, {"ref_CSET_id": 245, "referenced_count": 967}, {"ref_CSET_id": 223, "referenced_count": 717}, {"ref_CSET_id": 184, "referenced_count": 714}, {"ref_CSET_id": 37, "referenced_count": 664}, {"ref_CSET_id": 6, "referenced_count": 635}], "tasks": [{"referent": "classification", "task_count": 359}, {"referent": "classification_tasks", "task_count": 129}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 118}, {"referent": "object_detection", "task_count": 94}, {"referent": "computer_vision", "task_count": 89}, {"referent": "image_recognition", "task_count": 81}, {"referent": "image_processing", "task_count": 77}, {"referent": "natural_language_processing", "task_count": 76}, {"referent": "autonomous_driving", "task_count": 66}, {"referent": "recommendation_systems", "task_count": 65}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 360}, {"referent": "3d_representations", "method_count": 215}, {"referent": "convolutional_neural_networks", "method_count": 211}, {"referent": "vqa_models", "method_count": 199}, {"referent": "q_learning", "method_count": 181}, {"referent": "reinforcement_learning", "method_count": 153}, {"referent": "neural_architecture_search", "method_count": 130}, {"referent": "1d_cnn", "method_count": 130}, {"referent": "symbolic_deep_learning", "method_count": 115}, {"referent": "optimization", "method_count": 112}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [789, 1051, 1258, 1346, 1572, 1644, 1727, 1951, 2516, 2170, 21], "total": 16045, "isTopResearch": false, "rank": 26, "sp500_rank": 24}, "ai_publications": {"counts": [82, 110, 111, 101, 134, 216, 460, 701, 926, 404, 0], "total": 3245, "isTopResearch": false, "rank": 6, "sp500_rank": 5}, "ai_publications_growth": {"counts": [], "total": 9.37227278221637, "isTopResearch": false, "rank": 158, "sp500_rank": 81}, "ai_pubs_top_conf": {"counts": [16, 22, 22, 16, 26, 51, 154, 249, 338, 195, 0], "total": 1089, "isTopResearch": false, "rank": 7, "sp500_rank": 6}, "citation_counts": {"counts": [179, 405, 877, 1428, 2341, 3777, 6455, 11687, 17790, 14467, 553], "total": 59959, "isTopResearch": false, "rank": 11, "sp500_rank": 7}, "cv_pubs": {"counts": [34, 52, 45, 34, 30, 80, 193, 286, 368, 165, 0], "total": 1287, "isTopResearch": true, "rank": 4, "sp500_rank": 3}, "nlp_pubs": {"counts": [11, 4, 15, 25, 30, 22, 61, 98, 143, 49, 0], "total": 458, "isTopResearch": true, "rank": 8, "sp500_rank": 7}, "robotics_pubs": {"counts": [1, 3, 1, 1, 4, 8, 14, 20, 35, 21, 0], "total": 108, "isTopResearch": true, "rank": 24, "sp500_rank": 22}, "citations_per_article": {"counts": [2.182926829268293, 3.6818181818181817, 7.900900900900901, 14.138613861386139, 17.470149253731343, 17.48611111111111, 14.032608695652174, 16.671897289586305, 19.211663066954642, 35.80940594059406, 0], "total": 18.477349768875193, "isTopResearch": false, "rank": 339, "sp500_rank": 104}}, "patents": {"ai_patents": {"counts": [32, 51, 44, 107, 159, 253, 628, 984, 387, 59, 0], "total": 2704, "table": null, "rank": 8, "sp500_rank": 7}, "ai_patents_growth": {"counts": [], "total": 88.00957960601188, "table": null, "rank": 128, "sp500_rank": 61}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [320, 510, 440, 1070, 1590, 2530, 6280, 9840, 3870, 590, 0], "total": 27040, "table": null, "rank": 8, "sp500_rank": 7}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": null, "rank": 105, "sp500_rank": 81}, "Life_Sciences": {"counts": [2, 1, 0, 1, 7, 4, 20, 14, 2, 0, 0], "total": 51, "table": null, "rank": 23, "sp500_rank": 19}, "Security__eg_cybersecurity": {"counts": [0, 3, 0, 3, 8, 9, 24, 33, 9, 1, 0], "total": 90, "table": "industry", "rank": 14, "sp500_rank": 12}, "Transportation": {"counts": [0, 0, 1, 8, 13, 18, 30, 40, 7, 1, 0], "total": 118, "table": "industry", "rank": 23, "sp500_rank": 18}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 3, 5, 3, 4, 5, 1, 0, 0], "total": 21, "table": null, "rank": 40, "sp500_rank": 33}, "Education": {"counts": [0, 0, 0, 1, 0, 0, 2, 1, 1, 0, 0], "total": 5, "table": null, "rank": 32, "sp500_rank": 24}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 38, "sp500_rank": 31}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 4, 0, 2, 0, 0], "total": 6, "table": null, "rank": 9, "sp500_rank": 6}, "Personal_Devices_and_Computing": {"counts": [14, 19, 12, 53, 57, 85, 189, 236, 102, 11, 0], "total": 778, "table": "industry", "rank": 12, "sp500_rank": 10}, "Banking_and_Finance": {"counts": [0, 1, 0, 1, 2, 1, 8, 1, 5, 1, 0], "total": 20, "table": null, "rank": 47, "sp500_rank": 37}, "Telecommunications": {"counts": [12, 20, 20, 28, 46, 85, 169, 218, 59, 2, 0], "total": 659, "table": "industry", "rank": 4, "sp500_rank": 4}, "Networks__eg_social_IOT_etc": {"counts": [1, 5, 0, 2, 0, 1, 1, 1, 0, 0, 0], "total": 11, "table": null, "rank": 16, "sp500_rank": 12}, "Business": {"counts": [2, 4, 2, 5, 8, 10, 19, 34, 8, 0, 0], "total": 92, "table": "industry", "rank": 30, "sp500_rank": 25}, "Energy_Management": {"counts": [0, 0, 0, 1, 1, 0, 2, 5, 3, 0, 0], "total": 12, "table": null, "rank": 43, "sp500_rank": 40}, "Entertainment": {"counts": [1, 0, 0, 0, 3, 0, 3, 3, 1, 0, 0], "total": 11, "table": null, "rank": 14, "sp500_rank": 9}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 10, "sp500_rank": 9}, "Semiconductors": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0], "total": 4, "table": null, "rank": 24, "sp500_rank": 14}, "Language_Processing": {"counts": [1, 3, 1, 6, 4, 3, 2, 0, 0, 0, 0], "total": 20, "table": null, "rank": 25, "sp500_rank": 19}, "Speech_Processing": {"counts": [1, 0, 2, 5, 6, 14, 25, 48, 13, 1, 0], "total": 115, "table": "application", "rank": 10, "sp500_rank": 8}, "Knowledge_Representation": {"counts": [4, 5, 2, 14, 6, 5, 17, 6, 1, 0, 0], "total": 60, "table": null, "rank": 21, "sp500_rank": 17}, "Planning_and_Scheduling": {"counts": [2, 1, 1, 1, 6, 6, 13, 26, 3, 0, 0], "total": 59, "table": null, "rank": 31, "sp500_rank": 28}, "Control": {"counts": [0, 1, 4, 9, 20, 19, 32, 33, 2, 0, 0], "total": 120, "table": "application", "rank": 31, "sp500_rank": 25}, "Distributed_AI": {"counts": [2, 0, 0, 0, 2, 1, 0, 2, 0, 0, 0], "total": 7, "table": null, "rank": 9, "sp500_rank": 7}, "Robotics": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 14, "sp500_rank": 9}, "Computer_Vision": {"counts": [6, 9, 8, 22, 59, 94, 222, 340, 145, 14, 0], "total": 919, "table": "application", "rank": 8, "sp500_rank": 6}, "Analytics_and_Algorithms": {"counts": [4, 6, 10, 9, 15, 25, 47, 37, 18, 2, 0], "total": 173, "table": "application", "rank": 7, "sp500_rank": 6}, "Measuring_and_Testing": {"counts": [0, 0, 2, 9, 6, 11, 31, 38, 6, 1, 0], "total": 104, "table": "application", "rank": 23, "sp500_rank": 18}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 24209, "rank": 20, "sp500_rank": 15}, "ai_jobs": {"counts": null, "total": 1016, "rank": 44, "sp500_rank": 31}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Huawei Technologies Co., Ltd. is a Chinese multinational technology company headquartered in Shenzhen, Guangdong. It designs, develops, and sells telecommunications equipment and consumer electronics.", "wikipedia_link": "https://en.wikipedia.org/wiki/Huawei", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 87, "country": "United States", "website": "http://www.facebook.com", "crunchbase": {"text": "df662812-7f97-0b43-9d3e-12f64f504fbb", "url": "https://www.crunchbase.com/organization/facebook"}, "child_crunchbase": [{"text": "a9b6da58-4294-40e1-810d-84ec5a54c9bc", "url": "https://www.crunchbase.com/organization/facebook-reality-labs"}, {"text": "e5979bbb-823c-3462-d5f5-65a3447e18a5", "url": "https://www.crunchbase.com/organization/ctrl-labs"}, {"text": "71a13c22-6607-319f-2374-60ceb95ebdc0", "url": "https://www.crunchbase.com/organization/grokstyle"}, {"text": "943de8c8-8f94-4473-9e67-69d9fdf5edb4", "url": "https://www.crunchbase.com/organization/ai-reverie"}, {"text": "673ed588-4db7-04e3-a63b-51f83205ce02", "url": "https://www.crunchbase.com/organization/mapillary"}, {"text": "512b494a-f744-a134-1d43-fd4f36f629d8", "url": "https://www.crunchbase.com/organization/oculus-vr"}, {"text": "a155128c-9fa8-4b08-9036-66ae11f598a3", "url": "https://www.crunchbase.com/organization/facebook-ai"}, {"text": "6e516605-d555-41f1-bfa6-04e04603c4e5", "url": "https://www.crunchbase.com/organization/facebook-research"}], "linkedin": ["https://www.linkedin.com/company/ctrl-labs", "https://www.linkedin.com/company/facebook", "https://www.linkedin.com/company/grokstyle", "https://www.linkedin.com/company/aireverie", "https://www.linkedin.com/company/mapillary", "https://www.linkedin.com/company/oculus-vr"], "stage": "Mature", "name": "Meta", "patent_name": "meta", "continent": "North America", "local_logo": "meta.png", "aliases": "Facebook; Facebook, Inc", "permid_links": [{"text": 5060641199, "url": "https://permid.org/1-5060641199"}, {"text": 4297297477, "url": "https://permid.org/1-4297297477"}, {"text": 5052526295, "url": "https://permid.org/1-5052526295"}, {"text": 5063746437, "url": "https://permid.org/1-5063746437"}, {"text": 5045867015, "url": "https://permid.org/1-5045867015"}, {"text": 5040047854, "url": "https://permid.org/1-5040047854"}], "parent_info": null, "agg_child_info": "Facebook Reality Labs, CTRL-Labs, GrokStyle, AI.Reverie, Mapillary, Oculus Vr, Meta Ai, Facebook Research", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:FB", "url": "https://www.google.com/finance/quote/fb:nasdaq"}], "market_full": [{"text": "NASDAQ:FB", "url": "https://www.google.com/finance/quote/fb:nasdaq"}, {"text": "XETR:FB2A", "url": "https://www.google.com/finance/quote/fb2a:xetr"}], "crunchbase_description": "Meta is a social technology company that enables people to connect, find communities, and grow businesses.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Reinforcement learning", "field_count": 111}, {"field_name": "Machine translation", "field_count": 87}, {"field_name": "Language model", "field_count": 83}, {"field_name": "Deep learning", "field_count": 67}, {"field_name": "Question answering", "field_count": 66}, {"field_name": "Artificial neural network", "field_count": 60}, {"field_name": "Feature learning", "field_count": 54}, {"field_name": "Convolutional neural network", "field_count": 49}, {"field_name": "Segmentation", "field_count": 46}, {"field_name": "Task (computing)", "field_count": 45}], "clusters": [{"cluster_id": 1193, "cluster_count": 155}, {"cluster_id": 3527, "cluster_count": 84}, {"cluster_id": 3446, "cluster_count": 70}, {"cluster_id": 1422, "cluster_count": 70}, {"cluster_id": 1609, "cluster_count": 66}, {"cluster_id": 6516, "cluster_count": 57}, {"cluster_id": 16940, "cluster_count": 54}, {"cluster_id": 30192, "cluster_count": 53}, {"cluster_id": 14887, "cluster_count": 50}, {"cluster_id": 13405, "cluster_count": 47}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 12887}, {"ref_CSET_id": 87, "referenced_count": 9670}, {"ref_CSET_id": 163, "referenced_count": 6120}, {"ref_CSET_id": 115, "referenced_count": 1148}, {"ref_CSET_id": 6, "referenced_count": 1108}, {"ref_CSET_id": 184, "referenced_count": 951}, {"ref_CSET_id": 23, "referenced_count": 696}, {"ref_CSET_id": 127, "referenced_count": 677}, {"ref_CSET_id": 37, "referenced_count": 526}, {"ref_CSET_id": 245, "referenced_count": 419}], "tasks": [{"referent": "classification", "task_count": 279}, {"referent": "classification_tasks", "task_count": 160}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 141}, {"referent": "domain_generalization", "task_count": 94}, {"referent": "machine_translation", "task_count": 92}, {"referent": "speech_recognition", "task_count": 85}, {"referent": "computer_vision", "task_count": 82}, {"referent": "image_recognition", "task_count": 79}, {"referent": "inference_attack", "task_count": 69}, {"referent": "representation_learning", "task_count": 69}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 367}, {"referent": "3d_representations", "method_count": 320}, {"referent": "vqa_models", "method_count": 251}, {"referent": "q_learning", "method_count": 176}, {"referent": "convolutional_neural_networks", "method_count": 167}, {"referent": "reinforcement_learning", "method_count": 135}, {"referent": "language_models", "method_count": 132}, {"referent": "neural_architecture_search", "method_count": 112}, {"referent": "optimization", "method_count": 109}, {"referent": "self_supervised_learning", "method_count": 100}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [139, 223, 275, 376, 498, 775, 999, 1331, 1304, 214, 1], "total": 6135, "isTopResearch": false, "rank": 56, "sp500_rank": 50, "fortune500_rank": 19}, "ai_publications": {"counts": [30, 52, 103, 138, 209, 369, 583, 798, 730, 48, 0], "total": 3060, "isTopResearch": false, "rank": 7, "sp500_rank": 6, "fortune500_rank": 3}, "ai_publications_growth": {"counts": [], "total": -21.689248222964267, "isTopResearch": false, "rank": 1341, "sp500_rank": 357, "fortune500_rank": 391}, "ai_pubs_top_conf": {"counts": [16, 27, 53, 62, 108, 217, 317, 333, 399, 35, 0], "total": 1567, "isTopResearch": false, "rank": 4, "sp500_rank": 3, "fortune500_rank": 3}, "citation_counts": {"counts": [352, 816, 2170, 5987, 13627, 27479, 48737, 68137, 82599, 54382, 1774], "total": 306060, "isTopResearch": false, "rank": 3, "sp500_rank": 2, "fortune500_rank": 2}, "cv_pubs": {"counts": [7, 14, 42, 54, 83, 133, 180, 242, 230, 20, 0], "total": 1005, "isTopResearch": true, "rank": 9, "sp500_rank": 7, "fortune500_rank": 4}, "nlp_pubs": {"counts": [6, 17, 32, 43, 57, 107, 190, 253, 231, 11, 0], "total": 947, "isTopResearch": true, "rank": 5, "sp500_rank": 4, "fortune500_rank": 4}, "robotics_pubs": {"counts": [0, 0, 1, 1, 3, 7, 38, 46, 35, 3, 0], "total": 134, "isTopResearch": true, "rank": 20, "sp500_rank": 18, "fortune500_rank": 5}, "citations_per_article": {"counts": [11.733333333333333, 15.692307692307692, 21.067961165048544, 43.38405797101449, 65.20095693779905, 74.46883468834689, 83.59691252144083, 85.38471177944862, 113.14931506849315, 1132.9583333333333, 0], "total": 100.01960784313725, "isTopResearch": false, "rank": 33, "sp500_rank": 5, "fortune500_rank": 8}}, "patents": {"ai_patents": {"counts": [16, 30, 54, 124, 225, 123, 99, 52, 4, 2, 0], "total": 729, "table": null, "rank": 39, "sp500_rank": 32, "fortune500_rank": 10}, "ai_patents_growth": {"counts": [], "total": -37.440091976677344, "table": null, "rank": 1501, "sp500_rank": 441, "fortune500_rank": 435}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [160, 300, 540, 1240, 2250, 1230, 990, 520, 40, 20, 0], "total": 7290, "table": null, "rank": 39, "sp500_rank": 32, "fortune500_rank": 10}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [2, 0, 0, 2, 2, 8, 2, 3, 0, 0, 0], "total": 19, "table": null, "rank": 57, "sp500_rank": 39, "fortune500_rank": 23}, "Security__eg_cybersecurity": {"counts": [1, 2, 1, 1, 9, 7, 3, 2, 0, 1, 0], "total": 27, "table": "industry", "rank": 43, "sp500_rank": 33, "fortune500_rank": 19}, "Transportation": {"counts": [0, 0, 0, 2, 2, 4, 0, 0, 0, 0, 0], "total": 8, "table": null, "rank": 107, "sp500_rank": 79, "fortune500_rank": 30}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 1, 1, 2, 0, 0, 0], "total": 5, "table": null, "rank": 104, "sp500_rank": 72, "fortune500_rank": 31}, "Education": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 50, "sp500_rank": 36, "fortune500_rank": 15}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [9, 17, 38, 59, 128, 86, 66, 35, 2, 2, 0], "total": 442, "table": "industry", "rank": 23, "sp500_rank": 19, "fortune500_rank": 8}, "Banking_and_Finance": {"counts": [0, 2, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 115, "sp500_rank": 79, "fortune500_rank": 41}, "Telecommunications": {"counts": [8, 17, 16, 40, 76, 39, 30, 15, 1, 0, 0], "total": 242, "table": "industry", "rank": 19, "sp500_rank": 16, "fortune500_rank": 8}, "Networks__eg_social_IOT_etc": {"counts": [4, 14, 17, 48, 76, 27, 8, 6, 0, 0, 0], "total": 200, "table": "industry", "rank": 2, "sp500_rank": 2, "fortune500_rank": 2}, "Business": {"counts": [2, 7, 10, 53, 89, 25, 8, 7, 0, 0, 0], "total": 201, "table": "industry", "rank": 14, "sp500_rank": 14, "fortune500_rank": 6}, "Energy_Management": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94, "fortune500_rank": 31}, "Entertainment": {"counts": [1, 0, 0, 0, 2, 0, 1, 2, 0, 0, 0], "total": 6, "table": null, "rank": 26, "sp500_rank": 18, "fortune500_rank": 11}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 28, "sp500_rank": 17, "fortune500_rank": 14}, "Language_Processing": {"counts": [0, 3, 12, 9, 10, 9, 1, 0, 0, 0, 0], "total": 44, "table": "application", "rank": 12, "sp500_rank": 8, "fortune500_rank": 6}, "Speech_Processing": {"counts": [0, 0, 2, 4, 5, 8, 6, 1, 0, 0, 0], "total": 26, "table": null, "rank": 43, "sp500_rank": 34, "fortune500_rank": 12}, "Knowledge_Representation": {"counts": [3, 7, 13, 18, 72, 23, 8, 1, 0, 0, 0], "total": 145, "table": "application", "rank": 6, "sp500_rank": 6, "fortune500_rank": 4}, "Planning_and_Scheduling": {"counts": [1, 3, 4, 23, 22, 4, 5, 0, 0, 0, 0], "total": 62, "table": "application", "rank": 30, "sp500_rank": 27, "fortune500_rank": 11}, "Control": {"counts": [0, 0, 1, 0, 4, 5, 4, 1, 0, 0, 0], "total": 15, "table": null, "rank": 111, "sp500_rank": 80, "fortune500_rank": 36}, "Distributed_AI": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 36, "sp500_rank": 28, "fortune500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [8, 6, 5, 29, 46, 46, 40, 30, 3, 2, 0], "total": 215, "table": "application", "rank": 40, "sp500_rank": 30, "fortune500_rank": 11}, "Analytics_and_Algorithms": {"counts": [1, 2, 0, 5, 4, 12, 5, 3, 0, 0, 0], "total": 32, "table": "application", "rank": 38, "sp500_rank": 33, "fortune500_rank": 19}, "Measuring_and_Testing": {"counts": [5, 1, 0, 3, 5, 3, 2, 0, 0, 0, 0], "total": 19, "table": null, "rank": 88, "sp500_rank": 65, "fortune500_rank": 28}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 23697, "rank": 21, "sp500_rank": 16, "fortune500_rank": 13}, "ai_jobs": {"counts": null, "total": 3874, "rank": 10, "sp500_rank": 6, "fortune500_rank": 7}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 807, "country": "United States", "website": "http://www.wellsfargo.com", "crunchbase": {"text": "3e683191-c38b-5166-9ae3-8bfc3b975859", "url": "https://www.crunchbase.com/organization/wells-fargo-bank"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/wellsfargo"], "stage": "Mature", "name": "Wells Fargo", "patent_name": "Wells Fargo", "continent": "North America", "local_logo": "wells_fargo.png", "aliases": "Wells Fargo; Wells Fargo & Co; Wells Fargo & Company; Wells Fargo Bank Na", "permid_links": [{"text": 8589934175, "url": "https://permid.org/1-8589934175"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WFC PR R", "url": "https://www.google.com/finance/quote/NYSE:WFC PR R"}, {"text": "NYSE:WFC PR C", "url": "https://www.google.com/finance/quote/NYSE:WFC PR C"}, {"text": "NYSE:WFC", "url": "https://www.google.com/finance/quote/NYSE:WFC"}, {"text": "NYSE:WFC PR L", "url": "https://www.google.com/finance/quote/NYSE:WFC PR L"}, {"text": "NYSE:WFC PR Z", "url": "https://www.google.com/finance/quote/NYSE:WFC PR Z"}, {"text": "NYSE:WFC PR A", "url": "https://www.google.com/finance/quote/NYSE:WFC PR A"}, {"text": "NYSE:WFC PR D", "url": "https://www.google.com/finance/quote/NYSE:WFC PR D"}, {"text": "NYSE:WFC PR Q", "url": "https://www.google.com/finance/quote/NYSE:WFC PR Q"}, {"text": "NYSE:WFC PR Y", "url": "https://www.google.com/finance/quote/NYSE:WFC PR Y"}], "market_full": [{"text": "BER:NWT", "url": "https://www.google.com/finance/quote/BER:NWT"}, {"text": "BUE:WFC3", "url": "https://www.google.com/finance/quote/BUE:WFC3"}, {"text": "GER:NWTX", "url": "https://www.google.com/finance/quote/GER:NWTX"}, {"text": "NYSE:WFC PR R", "url": "https://www.google.com/finance/quote/NYSE:WFC PR R"}, {"text": "BRN:NWT", "url": "https://www.google.com/finance/quote/BRN:NWT"}, {"text": "NYQ:WFC PR Y", "url": "https://www.google.com/finance/quote/NYQ:WFC PR Y"}, {"text": "SGO:WFCCL", "url": "https://www.google.com/finance/quote/SGO:WFCCL"}, {"text": "NYSE:WFC PR C", "url": "https://www.google.com/finance/quote/NYSE:WFC PR C"}, {"text": "ASE:WFC PR A", "url": "https://www.google.com/finance/quote/ASE:WFC PR A"}, {"text": "MEX:WFC*", "url": "https://www.google.com/finance/quote/MEX:WFC*"}, {"text": "NYSE:WFC", "url": "https://www.google.com/finance/quote/NYSE:WFC"}, {"text": "ASE:WFC PR R", "url": "https://www.google.com/finance/quote/ASE:WFC PR R"}, {"text": "DUS:NWT", "url": "https://www.google.com/finance/quote/DUS:NWT"}, {"text": "NYQ:WFC PR D", "url": "https://www.google.com/finance/quote/NYQ:WFC PR D"}, {"text": "NYQ:WFC PR L", "url": "https://www.google.com/finance/quote/NYQ:WFC PR L"}, {"text": "SWX:WFC", "url": "https://www.google.com/finance/quote/SWX:WFC"}, {"text": "ASE:WFC PR D", "url": "https://www.google.com/finance/quote/ASE:WFC PR D"}, {"text": "DEU:NWT0", "url": "https://www.google.com/finance/quote/DEU:NWT0"}, {"text": "PKC:WFCNP", "url": "https://www.google.com/finance/quote/PKC:WFCNP"}, {"text": "ASE:WFC PR Z", "url": "https://www.google.com/finance/quote/ASE:WFC PR Z"}, {"text": "VIE:WFC", "url": "https://www.google.com/finance/quote/VIE:WFC"}, {"text": "NYQ:WFC PR C", "url": "https://www.google.com/finance/quote/NYQ:WFC PR C"}, {"text": "HAN:NWT", "url": "https://www.google.com/finance/quote/HAN:NWT"}, {"text": "NYSE:WFC PR L", "url": "https://www.google.com/finance/quote/NYSE:WFC PR L"}, {"text": "SGO:WFC", "url": "https://www.google.com/finance/quote/SGO:WFC"}, {"text": "NYQ:WFC PR Q", "url": "https://www.google.com/finance/quote/NYQ:WFC PR Q"}, {"text": "ASE:WFC PR C", "url": "https://www.google.com/finance/quote/ASE:WFC PR C"}, {"text": "NYQ:WFC", "url": "https://www.google.com/finance/quote/NYQ:WFC"}, {"text": "LSE:0R2F", "url": "https://www.google.com/finance/quote/0R2F:LSE"}, {"text": "ASE:WFC PR Y", "url": "https://www.google.com/finance/quote/ASE:WFC PR Y"}, {"text": "ASE:WFC PR L", "url": "https://www.google.com/finance/quote/ASE:WFC PR L"}, {"text": "NYSE:WFC PR Z", "url": "https://www.google.com/finance/quote/NYSE:WFC PR Z"}, {"text": "HAM:NWT", "url": "https://www.google.com/finance/quote/HAM:NWT"}, {"text": "ASE:WFC PR Q", "url": "https://www.google.com/finance/quote/ASE:WFC PR Q"}, {"text": "FRA:NWT", "url": "https://www.google.com/finance/quote/FRA:NWT"}, {"text": "NYSE:WFC PR A", "url": "https://www.google.com/finance/quote/NYSE:WFC PR A"}, {"text": "STU:NWT", "url": "https://www.google.com/finance/quote/NWT:STU"}, {"text": "DEU:NOB", "url": "https://www.google.com/finance/quote/DEU:NOB"}, {"text": "ASE:WFC", "url": "https://www.google.com/finance/quote/ASE:WFC"}, {"text": "MCX:WFC-RM", "url": "https://www.google.com/finance/quote/MCX:WFC-RM"}, {"text": "NYSE:WFC PR D", "url": "https://www.google.com/finance/quote/NYSE:WFC PR D"}, {"text": "NYQ:WFC PR Z", "url": "https://www.google.com/finance/quote/NYQ:WFC PR Z"}, {"text": "NYQ:WFC PR R", "url": "https://www.google.com/finance/quote/NYQ:WFC PR R"}, {"text": "MUN:NWT", "url": "https://www.google.com/finance/quote/MUN:NWT"}, {"text": "NYQ:WFC PR A", "url": "https://www.google.com/finance/quote/NYQ:WFC PR A"}, {"text": "NYSE:WFC PR Q", "url": "https://www.google.com/finance/quote/NYSE:WFC PR Q"}, {"text": "NYSE:WFC PR Y", "url": "https://www.google.com/finance/quote/NYSE:WFC PR Y"}], "crunchbase_description": "Wells Fargo & Company is a diversified financial services company with $1.3 trillion assets providing banking, insurance, and investments.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Interpretability", "field_count": 2}, {"field_name": "Ontology (information science)", "field_count": 2}, {"field_name": "Unsupervised learning", "field_count": 2}, {"field_name": "Boosting (machine learning)", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Sentence", "field_count": 1}, {"field_name": "Time series", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}], "clusters": [{"cluster_id": 5109, "cluster_count": 8}, {"cluster_id": 12846, "cluster_count": 2}, {"cluster_id": 70883, "cluster_count": 1}, {"cluster_id": 97456, "cluster_count": 1}, {"cluster_id": 77072, "cluster_count": 1}, {"cluster_id": 32830, "cluster_count": 1}, {"cluster_id": 45322, "cluster_count": 1}, {"cluster_id": 4358, "cluster_count": 1}, {"cluster_id": 28457, "cluster_count": 1}, {"cluster_id": 27006, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 38}, {"ref_CSET_id": 163, "referenced_count": 21}, {"ref_CSET_id": 87, "referenced_count": 9}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 807, "referenced_count": 6}, {"ref_CSET_id": 319, "referenced_count": 3}, {"ref_CSET_id": 219, "referenced_count": 2}, {"ref_CSET_id": 1911, "referenced_count": 2}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "svbrdf_estimation", "task_count": 3}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "active_learning", "task_count": 2}, {"referent": "portfolio_optimization", "task_count": 2}, {"referent": "image_interpretation", "task_count": 1}, {"referent": "multiobjective_optimization", "task_count": 1}, {"referent": "esl", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "knowledge_base", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "rule_based_systems", "method_count": 3}, {"referent": "base_boosting", "method_count": 3}, {"referent": "optimization", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [18, 28, 23, 76, 48, 31, 33, 28, 25, 27, 1], "total": 338, "isTopResearch": false, "rank": 341, "sp500_rank": 221, "fortune500_rank": 129}, "ai_publications": {"counts": [0, 1, 0, 1, 1, 2, 5, 4, 6, 7, 0], "total": 27, "isTopResearch": false, "rank": 260, "sp500_rank": 155, "fortune500_rank": 78}, "ai_publications_growth": {"counts": [], "total": 15.555555555555557, "isTopResearch": false, "rank": 133, "sp500_rank": 68, "fortune500_rank": 38}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [4, 5, 8, 12, 7, 6, 14, 60, 64, 70, 2], "total": 252, "isTopResearch": false, "rank": 357, "sp500_rank": 166, "fortune500_rank": 106}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 1, 1, 0], "total": 5, "isTopResearch": true, "rank": 141, "sp500_rank": 83, "fortune500_rank": 42}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 5.0, 0, 12.0, 7.0, 3.0, 2.8, 15.0, 10.666666666666666, 10.0, 0], "total": 9.333333333333334, "isTopResearch": false, "rank": 566, "sp500_rank": 211, "fortune500_rank": 165}}, "patents": {"ai_patents": {"counts": [1, 0, 7, 8, 20, 21, 10, 12, 1, 0, 0], "total": 80, "table": null, "rank": 174, "sp500_rank": 110, "fortune500_rank": 53}, "ai_patents_growth": {"counts": [], "total": -9.126984126984127, "table": null, "rank": 1438, "sp500_rank": 422, "fortune500_rank": 414}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 70, 80, 200, 210, 100, 120, 10, 0, 0], "total": 800, "table": null, "rank": 174, "sp500_rank": 110, "fortune500_rank": 53}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 199, "sp500_rank": 114, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [1, 0, 1, 0, 1, 1, 3, 4, 0, 0, 0], "total": 11, "table": "industry", "rank": 86, "sp500_rank": 63, "fortune500_rank": 37}, "Transportation": {"counts": [0, 0, 0, 0, 7, 0, 0, 0, 0, 0, 0], "total": 7, "table": null, "rank": 112, "sp500_rank": 83, "fortune500_rank": 32}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 34, "sp500_rank": 26, "fortune500_rank": 8}, "Personal_Devices_and_Computing": {"counts": [1, 0, 3, 2, 8, 11, 7, 5, 1, 0, 0], "total": 38, "table": "industry", "rank": 136, "sp500_rank": 82, "fortune500_rank": 49}, "Banking_and_Finance": {"counts": [0, 0, 0, 5, 10, 4, 3, 6, 0, 0, 0], "total": 28, "table": "industry", "rank": 38, "sp500_rank": 30, "fortune500_rank": 17}, "Telecommunications": {"counts": [1, 0, 2, 3, 6, 12, 4, 4, 0, 0, 0], "total": 32, "table": "industry", "rank": 103, "sp500_rank": 70, "fortune500_rank": 43}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 55, "sp500_rank": 41, "fortune500_rank": 26}, "Business": {"counts": [0, 0, 5, 4, 8, 5, 2, 4, 0, 0, 0], "total": 28, "table": "industry", "rank": 81, "sp500_rank": 57, "fortune500_rank": 31}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "sp500_rank": 67, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 105, "sp500_rank": 66, "fortune500_rank": 30}, "Knowledge_Representation": {"counts": [0, 0, 1, 2, 5, 4, 0, 2, 0, 0, 0], "total": 14, "table": "application", "rank": 63, "sp500_rank": 46, "fortune500_rank": 36}, "Planning_and_Scheduling": {"counts": [0, 0, 3, 2, 5, 4, 1, 3, 0, 0, 0], "total": 18, "table": "application", "rank": 88, "sp500_rank": 65, "fortune500_rank": 33}, "Control": {"counts": [0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 0], "total": 8, "table": "application", "rank": 150, "sp500_rank": 102, "fortune500_rank": 50}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 450, "sp500_rank": 196, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 1, 2, 2, 1, 0, 0, 0], "total": 7, "table": "application", "rank": 137, "sp500_rank": 98, "fortune500_rank": 57}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 3, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 209, "sp500_rank": 132, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 23382, "rank": 22, "sp500_rank": 17, "fortune500_rank": 14}, "ai_jobs": {"counts": null, "total": 3180, "rank": 11, "sp500_rank": 7, "fortune500_rank": 8}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 812, "country": "Germany", "website": "https://www.sap.com/", "crunchbase": {"text": "315e1e59-3784-ab73-9c4a-447d2616ae82", "url": "https://www.crunchbase.com/organization/sap"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sap"], "stage": "Mature", "name": "Sap", "patent_name": "SAP", "continent": "Europe", "local_logo": "sap.png", "aliases": "SAP; Sap Se", "permid_links": [{"text": 5043321284, "url": "https://permid.org/1-5043321284"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SAP", "url": "https://www.google.com/finance/quote/NYSE:SAP"}], "market_full": [{"text": "GER:SAPX", "url": "https://www.google.com/finance/quote/GER:SAPX"}, {"text": "BER:SAP", "url": "https://www.google.com/finance/quote/BER:SAP"}, {"text": "STU:SAPA", "url": "https://www.google.com/finance/quote/SAPA:STU"}, {"text": "BRN:SAP", "url": "https://www.google.com/finance/quote/BRN:SAP"}, {"text": "BUD:SAP", "url": "https://www.google.com/finance/quote/BUD:SAP"}, {"text": "STU:SAP", "url": "https://www.google.com/finance/quote/SAP:STU"}, {"text": "VIE:SAP", "url": "https://www.google.com/finance/quote/SAP:VIE"}, {"text": "EBT:SAPD", "url": "https://www.google.com/finance/quote/EBT:SAPd"}, {"text": "NYQ:SAP", "url": "https://www.google.com/finance/quote/NYQ:SAP"}, {"text": "MUN:SAPA", "url": "https://www.google.com/finance/quote/MUN:SAPA"}, {"text": "FRA:SAP", "url": "https://www.google.com/finance/quote/FRA:SAP"}, {"text": "HAM:SAP", "url": "https://www.google.com/finance/quote/HAM:SAP"}, {"text": "DEU:SAPA", "url": "https://www.google.com/finance/quote/DEU:SAPA"}, {"text": "NYSE:SAP", "url": "https://www.google.com/finance/quote/NYSE:SAP"}, {"text": "PKC:SAPGF", "url": "https://www.google.com/finance/quote/PKC:SAPGF"}, {"text": "MEX:SAP1N", "url": "https://www.google.com/finance/quote/MEX:SAP1N"}, {"text": "LSE:0A2W", "url": "https://www.google.com/finance/quote/0A2W:LSE"}, {"text": "DEU:SAPG", "url": "https://www.google.com/finance/quote/DEU:SAPG"}, {"text": "LSE:0NW4", "url": "https://www.google.com/finance/quote/0NW4:LSE"}, {"text": "SWX:SAP", "url": "https://www.google.com/finance/quote/SAP:SWX"}, {"text": "BUE:SAP3", "url": "https://www.google.com/finance/quote/BUE:SAP3"}, {"text": "BER:SAPA", "url": "https://www.google.com/finance/quote/BER:SAPA"}, {"text": "DUS:SAP", "url": "https://www.google.com/finance/quote/DUS:SAP"}, {"text": "MEX:SAPN", "url": "https://www.google.com/finance/quote/MEX:SAPN"}, {"text": "MCX:SAP-RM", "url": "https://www.google.com/finance/quote/MCX:SAP-RM"}, {"text": "MUN:SAP", "url": "https://www.google.com/finance/quote/MUN:SAP"}, {"text": "FRA:SAPA", "url": "https://www.google.com/finance/quote/FRA:SAPA"}, {"text": "MIL:SAP", "url": "https://www.google.com/finance/quote/MIL:SAP"}, {"text": "HAN:SAP", "url": "https://www.google.com/finance/quote/HAN:SAP"}, {"text": "MCX:SAP1-RM", "url": "https://www.google.com/finance/quote/MCX:SAP1-RM"}, {"text": "DUS:SAPA", "url": "https://www.google.com/finance/quote/DUS:SAPA"}], "crunchbase_description": "SAP is a technology company that develops enterprise application software for companies and industries across diverse sectors.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Ontology (information science)", "field_count": 13}, {"field_name": "Differential privacy", "field_count": 5}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Embedding", "field_count": 3}, {"field_name": "Automatic summarization", "field_count": 3}, {"field_name": "Task (computing)", "field_count": 2}, {"field_name": "Collective intelligence", "field_count": 2}, {"field_name": "Semantic similarity", "field_count": 2}, {"field_name": "Discriminative model", "field_count": 2}], "clusters": [{"cluster_id": 2996, "cluster_count": 7}, {"cluster_id": 7496, "cluster_count": 5}, {"cluster_id": 1154, "cluster_count": 5}, {"cluster_id": 5760, "cluster_count": 4}, {"cluster_id": 41017, "cluster_count": 4}, {"cluster_id": 11822, "cluster_count": 4}, {"cluster_id": 14903, "cluster_count": 3}, {"cluster_id": 1149, "cluster_count": 3}, {"cluster_id": 97675, "cluster_count": 3}, {"cluster_id": 2983, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 130}, {"ref_CSET_id": 163, "referenced_count": 77}, {"ref_CSET_id": 812, "referenced_count": 73}, {"ref_CSET_id": 87, "referenced_count": 57}, {"ref_CSET_id": 23, "referenced_count": 16}, {"ref_CSET_id": 115, "referenced_count": 15}, {"ref_CSET_id": 6, "referenced_count": 9}, {"ref_CSET_id": 792, "referenced_count": 7}, {"ref_CSET_id": 1797, "referenced_count": 7}, {"ref_CSET_id": 37, "referenced_count": 6}], "tasks": [{"referent": "classification", "task_count": 17}, {"referent": "knowledge_base", "task_count": 9}, {"referent": "classification_tasks", "task_count": 7}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "developmental_learning", "task_count": 5}, {"referent": "data_mining", "task_count": 5}, {"referent": "point_processes", "task_count": 5}, {"referent": "multi_task_learning", "task_count": 5}, {"referent": "information_extraction", "task_count": 5}, {"referent": "video_description", "task_count": 4}], "methods": [{"referent": "double_q_learning", "method_count": 9}, {"referent": "recurrent_neural_networks", "method_count": 9}, {"referent": "meta_learning_algorithms", "method_count": 9}, {"referent": "vqa_models", "method_count": 8}, {"referent": "mad_learning", "method_count": 8}, {"referent": "auto_classifier", "method_count": 6}, {"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "3d_representations", "method_count": 5}, {"referent": "griffin_lim_algorithm", "method_count": 5}, {"referent": "q_learning", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [204, 206, 147, 136, 138, 104, 110, 108, 77, 69, 1], "total": 1300, "isTopResearch": false, "rank": 164, "sp500_rank": 124}, "ai_publications": {"counts": [10, 12, 6, 4, 10, 21, 22, 14, 19, 11, 0], "total": 129, "isTopResearch": false, "rank": 106, "sp500_rank": 76}, "ai_publications_growth": {"counts": [], "total": -14.251537935748464, "isTopResearch": false, "rank": 1289, "sp500_rank": 331}, "ai_pubs_top_conf": {"counts": [2, 2, 1, 1, 0, 4, 0, 1, 1, 1, 0], "total": 13, "isTopResearch": false, "rank": 99, "sp500_rank": 51}, "citation_counts": {"counts": [84, 104, 110, 96, 140, 255, 396, 505, 550, 480, 24], "total": 2744, "isTopResearch": false, "rank": 108, "sp500_rank": 69}, "cv_pubs": {"counts": [1, 1, 0, 1, 4, 4, 5, 2, 4, 0, 0], "total": 22, "isTopResearch": true, "rank": 130, "sp500_rank": 81}, "nlp_pubs": {"counts": [3, 6, 1, 0, 2, 5, 1, 5, 3, 6, 0], "total": 32, "isTopResearch": true, "rank": 54, "sp500_rank": 40}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [8.4, 8.666666666666666, 18.333333333333332, 24.0, 14.0, 12.142857142857142, 18.0, 36.07142857142857, 28.94736842105263, 43.63636363636363, 0], "total": 21.271317829457363, "isTopResearch": false, "rank": 290, "sp500_rank": 83}}, "patents": {"ai_patents": {"counts": [17, 20, 25, 39, 72, 116, 136, 113, 32, 0, 0], "total": 570, "table": null, "rank": 51, "sp500_rank": 41}, "ai_patents_growth": {"counts": [], "total": 20.480241905191196, "table": null, "rank": 300, "sp500_rank": 141}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [170, 200, 250, 390, 720, 1160, 1360, 1130, 320, 0, 0], "total": 5700, "table": null, "rank": 51, "sp500_rank": 41}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 0, 6, 2, 4, 9, 8, 8, 3, 0, 0], "total": 40, "table": "industry", "rank": 26, "sp500_rank": 22}, "Transportation": {"counts": [1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 159, "sp500_rank": 107}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 3, 0, 2, 0, 2, 0, 0, 0], "total": 8, "table": null, "rank": 81, "sp500_rank": 56}, "Education": {"counts": [0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 39, "sp500_rank": 28}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [6, 13, 18, 25, 54, 88, 89, 87, 19, 0, 0], "total": 399, "table": "industry", "rank": 24, "sp500_rank": 20}, "Banking_and_Finance": {"counts": [2, 0, 1, 1, 6, 6, 12, 8, 0, 0, 0], "total": 36, "table": "industry", "rank": 28, "sp500_rank": 22}, "Telecommunications": {"counts": [3, 2, 7, 4, 12, 15, 13, 11, 2, 0, 0], "total": 69, "table": "industry", "rank": 60, "sp500_rank": 49}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 2, 1, 2, 1, 1, 0, 0, 0], "total": 7, "table": null, "rank": 26, "sp500_rank": 19}, "Business": {"counts": [7, 5, 7, 18, 22, 24, 35, 29, 6, 0, 0], "total": 153, "table": "industry", "rank": 21, "sp500_rank": 19}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 45, "sp500_rank": 29}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [1, 2, 1, 6, 7, 21, 19, 0, 0, 0, 0], "total": 57, "table": "application", "rank": 9, "sp500_rank": 6}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 1, 1, 1, 2, 0, 0], "total": 6, "table": null, "rank": 105, "sp500_rank": 66}, "Knowledge_Representation": {"counts": [7, 7, 9, 17, 16, 25, 16, 14, 2, 0, 0], "total": 113, "table": "application", "rank": 11, "sp500_rank": 9}, "Planning_and_Scheduling": {"counts": [4, 3, 6, 13, 20, 14, 22, 15, 5, 0, 0], "total": 102, "table": "application", "rank": 15, "sp500_rank": 14}, "Control": {"counts": [1, 0, 0, 1, 1, 2, 3, 0, 0, 0, 0], "total": 8, "table": null, "rank": 150, "sp500_rank": 102}, "Distributed_AI": {"counts": [1, 0, 0, 2, 0, 0, 1, 0, 1, 0, 0], "total": 5, "table": null, "rank": 14, "sp500_rank": 12}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 1, 2, 11, 33, 44, 41, 8, 0, 0], "total": 141, "table": "application", "rank": 56, "sp500_rank": 43}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 2, 1, 1, 4, 2, 0, 0, 0], "total": 11, "table": "application", "rank": 105, "sp500_rank": 78}, "Measuring_and_Testing": {"counts": [2, 0, 0, 4, 0, 0, 0, 1, 0, 0, 0], "total": 7, "table": null, "rank": 147, "sp500_rank": 111}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 23262, "rank": 23, "sp500_rank": 18}, "ai_jobs": {"counts": null, "total": 756, "rank": 66, "sp500_rank": 45}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 808, "country": "United Kingdom", "website": "https://www.ey.com/en_us", "crunchbase": {"text": "a325d318-5167-525b-f61d-2ab89d6b05c9", "url": "https://www.crunchbase.com/organization/ernst-young"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ernstandyoung"], "stage": "Unknown", "name": "Ernst & Young LLP", "patent_name": "ernst & young llp", "continent": "Europe", "local_logo": "ernst_&_young_llp.png", "aliases": "EY; Ernst & Young; Ernst & Young Global Limited; Ernst & Young Limited", "permid_links": [{"text": 5000762018, "url": "https://permid.org/1-5000762018"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Ernst & Young is a provider of assurance, tax, transaction, and advisory services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Information extraction", "field_count": 1}, {"field_name": "Model selection", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Applications of artificial intelligence", "field_count": 1}, {"field_name": "False positive rate", "field_count": 1}, {"field_name": "Interpretability", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}], "clusters": [{"cluster_id": 76144, "cluster_count": 2}, {"cluster_id": 83364, "cluster_count": 1}, {"cluster_id": 14308, "cluster_count": 1}, {"cluster_id": 5760, "cluster_count": 1}, {"cluster_id": 64410, "cluster_count": 1}, {"cluster_id": 18737, "cluster_count": 1}, {"cluster_id": 5527, "cluster_count": 1}, {"cluster_id": 24799, "cluster_count": 1}, {"cluster_id": 23892, "cluster_count": 1}, {"cluster_id": 28437, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 9}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 115, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 21, "referenced_count": 3}, {"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 176, "referenced_count": 2}, {"ref_CSET_id": 2119, "referenced_count": 1}, {"ref_CSET_id": 3131, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "home_activity_monitoring", "task_count": 2}, {"referent": "decision_making", "task_count": 2}, {"referent": "fraud_detection", "task_count": 2}, {"referent": "robots", "task_count": 2}, {"referent": "robotic_process_automation", "task_count": 2}, {"referent": "jpeg_artifact_removal", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "ocr", "task_count": 1}, {"referent": "problem_decomposition", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "appo", "method_count": 1}, {"referent": "nt_xent", "method_count": 1}, {"referent": "npid", "method_count": 1}, {"referent": "object_detection_models", "method_count": 1}, {"referent": "crossvit", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "k_means_clustering", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [74, 69, 66, 61, 113, 93, 89, 62, 56, 44, 0], "total": 727, "isTopResearch": false, "rank": 231}, "ai_publications": {"counts": [0, 1, 0, 2, 1, 3, 3, 4, 4, 3, 0], "total": 21, "isTopResearch": false, "rank": 294}, "ai_publications_growth": {"counts": [], "total": 2.7777777777777786, "isTopResearch": false, "rank": 188}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 3, 5, 7, 4, 9, 40, 87, 98, 73, 3], "total": 329, "isTopResearch": false, "rank": 322}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 214}, "citations_per_article": {"counts": [0, 3.0, 0, 3.5, 4.0, 3.0, 13.333333333333334, 21.75, 24.5, 24.333333333333332, 0], "total": 15.666666666666666, "isTopResearch": false, "rank": 390}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 1, 2, 4, 0, 0, 0, 0], "total": 8, "table": null, "rank": 443}, "ai_patents_growth": {"counts": [], "total": 33.333333333333336, "table": null, "rank": 262}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 10, 20, 40, 0, 0, 0, 0], "total": 80, "table": null, "rank": 443}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 1, 2, 3, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 287}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 141}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 21037, "rank": 24}, "ai_jobs": {"counts": null, "total": 3951, "rank": 9}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Ernst & Young Global Limited, commonly known as Ernst & Young or simply EY, is a multinational professional services network with headquarters in London, England. EY is one of the largest professional services networks in the world. Along with Deloitte, KPMG and PricewaterhouseCoopers, it is considered one of the Big Four accounting firms. It primarily provides assurance (which includes financial audit), tax, consulting and advisory services to its clients. Like many of the larger accounting firms in recent years, EY has expanded into markets adjacent to accounting, including strategy, operations, HR, technology, and financial services consulting.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ernst_%26_Young", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 809, "country": "United States", "website": "https://www.citigroup.com", "crunchbase": {"text": "468bef9f-2f50-590e-6e78-62e3adb05aa1", "url": "https://www.crunchbase.com/organization/citigroup"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/citi"], "stage": "Mature", "name": "Citi", "patent_name": "Citi", "continent": "North America", "local_logo": "citi.png", "aliases": "Citi; Citigroup, Inc; Citigroup.Com", "permid_links": [{"text": 8589934316, "url": "https://permid.org/1-8589934316"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "VIE:CITI", "url": "https://www.google.com/finance/quote/CITI:VIE"}], "crunchbase_description": "Citigroup is a diversified financial services holding company that provides various financial products and services.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Robot", "field_count": 3}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Augmented reality", "field_count": 1}, {"field_name": "Evolutionary algorithm", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}, {"field_name": "Noun", "field_count": 1}, {"field_name": "Gesture", "field_count": 1}, {"field_name": "Image resolution", "field_count": 1}, {"field_name": "Fuzzy logic", "field_count": 1}], "clusters": [{"cluster_id": 3326, "cluster_count": 2}, {"cluster_id": 66177, "cluster_count": 1}, {"cluster_id": 7659, "cluster_count": 1}, {"cluster_id": 15989, "cluster_count": 1}, {"cluster_id": 8985, "cluster_count": 1}, {"cluster_id": 10355, "cluster_count": 1}, {"cluster_id": 24750, "cluster_count": 1}, {"cluster_id": 190, "cluster_count": 1}, {"cluster_id": 49831, "cluster_count": 1}, {"cluster_id": 3104, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 16}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 785, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 456, "referenced_count": 2}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 804, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}], "tasks": [{"referent": "mobile_robot", "task_count": 4}, {"referent": "classification", "task_count": 3}, {"referent": "robots", "task_count": 3}, {"referent": "image_processing", "task_count": 2}, {"referent": "robot_navigation", "task_count": 2}, {"referent": "gait_recognition", "task_count": 2}, {"referent": "decision_making", "task_count": 2}, {"referent": "motion_planning", "task_count": 2}, {"referent": "autonomous_navigation", "task_count": 2}, {"referent": "autonomous_vehicles", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 6}, {"referent": "vqa_models", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "generative_models", "method_count": 3}, {"referent": "reinforcement_learning", "method_count": 3}, {"referent": "ggs_nns", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [77, 63, 162, 50, 50, 43, 85, 35, 42, 17, 0], "total": 624, "isTopResearch": false, "rank": 246, "sp500_rank": 169, "fortune500_rank": 96}, "ai_publications": {"counts": [2, 3, 1, 2, 3, 6, 6, 4, 4, 2, 0], "total": 33, "isTopResearch": false, "rank": 227, "sp500_rank": 139, "fortune500_rank": 70}, "ai_publications_growth": {"counts": [], "total": -27.777777777777782, "isTopResearch": false, "rank": 1380, "sp500_rank": 375, "fortune500_rank": 399}, "ai_pubs_top_conf": {"counts": [1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 169, "sp500_rank": 82, "fortune500_rank": 47}, "citation_counts": {"counts": [3, 8, 8, 9, 12, 11, 14, 27, 37, 24, 1], "total": 154, "isTopResearch": false, "rank": 435, "sp500_rank": 198, "fortune500_rank": 125}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 0], "total": 4, "isTopResearch": true, "rank": 313, "sp500_rank": 158, "fortune500_rank": 84}, "nlp_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 2, 3, 1, 0, 1, 0, 0], "total": 7, "isTopResearch": true, "rank": 142, "sp500_rank": 97, "fortune500_rank": 40}, "citations_per_article": {"counts": [1.5, 2.6666666666666665, 8.0, 4.5, 4.0, 1.8333333333333333, 2.3333333333333335, 6.75, 9.25, 12.0, 0], "total": 4.666666666666667, "isTopResearch": false, "rank": 724, "sp500_rank": 288, "fortune500_rank": 203}}, "patents": {"ai_patents": {"counts": [1, 0, 2, 3, 0, 5, 4, 6, 0, 0, 0], "total": 21, "table": null, "rank": 316, "sp500_rank": 163, "fortune500_rank": 108}, "ai_patents_growth": {"counts": [], "total": 15.0, "table": null, "rank": 313, "sp500_rank": 146, "fortune500_rank": 99}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 20, 30, 0, 50, 40, 60, 0, 0, 0], "total": 210, "table": null, "rank": 316, "sp500_rank": 163, "fortune500_rank": 108}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 48, "sp500_rank": 36, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 2, 4, 1, 0, 0, 0], "total": 8, "table": "industry", "rank": 273, "sp500_rank": 145, "fortune500_rank": 99}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 1, 1, 0, 2, 2, 1, 0, 0, 0], "total": 7, "table": "industry", "rank": 194, "sp500_rank": 108, "fortune500_rank": 72}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [1, 0, 0, 1, 0, 2, 1, 2, 0, 0, 0], "total": 7, "table": "industry", "rank": 183, "sp500_rank": 119, "fortune500_rank": 61}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 160, "sp500_rank": 91, "fortune500_rank": 48}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 1, 0, 0, 0, 2, 4, 0, 0, 0], "total": 7, "table": "application", "rank": 288, "sp500_rank": 148, "fortune500_rank": 88}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191, "sp500_rank": 121, "fortune500_rank": 77}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 20808, "rank": 25, "sp500_rank": 19, "fortune500_rank": 15}, "ai_jobs": {"counts": null, "total": 2522, "rank": 13, "sp500_rank": 9, "fortune500_rank": 10}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 811, "country": "United States", "website": "http://www.bankofamerica.com", "crunchbase": {"text": "a7c69d60-5083-08ef-937b-6cef93a9728c", "url": "https://www.crunchbase.com/organization/bank-of-america"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bank-of-america"], "stage": "Mature", "name": "Bank Of America", "patent_name": "Bank of America", "continent": "North America", "local_logo": "bank_of_america.png", "aliases": "Bank Of America Na; Bank Of America National Association; Bank Of America, N.A; Bank of America", "permid_links": [{"text": 8589934339, "url": "https://permid.org/1-8589934339"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BAC PR E", "url": "https://www.google.com/finance/quote/BAC PR E:NYSE"}, {"text": "NYSE:MER PR K", "url": "https://www.google.com/finance/quote/MER PR K:NYSE"}, {"text": "NYSE:BML PR L", "url": "https://www.google.com/finance/quote/BML PR L:NYSE"}, {"text": "NYSE:BAC PR O", "url": "https://www.google.com/finance/quote/BAC PR O:NYSE"}, {"text": "NYSE:BAC PR B", "url": "https://www.google.com/finance/quote/BAC PR B:NYSE"}, {"text": "NYSE:BAC PR M", "url": "https://www.google.com/finance/quote/BAC PR M:NYSE"}, {"text": "NYSE:BAC PR N", "url": "https://www.google.com/finance/quote/BAC PR N:NYSE"}, {"text": "NYSE:BAC PR P", "url": "https://www.google.com/finance/quote/BAC PR P:NYSE"}, {"text": "NYSE:BAC PR Q", "url": "https://www.google.com/finance/quote/BAC PR Q:NYSE"}, {"text": "NYSE:BML PR G", "url": "https://www.google.com/finance/quote/BML PR G:NYSE"}, {"text": "NYSE:BAC PR L", "url": "https://www.google.com/finance/quote/BAC PR L:NYSE"}, {"text": "NYSE:BAC PR K", "url": "https://www.google.com/finance/quote/BAC PR K:NYSE"}, {"text": "NYSE:BAC PR S", "url": "https://www.google.com/finance/quote/BAC PR S:NYSE"}, {"text": "NYSE:BAC", "url": "https://www.google.com/finance/quote/BAC:NYSE"}, {"text": "NYSE:BML PR H", "url": "https://www.google.com/finance/quote/BML PR H:NYSE"}, {"text": "NYSE:BML PR J", "url": "https://www.google.com/finance/quote/BML PR J:NYSE"}], "market_full": [{"text": "NYSE:BAC PR E", "url": "https://www.google.com/finance/quote/BAC PR E:NYSE"}, {"text": "NYSE:MER PR K", "url": "https://www.google.com/finance/quote/MER PR K:NYSE"}, {"text": "NYSE:BML PR L", "url": "https://www.google.com/finance/quote/BML PR L:NYSE"}, {"text": "LSE:0Q16", "url": "https://www.google.com/finance/quote/0Q16:LSE"}, {"text": "NYQ:MER PR K", "url": "https://www.google.com/finance/quote/MER PR K:NYQ"}, {"text": "DUS:NCB", "url": "https://www.google.com/finance/quote/DUS:NCB"}, {"text": "BUE:BA.C3", "url": "https://www.google.com/finance/quote/BA.C3:BUE"}, {"text": "NYSE:BAC PR O", "url": "https://www.google.com/finance/quote/BAC PR O:NYSE"}, {"text": "ASE:BAC PR M", "url": "https://www.google.com/finance/quote/ASE:BAC PR M"}, {"text": "NYQ:BAC", "url": "https://www.google.com/finance/quote/BAC:NYQ"}, {"text": "ASE:BAC PR O", "url": "https://www.google.com/finance/quote/ASE:BAC PR O"}, {"text": "FRA:NCB", "url": "https://www.google.com/finance/quote/FRA:NCB"}, {"text": "ASE:BAC PR P", "url": "https://www.google.com/finance/quote/ASE:BAC PR P"}, {"text": "MCX:BAC-RM", "url": "https://www.google.com/finance/quote/BAC-RM:MCX"}, {"text": "FRA:NCB0", "url": "https://www.google.com/finance/quote/FRA:NCB0"}, {"text": "DEU:NCB0", "url": "https://www.google.com/finance/quote/DEU:NCB0"}, {"text": "NYQ:BAC PR L", "url": "https://www.google.com/finance/quote/BAC PR L:NYQ"}, {"text": "ASE:BAC PR Q", "url": "https://www.google.com/finance/quote/ASE:BAC PR Q"}, {"text": "DEU:BAC", "url": "https://www.google.com/finance/quote/BAC:DEU"}, {"text": "ASE:BAC PR S", "url": "https://www.google.com/finance/quote/ASE:BAC PR S"}, {"text": "NYSE:BAC PR B", "url": "https://www.google.com/finance/quote/BAC PR B:NYSE"}, {"text": "NYQ:BML PR J", "url": "https://www.google.com/finance/quote/BML PR J:NYQ"}, {"text": "HAN:NCB", "url": "https://www.google.com/finance/quote/HAN:NCB"}, {"text": "ASE:BAC", "url": "https://www.google.com/finance/quote/ASE:BAC"}, {"text": "NYSE:BAC PR M", "url": "https://www.google.com/finance/quote/BAC PR M:NYSE"}, {"text": "SGO:BAC", "url": "https://www.google.com/finance/quote/BAC:SGO"}, {"text": "NYQ:BAC PR N", "url": "https://www.google.com/finance/quote/BAC PR N:NYQ"}, {"text": "NYQ:BAC PR P", "url": "https://www.google.com/finance/quote/BAC PR P:NYQ"}, {"text": "ASE:BAC PR B", "url": "https://www.google.com/finance/quote/ASE:BAC PR B"}, {"text": "ASE:BAC PR K", "url": "https://www.google.com/finance/quote/ASE:BAC PR K"}, {"text": "HAM:NCB", "url": "https://www.google.com/finance/quote/HAM:NCB"}, {"text": "NYSE:BAC PR N", "url": "https://www.google.com/finance/quote/BAC PR N:NYSE"}, {"text": "NYSE:BAC PR P", "url": "https://www.google.com/finance/quote/BAC PR P:NYSE"}, {"text": "NYQ:BML PR L", "url": "https://www.google.com/finance/quote/BML PR L:NYQ"}, {"text": "NYQ:BAC PR M", "url": "https://www.google.com/finance/quote/BAC PR M:NYQ"}, {"text": "NYQ:BML PR H", "url": "https://www.google.com/finance/quote/BML PR H:NYQ"}, {"text": "VIE:BOAC", "url": "https://www.google.com/finance/quote/BOAC:VIE"}, {"text": "NYSE:BAC PR Q", "url": "https://www.google.com/finance/quote/BAC PR Q:NYSE"}, {"text": "NYQ:BAC PR K", "url": "https://www.google.com/finance/quote/BAC PR K:NYQ"}, {"text": "ASE:BML PR H", "url": "https://www.google.com/finance/quote/ASE:BML PR H"}, {"text": "NYQ:BAC PR Q", "url": "https://www.google.com/finance/quote/BAC PR Q:NYQ"}, {"text": "NYQ:BAC PR B", "url": "https://www.google.com/finance/quote/BAC PR B:NYQ"}, {"text": "BRN:NCB", "url": "https://www.google.com/finance/quote/BRN:NCB"}, {"text": "ASE:BAC PR N", "url": "https://www.google.com/finance/quote/ASE:BAC PR N"}, {"text": "SGO:BACCL", "url": "https://www.google.com/finance/quote/BACCL:SGO"}, {"text": "NYQ:BML PR G", "url": "https://www.google.com/finance/quote/BML PR G:NYQ"}, {"text": "NYSE:BML PR G", "url": "https://www.google.com/finance/quote/BML PR G:NYSE"}, {"text": "NYSE:BAC PR L", "url": "https://www.google.com/finance/quote/BAC PR L:NYSE"}, {"text": "MUN:NCB", "url": "https://www.google.com/finance/quote/MUN:NCB"}, {"text": "MEX:BAC*", "url": "https://www.google.com/finance/quote/BAC*:MEX"}, {"text": "SWX:BAC", "url": "https://www.google.com/finance/quote/BAC:SWX"}, {"text": "ASE:BML PR L", "url": "https://www.google.com/finance/quote/ASE:BML PR L"}, {"text": "ASE:BML PR G", "url": "https://www.google.com/finance/quote/ASE:BML PR G"}, {"text": "UAX:BAC", "url": "https://www.google.com/finance/quote/BAC:UAX"}, {"text": "NYQ:BAC PR O", "url": "https://www.google.com/finance/quote/BAC PR O:NYQ"}, {"text": "NYSE:BAC PR K", "url": "https://www.google.com/finance/quote/BAC PR K:NYSE"}, {"text": "NYQ:BAC PR E", "url": "https://www.google.com/finance/quote/BAC PR E:NYQ"}, {"text": "ASE:BAC PR E", "url": "https://www.google.com/finance/quote/ASE:BAC PR E"}, {"text": "NYSE:BAC PR S", "url": "https://www.google.com/finance/quote/BAC PR S:NYSE"}, {"text": "NYSE:BAC", "url": "https://www.google.com/finance/quote/BAC:NYSE"}, {"text": "NYSE:BML PR H", "url": "https://www.google.com/finance/quote/BML PR H:NYSE"}, {"text": "BER:NCB", "url": "https://www.google.com/finance/quote/BER:NCB"}, {"text": "ASE:BML PR J", "url": "https://www.google.com/finance/quote/ASE:BML PR J"}, {"text": "GER:NCBX", "url": "https://www.google.com/finance/quote/GER:NCBX"}, {"text": "NYSE:BML PR J", "url": "https://www.google.com/finance/quote/BML PR J:NYSE"}, {"text": "PKC:BACRP", "url": "https://www.google.com/finance/quote/BACRP:PKC"}, {"text": "ASE:MER PR K", "url": "https://www.google.com/finance/quote/ASE:MER PR K"}, {"text": "STU:NCB", "url": "https://www.google.com/finance/quote/NCB:STU"}, {"text": "NYQ:BAC PR S", "url": "https://www.google.com/finance/quote/BAC PR S:NYQ"}, {"text": "ASE:BAC PR L", "url": "https://www.google.com/finance/quote/ASE:BAC PR L"}], "crunchbase_description": "Bank of America is a financial institution that offers credit cards, home loans, and auto loan services.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 3}, {"field_name": "Data stream mining", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Parsing", "field_count": 1}, {"field_name": "Model selection", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Random forest", "field_count": 1}, {"field_name": "False positive rate", "field_count": 1}], "clusters": [{"cluster_id": 36208, "cluster_count": 4}, {"cluster_id": 2030, "cluster_count": 1}, {"cluster_id": 9951, "cluster_count": 1}, {"cluster_id": 89, "cluster_count": 1}, {"cluster_id": 33754, "cluster_count": 1}, {"cluster_id": 8748, "cluster_count": 1}, {"cluster_id": 15255, "cluster_count": 1}, {"cluster_id": 10895, "cluster_count": 1}, {"cluster_id": 1168, "cluster_count": 1}, {"cluster_id": 230, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 629, "referenced_count": 2}, {"ref_CSET_id": 694, "referenced_count": 1}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}, {"ref_CSET_id": 506, "referenced_count": 1}, {"ref_CSET_id": 337, "referenced_count": 1}], "tasks": [{"referent": "cervical_cancer_biopsy_identification", "task_count": 4}, {"referent": "classification", "task_count": 4}, {"referent": "portfolio_optimization", "task_count": 2}, {"referent": "pattern_classification", "task_count": 2}, {"referent": "image_smoothing", "task_count": 1}, {"referent": "fraud_detection", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "3d_medical_imaging_segmentation", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}, {"referent": "image_retrieval", "task_count": 1}], "methods": [{"referent": "logistic_regression", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "bpnet", "method_count": 2}, {"referent": "value_function_estimation", "method_count": 2}, {"referent": "attention_mechanisms", "method_count": 2}, {"referent": "mad_learning", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "merl", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [29, 29, 64, 46, 24, 33, 18, 28, 30, 14, 0], "total": 315, "isTopResearch": false, "rank": 349, "sp500_rank": 226, "fortune500_rank": 133}, "ai_publications": {"counts": [1, 0, 0, 1, 0, 2, 5, 6, 2, 1, 0], "total": 18, "isTopResearch": false, "rank": 321, "sp500_rank": 178, "fortune500_rank": 98}, "ai_publications_growth": {"counts": [], "total": -32.22222222222222, "isTopResearch": false, "rank": 1399, "sp500_rank": 384, "fortune500_rank": 405}, "ai_pubs_top_conf": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [7, 10, 14, 11, 10, 16, 26, 53, 63, 79, 3], "total": 292, "isTopResearch": false, "rank": 336, "sp500_rank": 159, "fortune500_rank": 99}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 3, 1, 1, 0], "total": 7, "isTopResearch": true, "rank": 252, "sp500_rank": 131, "fortune500_rank": 70}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [7.0, 0, 0, 11.0, 0, 8.0, 5.2, 8.833333333333334, 31.5, 79.0, 0], "total": 16.22222222222222, "isTopResearch": false, "rank": 382, "sp500_rank": 126, "fortune500_rank": 118}}, "patents": {"ai_patents": {"counts": [9, 8, 6, 14, 94, 103, 150, 204, 105, 0, 0], "total": 693, "table": null, "rank": 40, "sp500_rank": 33, "fortune500_rank": 11}, "ai_patents_growth": {"counts": [], "total": 30.401845348757146, "table": null, "rank": 276, "sp500_rank": 129, "fortune500_rank": 81}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [90, 80, 60, 140, 940, 1030, 1500, 2040, 1050, 0, 0], "total": 6930, "table": null, "rank": 40, "sp500_rank": 33, "fortune500_rank": 11}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0], "total": 4, "table": null, "rank": 88, "sp500_rank": 72, "fortune500_rank": 28}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 1, 5, 0, 0, 0], "total": 7, "table": null, "rank": 104, "sp500_rank": 68, "fortune500_rank": 42}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 14, 18, 33, 42, 23, 0, 0], "total": 131, "table": "industry", "rank": 6, "sp500_rank": 6, "fortune500_rank": 4}, "Transportation": {"counts": [0, 0, 0, 2, 0, 1, 0, 2, 0, 0, 0], "total": 5, "table": null, "rank": 133, "sp500_rank": 96, "fortune500_rank": 42}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 3, 1, 0, 0, 1, 0, 0], "total": 5, "table": null, "rank": 104, "sp500_rank": 72, "fortune500_rank": 31}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0], "total": 6, "table": null, "rank": 22, "sp500_rank": 16, "fortune500_rank": 7}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 6, "sp500_rank": 4, "fortune500_rank": 4}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [4, 4, 3, 12, 71, 80, 101, 140, 64, 0, 0], "total": 479, "table": "industry", "rank": 19, "sp500_rank": 16, "fortune500_rank": 6}, "Banking_and_Finance": {"counts": [1, 4, 2, 2, 12, 13, 21, 27, 13, 0, 0], "total": 95, "table": "industry", "rank": 11, "sp500_rank": 10, "fortune500_rank": 4}, "Telecommunications": {"counts": [0, 5, 1, 3, 41, 36, 60, 91, 40, 0, 0], "total": 277, "table": "industry", "rank": 16, "sp500_rank": 13, "fortune500_rank": 7}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 2, 1, 5, 5, 1, 0, 0], "total": 15, "table": null, "rank": 10, "sp500_rank": 8, "fortune500_rank": 4}, "Business": {"counts": [7, 4, 4, 8, 24, 13, 21, 33, 15, 0, 0], "total": 129, "table": "industry", "rank": 24, "sp500_rank": 21, "fortune500_rank": 9}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": null, "rank": 37, "sp500_rank": 23, "fortune500_rank": 17}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 2, 0, 2, 9, 8, 12, 0, 0, 0, 0], "total": 33, "table": null, "rank": 16, "sp500_rank": 12, "fortune500_rank": 9}, "Speech_Processing": {"counts": [0, 0, 0, 2, 3, 3, 3, 20, 4, 0, 0], "total": 35, "table": "application", "rank": 31, "sp500_rank": 23, "fortune500_rank": 9}, "Knowledge_Representation": {"counts": [3, 2, 3, 4, 27, 32, 19, 29, 4, 0, 0], "total": 123, "table": "application", "rank": 9, "sp500_rank": 8, "fortune500_rank": 5}, "Planning_and_Scheduling": {"counts": [4, 2, 2, 6, 14, 4, 13, 21, 9, 0, 0], "total": 75, "table": "application", "rank": 24, "sp500_rank": 22, "fortune500_rank": 8}, "Control": {"counts": [0, 0, 0, 1, 1, 2, 3, 2, 1, 0, 0], "total": 10, "table": null, "rank": 137, "sp500_rank": 96, "fortune500_rank": 46}, "Distributed_AI": {"counts": [0, 2, 0, 1, 0, 1, 0, 5, 3, 0, 0], "total": 12, "table": null, "rank": 4, "sp500_rank": 4, "fortune500_rank": 4}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 10, 22, 32, 39, 16, 0, 0], "total": 119, "table": "application", "rank": 60, "sp500_rank": 47, "fortune500_rank": 17}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 4, 5, 9, 18, 7, 0, 0], "total": 43, "table": "application", "rank": 34, "sp500_rank": 30, "fortune500_rank": 15}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 1, 2, 1, 1, 0, 0], "total": 6, "table": null, "rank": 158, "sp500_rank": 117, "fortune500_rank": 51}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 20327, "rank": 26, "sp500_rank": 20, "fortune500_rank": 16}, "ai_jobs": {"counts": null, "total": 2225, "rank": 14, "sp500_rank": 10, "fortune500_rank": 11}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 209, "country": "United States", "website": "http://www.qualcomm.com", "crunchbase": {"text": "3e3e8a2f-3700-f2c9-6568-4aaae02c07c6", "url": "https://www.crunchbase.com/organization/qualcomm"}, "child_crunchbase": [{"text": "39694de3-d982-45fb-dea4-abbff072e927", "url": "https://www.crunchbase.com/organization/nxp-semiconductors"}, {"text": "5368590e-6a78-3ff9-0fb0-ab5ee121cc44", "url": "https://www.crunchbase.com/organization/twenty-billion-neurons-gmbh-2"}], "linkedin": ["https://www.linkedin.com/company/qualcomm", "https://www.linkedin.com/company/nxp-semiconductors", "https://www.linkedin.com/company/twenty-billion-neurons-gmbh"], "stage": "Mature", "name": "Qualcomm", "patent_name": "qualcomm", "continent": "North America", "local_logo": "qualcomm.png", "aliases": "Qualcomm Inc; Qualcomm Incorporated; Qualcomm Technologies, Inc", "permid_links": [{"text": 4295907706, "url": "https://permid.org/1-4295907706"}, {"text": 4296151400, "url": "https://permid.org/1-4296151400"}, {"text": 5067158419, "url": "https://permid.org/1-5067158419"}], "parent_info": null, "agg_child_info": "NXP Semiconductors, TwentyBN", "unagg_child_info": "AMD, Xilinx", "market_filt": [{"text": "NASDAQ:QCOM", "url": "https://www.google.com/finance/quote/nasdaq:qcom"}], "market_full": [{"text": "BER:QCI", "url": "https://www.google.com/finance/quote/ber:qci"}, {"text": "HAN:QCI", "url": "https://www.google.com/finance/quote/han:qci"}, {"text": "MOEX:QCOM-RM", "url": "https://www.google.com/finance/quote/moex:qcom-rm"}, {"text": "FWB:QCOM", "url": "https://www.google.com/finance/quote/fwb:qcom"}, {"text": "DUS:QCI", "url": "https://www.google.com/finance/quote/dus:qci"}, {"text": "BCBA:QCOM", "url": "https://www.google.com/finance/quote/bcba:qcom"}, {"text": "XETR:QCI", "url": "https://www.google.com/finance/quote/qci:xetr"}, {"text": "BMV:QCOM", "url": "https://www.google.com/finance/quote/bmv:qcom"}, {"text": "HAM:QCI", "url": "https://www.google.com/finance/quote/ham:qci"}, {"text": "MUN:QCI", "url": "https://www.google.com/finance/quote/mun:qci"}, {"text": "NASDAQ:QCOM", "url": "https://www.google.com/finance/quote/nasdaq:qcom"}], "crunchbase_description": "Qualcomm designs, manufactures, and markets digital wireless telecommunications products and services.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 21}, {"field_name": "Artificial neural network", "field_count": 20}, {"field_name": "Quantization (signal processing)", "field_count": 18}, {"field_name": "Deep learning", "field_count": 17}, {"field_name": "Convolutional neural network", "field_count": 17}, {"field_name": "Reinforcement learning", "field_count": 11}, {"field_name": "Pixel", "field_count": 10}, {"field_name": "Segmentation", "field_count": 9}, {"field_name": "Data compression", "field_count": 9}, {"field_name": "Augmented reality", "field_count": 8}], "clusters": [{"cluster_id": 1621, "cluster_count": 23}, {"cluster_id": 2214, "cluster_count": 17}, {"cluster_id": 5070, "cluster_count": 14}, {"cluster_id": 4473, "cluster_count": 12}, {"cluster_id": 6913, "cluster_count": 11}, {"cluster_id": 36706, "cluster_count": 10}, {"cluster_id": 214, "cluster_count": 10}, {"cluster_id": 47174, "cluster_count": 10}, {"cluster_id": 6386, "cluster_count": 8}, {"cluster_id": 14790, "cluster_count": 8}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 972}, {"ref_CSET_id": 163, "referenced_count": 556}, {"ref_CSET_id": 87, "referenced_count": 313}, {"ref_CSET_id": 209, "referenced_count": 286}, {"ref_CSET_id": 184, "referenced_count": 147}, {"ref_CSET_id": 115, "referenced_count": 105}, {"ref_CSET_id": 127, "referenced_count": 104}, {"ref_CSET_id": 6, "referenced_count": 90}, {"ref_CSET_id": 112, "referenced_count": 87}, {"ref_CSET_id": 23, "referenced_count": 74}], "tasks": [{"referent": "classification", "task_count": 72}, {"referent": "computer_vision", "task_count": 31}, {"referent": "image_processing", "task_count": 28}, {"referent": "system_identification", "task_count": 20}, {"referent": "image_recognition", "task_count": 17}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 16}, {"referent": "feature_selection", "task_count": 16}, {"referent": "quantization", "task_count": 15}, {"referent": "object_detection", "task_count": 15}, {"referent": "autonomous_vehicles", "task_count": 14}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 62}, {"referent": "convolutional_neural_networks", "method_count": 57}, {"referent": "q_learning", "method_count": 37}, {"referent": "3d_representations", "method_count": 33}, {"referent": "optimization", "method_count": 31}, {"referent": "double_q_learning", "method_count": 30}, {"referent": "vqa_models", "method_count": 29}, {"referent": "1d_cnn", "method_count": 23}, {"referent": "symbolic_deep_learning", "method_count": 20}, {"referent": "griffin_lim_algorithm", "method_count": 20}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [843, 828, 808, 831, 657, 600, 616, 544, 551, 361, 0], "total": 6639, "isTopResearch": false, "rank": 53, "fortune500_rank": 18}, "ai_publications": {"counts": [43, 46, 38, 47, 41, 52, 73, 78, 105, 39, 0], "total": 562, "isTopResearch": false, "rank": 36, "fortune500_rank": 10}, "ai_publications_growth": {"counts": [], "total": -7.130814391088364, "isTopResearch": false, "rank": 1246, "fortune500_rank": 358}, "ai_pubs_top_conf": {"counts": [5, 2, 5, 2, 4, 7, 15, 22, 14, 10, 0], "total": 86, "isTopResearch": false, "rank": 30, "fortune500_rank": 13}, "citation_counts": {"counts": [199, 520, 639, 907, 1228, 1774, 2796, 3922, 4826, 3163, 100], "total": 20074, "isTopResearch": false, "rank": 32, "fortune500_rank": 14}, "cv_pubs": {"counts": [30, 29, 22, 16, 21, 22, 27, 29, 46, 26, 0], "total": 268, "isTopResearch": true, "rank": 29, "fortune500_rank": 9}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 2, 2, 0, 1, 0, 0], "total": 6, "isTopResearch": true, "rank": 131, "fortune500_rank": 37}, "robotics_pubs": {"counts": [4, 4, 4, 8, 4, 9, 4, 3, 0, 1, 0], "total": 41, "isTopResearch": true, "rank": 51, "fortune500_rank": 15}, "citations_per_article": {"counts": [4.627906976744186, 11.304347826086957, 16.81578947368421, 19.29787234042553, 29.951219512195124, 34.11538461538461, 38.3013698630137, 50.282051282051285, 45.96190476190476, 81.1025641025641, 0], "total": 35.718861209964416, "isTopResearch": false, "rank": 155, "fortune500_rank": 42}}, "patents": {"ai_patents": {"counts": [87, 106, 71, 51, 74, 91, 151, 263, 120, 0, 0], "total": 1014, "table": null, "rank": 23, "fortune500_rank": 5}, "ai_patents_growth": {"counts": [], "total": 54.35974144583415, "table": null, "rank": 192, "fortune500_rank": 51}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [870, 1060, 710, 510, 740, 910, 1510, 2630, 1200, 0, 0], "total": 10140, "table": null, "rank": 23, "fortune500_rank": 5}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [1, 4, 1, 2, 4, 0, 5, 1, 1, 0, 0], "total": 19, "table": "industry", "rank": 57, "fortune500_rank": 23}, "Security__eg_cybersecurity": {"counts": [9, 11, 11, 7, 2, 6, 15, 6, 4, 0, 0], "total": 71, "table": "industry", "rank": 18, "fortune500_rank": 6}, "Transportation": {"counts": [2, 1, 5, 9, 13, 20, 12, 5, 5, 0, 0], "total": 72, "table": "industry", "rank": 34, "fortune500_rank": 11}, "Industrial_and_Manufacturing": {"counts": [0, 0, 3, 1, 2, 6, 1, 0, 1, 0, 0], "total": 14, "table": null, "rank": 57, "fortune500_rank": 16}, "Education": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "fortune500_rank": 20}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [29, 29, 23, 20, 22, 29, 59, 57, 19, 0, 0], "total": 287, "table": "industry", "rank": 33, "fortune500_rank": 12}, "Banking_and_Finance": {"counts": [0, 2, 0, 0, 2, 1, 1, 2, 0, 0, 0], "total": 8, "table": null, "rank": 84, "fortune500_rank": 32}, "Telecommunications": {"counts": [23, 25, 6, 12, 22, 24, 37, 141, 62, 0, 0], "total": 352, "table": "industry", "rank": 11, "fortune500_rank": 5}, "Networks__eg_social_IOT_etc": {"counts": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 55, "fortune500_rank": 26}, "Business": {"counts": [3, 0, 2, 0, 5, 1, 1, 2, 0, 0, 0], "total": 14, "table": null, "rank": 131, "fortune500_rank": 48}, "Energy_Management": {"counts": [2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 86, "fortune500_rank": 21}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0], "total": 4, "table": null, "rank": 32, "fortune500_rank": 14}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 1, 0, 1, 2, 0, 1, 1, 0, 0, 0], "total": 6, "table": null, "rank": 20, "fortune500_rank": 10}, "Language_Processing": {"counts": [0, 1, 1, 0, 1, 0, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 62, "fortune500_rank": 35}, "Speech_Processing": {"counts": [1, 2, 2, 3, 6, 5, 8, 11, 4, 0, 0], "total": 42, "table": "application", "rank": 23, "fortune500_rank": 7}, "Knowledge_Representation": {"counts": [6, 1, 2, 1, 4, 2, 3, 3, 0, 0, 0], "total": 22, "table": null, "rank": 50, "fortune500_rank": 26}, "Planning_and_Scheduling": {"counts": [2, 0, 2, 0, 5, 0, 1, 2, 0, 0, 0], "total": 12, "table": null, "rank": 113, "fortune500_rank": 42}, "Control": {"counts": [3, 2, 7, 9, 12, 21, 11, 9, 3, 0, 0], "total": 77, "table": "application", "rank": 39, "fortune500_rank": 13}, "Distributed_AI": {"counts": [9, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 11, "table": null, "rank": 6, "fortune500_rank": 6}, "Robotics": {"counts": [0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 11, "fortune500_rank": 5}, "Computer_Vision": {"counts": [8, 12, 24, 15, 31, 37, 47, 59, 28, 0, 0], "total": 261, "table": "application", "rank": 36, "fortune500_rank": 9}, "Analytics_and_Algorithms": {"counts": [0, 4, 2, 3, 2, 4, 9, 37, 8, 0, 0], "total": 69, "table": "application", "rank": 21, "fortune500_rank": 8}, "Measuring_and_Testing": {"counts": [4, 1, 1, 5, 9, 9, 8, 19, 8, 0, 0], "total": 64, "table": "application", "rank": 38, "fortune500_rank": 13}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 16386, "rank": 27, "fortune500_rank": 17}, "ai_jobs": {"counts": null, "total": 462, "rank": 122, "fortune500_rank": 69}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Qualcomm is an American multinational corporation headquartered in San Diego, California, and incorporated in Delaware. It creates intellectual property, semiconductors, software, and services related to wireless technology. It owns patents critical to the CDMA2000, TD-SCDMA and WCDMA mobile communications standards.", "wikipedia_link": "https://en.wikipedia.org/wiki/Qualcomm", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1848, "country": "United Kingdom", "website": "https://www.hsbc.com/", "crunchbase": {"text": " 8ee63939-bd06-6699-f575-dffcecb71daf", "url": " https://www.crunchbase.com/organization/hsbc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hsbc"], "stage": "Mature", "name": "Hsbc Holdings", "patent_name": "HSBC Holdings", "continent": "Europe", "local_logo": null, "aliases": "HSBC Holdings; Hsbc Holdings Plc", "permid_links": [{"text": 8589934275, "url": "https://permid.org/1-8589934275"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HSBC", "url": "https://www.google.com/finance/quote/HSBC:NYSE"}, {"text": "HKG:5", "url": "https://www.google.com/finance/quote/5:HKG"}], "market_full": [{"text": "NYSE:HSBC", "url": "https://www.google.com/finance/quote/HSBC:NYSE"}, {"text": "HAM:HBC2", "url": "https://www.google.com/finance/quote/HAM:HBC2"}, {"text": "BER:HBC2", "url": "https://www.google.com/finance/quote/BER:HBC2"}, {"text": "HAN:HBC2", "url": "https://www.google.com/finance/quote/HAN:HBC2"}, {"text": "MUN:HBC2", "url": "https://www.google.com/finance/quote/HBC2:MUN"}, {"text": "HAM:HBC1", "url": "https://www.google.com/finance/quote/HAM:HBC1"}, {"text": "GER:HBCX.A", "url": "https://www.google.com/finance/quote/GER:HBCX.A"}, {"text": "DEU:HBC2", "url": "https://www.google.com/finance/quote/DEU:HBC2"}, {"text": "LSE:HSBA", "url": "https://www.google.com/finance/quote/HSBA:LSE"}, {"text": "MUN:HBC1", "url": "https://www.google.com/finance/quote/HBC1:MUN"}, {"text": "BUE:HSBC3", "url": "https://www.google.com/finance/quote/BUE:HSBC3"}, {"text": "DEU:HSBA", "url": "https://www.google.com/finance/quote/DEU:HSBA"}, {"text": "DUS:HBC2", "url": "https://www.google.com/finance/quote/DUS:HBC2"}, {"text": "NYQ:HSBC", "url": "https://www.google.com/finance/quote/HSBC:NYQ"}, {"text": "STU:HBC1", "url": "https://www.google.com/finance/quote/HBC1:STU"}, {"text": "DUS:HBC1", "url": "https://www.google.com/finance/quote/DUS:HBC1"}, {"text": "STU:HBC2", "url": "https://www.google.com/finance/quote/HBC2:STU"}, {"text": "FRA:HBC2", "url": "https://www.google.com/finance/quote/FRA:HBC2"}, {"text": "HAN:HBC1", "url": "https://www.google.com/finance/quote/HAN:HBC1"}, {"text": "BRN:HBC1", "url": "https://www.google.com/finance/quote/BRN:HBC1"}, {"text": "MEX:HBCN", "url": "https://www.google.com/finance/quote/HBCN:MEX"}, {"text": "ASE:HSBC", "url": "https://www.google.com/finance/quote/ASE:HSBC"}, {"text": "SAO:H1SB34", "url": "https://www.google.com/finance/quote/H1SB34:SAO"}, {"text": "BER:HBC1", "url": "https://www.google.com/finance/quote/BER:HBC1"}, {"text": "PKC:HBCYF", "url": "https://www.google.com/finance/quote/HBCYF:PKC"}, {"text": "FRA:HBC1", "url": "https://www.google.com/finance/quote/FRA:HBC1"}, {"text": "EBT:HSBP", "url": "https://www.google.com/finance/quote/EBT:HSBp"}, {"text": "SES:PU6D", "url": "https://www.google.com/finance/quote/PU6D:SES"}, {"text": "HKG:5", "url": "https://www.google.com/finance/quote/5:HKG"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Facial expression", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Outlier", "field_count": 1}, {"field_name": "Regret", "field_count": 1}, {"field_name": "Feature extraction", "field_count": 1}], "clusters": [{"cluster_id": 228, "cluster_count": 2}, {"cluster_id": 13982, "cluster_count": 1}, {"cluster_id": 44101, "cluster_count": 1}, {"cluster_id": 661, "cluster_count": 1}, {"cluster_id": 23924, "cluster_count": 1}, {"cluster_id": 2479, "cluster_count": 1}, {"cluster_id": 25681, "cluster_count": 1}, {"cluster_id": 4191, "cluster_count": 1}, {"cluster_id": 23793, "cluster_count": 1}, {"cluster_id": 8985, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 223, "referenced_count": 2}, {"ref_CSET_id": 822, "referenced_count": 1}, {"ref_CSET_id": 839, "referenced_count": 1}, {"ref_CSET_id": 8, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 161, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}], "tasks": [{"referent": "feature_selection", "task_count": 3}, {"referent": "classification", "task_count": 3}, {"referent": "disease_detection", "task_count": 2}, {"referent": "facial_expression_recognition", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "portfolio_optimization", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "time_series", "task_count": 1}, {"referent": "document_classification", "task_count": 1}, {"referent": "multi_task_learning", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "optimization", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "mrnn", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}, {"referent": "awd_lstm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [19, 12, 59, 29, 18, 11, 10, 17, 17, 6, 0], "total": 198, "isTopResearch": false, "rank": 412, "sp500_rank": 250}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 3, 0, 4, 2, 0, 0], "total": 10, "isTopResearch": false, "rank": 417, "sp500_rank": 218}, "ai_publications_growth": {"counts": [], "total": -75.0, "isTopResearch": false, "rank": 1526, "sp500_rank": 435}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [2, 0, 1, 1, 1, 0, 5, 4, 20, 20, 0], "total": 54, "isTopResearch": false, "rank": 578, "sp500_rank": 250}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 313, "sp500_rank": 158}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 1.0, 0.0, 0, 1.0, 10.0, 0, 0], "total": 5.4, "isTopResearch": false, "rank": 700, "sp500_rank": 277}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 15858, "rank": 28, "sp500_rank": 21}, "ai_jobs": {"counts": null, "total": 1590, "rank": 23, "sp500_rank": 14}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 553, "country": "United States", "website": "http://www.lockheedmartin.com", "crunchbase": {"text": "ff2a52e3-3edd-66ca-0607-598d8d8b74c6", "url": "https://www.crunchbase.com/organization/lockheed-martin"}, "child_crunchbase": [{"text": "86b329cb-1a06-464f-94d8-038f20e76c71", "url": "https://www.crunchbase.com/organization/aerojet-rocketdyne-holdings"}], "linkedin": ["https://www.linkedin.com/company/aerojet-rocketdyne-holdings-inc", "https://www.linkedin.com/company/lockheed-martin", "https://www.linkedin.com/company/integration-innovation-inc-"], "stage": "Mature", "name": "Lockheed Martin", "patent_name": "lockheed martin", "continent": "North America", "local_logo": "lockheed_martin.png", "aliases": "Lockheed Martin Corporation", "permid_links": [{"text": 5034510392, "url": "https://permid.org/1-5034510392"}, {"text": 5000069094, "url": "https://permid.org/1-5000069094"}, {"text": 5025372114, "url": "https://permid.org/1-5025372114"}], "parent_info": null, "agg_child_info": "Raytheon Lockheed Martin Javelin JV, Aerojet Rocketdyne Holdings Inc, Longbow LLC/Orlando FL, Integration Innovation Inc", "unagg_child_info": null, "market_filt": [{"text": "NYSE:LMT", "url": "https://www.google.com/finance/quote/lmt:nyse"}], "market_full": [{"text": "LON:0R3E", "url": "https://www.google.com/finance/quote/0r3e:lon"}, {"text": "XETR:LOM", "url": "https://www.google.com/finance/quote/lom:xetr"}, {"text": "MEX:LMT", "url": "https://www.google.com/finance/quote/lmt:mex"}, {"text": "DUS:LOM", "url": "https://www.google.com/finance/quote/dus:lom"}, {"text": "FWB:LOM", "url": "https://www.google.com/finance/quote/fwb:lom"}, {"text": "MUN:LOM", "url": "https://www.google.com/finance/quote/lom:mun"}, {"text": "FRA:LMT", "url": "https://www.google.com/finance/quote/fra:lmt"}, {"text": "VIE:LMT", "url": "https://www.google.com/finance/quote/lmt:vie"}, {"text": "NYSE:LMT", "url": "https://www.google.com/finance/quote/lmt:nyse"}, {"text": "BCBA:LMT", "url": "https://www.google.com/finance/quote/bcba:lmt"}, {"text": "MOEX:LMT-RM", "url": "https://www.google.com/finance/quote/lmt-rm:moex"}, {"text": "BER:LOM", "url": "https://www.google.com/finance/quote/ber:lom"}, {"text": "BMV:LMT", "url": "https://www.google.com/finance/quote/bmv:lmt"}], "crunchbase_description": "Lockheed Martin is a security company engaged in the research, development, and manufacture of advanced technology systems and products.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Pixel", "field_count": 8}, {"field_name": "Deep learning", "field_count": 8}, {"field_name": "Robot", "field_count": 8}, {"field_name": "Reinforcement learning", "field_count": 7}, {"field_name": "Artificial neural network", "field_count": 5}, {"field_name": "Feature (computer vision)", "field_count": 5}, {"field_name": "Swarm behaviour", "field_count": 5}, {"field_name": "Pose", "field_count": 4}, {"field_name": "Augmented reality", "field_count": 4}, {"field_name": "Analytics", "field_count": 4}], "clusters": [{"cluster_id": 2480, "cluster_count": 11}, {"cluster_id": 18359, "cluster_count": 9}, {"cluster_id": 35263, "cluster_count": 8}, {"cluster_id": 47, "cluster_count": 7}, {"cluster_id": 32633, "cluster_count": 5}, {"cluster_id": 1911, "cluster_count": 4}, {"cluster_id": 10211, "cluster_count": 4}, {"cluster_id": 13724, "cluster_count": 3}, {"cluster_id": 14837, "cluster_count": 3}, {"cluster_id": 54701, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 553, "referenced_count": 91}, {"ref_CSET_id": 101, "referenced_count": 76}, {"ref_CSET_id": 163, "referenced_count": 52}, {"ref_CSET_id": 87, "referenced_count": 41}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 127, "referenced_count": 7}, {"ref_CSET_id": 37, "referenced_count": 4}, {"ref_CSET_id": 792, "referenced_count": 4}, {"ref_CSET_id": 815, "referenced_count": 4}, {"ref_CSET_id": 223, "referenced_count": 4}], "tasks": [{"referent": "classification", "task_count": 49}, {"referent": "target_recognition", "task_count": 34}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 20}, {"referent": "image_processing", "task_count": 19}, {"referent": "robots", "task_count": 14}, {"referent": "autonomous_navigation", "task_count": 14}, {"referent": "motion_planning", "task_count": 11}, {"referent": "image_registration", "task_count": 11}, {"referent": "computer_vision", "task_count": 11}, {"referent": "object_detection", "task_count": 10}], "methods": [{"referent": "vqa_models", "method_count": 27}, {"referent": "recurrent_neural_networks", "method_count": 17}, {"referent": "griffin_lim_algorithm", "method_count": 17}, {"referent": "mad_learning", "method_count": 15}, {"referent": "auto_classifier", "method_count": 13}, {"referent": "convolutional_neural_networks", "method_count": 13}, {"referent": "double_q_learning", "method_count": 12}, {"referent": "3d_representations", "method_count": 11}, {"referent": "neural_architecture_search", "method_count": 10}, {"referent": "meta_learning_algorithms", "method_count": 10}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [404, 344, 372, 324, 306, 288, 320, 233, 243, 244, 2], "total": 3080, "isTopResearch": false, "rank": 92, "sp500_rank": 76, "fortune500_rank": 34}, "ai_publications": {"counts": [22, 27, 29, 23, 23, 19, 31, 23, 38, 20, 0], "total": 255, "isTopResearch": false, "rank": 69, "sp500_rank": 54, "fortune500_rank": 20}, "ai_publications_growth": {"counts": [], "total": -2.652493787062326, "isTopResearch": false, "rank": 1222, "sp500_rank": 293, "fortune500_rank": 352}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 169, "sp500_rank": 82, "fortune500_rank": 47}, "citation_counts": {"counts": [131, 168, 193, 216, 283, 335, 399, 428, 461, 370, 18], "total": 3002, "isTopResearch": false, "rank": 99, "sp500_rank": 64, "fortune500_rank": 33}, "cv_pubs": {"counts": [5, 7, 9, 7, 7, 6, 9, 6, 11, 9, 0], "total": 76, "isTopResearch": true, "rank": 66, "sp500_rank": 47, "fortune500_rank": 17}, "nlp_pubs": {"counts": [1, 0, 3, 2, 1, 0, 1, 0, 1, 1, 0], "total": 10, "isTopResearch": true, "rank": 92, "sp500_rank": 63, "fortune500_rank": 25}, "robotics_pubs": {"counts": [5, 11, 7, 7, 7, 4, 5, 1, 7, 1, 0], "total": 55, "isTopResearch": true, "rank": 43, "sp500_rank": 40, "fortune500_rank": 12}, "citations_per_article": {"counts": [5.954545454545454, 6.222222222222222, 6.655172413793103, 9.391304347826088, 12.304347826086957, 17.63157894736842, 12.870967741935484, 18.608695652173914, 12.131578947368421, 18.5, 0], "total": 11.772549019607844, "isTopResearch": false, "rank": 481, "sp500_rank": 166, "fortune500_rank": 143}}, "patents": {"ai_patents": {"counts": [5, 7, 1, 1, 3, 2, 3, 0, 1, 0, 0], "total": 23, "table": null, "rank": 304, "sp500_rank": 159, "fortune500_rank": 104}, "ai_patents_growth": {"counts": [], "total": -27.777777777777782, "table": null, "rank": 1479, "sp500_rank": 436, "fortune500_rank": 427}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [50, 70, 10, 10, 30, 20, 30, 0, 10, 0, 0], "total": 230, "table": null, "rank": 304, "sp500_rank": 159, "fortune500_rank": 104}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158, "sp500_rank": 91, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "sp500_rank": 115, "fortune500_rank": 70}, "Transportation": {"counts": [0, 2, 1, 0, 0, 1, 1, 0, 1, 0, 0], "total": 6, "table": "industry", "rank": 123, "sp500_rank": 89, "fortune500_rank": 37}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 4, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 287, "sp500_rank": 150, "fortune500_rank": 104}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "sp500_rank": 141, "fortune500_rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "sp500_rank": 187, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "sp500_rank": 101, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172, "fortune500_rank": 94}, "Control": {"counts": [0, 3, 1, 1, 0, 1, 1, 0, 1, 0, 0], "total": 8, "table": "application", "rank": 150, "sp500_rank": 102, "fortune500_rank": 50}, "Distributed_AI": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [2, 3, 1, 1, 1, 1, 1, 0, 1, 0, 0], "total": 11, "table": "application", "rank": 114, "sp500_rank": 88, "fortune500_rank": 34}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 15692, "rank": 29, "sp500_rank": 22, "fortune500_rank": 18}, "ai_jobs": {"counts": null, "total": 564, "rank": 100, "sp500_rank": 63, "fortune500_rank": 54}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Lockheed Martin Corporation is an American aerospace, arms, defense, security, and advanced technologies company with worldwide interests. It was formed by the merger of Lockheed Corporation with Martin Marietta in March 1995. It is headquartered in North Bethesda, Maryland, in the Washington, D.C., area. Lockheed Martin employs approximately 110,000 people worldwide as of January 2020.", "wikipedia_link": "https://en.wikipedia.org/wiki/Lockheed_Martin", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 219, "country": "United States", "website": "https://www.salesforce.com", "crunchbase": {"text": "f5c477fa-6e8c-3d64-4f2d-3603e5cc3340", "url": "https://www.crunchbase.com/organization/salesforce"}, "child_crunchbase": [{"text": "e6eddff4-01fb-e656-b87d-380fad4dae7e", "url": "https://www.crunchbase.com/organization/metamind"}], "linkedin": ["https://www.linkedin.com/company/salesforce"], "stage": "Mature", "name": "Salesforce", "patent_name": "salesforce", "continent": "North America", "local_logo": "salesforce.png", "aliases": "Salesforce Alumni Founded Companies; Salesforce Portfolio Companies; Salesforce Ventures Llc; Salesforce.Com; Salesforce.Com Inc", "permid_links": [{"text": 5044169609, "url": "https://permid.org/1-5044169609"}, {"text": 4295915633, "url": "https://permid.org/1-4295915633"}, {"text": 5050704779, "url": "https://permid.org/1-5050704779"}], "parent_info": null, "agg_child_info": "Salesforce Research (MetaMind)", "unagg_child_info": null, "market_filt": [{"text": "NYSE:CRM", "url": "https://www.google.com/finance/quote/crm:nyse"}], "market_full": [{"text": "MOEX:CRM-RM", "url": "https://www.google.com/finance/quote/crm-rm:moex"}, {"text": "NEO:CRM", "url": "https://www.google.com/finance/quote/crm:neo"}, {"text": "MEX:CRM", "url": "https://www.google.com/finance/quote/crm:mex"}, {"text": "BMV:CRM", "url": "https://www.google.com/finance/quote/bmv:crm"}, {"text": "BER:FOO", "url": "https://www.google.com/finance/quote/ber:foo"}, {"text": "VIE:CRM", "url": "https://www.google.com/finance/quote/crm:vie"}, {"text": "XETR:FOO", "url": "https://www.google.com/finance/quote/foo:xetr"}, {"text": "HAN:FOO", "url": "https://www.google.com/finance/quote/foo:han"}, {"text": "DUS:FOO", "url": "https://www.google.com/finance/quote/dus:foo"}, {"text": "NYSE:CRM", "url": "https://www.google.com/finance/quote/crm:nyse"}, {"text": "MCX:CRM-RM", "url": "https://www.google.com/finance/quote/crm-rm:mcx"}, {"text": "FWB:FOO", "url": "https://www.google.com/finance/quote/foo:fwb"}, {"text": "MUN:FOO", "url": "https://www.google.com/finance/quote/foo:mun"}], "crunchbase_description": "Salesforce is a global cloud computing company that develops CRM solutions and provides business software on a subscription basis.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Language model", "field_count": 17}, {"field_name": "Feature learning", "field_count": 15}, {"field_name": "Automatic summarization", "field_count": 13}, {"field_name": "Reinforcement learning", "field_count": 10}, {"field_name": "Deep learning", "field_count": 9}, {"field_name": "Question answering", "field_count": 9}, {"field_name": "Object (computer science)", "field_count": 6}, {"field_name": "Robustness (computer science)", "field_count": 6}, {"field_name": "Task (computing)", "field_count": 5}, {"field_name": "Machine translation", "field_count": 5}], "clusters": [{"cluster_id": 2644, "cluster_count": 14}, {"cluster_id": 1193, "cluster_count": 13}, {"cluster_id": 16537, "cluster_count": 10}, {"cluster_id": 14887, "cluster_count": 10}, {"cluster_id": 14903, "cluster_count": 9}, {"cluster_id": 19423, "cluster_count": 8}, {"cluster_id": 33136, "cluster_count": 7}, {"cluster_id": 1422, "cluster_count": 6}, {"cluster_id": 4473, "cluster_count": 6}, {"cluster_id": 76022, "cluster_count": 5}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1337}, {"ref_CSET_id": 163, "referenced_count": 763}, {"ref_CSET_id": 87, "referenced_count": 605}, {"ref_CSET_id": 219, "referenced_count": 167}, {"ref_CSET_id": 115, "referenced_count": 162}, {"ref_CSET_id": 23, "referenced_count": 135}, {"ref_CSET_id": 245, "referenced_count": 109}, {"ref_CSET_id": 6, "referenced_count": 85}, {"ref_CSET_id": 319, "referenced_count": 63}, {"ref_CSET_id": 21, "referenced_count": 62}], "tasks": [{"referent": "classification", "task_count": 25}, {"referent": "classification_tasks", "task_count": 22}, {"referent": "domain_generalization", "task_count": 15}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 14}, {"referent": "question_answering", "task_count": 14}, {"referent": "task_oriented_dialogue_systems", "task_count": 10}, {"referent": "dialogue_state_tracking", "task_count": 9}, {"referent": "end_to_end_speech_recognition", "task_count": 8}, {"referent": "summarization", "task_count": 8}, {"referent": "semi_supervised_object_detection", "task_count": 7}], "methods": [{"referent": "language_models", "method_count": 23}, {"referent": "q_learning", "method_count": 21}, {"referent": "recurrent_neural_networks", "method_count": 21}, {"referent": "meta_learning_algorithms", "method_count": 20}, {"referent": "self_supervised_learning", "method_count": 18}, {"referent": "3d_representations", "method_count": 17}, {"referent": "vqa_models", "method_count": 16}, {"referent": "reinforcement_learning", "method_count": 16}, {"referent": "generative_models", "method_count": 15}, {"referent": "autoencoder", "method_count": 12}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [8, 5, 12, 25, 24, 43, 77, 152, 137, 73, 0], "total": 556, "isTopResearch": false, "rank": 266, "fortune500_rank": 102}, "ai_publications": {"counts": [0, 3, 1, 8, 2, 14, 49, 92, 86, 29, 0], "total": 284, "isTopResearch": false, "rank": 63, "fortune500_rank": 17}, "ai_publications_growth": {"counts": [], "total": 4.984764380979897, "isTopResearch": false, "rank": 178, "fortune500_rank": 47}, "ai_pubs_top_conf": {"counts": [0, 1, 2, 6, 0, 6, 25, 51, 35, 20, 0], "total": 146, "isTopResearch": false, "rank": 23, "fortune500_rank": 9}, "citation_counts": {"counts": [9, 11, 40, 130, 265, 527, 998, 2195, 3734, 2216, 94], "total": 10219, "isTopResearch": false, "rank": 49, "fortune500_rank": 19}, "cv_pubs": {"counts": [0, 1, 0, 4, 1, 3, 19, 23, 21, 5, 0], "total": 77, "isTopResearch": true, "rank": 65, "fortune500_rank": 16}, "nlp_pubs": {"counts": [0, 1, 1, 1, 1, 2, 21, 43, 36, 11, 0], "total": 117, "isTopResearch": true, "rank": 20, "fortune500_rank": 10}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 3.6666666666666665, 40.0, 16.25, 132.5, 37.642857142857146, 20.367346938775512, 23.858695652173914, 43.41860465116279, 76.41379310344827, 0], "total": 35.982394366197184, "isTopResearch": false, "rank": 153, "fortune500_rank": 41}}, "patents": {"ai_patents": {"counts": [7, 4, 13, 28, 61, 58, 99, 109, 37, 0, 0], "total": 416, "table": null, "rank": 62, "fortune500_rank": 19}, "ai_patents_growth": {"counts": [], "total": 25.290877495512884, "table": null, "rank": 286, "fortune500_rank": 87}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [70, 40, 130, 280, 610, 580, 990, 1090, 370, 0, 0], "total": 4160, "table": null, "rank": 62, "fortune500_rank": 19}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 1, 1, 0, 0, 0, 0, 7, 0, 0, 0], "total": 9, "table": "industry", "rank": 89, "fortune500_rank": 36}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 3, 0, 6, 7, 2, 1, 0, 0], "total": 19, "table": "industry", "rank": 59, "fortune500_rank": 24}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 131, "fortune500_rank": 46}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "fortune500_rank": 20}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [4, 2, 11, 20, 47, 47, 79, 68, 22, 0, 0], "total": 300, "table": "industry", "rank": 30, "fortune500_rank": 11}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 115, "fortune500_rank": 41}, "Telecommunications": {"counts": [1, 1, 0, 4, 21, 11, 13, 16, 11, 0, 0], "total": 78, "table": "industry", "rank": 55, "fortune500_rank": 22}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0], "total": 4, "table": null, "rank": 40, "fortune500_rank": 20}, "Business": {"counts": [4, 0, 4, 6, 10, 14, 21, 22, 2, 0, 0], "total": 83, "table": "industry", "rank": 35, "fortune500_rank": 14}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [1, 0, 2, 6, 10, 14, 16, 0, 0, 0, 0], "total": 49, "table": "application", "rank": 11, "fortune500_rank": 5}, "Speech_Processing": {"counts": [0, 0, 0, 3, 2, 4, 2, 9, 2, 0, 0], "total": 22, "table": "application", "rank": 49, "fortune500_rank": 15}, "Knowledge_Representation": {"counts": [2, 3, 4, 4, 9, 16, 13, 10, 0, 0, 0], "total": 61, "table": "application", "rank": 20, "fortune500_rank": 10}, "Planning_and_Scheduling": {"counts": [3, 0, 0, 4, 4, 5, 9, 13, 1, 0, 0], "total": 39, "table": "application", "rank": 46, "fortune500_rank": 16}, "Control": {"counts": [0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0], "total": 5, "table": null, "rank": 182, "fortune500_rank": 64}, "Distributed_AI": {"counts": [0, 0, 0, 0, 1, 2, 1, 0, 1, 0, 0], "total": 5, "table": null, "rank": 14, "fortune500_rank": 9}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 2, 4, 7, 9, 38, 35, 9, 0, 0], "total": 104, "table": "application", "rank": 64, "fortune500_rank": 18}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 6, 1, 0, 4, 1, 0, 0], "total": 12, "table": null, "rank": 99, "fortune500_rank": 42}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 15284, "rank": 30, "fortune500_rank": 19}, "ai_jobs": {"counts": null, "total": 720, "rank": 71, "fortune500_rank": 38}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Salesforce.com, Inc. is an American cloud-based software company headquartered in San Francisco, California. It provides customer relationship management (CRM) service and also provides a complementary suite of enterprise applications focused on customer service, marketing automation, analytics, and application development.\nIn 2020, Fortune magazine ranked Salesforce at number six on its list, \"100 Best Companies to Work For,\" based on an employee survey of satisfaction.", "wikipedia_link": "https://en.wikipedia.org/wiki/Salesforce", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1943, "country": "United Kingdom", "website": "https://www.vodafone.com/", "crunchbase": {"text": " 75d88e2b-258a-b0c8-e980-38855b56a2bc", "url": " https://www.crunchbase.com/organization/vodafone"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vodafone"], "stage": "Mature", "name": "Vodafone Group", "patent_name": "Vodafone Group", "continent": "Europe", "local_logo": null, "aliases": "Vodafone Group; Vodafone Uk; Vodafone Ukraine", "permid_links": [{"text": 4295896661, "url": "https://permid.org/1-4295896661"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:VOD", "url": "https://www.google.com/finance/quote/NASDAQ:VOD"}], "market_full": [{"text": "HAM:VODJ", "url": "https://www.google.com/finance/quote/HAM:VODJ"}, {"text": "BER:VODI", "url": "https://www.google.com/finance/quote/BER:VODI"}, {"text": "STU:VODJ", "url": "https://www.google.com/finance/quote/STU:VODJ"}, {"text": "LSE:VOD", "url": "https://www.google.com/finance/quote/LSE:VOD"}, {"text": "MUN:VODI", "url": "https://www.google.com/finance/quote/MUN:VODI"}, {"text": "HAN:VODI", "url": "https://www.google.com/finance/quote/HAN:VODI"}, {"text": "SAO:V1OD34", "url": "https://www.google.com/finance/quote/SAO:V1OD34"}, {"text": "BRN:VODJ", "url": "https://www.google.com/finance/quote/BRN:VODJ"}, {"text": "FRA:VODI", "url": "https://www.google.com/finance/quote/FRA:VODI"}, {"text": "SWX:VOD", "url": "https://www.google.com/finance/quote/SWX:VOD"}, {"text": "BRN:VODI", "url": "https://www.google.com/finance/quote/BRN:VODI"}, {"text": "MEX:VODN", "url": "https://www.google.com/finance/quote/MEX:VODN"}, {"text": "FRA:VODJ", "url": "https://www.google.com/finance/quote/FRA:VODJ"}, {"text": "BER:VODJ", "url": "https://www.google.com/finance/quote/BER:VODJ"}, {"text": "NASDAQ:VOD", "url": "https://www.google.com/finance/quote/NASDAQ:VOD"}, {"text": "HAN:VODJ", "url": "https://www.google.com/finance/quote/HAN:VODJ"}, {"text": "PKC:VODPF", "url": "https://www.google.com/finance/quote/PKC:VODPF"}, {"text": "MUN:VODJ", "url": "https://www.google.com/finance/quote/MUN:VODJ"}, {"text": "LSE:0LQQ", "url": "https://www.google.com/finance/quote/0LQQ:LSE"}, {"text": "HAM:VODI", "url": "https://www.google.com/finance/quote/HAM:VODI"}, {"text": "DEU:VODJ", "url": "https://www.google.com/finance/quote/DEU:VODJ"}, {"text": "BUE:VOD3", "url": "https://www.google.com/finance/quote/BUE:VOD3"}, {"text": "DUS:VODI", "url": "https://www.google.com/finance/quote/DUS:VODI"}, {"text": "GER:VODIX", "url": "https://www.google.com/finance/quote/GER:VODIX"}, {"text": "DEU:VODI", "url": "https://www.google.com/finance/quote/DEU:VODI"}, {"text": "STU:VODI", "url": "https://www.google.com/finance/quote/STU:VODI"}, {"text": "VIE:VOD", "url": "https://www.google.com/finance/quote/VIE:VOD"}, {"text": "DUS:VODJ", "url": "https://www.google.com/finance/quote/DUS:VODJ"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Unsupervised learning", "field_count": 2}, {"field_name": "Transparency (graphic)", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Boosting (machine learning)", "field_count": 1}, {"field_name": "Visualization", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 4358, "cluster_count": 1}, {"cluster_id": 5547, "cluster_count": 1}, {"cluster_id": 63418, "cluster_count": 1}, {"cluster_id": 80530, "cluster_count": 1}, {"cluster_id": 16998, "cluster_count": 1}, {"cluster_id": 206, "cluster_count": 1}, {"cluster_id": 43403, "cluster_count": 1}, {"cluster_id": 13170, "cluster_count": 1}, {"cluster_id": 18617, "cluster_count": 1}, {"cluster_id": 8532, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 792, "referenced_count": 3}, {"ref_CSET_id": 3114, "referenced_count": 2}, {"ref_CSET_id": 949, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 833, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "overlapping_mention_recognition", "task_count": 2}, {"referent": "image_analysis", "task_count": 2}, {"referent": "clustering", "task_count": 2}, {"referent": "cancer", "task_count": 1}, {"referent": "disease_detection", "task_count": 1}, {"referent": "tensor_networks", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "clustering", "method_count": 2}, {"referent": "generalized_mean_pooling", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "reinforcement_learning", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "merl", "method_count": 1}, {"referent": "smote", "method_count": 1}, {"referent": "npid", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [33, 20, 29, 38, 30, 32, 28, 36, 31, 16, 1], "total": 294, "isTopResearch": false, "rank": 360, "sp500_rank": 231}, "ai_publications": {"counts": [1, 0, 2, 2, 1, 1, 3, 5, 3, 1, 0], "total": 19, "isTopResearch": false, "rank": 311, "sp500_rank": 175}, "ai_publications_growth": {"counts": [], "total": -13.333333333333334, "isTopResearch": false, "rank": 1285, "sp500_rank": 328}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [6, 8, 4, 18, 11, 37, 82, 98, 144, 128, 1], "total": 537, "isTopResearch": false, "rank": 265, "sp500_rank": 139}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [6.0, 0, 2.0, 9.0, 11.0, 37.0, 27.333333333333332, 19.6, 48.0, 128.0, 0], "total": 28.263157894736842, "isTopResearch": false, "rank": 209, "sp500_rank": 54}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 4, 3, 2, 1, 1, 0, 0], "total": 12, "table": null, "rank": 384, "sp500_rank": 183}, "ai_patents_growth": {"counts": [], "total": -36.111111111111114, "table": null, "rank": 1499, "sp500_rank": 440}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 40, 30, 20, 10, 10, 0, 0], "total": 120, "table": null, "rank": 384, "sp500_rank": 183}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 14966, "rank": 31, "sp500_rank": 23}, "ai_jobs": {"counts": null, "total": 861, "rank": 51, "sp500_rank": 35}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 371, "country": "United States", "website": "http://www.capitalone.com", "crunchbase": {"text": "6f1a3325-7525-1699-d0f5-a45cb4ba4b42", "url": "https://www.crunchbase.com/organization/capital-one"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/capital-one"], "stage": "Mature", "name": "Capital One", "patent_name": "capital one", "continent": "North America", "local_logo": "capital_one.png", "aliases": "Capital One Financial Corp; Capital One Financial Corporation", "permid_links": [{"text": 4295903652, "url": "https://permid.org/1-4295903652"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:COF", "url": "https://www.google.com/finance/quote/cof:nyse"}], "market_full": [{"text": "FRA:CFX", "url": "https://www.google.com/finance/quote/cfx:fra"}, {"text": "XETR:CFX", "url": "https://www.google.com/finance/quote/cfx:xetr"}, {"text": "MOEX:COF-RM", "url": "https://www.google.com/finance/quote/cof-rm:moex"}, {"text": "NYSE:COF", "url": "https://www.google.com/finance/quote/cof:nyse"}], "crunchbase_description": "Capital One is a diversified banking company that offers early and later stage venture, and debt financing investments.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Anomaly detection", "field_count": 2}, {"field_name": "Question answering", "field_count": 2}, {"field_name": "Language model", "field_count": 2}, {"field_name": "Regret", "field_count": 2}, {"field_name": "Knowledge base", "field_count": 1}, {"field_name": "Adversarial system", "field_count": 1}, {"field_name": "Calibration (statistics)", "field_count": 1}, {"field_name": "Intelligent agent", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}], "clusters": [{"cluster_id": 5109, "cluster_count": 4}, {"cluster_id": 13405, "cluster_count": 3}, {"cluster_id": 1989, "cluster_count": 3}, {"cluster_id": 44101, "cluster_count": 3}, {"cluster_id": 23924, "cluster_count": 1}, {"cluster_id": 87832, "cluster_count": 1}, {"cluster_id": 855, "cluster_count": 1}, {"cluster_id": 11510, "cluster_count": 1}, {"cluster_id": 57620, "cluster_count": 1}, {"cluster_id": 59055, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 53}, {"ref_CSET_id": 163, "referenced_count": 45}, {"ref_CSET_id": 87, "referenced_count": 20}, {"ref_CSET_id": 115, "referenced_count": 20}, {"ref_CSET_id": 21, "referenced_count": 5}, {"ref_CSET_id": 371, "referenced_count": 5}, {"ref_CSET_id": 792, "referenced_count": 3}, {"ref_CSET_id": 550, "referenced_count": 3}, {"ref_CSET_id": 6, "referenced_count": 3}, {"ref_CSET_id": 1977, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "inference_attack", "task_count": 3}, {"referent": "dialogue", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "domain_labelling", "task_count": 2}, {"referent": "anomaly_detection", "task_count": 2}, {"referent": "question_answering", "task_count": 2}, {"referent": "problem_decomposition", "task_count": 1}, {"referent": "language_identification", "task_count": 1}, {"referent": "dialogue_generation", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 4}, {"referent": "vqa_models", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "representation_learning", "method_count": 3}, {"referent": "dcgan", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "gan", "method_count": 1}, {"referent": "discriminators", "method_count": 1}, {"referent": "mrnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [7, 11, 13, 20, 35, 18, 18, 14, 15, 19, 0], "total": 170, "isTopResearch": false, "rank": 431, "sp500_rank": 259, "fortune500_rank": 166}, "ai_publications": {"counts": [0, 1, 0, 1, 2, 7, 7, 9, 4, 3, 0], "total": 34, "isTopResearch": false, "rank": 221, "sp500_rank": 136, "fortune500_rank": 69}, "ai_publications_growth": {"counts": [], "total": -17.32804232804233, "isTopResearch": false, "rank": 1312, "sp500_rank": 342, "fortune500_rank": 383}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 0, 0, 1, 2, 0, 1, 1, 0], "total": 6, "isTopResearch": false, "rank": 140, "sp500_rank": 69, "fortune500_rank": 42}, "citation_counts": {"counts": [0, 0, 5, 9, 9, 16, 39, 74, 132, 87, 6], "total": 377, "isTopResearch": false, "rank": 302, "sp500_rank": 149, "fortune500_rank": 89}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 2, 2, 3, 2, 0, 1, 0], "total": 10, "isTopResearch": true, "rank": 92, "sp500_rank": 63, "fortune500_rank": 25}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0.0, 0, 9.0, 4.5, 2.2857142857142856, 5.571428571428571, 8.222222222222221, 33.0, 29.0, 0], "total": 11.088235294117647, "isTopResearch": false, "rank": 500, "sp500_rank": 177, "fortune500_rank": 148}}, "patents": {"ai_patents": {"counts": [0, 3, 3, 5, 8, 119, 226, 220, 91, 0, 0], "total": 675, "table": null, "rank": 41, "sp500_rank": 34, "fortune500_rank": 12}, "ai_patents_growth": {"counts": [], "total": 491.58703304330584, "table": null, "rank": 12, "sp500_rank": 5, "fortune500_rank": 1}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 30, 30, 50, 80, 1190, 2260, 2200, 910, 0, 0], "total": 6750, "table": null, "rank": 41, "sp500_rank": 34, "fortune500_rank": 12}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0], "total": 5, "table": null, "rank": 122, "sp500_rank": 78, "fortune500_rank": 52}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 1, 0, 15, 27, 18, 13, 0, 0], "total": 75, "table": "industry", "rank": 17, "sp500_rank": 14, "fortune500_rank": 5}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 4, 7, 0, 0, 0], "total": 12, "table": null, "rank": 91, "sp500_rank": 71, "fortune500_rank": 25}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0], "total": 4, "table": null, "rank": 116, "sp500_rank": 80, "fortune500_rank": 38}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": null, "rank": 50, "sp500_rank": 36, "fortune500_rank": 15}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": null, "rank": 27, "sp500_rank": 21, "fortune500_rank": 5}, "Personal_Devices_and_Computing": {"counts": [0, 0, 3, 4, 7, 65, 132, 119, 56, 0, 0], "total": 386, "table": "industry", "rank": 25, "sp500_rank": 21, "fortune500_rank": 9}, "Banking_and_Finance": {"counts": [0, 1, 2, 2, 3, 32, 60, 75, 22, 0, 0], "total": 197, "table": "industry", "rank": 4, "sp500_rank": 4, "fortune500_rank": 1}, "Telecommunications": {"counts": [0, 0, 2, 3, 2, 35, 50, 59, 18, 0, 0], "total": 169, "table": "industry", "rank": 24, "sp500_rank": 21, "fortune500_rank": 10}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 2, 5, 5, 0, 0, 0], "total": 13, "table": null, "rank": 12, "sp500_rank": 9, "fortune500_rank": 6}, "Business": {"counts": [0, 2, 2, 3, 7, 34, 73, 102, 21, 0, 0], "total": 244, "table": "industry", "rank": 10, "sp500_rank": 10, "fortune500_rank": 3}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 19, 9, 0, 0, 0, 0], "total": 29, "table": "application", "rank": 17, "sp500_rank": 13, "fortune500_rank": 10}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 8, 16, 14, 3, 0, 0], "total": 42, "table": "application", "rank": 23, "sp500_rank": 16, "fortune500_rank": 7}, "Knowledge_Representation": {"counts": [0, 1, 0, 3, 2, 10, 15, 12, 9, 0, 0], "total": 52, "table": "application", "rank": 24, "sp500_rank": 19, "fortune500_rank": 12}, "Planning_and_Scheduling": {"counts": [0, 1, 2, 2, 5, 12, 17, 50, 7, 0, 0], "total": 96, "table": "application", "rank": 18, "sp500_rank": 17, "fortune500_rank": 5}, "Control": {"counts": [0, 0, 0, 0, 0, 3, 5, 3, 0, 0, 0], "total": 11, "table": null, "rank": 126, "sp500_rank": 89, "fortune500_rank": 42}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 36, "sp500_rank": 28, "fortune500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 40, 61, 59, 19, 0, 0], "total": 180, "table": "application", "rank": 47, "sp500_rank": 36, "fortune500_rank": 14}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 0, 5, 1, 1, 2, 0, 0], "total": 10, "table": null, "rank": 114, "sp500_rank": 84, "fortune500_rank": 47}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 3, 3, 8, 1, 0, 0], "total": 15, "table": null, "rank": 98, "sp500_rank": 75, "fortune500_rank": 30}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 14522, "rank": 32, "sp500_rank": 24, "fortune500_rank": 20}, "ai_jobs": {"counts": null, "total": 2636, "rank": 12, "sp500_rank": 8, "fortune500_rank": 9}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Capital One Financial Corporation is an American bank holding company specializing in credit cards, auto loans, banking, and savings accounts, headquartered in McLean, Virginia with operations primarily in the United States. It is on the list of largest banks in the United States and has developed a reputation for being a technology-focused bank.", "wikipedia_link": "https://en.wikipedia.org/wiki/Capital_One", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 599, "country": "United States", "website": "http://www.northropgrumman.com", "crunchbase": {"text": "a411a994-9881-d956-e6aa-64adf1f4495b", "url": "https://www.crunchbase.com/organization/northrop-grumman"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/northrop-grumman-corporation"], "stage": "Mature", "name": "Northrop Grumman", "patent_name": "northrop grumman", "continent": "North America", "local_logo": "northrop_grumman.png", "aliases": "Northrop Grumman Corp; Northrop Grumman Corporation", "permid_links": [{"text": 5035414782, "url": "https://permid.org/1-5035414782"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NOC", "url": "https://www.google.com/finance/quote/noc:nyse"}], "market_full": [{"text": "MOEX:NOC-RM", "url": "https://www.google.com/finance/quote/moex:noc-rm"}, {"text": "XETR:NTH", "url": "https://www.google.com/finance/quote/nth:xetr"}, {"text": "BER:NTH", "url": "https://www.google.com/finance/quote/ber:nth"}, {"text": "LON:0K92", "url": "https://www.google.com/finance/quote/0k92:lon"}, {"text": "BMV:NOC", "url": "https://www.google.com/finance/quote/bmv:noc"}, {"text": "DUS:NTH", "url": "https://www.google.com/finance/quote/dus:nth"}, {"text": "NYSE:NOC", "url": "https://www.google.com/finance/quote/noc:nyse"}, {"text": "MEX:NOC", "url": "https://www.google.com/finance/quote/mex:noc"}, {"text": "MUN:NTH", "url": "https://www.google.com/finance/quote/mun:nth"}, {"text": "FWB:NTH", "url": "https://www.google.com/finance/quote/fwb:nth"}], "crunchbase_description": "Northrop Grumman Corporation is an American global aerospace and defense technology company formed by Northrop's 1994 purchase of Grumman.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Probabilistic logic", "field_count": 3}, {"field_name": "Inertial measurement unit", "field_count": 2}, {"field_name": "Eye tracking", "field_count": 2}, {"field_name": "Matching (graph theory)", "field_count": 1}, {"field_name": "Multi-objective optimization", "field_count": 1}, {"field_name": "Kalman filter", "field_count": 1}, {"field_name": "Object (computer science)", "field_count": 1}, {"field_name": "Machine vision", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Frequency domain", "field_count": 1}], "clusters": [{"cluster_id": 14703, "cluster_count": 6}, {"cluster_id": 1753, "cluster_count": 3}, {"cluster_id": 4816, "cluster_count": 3}, {"cluster_id": 17474, "cluster_count": 3}, {"cluster_id": 43742, "cluster_count": 2}, {"cluster_id": 1911, "cluster_count": 2}, {"cluster_id": 46581, "cluster_count": 2}, {"cluster_id": 1106, "cluster_count": 2}, {"cluster_id": 3683, "cluster_count": 2}, {"cluster_id": 15869, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 599, "referenced_count": 31}, {"ref_CSET_id": 101, "referenced_count": 29}, {"ref_CSET_id": 2794, "referenced_count": 16}, {"ref_CSET_id": 163, "referenced_count": 11}, {"ref_CSET_id": 115, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 1126, "referenced_count": 5}, {"ref_CSET_id": 800, "referenced_count": 3}, {"ref_CSET_id": 184, "referenced_count": 3}, {"ref_CSET_id": 792, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 13}, {"referent": "autonomous_navigation", "task_count": 7}, {"referent": "mas", "task_count": 5}, {"referent": "unmanned_aerial_vehicles", "task_count": 5}, {"referent": "target_recognition", "task_count": 5}, {"referent": "path_planning", "task_count": 5}, {"referent": "robots", "task_count": 5}, {"referent": "autonomous_flight_(dense_forest)", "task_count": 4}, {"referent": "autonomous_vehicles", "task_count": 4}, {"referent": "steering_control", "task_count": 3}], "methods": [{"referent": "double_q_learning", "method_count": 8}, {"referent": "mad_learning", "method_count": 6}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "dnas", "method_count": 5}, {"referent": "vqa_models", "method_count": 4}, {"referent": "auto_classifier", "method_count": 4}, {"referent": "q_learning", "method_count": 4}, {"referent": "self_supervised_learning", "method_count": 3}, {"referent": "backbone_architectures", "method_count": 3}, {"referent": "generative_adversarial_networks", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [193, 175, 145, 252, 216, 213, 221, 185, 135, 125, 2], "total": 1862, "isTopResearch": false, "rank": 131, "sp500_rank": 103, "fortune500_rank": 50}, "ai_publications": {"counts": [7, 8, 7, 5, 13, 11, 12, 11, 15, 5, 0], "total": 94, "isTopResearch": false, "rank": 126, "sp500_rank": 87, "fortune500_rank": 40}, "ai_publications_growth": {"counts": [], "total": -12.87878787878788, "isTopResearch": false, "rank": 1284, "sp500_rank": 327, "fortune500_rank": 373}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 0, 0, 2, 0, 0, 0, 1, 0], "total": 4, "isTopResearch": false, "rank": 169, "sp500_rank": 82, "fortune500_rank": 47}, "citation_counts": {"counts": [26, 35, 60, 70, 88, 108, 141, 166, 188, 157, 2], "total": 1041, "isTopResearch": false, "rank": 190, "sp500_rank": 106, "fortune500_rank": 57}, "cv_pubs": {"counts": [0, 4, 0, 0, 0, 1, 0, 0, 2, 0, 0], "total": 7, "isTopResearch": true, "rank": 252, "sp500_rank": 131, "fortune500_rank": 70}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [7, 4, 5, 4, 9, 1, 0, 1, 3, 3, 0], "total": 37, "isTopResearch": true, "rank": 55, "sp500_rank": 46, "fortune500_rank": 17}, "citations_per_article": {"counts": [3.7142857142857144, 4.375, 8.571428571428571, 14.0, 6.769230769230769, 9.818181818181818, 11.75, 15.090909090909092, 12.533333333333333, 31.4, 0], "total": 11.074468085106384, "isTopResearch": false, "rank": 503, "sp500_rank": 178, "fortune500_rank": 149}}, "patents": {"ai_patents": {"counts": [1, 2, 7, 3, 2, 6, 5, 8, 2, 0, 0], "total": 36, "table": null, "rank": 252, "sp500_rank": 143, "fortune500_rank": 81}, "ai_patents_growth": {"counts": [], "total": 81.11111111111111, "table": null, "rank": 143, "sp500_rank": 67, "fortune500_rank": 31}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 20, 70, 30, 20, 60, 50, 80, 20, 0, 0], "total": 360, "table": null, "rank": 252, "sp500_rank": 143, "fortune500_rank": 81}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158, "sp500_rank": 91, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 141, "sp500_rank": 95, "fortune500_rank": 51}, "Transportation": {"counts": [0, 0, 4, 3, 0, 4, 0, 4, 0, 0, 0], "total": 15, "table": "industry", "rank": 82, "sp500_rank": 64, "fortune500_rank": 24}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 165, "sp500_rank": 110, "fortune500_rank": 55}, "Education": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 4, 0, 0, 5, 3, 3, 2, 0, 0], "total": 17, "table": "industry", "rank": 207, "sp500_rank": 115, "fortune500_rank": 78}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 2, 1, 0, 0, 1, 2, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 204, "sp500_rank": 111, "fortune500_rank": 77}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 284, "sp500_rank": 164, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 10, "sp500_rank": 9, "fortune500_rank": 5}, "Semiconductors": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22, "fortune500_rank": 17}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "sp500_rank": 79, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "sp500_rank": 152, "fortune500_rank": 78}, "Control": {"counts": [0, 0, 4, 1, 0, 3, 2, 5, 0, 0, 0], "total": 15, "table": "application", "rank": 111, "sp500_rank": 80, "fortune500_rank": 36}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 2, 1, 0, 1, 1, 0, 0], "total": 6, "table": "application", "rank": 300, "sp500_rank": 151, "fortune500_rank": 91}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 1, 3, 0, 1, 3, 0, 0, 0, 0], "total": 8, "table": "application", "rank": 139, "sp500_rank": 105, "fortune500_rank": 42}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 13074, "rank": 33, "sp500_rank": 25, "fortune500_rank": 21}, "ai_jobs": {"counts": null, "total": 403, "rank": 142, "sp500_rank": 93, "fortune500_rank": 77}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Northrop Grumman Corporation (NYSE: NOC) is an American global aerospace and defense technology company. With 90,000 employees and an annual revenue in excess of $30 billion, it is one of the world's largest weapons manufacturers and military technology providers. The firm ranks No. 96 on the 2020 Fortune 500 list of America's largest corporations.", "wikipedia_link": "https://en.wikipedia.org/wiki/Northrop_Grumman", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2318, "country": "United States", "website": "https://www.fisglobal.com/", "crunchbase": {"text": "d5e6589b-512f-c869-5c5a-0e5d31c854a1", "url": "https://www.crunchbase.com/organization/fis"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fis"], "stage": "Mature", "name": "Fidelity National Information Services", "patent_name": "fidelity national information services", "continent": "North America", "local_logo": "fidelity_national_information_services.png", "aliases": "FIS; Fidelity National Information Services Inc", "permid_links": [{"text": 4295899817, "url": "https://permid.org/1-4295899817"}], "parent_info": "Fidelity National Financial (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:FIS", "url": "https://www.google.com/finance/quote/fis:nyse"}], "market_full": [{"text": "BRN:ZGY", "url": "https://www.google.com/finance/quote/brn:zgy"}, {"text": "FRA:ZGY", "url": "https://www.google.com/finance/quote/fra:zgy"}, {"text": "GER:ZGYX", "url": "https://www.google.com/finance/quote/ger:zgyx"}, {"text": "SAO:F1NI34", "url": "https://www.google.com/finance/quote/f1ni34:sao"}, {"text": "DEU:FIS", "url": "https://www.google.com/finance/quote/deu:fis"}, {"text": "STU:ZGY", "url": "https://www.google.com/finance/quote/stu:zgy"}, {"text": "MEX:FIS*", "url": "https://www.google.com/finance/quote/fis*:mex"}, {"text": "HAN:ZGY", "url": "https://www.google.com/finance/quote/han:zgy"}, {"text": "MOEX:FIS-RM", "url": "https://www.google.com/finance/quote/fis-rm:moex"}, {"text": "NYQ:FIS", "url": "https://www.google.com/finance/quote/fis:nyq"}, {"text": "LSE:0ILW", "url": "https://www.google.com/finance/quote/0ilw:lse"}, {"text": "BER:ZGY", "url": "https://www.google.com/finance/quote/ber:zgy"}, {"text": "DUS:ZGY", "url": "https://www.google.com/finance/quote/dus:zgy"}, {"text": "VIE:FNIS", "url": "https://www.google.com/finance/quote/fnis:vie"}, {"text": "MUN:ZGY", "url": "https://www.google.com/finance/quote/mun:zgy"}, {"text": "ASE:FIS", "url": "https://www.google.com/finance/quote/ase:fis"}, {"text": "NYSE:FIS", "url": "https://www.google.com/finance/quote/fis:nyse"}], "crunchbase_description": "FIS focuses on retail and institutional banking, payments, asset and wealth management, risk and compliance, and outsourcing solutions.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Geographic information retrieval", "field_count": 1}], "clusters": [{"cluster_id": 17042, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 792, "referenced_count": 1}], "tasks": [{"referent": "data_classification", "task_count": 1}, {"referent": "document_classification", "task_count": 1}], "methods": [{"referent": "ga", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0], "total": 5, "isTopResearch": false, "rank": 820, "fortune500_rank": 225}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 5.0, "isTopResearch": false, "rank": 713, "fortune500_rank": 200}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 12965, "rank": 34, "fortune500_rank": 22}, "ai_jobs": {"counts": null, "total": 440, "rank": 131, "fortune500_rank": 74}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "FIS is an American Fortune 500 company which offers a wide range of financial products and services.", "wikipedia_link": "https://en.wikipedia.org/wiki/FIS_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 818, "country": "United States", "website": "https://www.unitedhealthgroup.com/", "crunchbase": {"text": "ac475c6d-765f-c03d-c2a6-4515028e74df", "url": "https://www.crunchbase.com/organization/unitedhealth-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/unitedhealth-group"], "stage": "Mature", "name": "UnitedHealth Group Inc", "patent_name": "unitedhealth group inc", "continent": "North America", "local_logo": "unitedhealth_group_inc.png", "aliases": "Unitedhealth Group; Unitedhealth Group Inc", "permid_links": [{"text": 5046300101, "url": "https://permid.org/1-5046300101"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:UNH", "url": "https://www.google.com/finance/quote/nyse:unh"}], "market_full": [{"text": "LSE:0R0O", "url": "https://www.google.com/finance/quote/0r0o:lse"}, {"text": "BRN:UNH", "url": "https://www.google.com/finance/quote/brn:unh"}, {"text": "ASE:UNH", "url": "https://www.google.com/finance/quote/ase:unh"}, {"text": "MUN:UNH", "url": "https://www.google.com/finance/quote/mun:unh"}, {"text": "FRA:UNH", "url": "https://www.google.com/finance/quote/fra:unh"}, {"text": "MEX:UNH*", "url": "https://www.google.com/finance/quote/mex:unh*"}, {"text": "STU:UNH", "url": "https://www.google.com/finance/quote/stu:unh"}, {"text": "GER:UNHX", "url": "https://www.google.com/finance/quote/ger:unhx"}, {"text": "VIE:UNH", "url": "https://www.google.com/finance/quote/unh:vie"}, {"text": "DEU:UNH", "url": "https://www.google.com/finance/quote/deu:unh"}, {"text": "SGO:UNH", "url": "https://www.google.com/finance/quote/sgo:unh"}, {"text": "NYQ:UNH", "url": "https://www.google.com/finance/quote/nyq:unh"}, {"text": "HAN:UNH", "url": "https://www.google.com/finance/quote/han:unh"}, {"text": "DUS:UNH", "url": "https://www.google.com/finance/quote/dus:unh"}, {"text": "BER:UNH", "url": "https://www.google.com/finance/quote/ber:unh"}, {"text": "HAM:UNH", "url": "https://www.google.com/finance/quote/ham:unh"}, {"text": "NYSE:UNH", "url": "https://www.google.com/finance/quote/nyse:unh"}, {"text": "SAO:UNHH34", "url": "https://www.google.com/finance/quote/sao:unhh34"}], "crunchbase_description": "UnitedHealth Group Inc. is an American for-profit managed health care company based in Minnetonka, Minnesota.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Topic model", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "Sentiment analysis", "field_count": 1}, {"field_name": "Graphical model", "field_count": 1}, {"field_name": "Functional data analysis", "field_count": 1}, {"field_name": "Linear regression", "field_count": 1}, {"field_name": "F1 score", "field_count": 1}], "clusters": [{"cluster_id": 916, "cluster_count": 3}, {"cluster_id": 1961, "cluster_count": 1}, {"cluster_id": 1422, "cluster_count": 1}, {"cluster_id": 1153, "cluster_count": 1}, {"cluster_id": 3879, "cluster_count": 1}, {"cluster_id": 1168, "cluster_count": 1}, {"cluster_id": 8356, "cluster_count": 1}, {"cluster_id": 20535, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 1410, "referenced_count": 1}, {"ref_CSET_id": 2079, "referenced_count": 1}, {"ref_CSET_id": 793, "referenced_count": 1}, {"ref_CSET_id": 434, "referenced_count": 1}, {"ref_CSET_id": 3131, "referenced_count": 1}, {"ref_CSET_id": 209, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "clustering", "task_count": 2}, {"referent": "topic_detection", "task_count": 2}, {"referent": "object_discovery", "task_count": 2}, {"referent": "metric_learning", "task_count": 1}, {"referent": "retrieval", "task_count": 1}, {"referent": "phishing_detection", "task_count": 1}, {"referent": "spatio_temporal_forecasting", "task_count": 1}, {"referent": "semi_supervised_object_detection", "task_count": 1}, {"referent": "aspect_level_sentiment_classification", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 2}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "language_models", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "mrnn", "method_count": 1}, {"referent": "deepwalk", "method_count": 1}, {"referent": "topic_embeddings", "method_count": 1}, {"referent": "delight", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [26, 10, 5, 12, 25, 17, 28, 45, 87, 47, 1], "total": 303, "isTopResearch": false, "rank": 354, "sp500_rank": 228, "fortune500_rank": 135}, "ai_publications": {"counts": [0, 0, 1, 0, 1, 0, 1, 4, 4, 0, 0], "total": 11, "isTopResearch": false, "rank": 397, "sp500_rank": 211, "fortune500_rank": 116}, "ai_publications_growth": {"counts": [], "total": 66.66666666666667, "isTopResearch": false, "rank": 44, "sp500_rank": 24, "fortune500_rank": 9}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 7, 0], "total": 10, "isTopResearch": false, "rank": 760, "sp500_rank": 314, "fortune500_rank": 204}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0], "total": 5, "isTopResearch": true, "rank": 141, "sp500_rank": 83, "fortune500_rank": 42}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0.0, 0, 1.0, 0.25, 0.25, 0, 0], "total": 0.9090909090909091, "isTopResearch": false, "rank": 898, "sp500_rank": 352, "fortune500_rank": 248}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 0, 3, 3, 12, 4, 0, 0], "total": 24, "table": null, "rank": 295, "sp500_rank": 157, "fortune500_rank": 100}, "ai_patents_growth": {"counts": [], "total": 150.0, "table": null, "rank": 69, "sp500_rank": 30, "fortune500_rank": 15}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 0, 30, 30, 120, 40, 0, 0], "total": 240, "table": null, "rank": 295, "sp500_rank": 157, "fortune500_rank": 100}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 3, 8, 1, 0, 0], "total": 12, "table": "industry", "rank": 74, "sp500_rank": 50, "fortune500_rank": 31}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "sp500_rank": 115, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 0, 2, 2, 3, 2, 0, 0], "total": 11, "table": "industry", "rank": 250, "sp500_rank": 136, "fortune500_rank": 94}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "table": "industry", "rank": 141, "sp500_rank": 91, "fortune500_rank": 50}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 2, 0, 1, 1, 1, 1, 0, 0], "total": 6, "table": "industry", "rank": 196, "sp500_rank": 128, "fortune500_rank": 65}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 191, "sp500_rank": 104, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 0, 2, 2, 2, 0, 0], "total": 7, "table": "application", "rank": 102, "sp500_rank": 66, "fortune500_rank": 48}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 2, 0, 1, 1, 1, 1, 0, 0], "total": 6, "table": "application", "rank": 163, "sp500_rank": 110, "fortune500_rank": 55}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "sp500_rank": 140, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "sp500_rank": 183, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": "application", "rank": 191, "sp500_rank": 121, "fortune500_rank": 77}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 12499, "rank": 35, "sp500_rank": 26, "fortune500_rank": 23}, "ai_jobs": {"counts": null, "total": 2132, "rank": 16, "sp500_rank": 11, "fortune500_rank": 13}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "UnitedHealth Group Incorporated is an American for-profit managed health care company based in Minnetonka, Minnesota. It offers health care products and insurance services. In 2020, it was the second-largest healthcare company (behind CVS Health) by revenue with $257.1 billion, and the largest insurance company by Net Premiums. UnitedHealthcare revenues comprise 80% of the Group's overall revenue.", "wikipedia_link": "https://en.wikipedia.org/wiki/UnitedHealth_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 6, "country": "United States", "website": "http://www.adobe.com", "crunchbase": {"text": "172a34b4-9edd-b0ae-c768-cbfa8e1ab52c", "url": "https://www.crunchbase.com/organization/adobe-systems"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/adobe"], "stage": "Mature", "name": "Adobe", "patent_name": "adobe", "continent": "North America", "local_logo": "adobe.png", "aliases": "Adobe Corp; Adobe Corporation; Adobe Inc; Adobe Systems Incoporated", "permid_links": [{"text": 4295905431, "url": "https://permid.org/1-4295905431"}, {"text": 5001452615, "url": "https://permid.org/1-5001452615"}], "parent_info": null, "agg_child_info": "Adobe Research", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ADBE", "url": "https://www.google.com/finance/quote/adbe:nasdaq"}], "market_full": [{"text": "MUN:ADB", "url": "https://www.google.com/finance/quote/adb:mun"}, {"text": "FWB:ADBE", "url": "https://www.google.com/finance/quote/adbe:fwb"}, {"text": "BER:ADB", "url": "https://www.google.com/finance/quote/adb:ber"}, {"text": "XETR:ADB", "url": "https://www.google.com/finance/quote/adb:xetr"}, {"text": "HAM:ADB", "url": "https://www.google.com/finance/quote/adb:ham"}, {"text": "DUS:ADB", "url": "https://www.google.com/finance/quote/adb:dus"}, {"text": "NASDAQ:ADBE", "url": "https://www.google.com/finance/quote/adbe:nasdaq"}, {"text": "MOEX:ADBE-RM", "url": "https://www.google.com/finance/quote/adbe-rm:moex"}], "crunchbase_description": "Adobe is a software company that provides its users with digital marketing and media solutions.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Segmentation", "field_count": 65}, {"field_name": "Convolutional neural network", "field_count": 53}, {"field_name": "Feature (computer vision)", "field_count": 47}, {"field_name": "Reinforcement learning", "field_count": 42}, {"field_name": "Deep learning", "field_count": 39}, {"field_name": "Artificial neural network", "field_count": 34}, {"field_name": "Automatic summarization", "field_count": 29}, {"field_name": "Feature learning", "field_count": 28}, {"field_name": "Natural language", "field_count": 25}, {"field_name": "Question answering", "field_count": 24}], "clusters": [{"cluster_id": 1338, "cluster_count": 84}, {"cluster_id": 3446, "cluster_count": 77}, {"cluster_id": 5300, "cluster_count": 35}, {"cluster_id": 20032, "cluster_count": 31}, {"cluster_id": 2242, "cluster_count": 29}, {"cluster_id": 3240, "cluster_count": 29}, {"cluster_id": 65, "cluster_count": 27}, {"cluster_id": 10103, "cluster_count": 26}, {"cluster_id": 1989, "cluster_count": 25}, {"cluster_id": 749, "cluster_count": 22}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4569}, {"ref_CSET_id": 6, "referenced_count": 4010}, {"ref_CSET_id": 163, "referenced_count": 3658}, {"ref_CSET_id": 87, "referenced_count": 1974}, {"ref_CSET_id": 184, "referenced_count": 807}, {"ref_CSET_id": 115, "referenced_count": 514}, {"ref_CSET_id": 127, "referenced_count": 505}, {"ref_CSET_id": 23, "referenced_count": 324}, {"ref_CSET_id": 245, "referenced_count": 314}, {"ref_CSET_id": 792, "referenced_count": 290}], "tasks": [{"referent": "classification", "task_count": 187}, {"referent": "segmentation", "task_count": 75}, {"referent": "image_processing", "task_count": 68}, {"referent": "classification_tasks", "task_count": 65}, {"referent": "computer_vision", "task_count": 53}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 51}, {"referent": "image_restoration", "task_count": 46}, {"referent": "object_detection", "task_count": 46}, {"referent": "semantic_segmentation", "task_count": 46}, {"referent": "recommendation", "task_count": 42}], "methods": [{"referent": "3d_representations", "method_count": 183}, {"referent": "recurrent_neural_networks", "method_count": 155}, {"referent": "vqa_models", "method_count": 124}, {"referent": "convolutional_neural_networks", "method_count": 119}, {"referent": "q_learning", "method_count": 95}, {"referent": "optimization", "method_count": 89}, {"referent": "deep_belief_network", "method_count": 80}, {"referent": "generative_models", "method_count": 72}, {"referent": "1d_cnn", "method_count": 66}, {"referent": "generative_adversarial_networks", "method_count": 54}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [119, 152, 185, 243, 266, 352, 427, 496, 426, 311, 0], "total": 2977, "isTopResearch": false, "rank": 94, "fortune500_rank": 36}, "ai_publications": {"counts": [82, 103, 122, 146, 194, 254, 314, 373, 319, 146, 0], "total": 2053, "isTopResearch": false, "rank": 11, "fortune500_rank": 5}, "ai_publications_growth": {"counts": [], "total": -16.63979260022643, "isTopResearch": false, "rank": 1300, "fortune500_rank": 379}, "ai_pubs_top_conf": {"counts": [21, 25, 47, 56, 79, 96, 111, 156, 146, 72, 0], "total": 809, "isTopResearch": false, "rank": 9, "fortune500_rank": 5}, "citation_counts": {"counts": [1128, 1974, 2915, 3920, 5581, 7892, 12220, 16486, 20872, 14857, 489], "total": 88334, "isTopResearch": false, "rank": 5, "fortune500_rank": 4}, "cv_pubs": {"counts": [56, 60, 73, 90, 110, 136, 164, 184, 161, 97, 0], "total": 1131, "isTopResearch": true, "rank": 7, "fortune500_rank": 3}, "nlp_pubs": {"counts": [4, 2, 7, 12, 18, 35, 51, 72, 64, 14, 0], "total": 279, "isTopResearch": true, "rank": 12, "fortune500_rank": 5}, "robotics_pubs": {"counts": [3, 4, 1, 3, 2, 5, 0, 3, 3, 1, 0], "total": 25, "isTopResearch": true, "rank": 70, "fortune500_rank": 21}, "citations_per_article": {"counts": [13.75609756097561, 19.16504854368932, 23.89344262295082, 26.84931506849315, 28.7680412371134, 31.070866141732285, 38.9171974522293, 44.19839142091153, 65.4294670846395, 101.76027397260275, 0], "total": 43.02679006332197, "isTopResearch": false, "rank": 116, "fortune500_rank": 29}}, "patents": {"ai_patents": {"counts": [19, 32, 46, 61, 106, 169, 187, 199, 87, 0, 0], "total": 906, "table": null, "rank": 31, "fortune500_rank": 7}, "ai_patents_growth": {"counts": [], "total": 25.50065404586023, "table": null, "rank": 284, "fortune500_rank": 86}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [190, 320, 460, 610, 1060, 1690, 1870, 1990, 870, 0, 0], "total": 9060, "table": null, "rank": 31, "fortune500_rank": 7}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": null, "rank": 158, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 1, 3, 3, 3, 3, 3, 0, 0], "total": 17, "table": "industry", "rank": 63, "fortune500_rank": 27}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 50, "fortune500_rank": 15}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 4, "fortune500_rank": 3}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [4, 11, 21, 34, 48, 92, 95, 99, 39, 0, 0], "total": 443, "table": "industry", "rank": 22, "fortune500_rank": 7}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 1, 2, 2, 0, 0, 0], "total": 6, "table": null, "rank": 95, "fortune500_rank": 34}, "Telecommunications": {"counts": [4, 7, 7, 12, 18, 27, 29, 11, 10, 0, 0], "total": 125, "table": "industry", "rank": 34, "fortune500_rank": 15}, "Networks__eg_social_IOT_etc": {"counts": [5, 3, 1, 1, 1, 0, 2, 1, 0, 0, 0], "total": 14, "table": "industry", "rank": 11, "fortune500_rank": 5}, "Business": {"counts": [5, 10, 11, 17, 17, 27, 19, 24, 9, 0, 0], "total": 139, "table": "industry", "rank": 23, "fortune500_rank": 8}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [1, 0, 0, 0, 0, 1, 1, 1, 2, 0, 0], "total": 6, "table": null, "rank": 26, "fortune500_rank": 11}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 1, 8, 8, 16, 19, 30, 0, 0, 0, 0], "total": 82, "table": "application", "rank": 7, "fortune500_rank": 4}, "Speech_Processing": {"counts": [2, 1, 1, 0, 3, 9, 16, 12, 1, 0, 0], "total": 45, "table": "application", "rank": 21, "fortune500_rank": 6}, "Knowledge_Representation": {"counts": [3, 5, 13, 4, 17, 10, 12, 12, 3, 0, 0], "total": 79, "table": "application", "rank": 16, "fortune500_rank": 8}, "Planning_and_Scheduling": {"counts": [2, 3, 3, 1, 4, 4, 3, 11, 0, 0, 0], "total": 31, "table": "application", "rank": 53, "fortune500_rank": 21}, "Control": {"counts": [0, 0, 0, 0, 2, 3, 1, 0, 0, 0, 0], "total": 6, "table": null, "rank": 166, "fortune500_rank": 57}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [9, 13, 20, 32, 62, 100, 111, 132, 59, 0, 0], "total": 538, "table": "application", "rank": 16, "fortune500_rank": 4}, "Analytics_and_Algorithms": {"counts": [0, 1, 1, 0, 1, 6, 4, 1, 1, 0, 0], "total": 15, "table": null, "rank": 84, "fortune500_rank": 36}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 12464, "rank": 36, "fortune500_rank": 24}, "ai_jobs": {"counts": null, "total": 857, "rank": 52, "fortune500_rank": 30}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Adobe Inc. is an American multinational computer software company. Incorporated in Delaware and headquartered in San Jose, California, it has historically specialized in software for the creation and publication of a wide range of content, including graphics, photography, illustration, animation, multimedia/video, motion pictures and print. The company has expanded into digital marketing management software. Adobe has millions of users worldwide. Flagship products include; Photoshop image editing software, Adobe Illustrator vector-based illustration software, Adobe Acrobat Acrobat Reader and the Portable Document Format (PDF), plus a host of tools primarily for audio-visual content creation, editing and publishing. The company began by leading in the desktop publishing revolution of the mid-eighties, went on to lead in animation and multi-media through its acquisition of Macromedia, from which it acquired animation technology Adobe Flash, Developed inDesign and subsequently gained a leadership position in publishing over Quark and PageMaker, developed video editing and compositing technology in Premiere, pioneered low-code web development with Muse, and emerged with a suite of solutions for marketing management. Adobe offered a bundled solution of its products named Adobe Creative Suite, which evolved into a SaaS subscription offering Adobe Creative Cloud.", "wikipedia_link": "https://en.wikipedia.org/wiki/Adobe_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-30", "company_site_description_translation": null}, {"cset_id": 671, "country": "South Korea", "website": "https://www.samsung.com/us/", "crunchbase": {"text": "df14597c-3e51-8d58-9c15-fb3de3a34a54", "url": "https://www.crunchbase.com/organization/samsung-electronics"}, "child_crunchbase": [{"text": "ed6ac31e-5e45-f16f-f641-f08d529ce7d1", "url": "https://www.crunchbase.com/organization/samsungs-research-and-development-center"}], "linkedin": ["https://www.linkedin.com/company/samsung-electronics", "https://www.linkedin.com/company/sra-samsungreasearchamerica"], "stage": "Mature", "name": "Samsung", "patent_name": "samsung", "continent": "Asia", "local_logo": "samsung.png", "aliases": "Samsung Electronics; Samsung Electronics Co Ltd; Samsung Electronics Co., Ltd; \uc0bc\uc131\uadf8\ub8f9 \ud639\uc740 \uc0bc\uc131; \uc0bc\uc131\uc804\uc790", "permid_links": [{"text": 4295882451, "url": "https://permid.org/1-4295882451"}, {"text": 5047107216, "url": "https://permid.org/1-5047107216"}], "parent_info": null, "agg_child_info": "Samsung Research America", "unagg_child_info": null, "market_filt": [{"text": "KRX:5930", "url": "https://www.google.com/finance/quote/5930:krx"}], "market_full": [{"text": "BMV:SMSNN", "url": "https://www.google.com/finance/quote/bmv:smsnn"}, {"text": "KRX:5930", "url": "https://www.google.com/finance/quote/5930:krx"}, {"text": "DUS:SSUN", "url": "https://www.google.com/finance/quote/dus:ssun"}, {"text": "OTC:SSNLF", "url": "https://www.google.com/finance/quote/otc:ssnlf"}, {"text": "LON:BC94", "url": "https://www.google.com/finance/quote/bc94:lon"}, {"text": "MUN:SSUN", "url": "https://www.google.com/finance/quote/mun:ssun"}, {"text": "HAM:SSUN", "url": "https://www.google.com/finance/quote/HAM:SSUN"}, {"text": "FRA:SSU", "url": "https://www.google.com/finance/quote/FRA:SSU"}, {"text": "BER:SSUN", "url": "https://www.google.com/finance/quote/BER:SSUN"}, {"text": "HAN:SSUN", "url": "https://www.google.com/finance/quote/HAN:SSUN"}], "crunchbase_description": "Samsung Electronics is an electronics company engaged in consumer electronics, IT and mobile communications, and device solutions.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 91}, {"field_name": "Artificial neural network", "field_count": 90}, {"field_name": "Convolutional neural network", "field_count": 78}, {"field_name": "Feature (computer vision)", "field_count": 78}, {"field_name": "Pixel", "field_count": 54}, {"field_name": "Segmentation", "field_count": 50}, {"field_name": "Cluster analysis", "field_count": 39}, {"field_name": "Reinforcement learning", "field_count": 35}, {"field_name": "Robot", "field_count": 32}, {"field_name": "Word error rate", "field_count": 24}], "clusters": [{"cluster_id": 1621, "cluster_count": 57}, {"cluster_id": 1422, "cluster_count": 42}, {"cluster_id": 2214, "cluster_count": 35}, {"cluster_id": 2479, "cluster_count": 31}, {"cluster_id": 19841, "cluster_count": 31}, {"cluster_id": 18737, "cluster_count": 31}, {"cluster_id": 5070, "cluster_count": 29}, {"cluster_id": 1206, "cluster_count": 28}, {"cluster_id": 1193, "cluster_count": 25}, {"cluster_id": 2202, "cluster_count": 25}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4038}, {"ref_CSET_id": 163, "referenced_count": 2519}, {"ref_CSET_id": 87, "referenced_count": 1432}, {"ref_CSET_id": 671, "referenced_count": 1410}, {"ref_CSET_id": 184, "referenced_count": 589}, {"ref_CSET_id": 115, "referenced_count": 542}, {"ref_CSET_id": 6, "referenced_count": 417}, {"ref_CSET_id": 127, "referenced_count": 274}, {"ref_CSET_id": 245, "referenced_count": 264}, {"ref_CSET_id": 223, "referenced_count": 263}], "tasks": [{"referent": "classification", "task_count": 317}, {"referent": "image_processing", "task_count": 98}, {"referent": "computer_vision", "task_count": 89}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 77}, {"referent": "classification_tasks", "task_count": 75}, {"referent": "speech_recognition", "task_count": 74}, {"referent": "segmentation", "task_count": 68}, {"referent": "system_identification", "task_count": 68}, {"referent": "face_recognition", "task_count": 61}, {"referent": "image_restoration", "task_count": 60}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 273}, {"referent": "convolutional_neural_networks", "method_count": 199}, {"referent": "double_q_learning", "method_count": 147}, {"referent": "3d_representations", "method_count": 147}, {"referent": "vqa_models", "method_count": 138}, {"referent": "1d_cnn", "method_count": 128}, {"referent": "auto_classifier", "method_count": 123}, {"referent": "q_learning", "method_count": 118}, {"referent": "symbolic_deep_learning", "method_count": 106}, {"referent": "deep_belief_network", "method_count": 102}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2006, 2108, 2068, 1913, 1593, 1675, 1693, 1944, 1896, 1413, 28], "total": 18337, "isTopResearch": false, "rank": 21, "sp500_rank": 19}, "ai_publications": {"counts": [189, 195, 211, 190, 168, 260, 424, 460, 461, 133, 0], "total": 2691, "isTopResearch": false, "rank": 10, "sp500_rank": 9}, "ai_publications_growth": {"counts": [], "total": -20.813905759435595, "isTopResearch": false, "rank": 1334, "sp500_rank": 354}, "ai_pubs_top_conf": {"counts": [12, 14, 21, 17, 17, 40, 78, 95, 75, 28, 0], "total": 397, "isTopResearch": false, "rank": 14, "sp500_rank": 9}, "citation_counts": {"counts": [813, 1177, 1631, 1987, 2869, 4001, 6241, 9581, 12263, 8774, 328], "total": 49665, "isTopResearch": false, "rank": 16, "sp500_rank": 11}, "cv_pubs": {"counts": [111, 94, 103, 89, 78, 108, 153, 187, 193, 54, 0], "total": 1170, "isTopResearch": true, "rank": 6, "sp500_rank": 5}, "nlp_pubs": {"counts": [8, 17, 17, 21, 21, 42, 85, 80, 74, 9, 0], "total": 374, "isTopResearch": true, "rank": 10, "sp500_rank": 8}, "robotics_pubs": {"counts": [20, 22, 18, 22, 16, 13, 28, 21, 21, 8, 0], "total": 189, "isTopResearch": true, "rank": 12, "sp500_rank": 10}, "citations_per_article": {"counts": [4.301587301587301, 6.035897435897436, 7.729857819905213, 10.457894736842105, 17.077380952380953, 15.388461538461538, 14.71933962264151, 20.828260869565216, 26.600867678958785, 65.96992481203007, 0], "total": 18.455964325529543, "isTopResearch": false, "rank": 340, "sp500_rank": 105}}, "patents": {"ai_patents": {"counts": [48, 84, 131, 254, 424, 731, 878, 1016, 404, 11, 0], "total": 3981, "table": null, "rank": 5, "sp500_rank": 5}, "ai_patents_growth": {"counts": [], "total": 36.07754645505708, "table": null, "rank": 256, "sp500_rank": 117}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [480, 840, 1310, 2540, 4240, 7310, 8780, 10160, 4040, 110, 0], "total": 39810, "table": null, "rank": 5, "sp500_rank": 5}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 0, 0, 5, 12, 6, 12, 0, 0, 0], "total": 36, "table": null, "rank": 17, "sp500_rank": 13}, "Life_Sciences": {"counts": [8, 26, 24, 31, 34, 48, 49, 39, 11, 0, 0], "total": 270, "table": "industry", "rank": 6, "sp500_rank": 5}, "Security__eg_cybersecurity": {"counts": [0, 5, 5, 12, 29, 30, 37, 45, 15, 0, 0], "total": 178, "table": "industry", "rank": 3, "sp500_rank": 3}, "Transportation": {"counts": [1, 2, 11, 23, 31, 37, 32, 37, 3, 0, 0], "total": 177, "table": "industry", "rank": 16, "sp500_rank": 12}, "Industrial_and_Manufacturing": {"counts": [1, 2, 2, 4, 8, 29, 19, 15, 13, 0, 0], "total": 93, "table": null, "rank": 8, "sp500_rank": 6}, "Education": {"counts": [0, 2, 5, 2, 0, 3, 2, 2, 0, 0, 0], "total": 16, "table": null, "rank": 7, "sp500_rank": 5}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 27, "sp500_rank": 21}, "Personal_Devices_and_Computing": {"counts": [27, 25, 56, 99, 196, 327, 376, 419, 145, 1, 0], "total": 1671, "table": "industry", "rank": 5, "sp500_rank": 5}, "Banking_and_Finance": {"counts": [0, 4, 2, 8, 2, 3, 6, 0, 1, 0, 0], "total": 26, "table": null, "rank": 40, "sp500_rank": 32}, "Telecommunications": {"counts": [9, 19, 34, 57, 108, 174, 239, 262, 90, 1, 0], "total": 993, "table": "industry", "rank": 2, "sp500_rank": 2}, "Networks__eg_social_IOT_etc": {"counts": [1, 0, 1, 0, 3, 2, 4, 5, 1, 0, 0], "total": 17, "table": null, "rank": 7, "sp500_rank": 6}, "Business": {"counts": [4, 5, 5, 16, 25, 40, 38, 36, 8, 0, 0], "total": 177, "table": null, "rank": 17, "sp500_rank": 16}, "Energy_Management": {"counts": [1, 2, 3, 1, 7, 21, 11, 15, 4, 0, 0], "total": 65, "table": null, "rank": 9, "sp500_rank": 9}, "Entertainment": {"counts": [0, 3, 0, 1, 1, 6, 4, 4, 3, 1, 0], "total": 23, "table": null, "rank": 9, "sp500_rank": 6}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 8, "sp500_rank": 7}, "Semiconductors": {"counts": [1, 1, 3, 6, 15, 21, 26, 30, 10, 0, 0], "total": 113, "table": null, "rank": 1, "sp500_rank": 1}, "Language_Processing": {"counts": [4, 1, 13, 21, 33, 16, 1, 0, 0, 0, 0], "total": 89, "table": null, "rank": 5, "sp500_rank": 3}, "Speech_Processing": {"counts": [2, 9, 22, 23, 59, 114, 129, 68, 53, 1, 0], "total": 480, "table": "application", "rank": 2, "sp500_rank": 2}, "Knowledge_Representation": {"counts": [13, 8, 7, 8, 20, 31, 21, 32, 9, 0, 0], "total": 149, "table": null, "rank": 5, "sp500_rank": 5}, "Planning_and_Scheduling": {"counts": [2, 3, 2, 5, 9, 14, 16, 16, 2, 0, 0], "total": 69, "table": null, "rank": 25, "sp500_rank": 23}, "Control": {"counts": [2, 6, 8, 27, 37, 64, 50, 34, 11, 0, 0], "total": 239, "table": "application", "rank": 15, "sp500_rank": 12}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0], "total": 4, "table": null, "rank": 19, "sp500_rank": 16}, "Robotics": {"counts": [0, 2, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 7, "sp500_rank": 3}, "Computer_Vision": {"counts": [11, 28, 39, 86, 160, 268, 354, 398, 104, 3, 0], "total": 1451, "table": "application", "rank": 5, "sp500_rank": 5}, "Analytics_and_Algorithms": {"counts": [4, 23, 19, 23, 34, 52, 78, 62, 24, 0, 0], "total": 319, "table": "application", "rank": 2, "sp500_rank": 2}, "Measuring_and_Testing": {"counts": [0, 7, 14, 20, 34, 44, 51, 38, 7, 0, 0], "total": 215, "table": "application", "rank": 7, "sp500_rank": 7}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 12412, "rank": 37, "sp500_rank": 27}, "ai_jobs": {"counts": null, "total": 657, "rank": 78, "sp500_rank": 53}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "The Samsung Group (Korean: \uc0bc\uc131, stylized as S\u039bMSUNG) is a South Korean multinational conglomerate headquartered in Samsung Town, Seoul. It comprises numerous affiliated businesses, most of them united under the Samsung brand, and is the largest South Korean chaebol (business conglomerate).", "wikipedia_link": "https://en.wikipedia.org/wiki/Samsung", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 784, "country": "United States", "website": "https://www.boeing.com/", "crunchbase": {"text": "4d760653-e5d8-9dda-7a49-b4921fe18f19", "url": "https://www.crunchbase.com/organization/the-boeing-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/boeingresearch&technology", "https://www.linkedin.com/company/boeing"], "stage": "Mature", "name": "Boeing", "patent_name": "boeing", "continent": "North America", "local_logo": "boeing.png", "aliases": "Boeing; Boeing Co; Boeing Company; The Boeing Company", "permid_links": [{"text": 5000650464, "url": "https://permid.org/1-5000650464"}, {"text": 4295903076, "url": "https://permid.org/1-4295903076"}], "parent_info": null, "agg_child_info": "Bell-Boeing Joint Project Office, Boeing Research & Technology", "unagg_child_info": null, "market_filt": [{"text": "NYSE:BA", "url": "https://www.google.com/finance/quote/ba:nyse"}], "market_full": [{"text": "FWB:BCO", "url": "https://www.google.com/finance/quote/bco:fwb"}, {"text": "NYQ:BA", "url": "https://www.google.com/finance/quote/ba:nyq"}, {"text": "MEX:BA*", "url": "https://www.google.com/finance/quote/ba*:mex"}, {"text": "BRN:BCO", "url": "https://www.google.com/finance/quote/bco:brn"}, {"text": "BMV:BA", "url": "https://www.google.com/finance/quote/ba:bmv"}, {"text": "DUS:BCO", "url": "https://www.google.com/finance/quote/bco:dus"}, {"text": "XETR:BCO", "url": "https://www.google.com/finance/quote/bco:xetr"}, {"text": "GER:BCOX", "url": "https://www.google.com/finance/quote/bcox:ger"}, {"text": "LSE:BOE", "url": "https://www.google.com/finance/quote/boe:lse"}, {"text": "MUN:BCO", "url": "https://www.google.com/finance/quote/bco:mun"}, {"text": "VIE:BA", "url": "https://www.google.com/finance/quote/ba:vie"}, {"text": "STU:BCO", "url": "https://www.google.com/finance/quote/bco:stu"}, {"text": "SAO:BOEI34", "url": "https://www.google.com/finance/quote/boei34:sao"}, {"text": "NYSE:BA", "url": "https://www.google.com/finance/quote/ba:nyse"}, {"text": "HAM:BCO", "url": "https://www.google.com/finance/quote/bco:ham"}, {"text": "HAN:BCO", "url": "https://www.google.com/finance/quote/bco:han"}, {"text": "DEU:BA", "url": "https://www.google.com/finance/quote/ba:deu"}, {"text": "BUE:BA3", "url": "https://www.google.com/finance/quote/ba3:bue"}, {"text": "FRA:BCO", "url": "https://www.google.com/finance/quote/bco:fra"}, {"text": "BER:BCO", "url": "https://www.google.com/finance/quote/bco:ber"}, {"text": "MCX:BA-RM", "url": "https://www.google.com/finance/quote/ba-rm:mcx"}, {"text": "SWX:BA", "url": "https://www.google.com/finance/quote/ba:swx"}, {"text": "SGO:BACL", "url": "https://www.google.com/finance/quote/bacl:sgo"}, {"text": "BRU:BOEI", "url": "https://www.google.com/finance/quote/boei:bru"}], "crunchbase_description": "Boeing Company manufactures and sells aircraft, rotorcraft, rockets, and satellites and provides product leasing and support services.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Feature extraction", "field_count": 4}, {"field_name": "Wavelet", "field_count": 3}, {"field_name": "Robot", "field_count": 3}, {"field_name": "Robustness (computer science)", "field_count": 3}, {"field_name": "Probabilistic logic", "field_count": 3}, {"field_name": "Automated guided vehicle", "field_count": 3}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Sentence", "field_count": 2}, {"field_name": "Knowledge representation and reasoning", "field_count": 2}], "clusters": [{"cluster_id": 94841, "cluster_count": 14}, {"cluster_id": 91875, "cluster_count": 11}, {"cluster_id": 34153, "cluster_count": 4}, {"cluster_id": 32669, "cluster_count": 4}, {"cluster_id": 13214, "cluster_count": 4}, {"cluster_id": 45825, "cluster_count": 3}, {"cluster_id": 24024, "cluster_count": 3}, {"cluster_id": 40664, "cluster_count": 3}, {"cluster_id": 46492, "cluster_count": 3}, {"cluster_id": 23256, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 784, "referenced_count": 90}, {"ref_CSET_id": 101, "referenced_count": 49}, {"ref_CSET_id": 163, "referenced_count": 30}, {"ref_CSET_id": 115, "referenced_count": 17}, {"ref_CSET_id": 87, "referenced_count": 12}, {"ref_CSET_id": 785, "referenced_count": 6}, {"ref_CSET_id": 127, "referenced_count": 5}, {"ref_CSET_id": 184, "referenced_count": 4}, {"ref_CSET_id": 795, "referenced_count": 3}, {"ref_CSET_id": 209, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 20}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 15}, {"referent": "autonomous_vehicles", "task_count": 13}, {"referent": "motion_planning", "task_count": 11}, {"referent": "fault_detection", "task_count": 10}, {"referent": "video_surveillance", "task_count": 10}, {"referent": "unmanned_aerial_vehicles", "task_count": 10}, {"referent": "autonomous_navigation", "task_count": 10}, {"referent": "robots", "task_count": 9}, {"referent": "feature_selection", "task_count": 8}], "methods": [{"referent": "q_learning", "method_count": 10}, {"referent": "recurrent_neural_networks", "method_count": 9}, {"referent": "meta_learning_algorithms", "method_count": 9}, {"referent": "auto_classifier", "method_count": 7}, {"referent": "vqa_models", "method_count": 7}, {"referent": "neural_architecture_search", "method_count": 6}, {"referent": "clustering", "method_count": 6}, {"referent": "3d_representations", "method_count": 5}, {"referent": "griffin_lim_algorithm", "method_count": 5}, {"referent": "self_supervised_learning", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [405, 340, 301, 308, 386, 299, 260, 204, 189, 122, 2], "total": 2816, "isTopResearch": false, "rank": 100, "sp500_rank": 80, "fortune500_rank": 39}, "ai_publications": {"counts": [18, 14, 16, 18, 16, 20, 15, 18, 20, 4, 0], "total": 159, "isTopResearch": false, "rank": 89, "sp500_rank": 67, "fortune500_rank": 26}, "ai_publications_growth": {"counts": [], "total": -16.296296296296294, "isTopResearch": false, "rank": 1296, "sp500_rank": 336, "fortune500_rank": 376}, "ai_pubs_top_conf": {"counts": [1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 169, "sp500_rank": 82, "fortune500_rank": 47}, "citation_counts": {"counts": [87, 119, 166, 210, 264, 346, 478, 549, 656, 475, 25], "total": 3375, "isTopResearch": false, "rank": 93, "sp500_rank": 61, "fortune500_rank": 31}, "cv_pubs": {"counts": [2, 1, 7, 8, 5, 2, 1, 5, 5, 1, 0], "total": 37, "isTopResearch": true, "rank": 100, "sp500_rank": 67, "fortune500_rank": 28}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 1, 0], "total": 4, "isTopResearch": true, "rank": 161, "sp500_rank": 94, "fortune500_rank": 50}, "robotics_pubs": {"counts": [7, 4, 7, 9, 8, 7, 4, 7, 7, 2, 0], "total": 62, "isTopResearch": true, "rank": 40, "sp500_rank": 37, "fortune500_rank": 11}, "citations_per_article": {"counts": [4.833333333333333, 8.5, 10.375, 11.666666666666666, 16.5, 17.3, 31.866666666666667, 30.5, 32.8, 118.75, 0], "total": 21.22641509433962, "isTopResearch": false, "rank": 291, "sp500_rank": 84, "fortune500_rank": 95}}, "patents": {"ai_patents": {"counts": [7, 13, 21, 20, 36, 49, 66, 65, 21, 0, 0], "total": 298, "table": null, "rank": 79, "sp500_rank": 62, "fortune500_rank": 25}, "ai_patents_growth": {"counts": [], "total": 23.09661238232667, "table": null, "rank": 295, "sp500_rank": 138, "fortune500_rank": 91}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [70, 130, 210, 200, 360, 490, 660, 650, 210, 0, 0], "total": 2980, "table": null, "rank": 79, "sp500_rank": 62, "fortune500_rank": 25}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 1, 1, 1, 2, 2, 1, 0, 0, 0], "total": 9, "table": null, "rank": 56, "sp500_rank": 47, "fortune500_rank": 19}, "Life_Sciences": {"counts": [0, 2, 1, 0, 0, 1, 2, 3, 1, 0, 0], "total": 10, "table": null, "rank": 85, "sp500_rank": 57, "fortune500_rank": 34}, "Security__eg_cybersecurity": {"counts": [1, 1, 3, 1, 2, 4, 0, 3, 0, 0, 0], "total": 15, "table": null, "rank": 72, "sp500_rank": 54, "fortune500_rank": 33}, "Transportation": {"counts": [2, 7, 6, 10, 18, 21, 41, 21, 9, 0, 0], "total": 135, "table": "industry", "rank": 22, "sp500_rank": 17, "fortune500_rank": 9}, "Industrial_and_Manufacturing": {"counts": [1, 1, 2, 2, 2, 5, 10, 3, 2, 0, 0], "total": 28, "table": "industry", "rank": 28, "sp500_rank": 24, "fortune500_rank": 8}, "Education": {"counts": [0, 0, 0, 1, 0, 0, 2, 3, 0, 0, 0], "total": 6, "table": null, "rank": 22, "sp500_rank": 16, "fortune500_rank": 7}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [4, 4, 9, 7, 11, 23, 29, 16, 5, 0, 0], "total": 108, "table": "industry", "rank": 69, "sp500_rank": 51, "fortune500_rank": 30}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 7, 3, 8, 6, 0, 0, 0], "total": 25, "table": null, "rank": 42, "sp500_rank": 34, "fortune500_rank": 18}, "Telecommunications": {"counts": [2, 3, 2, 8, 9, 11, 14, 12, 1, 0, 0], "total": 62, "table": "industry", "rank": 67, "sp500_rank": 56, "fortune500_rank": 25}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 2, 2, 9, 7, 5, 12, 13, 0, 0, 0], "total": 50, "table": "industry", "rank": 54, "sp500_rank": 42, "fortune500_rank": 23}, "Energy_Management": {"counts": [0, 1, 1, 2, 1, 1, 0, 0, 2, 0, 0], "total": 8, "table": null, "rank": 55, "sp500_rank": 52, "fortune500_rank": 11}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 10, "sp500_rank": 9, "fortune500_rank": 5}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39, "fortune500_rank": 23}, "Language_Processing": {"counts": [1, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 56, "sp500_rank": 41, "fortune500_rank": 31}, "Speech_Processing": {"counts": [0, 0, 0, 1, 1, 0, 3, 1, 0, 0, 0], "total": 6, "table": null, "rank": 105, "sp500_rank": 66, "fortune500_rank": 30}, "Knowledge_Representation": {"counts": [1, 0, 2, 3, 3, 0, 5, 4, 0, 0, 0], "total": 18, "table": null, "rank": 56, "sp500_rank": 41, "fortune500_rank": 31}, "Planning_and_Scheduling": {"counts": [0, 2, 2, 9, 7, 5, 10, 13, 0, 0, 0], "total": 48, "table": "application", "rank": 38, "sp500_rank": 32, "fortune500_rank": 13}, "Control": {"counts": [2, 5, 9, 12, 20, 19, 33, 21, 8, 0, 0], "total": 129, "table": "application", "rank": 27, "sp500_rank": 22, "fortune500_rank": 9}, "Distributed_AI": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 36, "sp500_rank": 28, "fortune500_rank": 19}, "Robotics": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 14, "sp500_rank": 9, "fortune500_rank": 6}, "Computer_Vision": {"counts": [1, 4, 1, 4, 8, 21, 19, 23, 11, 0, 0], "total": 92, "table": "application", "rank": 71, "sp500_rank": 51, "fortune500_rank": 21}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 0, 1, 5, 6, 4, 2, 0, 0], "total": 19, "table": "application", "rank": 69, "sp500_rank": 54, "fortune500_rank": 31}, "Measuring_and_Testing": {"counts": [0, 1, 3, 5, 8, 10, 14, 10, 6, 0, 0], "total": 57, "table": "application", "rank": 42, "sp500_rank": 32, "fortune500_rank": 14}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 12205, "rank": 38, "sp500_rank": 28, "fortune500_rank": 25}, "ai_jobs": {"counts": null, "total": 512, "rank": 109, "sp500_rank": 68, "fortune500_rank": 61}}, "sector": "Industrials", "business_sector": "Industrial Goods"}, {"cset_id": 820, "country": "United States", "website": "https://www.gm.com", "crunchbase": {"text": "5087a047-80c5-4aa3-dfdf-30dd8ac88b5e", "url": "https://www.crunchbase.com/organization/general-motors"}, "child_crunchbase": [{"text": "9130a3ba-7071-d3d2-0688-f9350197eb53", "url": "https://www.crunchbase.com/organization/cruise"}], "linkedin": ["https://www.linkedin.com/company/general-motors", "https://www.linkedin.com/company/getcruise"], "stage": "Mature", "name": "General Motors", "patent_name": "general motors", "continent": "North America", "local_logo": "general_motors.png", "aliases": "Gm, The General Motors Company", "permid_links": [{"text": 4298546138, "url": "https://permid.org/1-4298546138"}, {"text": 5046706778, "url": "https://permid.org/1-5046706778"}], "parent_info": null, "agg_child_info": "Cruise Automation", "unagg_child_info": null, "market_filt": [{"text": "NYSE:GM", "url": "https://www.google.com/finance/quote/gm:nyse"}], "market_full": [{"text": "FRA:GMC", "url": "https://www.google.com/finance/quote/fra:gmc"}, {"text": "MOEX:GM-RM", "url": "https://www.google.com/finance/quote/gm-rm:moex"}, {"text": "VIE:GM", "url": "https://www.google.com/finance/quote/gm:vie"}, {"text": "MEX:GM", "url": "https://www.google.com/finance/quote/gm:mex"}, {"text": "FWB:8GM", "url": "https://www.google.com/finance/quote/8gm:fwb"}, {"text": "XETR:8GM", "url": "https://www.google.com/finance/quote/8gm:xetr"}, {"text": "BMV:GM", "url": "https://www.google.com/finance/quote/bmv:gm"}, {"text": "NYSE:GM", "url": "https://www.google.com/finance/quote/gm:nyse"}], "crunchbase_description": "General Motors manufactures, markets, and distributes vehicles and vehicle parts.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Robot", "field_count": 17}, {"field_name": "Advanced driver assistance systems", "field_count": 9}, {"field_name": "Convolutional neural network", "field_count": 7}, {"field_name": "Feature (computer vision)", "field_count": 6}, {"field_name": "Actuator", "field_count": 5}, {"field_name": "Reinforcement learning", "field_count": 5}, {"field_name": "Cluster analysis", "field_count": 4}, {"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Object (computer science)", "field_count": 4}, {"field_name": "Model selection", "field_count": 4}], "clusters": [{"cluster_id": 2410, "cluster_count": 23}, {"cluster_id": 105162, "cluster_count": 13}, {"cluster_id": 9480, "cluster_count": 11}, {"cluster_id": 58047, "cluster_count": 9}, {"cluster_id": 3647, "cluster_count": 8}, {"cluster_id": 1065, "cluster_count": 8}, {"cluster_id": 65126, "cluster_count": 8}, {"cluster_id": 4310, "cluster_count": 7}, {"cluster_id": 3281, "cluster_count": 6}, {"cluster_id": 29573, "cluster_count": 6}], "company_references": [{"ref_CSET_id": 820, "referenced_count": 252}, {"ref_CSET_id": 101, "referenced_count": 145}, {"ref_CSET_id": 163, "referenced_count": 60}, {"ref_CSET_id": 87, "referenced_count": 37}, {"ref_CSET_id": 115, "referenced_count": 18}, {"ref_CSET_id": 800, "referenced_count": 17}, {"ref_CSET_id": 790, "referenced_count": 16}, {"ref_CSET_id": 23, "referenced_count": 13}, {"ref_CSET_id": 456, "referenced_count": 11}, {"ref_CSET_id": 127, "referenced_count": 11}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 61}, {"referent": "autonomous_driving", "task_count": 61}, {"referent": "classification", "task_count": 50}, {"referent": "robots", "task_count": 29}, {"referent": "vehicle_detection", "task_count": 26}, {"referent": "fault_detection", "task_count": 21}, {"referent": "system_identification", "task_count": 21}, {"referent": "steering_control", "task_count": 18}, {"referent": "developmental_learning", "task_count": 13}, {"referent": "human_robot_interaction", "task_count": 13}], "methods": [{"referent": "vqa_models", "method_count": 30}, {"referent": "meta_learning_algorithms", "method_count": 22}, {"referent": "optimization", "method_count": 21}, {"referent": "double_q_learning", "method_count": 19}, {"referent": "mad_learning", "method_count": 18}, {"referent": "q_learning", "method_count": 17}, {"referent": "auto_classifier", "method_count": 14}, {"referent": "convolutional_neural_networks", "method_count": 12}, {"referent": "recurrent_neural_networks", "method_count": 12}, {"referent": "logistic_regression", "method_count": 9}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [613, 555, 490, 474, 468, 423, 443, 375, 374, 231, 9], "total": 4455, "isTopResearch": false, "rank": 74, "sp500_rank": 64, "fortune500_rank": 25}, "ai_publications": {"counts": [36, 26, 37, 26, 38, 47, 43, 43, 39, 18, 0], "total": 353, "isTopResearch": false, "rank": 51, "sp500_rank": 40, "fortune500_rank": 14}, "ai_publications_growth": {"counts": [], "total": -21.0494931425164, "isTopResearch": false, "rank": 1338, "sp500_rank": 356, "fortune500_rank": 390}, "ai_pubs_top_conf": {"counts": [1, 2, 1, 1, 3, 3, 2, 1, 1, 1, 0], "total": 16, "isTopResearch": false, "rank": 91, "sp500_rank": 48, "fortune500_rank": 31}, "citation_counts": {"counts": [295, 496, 598, 736, 906, 1196, 1422, 1791, 2131, 1730, 72], "total": 11373, "isTopResearch": false, "rank": 46, "sp500_rank": 30, "fortune500_rank": 17}, "cv_pubs": {"counts": [5, 5, 5, 3, 7, 7, 8, 8, 4, 2, 0], "total": 54, "isTopResearch": true, "rank": 78, "sp500_rank": 55, "fortune500_rank": 21}, "nlp_pubs": {"counts": [2, 0, 1, 0, 1, 0, 1, 0, 1, 1, 0], "total": 7, "isTopResearch": true, "rank": 117, "sp500_rank": 74, "fortune500_rank": 33}, "robotics_pubs": {"counts": [17, 12, 13, 17, 15, 16, 9, 12, 16, 6, 0], "total": 133, "isTopResearch": true, "rank": 21, "sp500_rank": 19, "fortune500_rank": 6}, "citations_per_article": {"counts": [8.194444444444445, 19.076923076923077, 16.16216216216216, 28.307692307692307, 23.842105263157894, 25.4468085106383, 33.06976744186046, 41.651162790697676, 54.64102564102564, 96.11111111111111, 0], "total": 32.21813031161473, "isTopResearch": false, "rank": 176, "sp500_rank": 40, "fortune500_rank": 49}}, "patents": {"ai_patents": {"counts": [8, 12, 22, 61, 123, 154, 155, 79, 41, 0, 0], "total": 655, "table": null, "rank": 44, "sp500_rank": 36, "fortune500_rank": 14}, "ai_patents_growth": {"counts": [], "total": -7.726551794215052, "table": null, "rank": 1437, "sp500_rank": 421, "fortune500_rank": 413}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [80, 120, 220, 610, 1230, 1540, 1550, 790, 410, 0, 0], "total": 6550, "table": null, "rank": 44, "sp500_rank": 36, "fortune500_rank": 14}, "Physical_Sciences_and_Engineering": {"counts": [1, 2, 2, 3, 5, 5, 1, 1, 2, 0, 0], "total": 22, "table": null, "rank": 27, "sp500_rank": 22, "fortune500_rank": 10}, "Life_Sciences": {"counts": [1, 0, 0, 0, 2, 0, 1, 1, 0, 0, 0], "total": 5, "table": null, "rank": 122, "sp500_rank": 78, "fortune500_rank": 52}, "Security__eg_cybersecurity": {"counts": [0, 1, 1, 1, 1, 3, 2, 0, 0, 0, 0], "total": 9, "table": null, "rank": 95, "sp500_rank": 69, "fortune500_rank": 39}, "Transportation": {"counts": [6, 3, 15, 54, 106, 138, 130, 63, 23, 0, 0], "total": 538, "table": "industry", "rank": 3, "sp500_rank": 3, "fortune500_rank": 1}, "Industrial_and_Manufacturing": {"counts": [0, 2, 0, 3, 2, 2, 3, 1, 1, 0, 0], "total": 14, "table": null, "rank": 57, "sp500_rank": 42, "fortune500_rank": 16}, "Education": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 50, "sp500_rank": 36, "fortune500_rank": 15}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 5, 5, 8, 13, 17, 29, 7, 8, 0, 0], "total": 92, "table": "industry", "rank": 81, "sp500_rank": 58, "fortune500_rank": 34}, "Banking_and_Finance": {"counts": [0, 1, 6, 9, 18, 15, 25, 7, 2, 0, 0], "total": 83, "table": "industry", "rank": 14, "sp500_rank": 12, "fortune500_rank": 6}, "Telecommunications": {"counts": [0, 3, 3, 18, 17, 26, 35, 20, 7, 0, 0], "total": 129, "table": "industry", "rank": 33, "sp500_rank": 30, "fortune500_rank": 14}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 40, "sp500_rank": 28, "fortune500_rank": 20}, "Business": {"counts": [0, 2, 1, 8, 9, 11, 18, 8, 4, 0, 0], "total": 61, "table": "industry", "rank": 43, "sp500_rank": 34, "fortune500_rank": 19}, "Energy_Management": {"counts": [6, 0, 3, 3, 9, 5, 5, 3, 4, 0, 0], "total": 38, "table": null, "rank": 16, "sp500_rank": 15, "fortune500_rank": 4}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22, "fortune500_rank": 17}, "Language_Processing": {"counts": [0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0], "total": 6, "table": null, "rank": 54, "sp500_rank": 39, "fortune500_rank": 29}, "Speech_Processing": {"counts": [0, 1, 0, 2, 4, 4, 2, 1, 0, 0, 0], "total": 14, "table": null, "rank": 69, "sp500_rank": 50, "fortune500_rank": 19}, "Knowledge_Representation": {"counts": [1, 1, 2, 0, 7, 4, 4, 3, 3, 0, 0], "total": 25, "table": null, "rank": 42, "sp500_rank": 33, "fortune500_rank": 23}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 7, 6, 7, 17, 7, 2, 0, 0], "total": 47, "table": "application", "rank": 39, "sp500_rank": 33, "fortune500_rank": 14}, "Control": {"counts": [6, 5, 14, 53, 106, 125, 122, 45, 12, 0, 0], "total": 488, "table": "application", "rank": 3, "sp500_rank": 3, "fortune500_rank": 1}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36, "fortune500_rank": 27}, "Robotics": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14, "fortune500_rank": 8}, "Computer_Vision": {"counts": [0, 2, 4, 10, 37, 46, 44, 36, 17, 0, 0], "total": 196, "table": "application", "rank": 43, "sp500_rank": 33, "fortune500_rank": 12}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 1, 1, 4, 12, 4, 3, 0, 0], "total": 26, "table": "application", "rank": 57, "sp500_rank": 44, "fortune500_rank": 28}, "Measuring_and_Testing": {"counts": [1, 1, 5, 22, 47, 55, 62, 35, 7, 0, 0], "total": 235, "table": "application", "rank": 5, "sp500_rank": 5, "fortune500_rank": 2}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 12190, "rank": 39, "sp500_rank": 29, "fortune500_rank": 26}, "ai_jobs": {"counts": null, "total": 845, "rank": 53, "sp500_rank": 36, "fortune500_rank": 31}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "General Motors Company (GM) is an American multinational corporation headquartered in Detroit that designs, manufactures, markets, and distributes vehicles and vehicle parts, and sells financial services, with global headquarters in Detroit's Renaissance Center. It was founded by William C. Durant on September 16, 1908, as a holding company, and the present entity was established in 2009 after its restructuring. The company is the largest American automobile manufacturer and one of the world's largest automobile manufacturers.\nAt its peak, GM had a 50% market share in the United States and was the world's largest automaker from 1931 through 2007. As of 2020, General Motors is ranked number 18 on the Fortune 500 rankings of the largest United States corporations by total revenue.", "wikipedia_link": "https://en.wikipedia.org/wiki/General_Motors", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 456, "country": "United States", "website": "http://www.forddirect.com", "crunchbase": {"text": "9249e8b6-409a-a80c-1a1e-29ae21b1db47", "url": "https://www.crunchbase.com/organization/ford"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ford-motor-company"], "stage": "Mature", "name": "Ford Motor Company", "patent_name": "ford motor company", "continent": "North America", "local_logo": "ford_motor_company.png", "aliases": "Ford Direct; Ford Motor Co; Ford Motor Company Limited", "permid_links": [{"text": 4295903068, "url": "https://permid.org/1-4295903068"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:F", "url": "https://www.google.com/finance/quote/f:nyse"}], "market_full": [{"text": "NYSE:F", "url": "https://www.google.com/finance/quote/f:nyse"}, {"text": "BMV:F", "url": "https://www.google.com/finance/quote/bmv:f"}, {"text": "VIE:F", "url": "https://www.google.com/finance/quote/f:vie"}, {"text": "FRA:F", "url": "https://www.google.com/finance/quote/f:fra"}, {"text": "XETR:FMC1", "url": "https://www.google.com/finance/quote/fmc1:xetr"}, {"text": "FWB:FMC1", "url": "https://www.google.com/finance/quote/fmc1:fwb"}, {"text": "MEX:F", "url": "https://www.google.com/finance/quote/f:mex"}, {"text": "MOEX:F-RM", "url": "https://www.google.com/finance/quote/f-rm:moex"}, {"text": "LSE:0P4F", "url": "https://www.google.com/finance/quote/0p4f:lse"}, {"text": "DUS:F", "url": "https://www.google.com/finance/quote/dus:f"}], "crunchbase_description": "Ford Motor is an automotive company that develops, manufactures, and distributes vehicles, parts, and accessories.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Reinforcement learning", "field_count": 14}, {"field_name": "Artificial neural network", "field_count": 11}, {"field_name": "Fuzzy logic", "field_count": 11}, {"field_name": "Deep learning", "field_count": 10}, {"field_name": "Robustness (computer science)", "field_count": 9}, {"field_name": "Advanced driver assistance systems", "field_count": 7}, {"field_name": "Cluster analysis", "field_count": 7}, {"field_name": "Robot", "field_count": 7}, {"field_name": "Feature (computer vision)", "field_count": 7}, {"field_name": "Markov chain", "field_count": 6}], "clusters": [{"cluster_id": 2410, "cluster_count": 18}, {"cluster_id": 8773, "cluster_count": 17}, {"cluster_id": 10587, "cluster_count": 11}, {"cluster_id": 24495, "cluster_count": 10}, {"cluster_id": 14335, "cluster_count": 9}, {"cluster_id": 1155, "cluster_count": 8}, {"cluster_id": 27589, "cluster_count": 7}, {"cluster_id": 1422, "cluster_count": 7}, {"cluster_id": 16876, "cluster_count": 7}, {"cluster_id": 31686, "cluster_count": 6}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 277}, {"ref_CSET_id": 456, "referenced_count": 221}, {"ref_CSET_id": 163, "referenced_count": 129}, {"ref_CSET_id": 87, "referenced_count": 93}, {"ref_CSET_id": 115, "referenced_count": 35}, {"ref_CSET_id": 184, "referenced_count": 31}, {"ref_CSET_id": 790, "referenced_count": 30}, {"ref_CSET_id": 6, "referenced_count": 26}, {"ref_CSET_id": 786, "referenced_count": 20}, {"ref_CSET_id": 1784, "referenced_count": 19}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 83}, {"referent": "autonomous_driving", "task_count": 55}, {"referent": "classification", "task_count": 54}, {"referent": "vehicle_detection", "task_count": 42}, {"referent": "steering_control", "task_count": 21}, {"referent": "decision_making", "task_count": 15}, {"referent": "speech_recognition", "task_count": 13}, {"referent": "robots", "task_count": 13}, {"referent": "path_planning", "task_count": 11}, {"referent": "image_processing", "task_count": 10}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 34}, {"referent": "vqa_models", "method_count": 34}, {"referent": "double_q_learning", "method_count": 22}, {"referent": "meta_learning_algorithms", "method_count": 21}, {"referent": "convolutional_neural_networks", "method_count": 20}, {"referent": "q_learning", "method_count": 19}, {"referent": "mad_learning", "method_count": 18}, {"referent": "optimization", "method_count": 16}, {"referent": "reinforcement_learning", "method_count": 15}, {"referent": "contrastive_predictive_coding", "method_count": 15}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [655, 621, 688, 781, 1081, 883, 882, 874, 824, 490, 9], "total": 7788, "isTopResearch": false, "rank": 48, "sp500_rank": 43, "fortune500_rank": 16}, "ai_publications": {"counts": [15, 27, 24, 31, 68, 43, 64, 62, 76, 35, 0], "total": 445, "isTopResearch": false, "rank": 44, "sp500_rank": 34, "fortune500_rank": 12}, "ai_publications_growth": {"counts": [], "total": -11.497241086587437, "isTopResearch": false, "rank": 1277, "sp500_rank": 321, "fortune500_rank": 370}, "ai_pubs_top_conf": {"counts": [2, 1, 1, 3, 1, 0, 2, 3, 2, 4, 0], "total": 19, "isTopResearch": false, "rank": 82, "sp500_rank": 44, "fortune500_rank": 27}, "citation_counts": {"counts": [137, 248, 328, 400, 608, 945, 1176, 1461, 1582, 1244, 57], "total": 8186, "isTopResearch": false, "rank": 54, "sp500_rank": 36, "fortune500_rank": 20}, "cv_pubs": {"counts": [0, 6, 2, 6, 10, 11, 14, 18, 16, 9, 0], "total": 92, "isTopResearch": true, "rank": 60, "sp500_rank": 43, "fortune500_rank": 15}, "nlp_pubs": {"counts": [3, 2, 2, 2, 4, 2, 2, 2, 3, 1, 0], "total": 23, "isTopResearch": true, "rank": 61, "sp500_rank": 43, "fortune500_rank": 21}, "robotics_pubs": {"counts": [1, 3, 2, 4, 14, 12, 17, 15, 17, 9, 0], "total": 94, "isTopResearch": true, "rank": 30, "sp500_rank": 28, "fortune500_rank": 8}, "citations_per_article": {"counts": [9.133333333333333, 9.185185185185185, 13.666666666666666, 12.903225806451612, 8.941176470588236, 21.976744186046513, 18.375, 23.56451612903226, 20.81578947368421, 35.542857142857144, 0], "total": 18.395505617977527, "isTopResearch": false, "rank": 341, "sp500_rank": 106, "fortune500_rank": 107}}, "patents": {"ai_patents": {"counts": [9, 16, 37, 112, 109, 100, 100, 110, 56, 0, 0], "total": 649, "table": null, "rank": 45, "sp500_rank": 37, "fortune500_rank": 15}, "ai_patents_growth": {"counts": [], "total": 0.5810397553516822, "table": null, "rank": 358, "sp500_rank": 168, "fortune500_rank": 118}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [90, 160, 370, 1120, 1090, 1000, 1000, 1100, 560, 0, 0], "total": 6490, "table": null, "rank": 45, "sp500_rank": 37, "fortune500_rank": 15}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 1, 3, 6, 3, 3, 4, 2, 0, 0], "total": 23, "table": null, "rank": 26, "sp500_rank": 21, "fortune500_rank": 9}, "Life_Sciences": {"counts": [0, 0, 0, 4, 3, 2, 4, 1, 0, 0, 0], "total": 14, "table": null, "rank": 64, "sp500_rank": 43, "fortune500_rank": 27}, "Security__eg_cybersecurity": {"counts": [1, 2, 1, 5, 6, 3, 9, 2, 5, 0, 0], "total": 34, "table": null, "rank": 31, "sp500_rank": 27, "fortune500_rank": 11}, "Transportation": {"counts": [8, 13, 35, 101, 95, 85, 81, 67, 38, 0, 0], "total": 523, "table": "industry", "rank": 4, "sp500_rank": 4, "fortune500_rank": 2}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 5, 5, 5, 2, 6, 4, 0, 0], "total": 27, "table": null, "rank": 31, "sp500_rank": 27, "fortune500_rank": 9}, "Education": {"counts": [0, 0, 5, 5, 2, 1, 1, 0, 1, 0, 0], "total": 15, "table": null, "rank": 10, "sp500_rank": 7, "fortune500_rank": 3}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 38, "sp500_rank": 31, "fortune500_rank": 11}, "Computing_in_Government": {"counts": [0, 0, 1, 0, 0, 0, 2, 1, 1, 0, 0], "total": 5, "table": null, "rank": 15, "sp500_rank": 12, "fortune500_rank": 4}, "Personal_Devices_and_Computing": {"counts": [1, 3, 10, 13, 18, 22, 21, 26, 15, 0, 0], "total": 129, "table": "industry", "rank": 62, "sp500_rank": 46, "fortune500_rank": 25}, "Banking_and_Finance": {"counts": [2, 1, 2, 13, 12, 8, 15, 13, 12, 0, 0], "total": 78, "table": "industry", "rank": 18, "sp500_rank": 13, "fortune500_rank": 9}, "Telecommunications": {"counts": [0, 4, 9, 27, 27, 30, 32, 17, 13, 0, 0], "total": 159, "table": "industry", "rank": 27, "sp500_rank": 24, "fortune500_rank": 11}, "Networks__eg_social_IOT_etc": {"counts": [0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 47, "sp500_rank": 34, "fortune500_rank": 24}, "Business": {"counts": [2, 1, 7, 18, 10, 20, 12, 7, 9, 0, 0], "total": 86, "table": "industry", "rank": 34, "sp500_rank": 28, "fortune500_rank": 13}, "Energy_Management": {"counts": [0, 1, 2, 6, 1, 3, 6, 1, 2, 0, 0], "total": 22, "table": null, "rank": 29, "sp500_rank": 26, "fortune500_rank": 5}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22, "fortune500_rank": 17}, "Language_Processing": {"counts": [0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 62, "sp500_rank": 44, "fortune500_rank": 35}, "Speech_Processing": {"counts": [0, 2, 1, 3, 3, 8, 2, 3, 2, 0, 0], "total": 24, "table": "application", "rank": 45, "sp500_rank": 36, "fortune500_rank": 14}, "Knowledge_Representation": {"counts": [0, 1, 1, 0, 2, 1, 0, 3, 1, 0, 0], "total": 9, "table": null, "rank": 78, "sp500_rank": 55, "fortune500_rank": 40}, "Planning_and_Scheduling": {"counts": [1, 1, 5, 16, 7, 17, 9, 3, 6, 0, 0], "total": 65, "table": "application", "rank": 28, "sp500_rank": 26, "fortune500_rank": 10}, "Control": {"counts": [6, 10, 31, 94, 95, 65, 64, 40, 11, 0, 0], "total": 416, "table": "application", "rank": 4, "sp500_rank": 4, "fortune500_rank": 2}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 14, 42, 30, 26, 38, 59, 24, 0, 0], "total": 234, "table": "application", "rank": 37, "sp500_rank": 27, "fortune500_rank": 10}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 4, 2, 4, 5, 4, 0, 0], "total": 20, "table": null, "rank": 65, "sp500_rank": 51, "fortune500_rank": 30}, "Measuring_and_Testing": {"counts": [1, 1, 18, 32, 38, 38, 26, 34, 10, 0, 0], "total": 198, "table": "application", "rank": 8, "sp500_rank": 8, "fortune500_rank": 3}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 11728, "rank": 40, "sp500_rank": 30, "fortune500_rank": 27}, "ai_jobs": {"counts": null, "total": 1169, "rank": 35, "sp500_rank": 23, "fortune500_rank": 23}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "The Ford Motor Company, commonly known as Ford, is an American multinational automaker that has its main headquarters in Dearborn, Michigan, a suburb of Detroit. It was founded by Henry Ford and incorporated on June 16, 1903. The company sells automobiles and commercial vehicles under the Ford brand, and most luxury cars under the Lincoln brand. Ford also owns Brazilian SUV manufacturer Troller, an 8% stake in Aston Martin of the United Kingdom and a 32% stake in Jiangling Motors. It also has joint-ventures in China (Changan Ford), Taiwan (Ford Lio Ho), Thailand (AutoAlliance Thailand), Turkey (Ford Otosan), and Russia (Ford Sollers). The company is listed on the New York Stock Exchange and is controlled by the Ford family; they have minority ownership but the majority of the voting power.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ford_Motor_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 396, "country": "United States", "website": "http://corporate.comcast.com", "crunchbase": {"text": "fbc7746d-86e0-8fd6-19d8-69280c686d02", "url": "https://www.crunchbase.com/organization/comcast"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/comcast"], "stage": "Mature", "name": "Comcast", "patent_name": "comcast", "continent": "North America", "local_logo": "comcast.png", "aliases": "Comcast Corp; Comcast Corporation; Comcast Holdings", "permid_links": [{"text": 4295908573, "url": "https://permid.org/1-4295908573"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CCZ", "url": "https://www.google.com/finance/quote/ccz:nyse"}, {"text": "NASDAQ:CMCSA", "url": "https://www.google.com/finance/quote/cmcsa:nasdaq"}], "market_full": [{"text": "VIE:CMCSA", "url": "https://www.google.com/finance/quote/cmcsa:vie"}, {"text": "FWB:CTP2", "url": "https://www.google.com/finance/quote/ctp2:fwb"}, {"text": "BER:CTP2", "url": "https://www.google.com/finance/quote/ber:ctp2"}, {"text": "LON:0QYF", "url": "https://www.google.com/finance/quote/0qyf:lon"}, {"text": "DUS:CTP2", "url": "https://www.google.com/finance/quote/ctp2:dus"}, {"text": "BMV:CMCSA", "url": "https://www.google.com/finance/quote/bmv:cmcsa"}, {"text": "NYSE:CCZ", "url": "https://www.google.com/finance/quote/ccz:nyse"}, {"text": "HAN:CTP2", "url": "https://www.google.com/finance/quote/ctp2:han"}, {"text": "HAM:CTP2", "url": "https://www.google.com/finance/quote/ctp2:ham"}, {"text": "MEX:CMCSA", "url": "https://www.google.com/finance/quote/cmcsa:mex"}, {"text": "XETR:CTP2", "url": "https://www.google.com/finance/quote/ctp2:xetr"}, {"text": "MUN:CTP2", "url": "https://www.google.com/finance/quote/ctp2:mun"}, {"text": "NASDAQ:CMCSA", "url": "https://www.google.com/finance/quote/cmcsa:nasdaq"}, {"text": "MOEX:CMCSA-RM", "url": "https://www.google.com/finance/quote/cmcsa-rm:moex"}], "crunchbase_description": "Comcast is a media and technology company that connects millions of people to the moments and experiences that matter most.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Convolutional neural network", "field_count": 5}, {"field_name": "Feature (computer vision)", "field_count": 5}, {"field_name": "Analytics", "field_count": 4}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Relevance (information retrieval)", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Conditional random field", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Voice search", "field_count": 2}, {"field_name": "Semantic similarity", "field_count": 2}], "clusters": [{"cluster_id": 4473, "cluster_count": 5}, {"cluster_id": 45791, "cluster_count": 4}, {"cluster_id": 1363, "cluster_count": 3}, {"cluster_id": 3886, "cluster_count": 3}, {"cluster_id": 4358, "cluster_count": 2}, {"cluster_id": 5300, "cluster_count": 2}, {"cluster_id": 214, "cluster_count": 2}, {"cluster_id": 1038, "cluster_count": 2}, {"cluster_id": 21517, "cluster_count": 2}, {"cluster_id": 79015, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 185}, {"ref_CSET_id": 163, "referenced_count": 109}, {"ref_CSET_id": 87, "referenced_count": 70}, {"ref_CSET_id": 396, "referenced_count": 23}, {"ref_CSET_id": 6, "referenced_count": 18}, {"ref_CSET_id": 792, "referenced_count": 17}, {"ref_CSET_id": 115, "referenced_count": 16}, {"ref_CSET_id": 37, "referenced_count": 14}, {"ref_CSET_id": 1126, "referenced_count": 13}, {"ref_CSET_id": 184, "referenced_count": 10}], "tasks": [{"referent": "classification", "task_count": 11}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 8}, {"referent": "computer_vision", "task_count": 7}, {"referent": "activity_detection", "task_count": 7}, {"referent": "object_detection", "task_count": 5}, {"referent": "video_surveillance", "task_count": 5}, {"referent": "representation_learning", "task_count": 4}, {"referent": "event_extraction", "task_count": 4}, {"referent": "voice_query_recognition", "task_count": 4}, {"referent": "speech_recognition", "task_count": 4}], "methods": [{"referent": "mad_learning", "method_count": 11}, {"referent": "vqa_models", "method_count": 10}, {"referent": "convolutional_neural_networks", "method_count": 8}, {"referent": "recurrent_neural_networks", "method_count": 7}, {"referent": "3d_representations", "method_count": 7}, {"referent": "q_learning", "method_count": 6}, {"referent": "1d_cnn", "method_count": 5}, {"referent": "double_q_learning", "method_count": 5}, {"referent": "backbone_architectures", "method_count": 5}, {"referent": "glow", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [94, 68, 50, 51, 49, 56, 42, 46, 63, 39, 1], "total": 559, "isTopResearch": false, "rank": 263, "sp500_rank": 175, "fortune500_rank": 101}, "ai_publications": {"counts": [3, 3, 2, 6, 4, 12, 13, 10, 16, 1, 0], "total": 70, "isTopResearch": false, "rank": 150, "sp500_rank": 98, "fortune500_rank": 49}, "ai_publications_growth": {"counts": [], "total": -18.942307692307693, "isTopResearch": false, "rank": 1317, "sp500_rank": 345, "fortune500_rank": 384}, "ai_pubs_top_conf": {"counts": [1, 0, 0, 4, 1, 3, 5, 4, 2, 1, 0], "total": 21, "isTopResearch": false, "rank": 76, "sp500_rank": 40, "fortune500_rank": 25}, "citation_counts": {"counts": [5, 8, 10, 24, 59, 158, 323, 560, 748, 617, 23], "total": 2535, "isTopResearch": false, "rank": 113, "sp500_rank": 71, "fortune500_rank": 37}, "cv_pubs": {"counts": [2, 0, 1, 4, 2, 8, 6, 4, 2, 1, 0], "total": 30, "isTopResearch": true, "rank": 113, "sp500_rank": 75, "fortune500_rank": 33}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 1, 3, 3, 1, 0, 0], "total": 9, "isTopResearch": true, "rank": 99, "sp500_rank": 67, "fortune500_rank": 28}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [1.6666666666666667, 2.6666666666666665, 5.0, 4.0, 14.75, 13.166666666666666, 24.846153846153847, 56.0, 46.75, 617.0, 0], "total": 36.214285714285715, "isTopResearch": false, "rank": 150, "sp500_rank": 34, "fortune500_rank": 39}}, "patents": {"ai_patents": {"counts": [1, 2, 3, 1, 4, 10, 8, 11, 7, 0, 0], "total": 47, "table": null, "rank": 223, "sp500_rank": 133, "fortune500_rank": 70}, "ai_patents_growth": {"counts": [], "total": 55.833333333333336, "table": null, "rank": 185, "sp500_rank": 89, "fortune500_rank": 48}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 20, 30, 10, 40, 100, 80, 110, 70, 0, 0], "total": 470, "table": null, "rank": 223, "sp500_rank": 133, "fortune500_rank": 70}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 193, "sp500_rank": 115, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 159, "sp500_rank": 107, "fortune500_rank": 48}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 2, 0, 1, 7, 4, 3, 1, 0, 0], "total": 18, "table": "industry", "rank": 202, "sp500_rank": 113, "fortune500_rank": 75}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [1, 2, 1, 1, 2, 5, 2, 7, 4, 0, 0], "total": 25, "table": "industry", "rank": 121, "sp500_rank": 77, "fortune500_rank": 49}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 55, "sp500_rank": 41, "fortune500_rank": 26}, "Business": {"counts": [1, 0, 1, 0, 1, 2, 0, 0, 1, 0, 0], "total": 6, "table": "industry", "rank": 196, "sp500_rank": 128, "fortune500_rank": 65}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 29, "sp500_rank": 20, "fortune500_rank": 13}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "sp500_rank": 67, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 3, 1, 2, 0, 0], "total": 7, "table": "application", "rank": 96, "sp500_rank": 61, "fortune500_rank": 28}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 172, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212, "sp500_rank": 129, "fortune500_rank": 73}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 3, 2, 4, 3, 2, 0, 0], "total": 14, "table": "application", "rank": 218, "sp500_rank": 123, "fortune500_rank": 64}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 1, 0, 2, 0, 4, 1, 0, 0], "total": 9, "table": "application", "rank": 122, "sp500_rank": 88, "fortune500_rank": 51}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 165, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 11581, "rank": 41, "sp500_rank": 31, "fortune500_rank": 28}, "ai_jobs": {"counts": null, "total": 719, "rank": 72, "sp500_rank": 48, "fortune500_rank": 39}}, "sector": "Technology", "business_sector": "Telecommunications Services", "wikipedia_description": "Comcast Corporation (formerly registered as Comcast Holdings)[note 1] is an American telecommunications conglomerate headquartered in Philadelphia, Pennsylvania. It is the second-largest broadcasting and cable television company in the world by revenue (behind AT&T), the largest pay-TV company, the largest cable TV company and largest home Internet service provider in the United States, and the nation's third-largest home telephone service provider. Comcast provides services to U.S. residential and commercial customers in 40 states and in the District of Columbia. As the parent company of the international media company NBCUniversal since 2011, Comcast is a producer of feature films and television programs intended for theatrical exhibition and over-the-air and cable television broadcast, respectively.", "wikipedia_link": "https://en.wikipedia.org/wiki/Comcast", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 487, "country": "United States", "website": "https://www.hpe.com", "crunchbase": {"text": "0eb819a3-efb2-137b-57de-6e5f4b613772", "url": "https://www.crunchbase.com/organization/hewlett-packard-enterprise"}, "child_crunchbase": [{"text": "0a6f3ee5-6d79-afe1-7da3-aa9d5f05fa9a", "url": "https://www.crunchbase.com/organization/determined-ai"}], "linkedin": ["https://www.linkedin.com/company/hp", "https://www.linkedin.com/company/determined-ai"], "stage": "Mature", "name": "Hewlett Packard Enterprise", "patent_name": "hewlett packard enterprise", "continent": "North America", "local_logo": "hewlett_packard_enterprise.png", "aliases": "Hewlett Packard Enterprise Co; Hewlett Packard Enterprise Company; Hewlett Packard Enterprise Development Lp; Hewlett-Packard Enterprise", "permid_links": [{"text": 5046390586, "url": "https://permid.org/1-5046390586"}, {"text": 5065657966, "url": "https://permid.org/1-5065657966"}], "parent_info": null, "agg_child_info": "Determined AI", "unagg_child_info": null, "market_filt": [{"text": "NYSE:HPE", "url": "https://www.google.com/finance/quote/hpe:nyse"}], "market_full": [{"text": "XETR:2HP", "url": "https://www.google.com/finance/quote/2hp:xetr"}, {"text": "DUS:2HP", "url": "https://www.google.com/finance/quote/2hp:dus"}, {"text": "FWB:2HP", "url": "https://www.google.com/finance/quote/2hp:fwb"}, {"text": "LON:0J51", "url": "https://www.google.com/finance/quote/0j51:lon"}, {"text": "MOEX:HPE-RM", "url": "https://www.google.com/finance/quote/hpe-rm:moex"}, {"text": "HAM:2HP", "url": "https://www.google.com/finance/quote/2hp:ham"}, {"text": "BMV:HPE", "url": "https://www.google.com/finance/quote/bmv:hpe"}, {"text": "MUN:2HP", "url": "https://www.google.com/finance/quote/2hp:mun"}, {"text": "HAN:2HP", "url": "https://www.google.com/finance/quote/2hp:han"}, {"text": "FRA:2HP", "url": "https://www.google.com/finance/quote/2hp:fra"}, {"text": "NYSE:HPE", "url": "https://www.google.com/finance/quote/hpe:nyse"}, {"text": "MEX:HPE", "url": "https://www.google.com/finance/quote/hpe:mex"}, {"text": "BER:2HP", "url": "https://www.google.com/finance/quote/2hp:ber"}], "crunchbase_description": "Hewlett Packard Enterprise is an industry technology company that enables customers to go further and faster.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 4}, {"field_name": "Active learning (machine learning)", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Outlier", "field_count": 1}, {"field_name": "Genetic algorithm", "field_count": 1}, {"field_name": "Pruning (morphology)", "field_count": 1}, {"field_name": "Swarm behaviour", "field_count": 1}, {"field_name": "Modality (human\u2013computer interaction)", "field_count": 1}, {"field_name": "Ground truth", "field_count": 1}], "clusters": [{"cluster_id": 1149, "cluster_count": 2}, {"cluster_id": 6635, "cluster_count": 2}, {"cluster_id": 58382, "cluster_count": 1}, {"cluster_id": 75973, "cluster_count": 1}, {"cluster_id": 40901, "cluster_count": 1}, {"cluster_id": 34434, "cluster_count": 1}, {"cluster_id": 5070, "cluster_count": 1}, {"cluster_id": 16998, "cluster_count": 1}, {"cluster_id": 214, "cluster_count": 1}, {"cluster_id": 2894, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 80}, {"ref_CSET_id": 163, "referenced_count": 41}, {"ref_CSET_id": 87, "referenced_count": 32}, {"ref_CSET_id": 115, "referenced_count": 19}, {"ref_CSET_id": 184, "referenced_count": 6}, {"ref_CSET_id": 833, "referenced_count": 6}, {"ref_CSET_id": 21, "referenced_count": 5}, {"ref_CSET_id": 127, "referenced_count": 5}, {"ref_CSET_id": 792, "referenced_count": 4}, {"ref_CSET_id": 787, "referenced_count": 4}], "tasks": [{"referent": "classification", "task_count": 10}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "active_learning", "task_count": 3}, {"referent": "inference_attack", "task_count": 3}, {"referent": "image_processing", "task_count": 3}, {"referent": "image_analysis", "task_count": 3}, {"referent": "multi_task_learning", "task_count": 2}, {"referent": "image_recognition", "task_count": 2}, {"referent": "network_traffic_classification", "task_count": 2}, {"referent": "semantic_segmentation", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 7}, {"referent": "symbolic_deep_learning", "method_count": 6}, {"referent": "mad_learning", "method_count": 6}, {"referent": "q_learning", "method_count": 5}, {"referent": "vqa_models", "method_count": 4}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "optimization", "method_count": 4}, {"referent": "3d_representations", "method_count": 3}, {"referent": "hopfield_layer", "method_count": 2}, {"referent": "reinforcement_learning", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [34, 206, 279, 125, 92, 56, 92, 104, 108, 82, 0], "total": 1178, "isTopResearch": false, "rank": 175, "sp500_rank": 131, "fortune500_rank": 67}, "ai_publications": {"counts": [1, 0, 1, 5, 4, 3, 9, 13, 9, 5, 0], "total": 50, "isTopResearch": false, "rank": 185, "sp500_rank": 115, "fortune500_rank": 58}, "ai_publications_growth": {"counts": [], "total": -10.256410256410257, "isTopResearch": false, "rank": 1267, "sp500_rank": 315, "fortune500_rank": 364}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "isTopResearch": false, "rank": 188, "sp500_rank": 92, "fortune500_rank": 54}, "citation_counts": {"counts": [0, 1, 0, 0, 14, 126, 260, 386, 544, 539, 17], "total": 1887, "isTopResearch": false, "rank": 146, "sp500_rank": 88, "fortune500_rank": 42}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 3, 3, 2, 0, 0], "total": 9, "isTopResearch": true, "rank": 217, "sp500_rank": 122, "fortune500_rank": 62}, "nlp_pubs": {"counts": [0, 0, 0, 3, 0, 1, 0, 1, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 141, "sp500_rank": 83, "fortune500_rank": 42}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140, "fortune500_rank": 67}, "citations_per_article": {"counts": [0.0, 0, 0.0, 0.0, 3.5, 42.0, 28.88888888888889, 29.692307692307693, 60.44444444444444, 107.8, 0], "total": 37.74, "isTopResearch": false, "rank": 143, "sp500_rank": 33, "fortune500_rank": 37}}, "patents": {"ai_patents": {"counts": [17, 19, 47, 24, 15, 43, 60, 58, 17, 0, 0], "total": 300, "table": null, "rank": 78, "sp500_rank": 61, "fortune500_rank": 24}, "ai_patents_growth": {"counts": [], "total": 74.28940568475451, "table": null, "rank": 156, "sp500_rank": 73, "fortune500_rank": 37}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [170, 190, 470, 240, 150, 430, 600, 580, 170, 0, 0], "total": 3000, "table": null, "rank": 78, "sp500_rank": 61, "fortune500_rank": 24}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0], "total": 3, "table": null, "rank": 158, "sp500_rank": 91, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [2, 3, 6, 0, 1, 3, 6, 5, 1, 0, 0], "total": 27, "table": "industry", "rank": 43, "sp500_rank": 33, "fortune500_rank": 19}, "Transportation": {"counts": [0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 159, "sp500_rank": 107, "fortune500_rank": 48}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 165, "sp500_rank": 110, "fortune500_rank": 55}, "Education": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43, "fortune500_rank": 20}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [10, 10, 35, 20, 11, 21, 36, 37, 9, 0, 0], "total": 189, "table": "industry", "rank": 46, "sp500_rank": 36, "fortune500_rank": 19}, "Banking_and_Finance": {"counts": [0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 141, "sp500_rank": 91, "fortune500_rank": 50}, "Telecommunications": {"counts": [3, 7, 13, 4, 8, 22, 29, 29, 7, 0, 0], "total": 122, "table": "industry", "rank": 36, "sp500_rank": 32, "fortune500_rank": 16}, "Networks__eg_social_IOT_etc": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], "total": 3, "table": null, "rank": 47, "sp500_rank": 34, "fortune500_rank": 24}, "Business": {"counts": [6, 4, 4, 3, 1, 2, 4, 3, 1, 0, 0], "total": 28, "table": "industry", "rank": 81, "sp500_rank": 57, "fortune500_rank": 31}, "Energy_Management": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 1, 1, 1, 1, 2, 1, 0, 0, 0], "total": 7, "table": "industry", "rank": 19, "sp500_rank": 11, "fortune500_rank": 9}, "Language_Processing": {"counts": [0, 2, 1, 0, 1, 1, 1, 0, 0, 0, 0], "total": 6, "table": null, "rank": 54, "sp500_rank": 39, "fortune500_rank": 29}, "Speech_Processing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191, "sp500_rank": 104, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [1, 2, 4, 3, 1, 3, 2, 5, 0, 0, 0], "total": 21, "table": "application", "rank": 53, "sp500_rank": 40, "fortune500_rank": 28}, "Planning_and_Scheduling": {"counts": [6, 4, 2, 2, 1, 2, 2, 2, 0, 0, 0], "total": 21, "table": "application", "rank": 78, "sp500_rank": 58, "fortune500_rank": 29}, "Control": {"counts": [1, 0, 4, 2, 1, 4, 3, 3, 1, 0, 0], "total": 19, "table": "application", "rank": 95, "sp500_rank": 67, "fortune500_rank": 31}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 36, "sp500_rank": 28, "fortune500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 16, 3, 1, 6, 7, 12, 6, 0, 0], "total": 52, "table": "application", "rank": 114, "sp500_rank": 74, "fortune500_rank": 34}, "Analytics_and_Algorithms": {"counts": [1, 2, 3, 0, 2, 6, 16, 12, 2, 0, 0], "total": 44, "table": "application", "rank": 32, "sp500_rank": 28, "fortune500_rank": 14}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 165, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 11551, "rank": 42, "sp500_rank": 32, "fortune500_rank": 29}, "ai_jobs": {"counts": null, "total": 886, "rank": 48, "sp500_rank": 33, "fortune500_rank": 28}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "The Hewlett Packard Enterprise Company (HPE) is an American multinational enterprise information technology company based in Houston, Texas, United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Hewlett_Packard_Enterprise", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 833, "country": "United States", "website": "http://www.hp.com", "crunchbase": {"text": "8adadbfb-be63-6602-8ca0-b037397a7038", "url": "https://www.crunchbase.com/organization/hewlett-packard"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hp"], "stage": "Mature", "name": "Hewlett Packard", "patent_name": "hewlett packard", "continent": "North America", "local_logo": "hewlett_packard.png", "aliases": "Hewlett Packard Co", "permid_links": [{"text": 4295904170, "url": "https://permid.org/1-4295904170"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HPQ", "url": "https://www.google.com/finance/quote/hpq:nyse"}], "market_full": [{"text": "HAN:2HP", "url": "https://www.google.com/finance/quote/2hp:han"}, {"text": "MOEX:HPE-RM", "url": "https://www.google.com/finance/quote/hpe-rm:moex"}, {"text": "DUS:2HP", "url": "https://www.google.com/finance/quote/2hp:dus"}, {"text": "SAO:HPQ", "url": "https://www.google.com/finance/quote/hpq:sao"}, {"text": "XETR:2HP", "url": "https://www.google.com/finance/quote/2hp:xetr"}, {"text": "HAM:2HP", "url": "https://www.google.com/finance/quote/2hp:ham"}, {"text": "FWB:2HP", "url": "https://www.google.com/finance/quote/2hp:fwb"}, {"text": "BMV:HPQ", "url": "https://www.google.com/finance/quote/bmv:hpq"}, {"text": "MUN:2HP", "url": "https://www.google.com/finance/quote/2hp:mun"}, {"text": "FRA:2HP", "url": "https://www.google.com/finance/quote/2hp:fra"}, {"text": "MEX:HPQ", "url": "https://www.google.com/finance/quote/hpq:mex"}, {"text": "LON:0J2E", "url": "https://www.google.com/finance/quote/0j2e:lon"}, {"text": "NYSE:HPQ", "url": "https://www.google.com/finance/quote/hpq:nyse"}, {"text": "BER:2HP", "url": "https://www.google.com/finance/quote/2hp:ber"}], "crunchbase_description": "HP is a manufacturer and seller of personal computers, printers, computer hardwares, and business solutions.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Cluster analysis", "field_count": 21}, {"field_name": "Feature (computer vision)", "field_count": 14}, {"field_name": "Automatic summarization", "field_count": 14}, {"field_name": "Segmentation", "field_count": 9}, {"field_name": "Face (geometry)", "field_count": 9}, {"field_name": "Pixel", "field_count": 8}, {"field_name": "Sentiment analysis", "field_count": 8}, {"field_name": "Robustness (computer science)", "field_count": 7}, {"field_name": "Hidden Markov model", "field_count": 7}, {"field_name": "Inference", "field_count": 7}], "clusters": [{"cluster_id": 43888, "cluster_count": 13}, {"cluster_id": 15591, "cluster_count": 12}, {"cluster_id": 42457, "cluster_count": 9}, {"cluster_id": 5367, "cluster_count": 9}, {"cluster_id": 9019, "cluster_count": 8}, {"cluster_id": 64286, "cluster_count": 7}, {"cluster_id": 33, "cluster_count": 7}, {"cluster_id": 54899, "cluster_count": 7}, {"cluster_id": 105489, "cluster_count": 7}, {"cluster_id": 25959, "cluster_count": 7}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 240}, {"ref_CSET_id": 833, "referenced_count": 231}, {"ref_CSET_id": 163, "referenced_count": 209}, {"ref_CSET_id": 115, "referenced_count": 96}, {"ref_CSET_id": 87, "referenced_count": 86}, {"ref_CSET_id": 184, "referenced_count": 32}, {"ref_CSET_id": 127, "referenced_count": 30}, {"ref_CSET_id": 112, "referenced_count": 29}, {"ref_CSET_id": 6, "referenced_count": 17}, {"ref_CSET_id": 792, "referenced_count": 17}], "tasks": [{"referent": "classification", "task_count": 97}, {"referent": "image_processing", "task_count": 44}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 27}, {"referent": "face_recognition", "task_count": 22}, {"referent": "segmentation", "task_count": 20}, {"referent": "summarization", "task_count": 18}, {"referent": "computer_vision", "task_count": 18}, {"referent": "feature_selection", "task_count": 17}, {"referent": "image_analysis", "task_count": 16}, {"referent": "object_detection", "task_count": 15}], "methods": [{"referent": "vqa_models", "method_count": 46}, {"referent": "auto_classifier", "method_count": 39}, {"referent": "double_q_learning", "method_count": 35}, {"referent": "recurrent_neural_networks", "method_count": 30}, {"referent": "optimization", "method_count": 25}, {"referent": "q_learning", "method_count": 21}, {"referent": "clustering", "method_count": 21}, {"referent": "3d_representations", "method_count": 17}, {"referent": "meta_learning_algorithms", "method_count": 16}, {"referent": "mad_learning", "method_count": 14}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [515, 386, 335, 327, 282, 144, 183, 145, 137, 84, 2], "total": 2540, "isTopResearch": false, "rank": 108, "sp500_rank": 86, "fortune500_rank": 42}, "ai_publications": {"counts": [75, 57, 36, 34, 31, 17, 28, 28, 27, 9, 0], "total": 342, "isTopResearch": false, "rank": 54, "sp500_rank": 43, "fortune500_rank": 16}, "ai_publications_growth": {"counts": [], "total": -23.412698412698415, "isTopResearch": false, "rank": 1355, "sp500_rank": 362, "fortune500_rank": 395}, "ai_pubs_top_conf": {"counts": [8, 3, 5, 3, 3, 1, 1, 3, 1, 0, 0], "total": 28, "isTopResearch": false, "rank": 64, "sp500_rank": 35, "fortune500_rank": 24}, "citation_counts": {"counts": [724, 1022, 1144, 1279, 1407, 1566, 1921, 2001, 1979, 1399, 42], "total": 14484, "isTopResearch": false, "rank": 41, "sp500_rank": 28, "fortune500_rank": 16}, "cv_pubs": {"counts": [25, 20, 13, 15, 6, 7, 12, 9, 9, 2, 0], "total": 118, "isTopResearch": true, "rank": 48, "sp500_rank": 34, "fortune500_rank": 12}, "nlp_pubs": {"counts": [18, 14, 0, 2, 1, 3, 1, 3, 0, 0, 0], "total": 42, "isTopResearch": true, "rank": 50, "sp500_rank": 37, "fortune500_rank": 17}, "robotics_pubs": {"counts": [1, 2, 0, 1, 2, 1, 1, 1, 0, 1, 0], "total": 10, "isTopResearch": true, "rank": 114, "sp500_rank": 82, "fortune500_rank": 31}, "citations_per_article": {"counts": [9.653333333333334, 17.92982456140351, 31.77777777777778, 37.61764705882353, 45.38709677419355, 92.11764705882354, 68.60714285714286, 71.46428571428571, 73.29629629629629, 155.44444444444446, 0], "total": 42.35087719298246, "isTopResearch": false, "rank": 118, "sp500_rank": 26, "fortune500_rank": 30}}, "patents": {"ai_patents": {"counts": [23, 16, 10, 8, 19, 59, 53, 65, 18, 0, 0], "total": 271, "table": null, "rank": 85, "sp500_rank": 66, "fortune500_rank": 26}, "ai_patents_growth": {"counts": [], "total": 74.3327778993374, "table": null, "rank": 155, "sp500_rank": 72, "fortune500_rank": 36}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [230, 160, 100, 80, 190, 590, 530, 650, 180, 0, 0], "total": 2710, "table": null, "rank": 85, "sp500_rank": 66, "fortune500_rank": 26}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 2, 0, 0, 3, 3, 3, 0, 0, 0], "total": 11, "table": null, "rank": 78, "sp500_rank": 54, "fortune500_rank": 32}, "Security__eg_cybersecurity": {"counts": [1, 2, 0, 0, 1, 7, 2, 6, 0, 0, 0], "total": 19, "table": "industry", "rank": 59, "sp500_rank": 45, "fortune500_rank": 24}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 4, 7, 12, 10, 1, 0, 0], "total": 34, "table": "industry", "rank": 22, "sp500_rank": 19, "fortune500_rank": 5}, "Education": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43, "fortune500_rank": 20}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 1, 0, 0, 2, 2, 2, 0, 0, 0], "total": 7, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [15, 10, 6, 6, 16, 36, 34, 33, 7, 0, 0], "total": 163, "table": "industry", "rank": 49, "sp500_rank": 38, "fortune500_rank": 21}, "Banking_and_Finance": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [6, 7, 2, 2, 7, 18, 11, 15, 2, 0, 0], "total": 70, "table": "industry", "rank": 57, "sp500_rank": 46, "fortune500_rank": 23}, "Networks__eg_social_IOT_etc": {"counts": [2, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 4, "table": null, "rank": 40, "sp500_rank": 28, "fortune500_rank": 20}, "Business": {"counts": [9, 2, 3, 0, 3, 4, 2, 2, 0, 0, 0], "total": 25, "table": "industry", "rank": 87, "sp500_rank": 61, "fortune500_rank": 35}, "Energy_Management": {"counts": [1, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 86, "sp500_rank": 72, "fortune500_rank": 21}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], "total": 4, "table": null, "rank": 32, "sp500_rank": 22, "fortune500_rank": 14}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39, "fortune500_rank": 23}, "Language_Processing": {"counts": [3, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0], "total": 7, "table": null, "rank": 45, "sp500_rank": 34, "fortune500_rank": 25}, "Speech_Processing": {"counts": [0, 0, 0, 0, 5, 2, 3, 1, 1, 0, 0], "total": 12, "table": "application", "rank": 75, "sp500_rank": 53, "fortune500_rank": 22}, "Knowledge_Representation": {"counts": [4, 0, 1, 0, 1, 2, 2, 1, 0, 0, 0], "total": 11, "table": null, "rank": 69, "sp500_rank": 51, "fortune500_rank": 37}, "Planning_and_Scheduling": {"counts": [8, 2, 1, 0, 2, 3, 2, 1, 0, 0, 0], "total": 19, "table": "application", "rank": 83, "sp500_rank": 61, "fortune500_rank": 31}, "Control": {"counts": [1, 0, 0, 2, 3, 5, 2, 1, 0, 0, 0], "total": 14, "table": "application", "rank": 116, "sp500_rank": 84, "fortune500_rank": 40}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 3, 4, 3, 7, 32, 15, 13, 7, 0, 0], "total": 84, "table": "application", "rank": 77, "sp500_rank": 54, "fortune500_rank": 24}, "Analytics_and_Algorithms": {"counts": [1, 2, 1, 0, 1, 3, 8, 7, 2, 0, 0], "total": 25, "table": "application", "rank": 58, "sp500_rank": 45, "fortune500_rank": 29}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 4, 4, 1, 0, 0, 0], "total": 10, "table": null, "rank": 121, "sp500_rank": 94, "fortune500_rank": 37}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 11532, "rank": 43, "sp500_rank": 33, "fortune500_rank": 30}, "ai_jobs": {"counts": null, "total": 885, "rank": 49, "sp500_rank": 34, "fortune500_rank": 29}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "The Hewlett-Packard Company, commonly shortened to Hewlett-Packard or HP, was an American multinational information technology company headquartered in Palo Alto, California, that developed and provided a wide variety of hardware components, as well as software and related services to consumers, small and medium-sized businesses (SMBs) and large enterprises, including customers in the government, health and education sectors. The company was founded in a one-car garage in Palo Alto, California by Bill Hewlett and David Packard in 1939, and initially produced a line of electronic test and measurement equipment. The HP Garage at 367 Addison Avenue is now designated an official California Historical Landmark, and is marked with a plaque calling it the \"Birthplace of 'Silicon Valley'\".", "wikipedia_link": "https://en.wikipedia.org/wiki/Hewlett-Packard", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 793, "country": "United States", "website": "http://www.walmart.com", "crunchbase": {"text": "25745e2f-8996-6c5a-bd0d-e102463b1276", "url": "https://www.crunchbase.com/organization/walmart"}, "child_crunchbase": [{"text": "57822cee-46af-4614-9b99-627b69015957", "url": "https://www.crunchbase.com/organization/walmart-ecommerce-5957"}, {"text": "43b9e775-b843-f194-fb96-d266684cfb53", "url": "https://www.crunchbase.com/organization/flipkart"}, {"text": "c852f9d2-ea87-db8e-f072-9c737fd6a7b4", "url": "https://www.crunchbase.com/organization/jet"}, {"text": "0588f8e9-46ac-c804-0825-4fed317a9741", "url": "https://www.crunchbase.com/organization/walmart-labs"}], "linkedin": ["https://www.linkedin.com/company/walmart", "https://www.linkedin.com/company/flipkart", "https://www.linkedin.com/company/jet-com"], "stage": "Mature", "name": "Walmart", "patent_name": "walmart", "continent": "North America", "local_logo": "walmart.png", "aliases": "Walmart Inc; Walmart, Inc", "permid_links": [{"text": 4295905298, "url": "https://permid.org/1-4295905298"}, {"text": 5045818575, "url": "https://permid.org/1-5045818575"}, {"text": 5043459886, "url": "https://permid.org/1-5043459886"}], "parent_info": null, "agg_child_info": "Walmart Global eCommerce, Flipkart, Jet.com, @WalmartLabs", "unagg_child_info": null, "market_filt": [{"text": "NYSE:WMT", "url": "https://www.google.com/finance/quote/nyse:wmt"}], "market_full": [{"text": "XETR:WMT", "url": "https://www.google.com/finance/quote/wmt:xetr"}, {"text": "LON:0R1W", "url": "https://www.google.com/finance/quote/0r1w:lon"}, {"text": "MEX:WMT", "url": "https://www.google.com/finance/quote/mex:wmt"}, {"text": "MUN:WMT", "url": "https://www.google.com/finance/quote/mun:wmt"}, {"text": "HAN:WMT", "url": "https://www.google.com/finance/quote/han:wmt"}, {"text": "HAM:WMT", "url": "https://www.google.com/finance/quote/ham:wmt"}, {"text": "DUS:WMT", "url": "https://www.google.com/finance/quote/dus:wmt"}, {"text": "FWB:WMT", "url": "https://www.google.com/finance/quote/fwb:wmt"}, {"text": "BER:WMT", "url": "https://www.google.com/finance/quote/ber:wmt"}, {"text": "MOEX:WMT-RM", "url": "https://www.google.com/finance/quote/moex:wmt-rm"}, {"text": "BMV:WMT", "url": "https://www.google.com/finance/quote/bmv:wmt"}, {"text": "NYSE:WMT", "url": "https://www.google.com/finance/quote/nyse:wmt"}, {"text": "BCBA:WMT", "url": "https://www.google.com/finance/quote/bcba:wmt"}], "crunchbase_description": "Walmart is a multinational retail corporation that operates several chains of discount department and warehouse stores.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Recommender system", "field_count": 7}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Cluster analysis", "field_count": 5}, {"field_name": "Big data", "field_count": 4}, {"field_name": "Reinforcement learning", "field_count": 3}, {"field_name": "Automatic summarization", "field_count": 3}, {"field_name": "Sentiment analysis", "field_count": 3}, {"field_name": "Feature learning", "field_count": 3}, {"field_name": "Nearest neighbor search", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 3}], "clusters": [{"cluster_id": 148, "cluster_count": 12}, {"cluster_id": 25062, "cluster_count": 10}, {"cluster_id": 68929, "cluster_count": 4}, {"cluster_id": 4379, "cluster_count": 4}, {"cluster_id": 1989, "cluster_count": 3}, {"cluster_id": 33, "cluster_count": 3}, {"cluster_id": 7496, "cluster_count": 2}, {"cluster_id": 48351, "cluster_count": 2}, {"cluster_id": 4884, "cluster_count": 2}, {"cluster_id": 52544, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 261}, {"ref_CSET_id": 163, "referenced_count": 139}, {"ref_CSET_id": 87, "referenced_count": 58}, {"ref_CSET_id": 792, "referenced_count": 56}, {"ref_CSET_id": 793, "referenced_count": 48}, {"ref_CSET_id": 115, "referenced_count": 34}, {"ref_CSET_id": 21, "referenced_count": 33}, {"ref_CSET_id": 23, "referenced_count": 26}, {"ref_CSET_id": 6, "referenced_count": 17}, {"ref_CSET_id": 245, "referenced_count": 12}], "tasks": [{"referent": "classification", "task_count": 22}, {"referent": "recommendation", "task_count": 16}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 11}, {"referent": "recommendation_systems", "task_count": 10}, {"referent": "social_network_analysis", "task_count": 6}, {"referent": "natural_language_processing", "task_count": 5}, {"referent": "user_identification", "task_count": 5}, {"referent": "clustering", "task_count": 5}, {"referent": "image_recognition", "task_count": 5}, {"referent": "semi_supervised_image_classification", "task_count": 5}], "methods": [{"referent": "3d_representations", "method_count": 14}, {"referent": "recurrent_neural_networks", "method_count": 12}, {"referent": "symbolic_deep_learning", "method_count": 10}, {"referent": "topic_embeddings", "method_count": 9}, {"referent": "double_q_learning", "method_count": 8}, {"referent": "mad_learning", "method_count": 8}, {"referent": "meta_learning_algorithms", "method_count": 8}, {"referent": "q_learning", "method_count": 8}, {"referent": "optimization", "method_count": 7}, {"referent": "convolutional_neural_networks", "method_count": 6}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [21, 16, 24, 26, 25, 56, 48, 69, 56, 40, 1], "total": 382, "isTopResearch": false, "rank": 322, "sp500_rank": 211, "fortune500_rank": 123}, "ai_publications": {"counts": [9, 4, 8, 8, 10, 23, 24, 31, 24, 11, 0], "total": 152, "isTopResearch": false, "rank": 93, "sp500_rank": 71, "fortune500_rank": 27}, "ai_publications_growth": {"counts": [], "total": -15.86021505376344, "isTopResearch": false, "rank": 1293, "sp500_rank": 334, "fortune500_rank": 374}, "ai_pubs_top_conf": {"counts": [3, 3, 0, 3, 1, 6, 10, 11, 10, 3, 0], "total": 50, "isTopResearch": false, "rank": 43, "sp500_rank": 23, "fortune500_rank": 16}, "citation_counts": {"counts": [48, 97, 140, 192, 202, 219, 333, 433, 550, 382, 18], "total": 2614, "isTopResearch": false, "rank": 112, "sp500_rank": 70, "fortune500_rank": 36}, "cv_pubs": {"counts": [1, 0, 1, 2, 0, 4, 3, 3, 1, 4, 0], "total": 19, "isTopResearch": true, "rank": 143, "sp500_rank": 89, "fortune500_rank": 40}, "nlp_pubs": {"counts": [3, 0, 1, 3, 2, 8, 3, 6, 7, 5, 0], "total": 38, "isTopResearch": true, "rank": 53, "sp500_rank": 39, "fortune500_rank": 18}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [5.333333333333333, 24.25, 17.5, 24.0, 20.2, 9.521739130434783, 13.875, 13.96774193548387, 22.916666666666668, 34.72727272727273, 0], "total": 17.19736842105263, "isTopResearch": false, "rank": 362, "sp500_rank": 117, "fortune500_rank": 112}}, "patents": {"ai_patents": {"counts": [11, 6, 8, 35, 62, 68, 75, 43, 61, 0, 0], "total": 369, "table": null, "rank": 67, "sp500_rank": 52, "fortune500_rank": 20}, "ai_patents_growth": {"counts": [], "total": -7.56504322158971, "table": null, "rank": 1436, "sp500_rank": 420, "fortune500_rank": 412}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [110, 60, 80, 350, 620, 680, 750, 430, 610, 0, 0], "total": 3690, "table": null, "rank": 67, "sp500_rank": 52, "fortune500_rank": 20}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 125, "sp500_rank": 92, "fortune500_rank": 39}, "Life_Sciences": {"counts": [0, 0, 0, 0, 2, 0, 2, 0, 1, 0, 0], "total": 5, "table": null, "rank": 122, "sp500_rank": 78, "fortune500_rank": 52}, "Security__eg_cybersecurity": {"counts": [0, 0, 2, 2, 5, 3, 2, 0, 3, 0, 0], "total": 17, "table": null, "rank": 63, "sp500_rank": 47, "fortune500_rank": 27}, "Transportation": {"counts": [0, 0, 2, 18, 30, 11, 5, 1, 0, 0, 0], "total": 67, "table": "industry", "rank": 38, "sp500_rank": 30, "fortune500_rank": 12}, "Industrial_and_Manufacturing": {"counts": [0, 0, 2, 8, 12, 5, 5, 2, 0, 0, 0], "total": 34, "table": null, "rank": 22, "sp500_rank": 19, "fortune500_rank": 5}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 7, "sp500_rank": 6, "fortune500_rank": 4}, "Agricultural": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [6, 2, 6, 12, 19, 27, 38, 20, 35, 0, 0], "total": 165, "table": "industry", "rank": 48, "sp500_rank": 37, "fortune500_rank": 20}, "Banking_and_Finance": {"counts": [1, 0, 3, 3, 7, 4, 16, 1, 3, 0, 0], "total": 38, "table": "industry", "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Telecommunications": {"counts": [0, 0, 2, 4, 10, 8, 11, 3, 4, 0, 0], "total": 42, "table": "industry", "rank": 89, "sp500_rank": 65, "fortune500_rank": 39}, "Networks__eg_social_IOT_etc": {"counts": [3, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 40, "sp500_rank": 28, "fortune500_rank": 20}, "Business": {"counts": [4, 3, 7, 25, 42, 45, 48, 34, 36, 0, 0], "total": 244, "table": "industry", "rank": 10, "sp500_rank": 10, "fortune500_rank": 3}, "Energy_Management": {"counts": [0, 0, 2, 1, 1, 0, 0, 1, 0, 0, 0], "total": 5, "table": null, "rank": 76, "sp500_rank": 67, "fortune500_rank": 17}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 2, 0, 2, 3, 3, 0, 1, 0, 0], "total": 11, "table": null, "rank": 37, "sp500_rank": 26, "fortune500_rank": 21}, "Speech_Processing": {"counts": [0, 0, 2, 1, 0, 1, 4, 2, 5, 0, 0], "total": 15, "table": null, "rank": 66, "sp500_rank": 48, "fortune500_rank": 18}, "Knowledge_Representation": {"counts": [2, 2, 2, 2, 4, 4, 13, 3, 1, 0, 0], "total": 33, "table": "application", "rank": 31, "sp500_rank": 25, "fortune500_rank": 17}, "Planning_and_Scheduling": {"counts": [3, 1, 3, 16, 30, 19, 19, 13, 9, 0, 0], "total": 113, "table": "application", "rank": 13, "sp500_rank": 12, "fortune500_rank": 4}, "Control": {"counts": [0, 0, 2, 20, 30, 11, 6, 1, 0, 0, 0], "total": 70, "table": "application", "rank": 44, "sp500_rank": 35, "fortune500_rank": 15}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 2, 1, 4, 0, 0, 0, 0, 0, 0], "total": 7, "table": null, "rank": 5, "sp500_rank": 2, "fortune500_rank": 2}, "Computer_Vision": {"counts": [2, 1, 2, 5, 9, 21, 21, 6, 11, 0, 0], "total": 78, "table": "application", "rank": 84, "sp500_rank": 57, "fortune500_rank": 26}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 2, 5, 9, 3, 1, 2, 0, 0, 0], "total": 22, "table": "application", "rank": 78, "sp500_rank": 59, "fortune500_rank": 24}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 10686, "rank": 44, "sp500_rank": 34, "fortune500_rank": 31}, "ai_jobs": {"counts": null, "total": 1793, "rank": 19, "sp500_rank": 12, "fortune500_rank": 14}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing", "wikipedia_description": "Walmart Inc. is an American multinational retail corporation that operates a chain of hypermarkets, discount department stores, and grocery stores from the United States, headquartered in Bentonville, Arkansas. The company was founded by Sam Walton in 1962 and incorporated on October 31, 1969. It also owns and operates Sam's Club retail warehouses. As of January 31, 2021, Walmart has 11,443 stores and clubs in 27 countries, operating under 56 different names. The company operates under the name Walmart in the United States and Canada, as Walmart de M\u00e9xico y Centroam\u00e9rica in Mexico and Central America, as Asda in the United Kingdom, as the Seiyu Group in Japan, and as Flipkart Wholesale in India. It has wholly owned operations in Argentina, Chile, Canada, and South Africa. Since August 2018, Walmart holds only a minority stake in Walmart Brasil, which was renamed Grupo Big in August 2019, with 20 percent of the company's shares, and private equity firm Advent International holding 80 percent ownership of the company.", "wikipedia_link": "https://en.wikipedia.org/wiki/Walmart", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 846, "country": "United States", "website": "https://www.honeywell.com/", "crunchbase": {"text": "04c517e9-aa90-b096-7977-9a5e53d7bbdb", "url": "https://www.crunchbase.com/organization/honeywell"}, "child_crunchbase": [{"text": "7ed01dc7-8aed-8795-ae49-13cec8f0544c", "url": "https://www.crunchbase.com/organization/tetra-tech"}], "linkedin": ["https://www.linkedin.com/company/tetra-tech", "https://www.linkedin.com/company/honeywell"], "stage": "Mature", "name": "Honeywell, Inc.", "patent_name": "honeywell, inc.", "continent": "North America", "local_logo": "honeywell,_inc.png", "aliases": "Alliedsignal; Honeywell; Honeywell International", "permid_links": [{"text": 4295908132, "url": "https://permid.org/1-4295908132"}, {"text": 4295912155, "url": "https://permid.org/1-4295912155"}], "parent_info": null, "agg_child_info": "Tetra Tech Inc", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:HON", "url": "https://www.google.com/finance/quote/hon:nasdaq"}], "market_full": [{"text": "NASDAQ:HON", "url": "https://www.google.com/finance/quote/hon:nasdaq"}, {"text": "DEU:HON", "url": "https://www.google.com/finance/quote/deu:hon"}, {"text": "SGO:HONCL", "url": "https://www.google.com/finance/quote/honcl:sgo"}, {"text": "SGO:HON", "url": "https://www.google.com/finance/quote/hon:sgo"}, {"text": "SAO:HONB34", "url": "https://www.google.com/finance/quote/honb34:sao"}, {"text": "BRN:ALD", "url": "https://www.google.com/finance/quote/ald:brn"}, {"text": "GER:ALDX", "url": "https://www.google.com/finance/quote/aldx:ger"}, {"text": "DUS:ALD", "url": "https://www.google.com/finance/quote/ald:dus"}, {"text": "FRA:ALD", "url": "https://www.google.com/finance/quote/ald:fra"}, {"text": "LSE:HON", "url": "https://www.google.com/finance/quote/hon:lse"}, {"text": "BUE:HON3", "url": "https://www.google.com/finance/quote/bue:hon3"}, {"text": "MCX:HON-RM", "url": "https://www.google.com/finance/quote/hon-rm:mcx"}, {"text": "VIE:HON", "url": "https://www.google.com/finance/quote/hon:vie"}, {"text": "HAM:ALD", "url": "https://www.google.com/finance/quote/ald:ham"}, {"text": "BER:ALD", "url": "https://www.google.com/finance/quote/ald:ber"}, {"text": "MEX:HON*", "url": "https://www.google.com/finance/quote/hon*:mex"}, {"text": "STU:ALD", "url": "https://www.google.com/finance/quote/ald:stu"}, {"text": "HAN:ALD", "url": "https://www.google.com/finance/quote/ald:han"}, {"text": "MUN:ALD", "url": "https://www.google.com/finance/quote/ald:mun"}], "crunchbase_description": "Honeywell International is a technology and manufacturing company that offers energy, safety, and security solutions and technologies.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 5}, {"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Pattern recognition (psychology)", "field_count": 3}, {"field_name": "Semantic reasoner", "field_count": 3}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Decision tree", "field_count": 2}, {"field_name": "Inertial measurement unit", "field_count": 2}, {"field_name": "Navigation system", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}], "clusters": [{"cluster_id": 749, "cluster_count": 7}, {"cluster_id": 48023, "cluster_count": 4}, {"cluster_id": 5808, "cluster_count": 4}, {"cluster_id": 39636, "cluster_count": 4}, {"cluster_id": 27174, "cluster_count": 4}, {"cluster_id": 82524, "cluster_count": 4}, {"cluster_id": 14201, "cluster_count": 3}, {"cluster_id": 1918, "cluster_count": 3}, {"cluster_id": 1753, "cluster_count": 3}, {"cluster_id": 79096, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 846, "referenced_count": 58}, {"ref_CSET_id": 101, "referenced_count": 29}, {"ref_CSET_id": 163, "referenced_count": 26}, {"ref_CSET_id": 87, "referenced_count": 11}, {"ref_CSET_id": 6, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 7}, {"ref_CSET_id": 184, "referenced_count": 4}, {"ref_CSET_id": 1784, "referenced_count": 3}, {"ref_CSET_id": 209, "referenced_count": 3}, {"ref_CSET_id": 785, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 16}, {"referent": "system_identification", "task_count": 12}, {"referent": "image_processing", "task_count": 8}, {"referent": "computer_vision", "task_count": 8}, {"referent": "autonomous_navigation", "task_count": 7}, {"referent": "steering_control", "task_count": 6}, {"referent": "pattern_classification", "task_count": 5}, {"referent": "unmanned_aerial_vehicles", "task_count": 5}, {"referent": "deblurring", "task_count": 5}, {"referent": "decision_making", "task_count": 5}], "methods": [{"referent": "double_q_learning", "method_count": 13}, {"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "reinforcement_learning", "method_count": 6}, {"referent": "auto_classifier", "method_count": 6}, {"referent": "vqa_models", "method_count": 6}, {"referent": "impala", "method_count": 4}, {"referent": "mad_learning", "method_count": 4}, {"referent": "griffin_lim_algorithm", "method_count": 4}, {"referent": "optimization", "method_count": 4}, {"referent": "image_to_image_translation", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [274, 300, 246, 265, 289, 219, 195, 148, 179, 133, 4], "total": 2252, "isTopResearch": false, "rank": 116, "sp500_rank": 91, "fortune500_rank": 44}, "ai_publications": {"counts": [19, 11, 11, 9, 14, 7, 11, 11, 12, 7, 0], "total": 112, "isTopResearch": false, "rank": 114, "sp500_rank": 82, "fortune500_rank": 36}, "ai_publications_growth": {"counts": [], "total": -10.858585858585856, "isTopResearch": false, "rank": 1272, "sp500_rank": 317, "fortune500_rank": 367}, "ai_pubs_top_conf": {"counts": [0, 3, 0, 0, 1, 1, 0, 1, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 140, "sp500_rank": 69, "fortune500_rank": 42}, "citation_counts": {"counts": [46, 51, 78, 74, 90, 102, 105, 139, 180, 137, 6], "total": 1008, "isTopResearch": false, "rank": 194, "sp500_rank": 108, "fortune500_rank": 59}, "cv_pubs": {"counts": [7, 8, 2, 3, 4, 1, 5, 1, 3, 2, 0], "total": 36, "isTopResearch": true, "rank": 103, "sp500_rank": 69, "fortune500_rank": 30}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140, "fortune500_rank": 73}, "robotics_pubs": {"counts": [4, 1, 5, 0, 1, 1, 2, 0, 1, 0, 0], "total": 15, "isTopResearch": true, "rank": 92, "sp500_rank": 69, "fortune500_rank": 25}, "citations_per_article": {"counts": [2.4210526315789473, 4.636363636363637, 7.090909090909091, 8.222222222222221, 6.428571428571429, 14.571428571428571, 9.545454545454545, 12.636363636363637, 15.0, 19.571428571428573, 0], "total": 9.0, "isTopResearch": false, "rank": 573, "sp500_rank": 216, "fortune500_rank": 166}}, "patents": {"ai_patents": {"counts": [7, 7, 13, 18, 35, 47, 48, 46, 11, 0, 0], "total": 232, "table": null, "rank": 92, "sp500_rank": 68, "fortune500_rank": 31}, "ai_patents_growth": {"counts": [], "total": 10.748902397838568, "table": null, "rank": 330, "sp500_rank": 155, "fortune500_rank": 105}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [70, 70, 130, 180, 350, 470, 480, 460, 110, 0, 0], "total": 2320, "table": null, "rank": 92, "sp500_rank": 68, "fortune500_rank": 31}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 1, 0, 3, 6, 2, 5, 1, 0, 0], "total": 18, "table": null, "rank": 30, "sp500_rank": 25, "fortune500_rank": 11}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 3, 1, 2, 0, 0, 0], "total": 7, "table": null, "rank": 104, "sp500_rank": 68, "fortune500_rank": 42}, "Security__eg_cybersecurity": {"counts": [0, 0, 4, 2, 5, 7, 3, 5, 4, 0, 0], "total": 30, "table": "industry", "rank": 36, "sp500_rank": 30, "fortune500_rank": 15}, "Transportation": {"counts": [2, 1, 2, 3, 6, 10, 9, 5, 4, 0, 0], "total": 42, "table": "industry", "rank": 52, "sp500_rank": 40, "fortune500_rank": 18}, "Industrial_and_Manufacturing": {"counts": [1, 1, 1, 3, 1, 4, 4, 6, 2, 0, 0], "total": 23, "table": null, "rank": 37, "sp500_rank": 31, "fortune500_rank": 13}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43, "fortune500_rank": 20}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 7, "sp500_rank": 6, "fortune500_rank": 4}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0], "total": 3, "table": null, "rank": 27, "sp500_rank": 21, "fortune500_rank": 5}, "Personal_Devices_and_Computing": {"counts": [2, 1, 6, 3, 17, 22, 11, 17, 3, 0, 0], "total": 82, "table": "industry", "rank": 87, "sp500_rank": 63, "fortune500_rank": 37}, "Banking_and_Finance": {"counts": [0, 0, 1, 0, 0, 7, 6, 2, 2, 0, 0], "total": 18, "table": null, "rank": 51, "sp500_rank": 41, "fortune500_rank": 20}, "Telecommunications": {"counts": [1, 3, 1, 3, 8, 10, 10, 11, 1, 0, 0], "total": 48, "table": "industry", "rank": 80, "sp500_rank": 61, "fortune500_rank": 33}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54, "fortune500_rank": 34}, "Business": {"counts": [3, 3, 2, 3, 3, 8, 8, 10, 1, 0, 0], "total": 41, "table": "industry", "rank": 64, "sp500_rank": 50, "fortune500_rank": 26}, "Energy_Management": {"counts": [1, 0, 1, 0, 0, 3, 1, 3, 3, 0, 0], "total": 12, "table": null, "rank": 43, "sp500_rank": 40, "fortune500_rank": 9}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38, "fortune500_rank": 23}, "Nanotechnology": {"counts": [1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 6, "sp500_rank": 5, "fortune500_rank": 3}, "Semiconductors": {"counts": [1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 28, "sp500_rank": 17, "fortune500_rank": 14}, "Language_Processing": {"counts": [0, 1, 0, 0, 2, 0, 2, 0, 0, 0, 0], "total": 5, "table": null, "rank": 56, "sp500_rank": 41, "fortune500_rank": 31}, "Speech_Processing": {"counts": [0, 0, 0, 2, 1, 2, 0, 2, 0, 0, 0], "total": 7, "table": null, "rank": 96, "sp500_rank": 61, "fortune500_rank": 28}, "Knowledge_Representation": {"counts": [1, 1, 3, 2, 9, 3, 8, 1, 0, 0, 0], "total": 28, "table": "application", "rank": 36, "sp500_rank": 28, "fortune500_rank": 21}, "Planning_and_Scheduling": {"counts": [3, 3, 2, 3, 3, 7, 6, 10, 1, 0, 0], "total": 38, "table": "application", "rank": 47, "sp500_rank": 39, "fortune500_rank": 17}, "Control": {"counts": [2, 3, 4, 7, 14, 15, 24, 19, 6, 0, 0], "total": 94, "table": "application", "rank": 34, "sp500_rank": 27, "fortune500_rank": 12}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36, "fortune500_rank": 27}, "Robotics": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14, "fortune500_rank": 8}, "Computer_Vision": {"counts": [1, 0, 2, 0, 5, 12, 14, 19, 1, 0, 0], "total": 54, "table": "application", "rank": 109, "sp500_rank": 72, "fortune500_rank": 32}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 1, 2, 3, 6, 1, 0, 0], "total": 14, "table": null, "rank": 92, "sp500_rank": 69, "fortune500_rank": 40}, "Measuring_and_Testing": {"counts": [0, 1, 2, 6, 8, 9, 7, 10, 4, 0, 0], "total": 47, "table": "application", "rank": 46, "sp500_rank": 35, "fortune500_rank": 17}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 10506, "rank": 45, "sp500_rank": 35, "fortune500_rank": 32}, "ai_jobs": {"counts": null, "total": 497, "rank": 115, "sp500_rank": 73, "fortune500_rank": 64}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 585, "country": "United States", "website": "http://www.morganstanley.com", "crunchbase": {"text": "0d33753d-a1d4-1b5e-7dae-b4c4a046513c", "url": "https://www.crunchbase.com/organization/morgan-stanley"}, "child_crunchbase": [{"text": "31a4e4b9-096e-12e5-1da4-d76f400bfcc0", "url": "https://www.crunchbase.com/organization/e-trade"}], "linkedin": ["https://www.linkedin.com/company/morgan-stanley", "https://www.linkedin.com/company/etrade"], "stage": "Mature", "name": "Morgan Stanley", "patent_name": "morgan stanley", "continent": "North America", "local_logo": "morgan_stanley.png", "aliases": "Morgan Stanley & Co", "permid_links": [{"text": 4295904557, "url": "https://permid.org/1-4295904557"}, {"text": 8589934299, "url": "https://permid.org/1-8589934299"}], "parent_info": null, "agg_child_info": "E*Trade", "unagg_child_info": null, "market_filt": [{"text": "NYSE:MS", "url": "https://www.google.com/finance/quote/ms:nyse"}], "market_full": [{"text": "NYQ:MS", "url": "https://www.google.com/finance/quote/ms:nyq"}, {"text": "LSE:0QYU", "url": "https://www.google.com/finance/quote/0qyu:lse"}, {"text": "NYSE:MS", "url": "https://www.google.com/finance/quote/ms:nyse"}, {"text": "XETR:DWD", "url": "https://www.google.com/finance/quote/dwd:xetr"}, {"text": "BMV:MS", "url": "https://www.google.com/finance/quote/bmv:ms"}, {"text": "MOEX:MS-RM", "url": "https://www.google.com/finance/quote/moex:ms-rm"}], "crunchbase_description": "Morgan Stanley is a financial services company that offers securities, asset management, and credit services.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Delphi method", "field_count": 1}, {"field_name": "Adversarial system", "field_count": 1}], "clusters": [{"cluster_id": 7734, "cluster_count": 1}, {"cluster_id": 20101, "cluster_count": 1}, {"cluster_id": 34964, "cluster_count": 1}, {"cluster_id": 1357, "cluster_count": 1}, {"cluster_id": 105277, "cluster_count": 1}, {"cluster_id": 20136, "cluster_count": 1}, {"cluster_id": 6484, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 133, "referenced_count": 1}, {"ref_CSET_id": 737, "referenced_count": 1}, {"ref_CSET_id": 585, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "community_detection", "task_count": 1}, {"referent": "robot_navigation", "task_count": 1}, {"referent": "als", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "heart_disease_diagnosis", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [78, 96, 63, 92, 74, 66, 121, 124, 120, 107, 3], "total": 944, "isTopResearch": false, "rank": 195, "sp500_rank": 144, "fortune500_rank": 71}, "ai_publications": {"counts": [1, 1, 1, 0, 0, 0, 3, 1, 0, 2, 0], "total": 9, "isTopResearch": false, "rank": 437, "sp500_rank": 224, "fortune500_rank": 124}, "ai_publications_growth": {"counts": [], "total": -83.33333333333334, "isTopResearch": false, "rank": 1540, "sp500_rank": 442, "fortune500_rank": 437}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [0, 1, 1, 1, 9, 9, 11, 18, 20, 23, 0], "total": 93, "isTopResearch": false, "rank": 515, "sp500_rank": 222, "fortune500_rank": 141}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140, "fortune500_rank": 67}, "citations_per_article": {"counts": [0.0, 1.0, 1.0, 0, 0, 0, 3.6666666666666665, 18.0, 0, 11.5, 0], "total": 10.333333333333334, "isTopResearch": false, "rank": 530, "sp500_rank": 197, "fortune500_rank": 156}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 5, 4, 3, 1, 2, 0], "total": 16, "table": null, "rank": 348, "sp500_rank": 173, "fortune500_rank": 117}, "ai_patents_growth": {"counts": [], "total": -22.5, "table": null, "rank": 1466, "sp500_rank": 431, "fortune500_rank": 422}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 50, 40, 30, 10, 20, 0], "total": 160, "table": null, "rank": 348, "sp500_rank": 173, "fortune500_rank": 117}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": "industry", "rank": 157, "sp500_rank": 102, "fortune500_rank": 58}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 5, 1, 3, 1, 1, 0], "total": 12, "table": "industry", "rank": 240, "sp500_rank": 129, "fortune500_rank": 89}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 141, "sp500_rank": 91, "fortune500_rank": 50}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 2, 1, 0, 1, 0, 0], "total": 5, "table": "industry", "rank": 225, "sp500_rank": 119, "fortune500_rank": 86}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 0, 2, 1, 2, 0, 0, 0], "total": 6, "table": "industry", "rank": 196, "sp500_rank": 128, "fortune500_rank": 65}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "sp500_rank": 79, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 198, "sp500_rank": 131, "fortune500_rank": 68}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "sp500_rank": 140, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 1, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], "total": 3, "table": "application", "rank": 191, "sp500_rank": 121, "fortune500_rank": 77}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 10405, "rank": 46, "sp500_rank": 36, "fortune500_rank": 33}, "ai_jobs": {"counts": null, "total": 1019, "rank": 42, "sp500_rank": 29, "fortune500_rank": 26}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Morgan Stanley is an American multinational investment bank and financial services company headquartered at 1585 Broadway in the Morgan Stanley Building, Midtown Manhattan, New York City. With offices in more than 42 countries and more than 60,000 employees, the firm's clients include corporations, governments, institutions, and individuals. Morgan Stanley ranked No. 67 in the 2018 Fortune 500 list of the largest United States corporations by total revenue.", "wikipedia_link": "https://en.wikipedia.org/wiki/Morgan_Stanley", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1952, "country": "France", "website": "https://www.orange.com/", "crunchbase": {"text": " a0350af1-0869-d550-8103-cacc3a9b9ef8", "url": "https://www.crunchbase.com/organization/orange"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/orange"], "stage": "Mature", "name": "Orange", "patent_name": "Orange", "continent": "Europe", "local_logo": null, "aliases": "France Telecom; Globtel; Orange; Orange Sa", "permid_links": [{"text": 4295868416, "url": "https://permid.org/1-4295868416"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ORAN", "url": "https://www.google.com/finance/quote/NYSE:ORAN"}], "market_full": [{"text": "VIE:ORA", "url": "https://www.google.com/finance/quote/ORA:VIE"}, {"text": "FRA:FTE1", "url": "https://www.google.com/finance/quote/FRA:FTE1"}, {"text": "DEU:FTE1", "url": "https://www.google.com/finance/quote/DEU:FTE1"}, {"text": "NYSE:ORAN", "url": "https://www.google.com/finance/quote/NYSE:ORAN"}, {"text": "BUE:ORAN3", "url": "https://www.google.com/finance/quote/BUE:ORAN3"}, {"text": "MUN:FTE1", "url": "https://www.google.com/finance/quote/FTE1:MUN"}, {"text": "MEX:ORANN", "url": "https://www.google.com/finance/quote/MEX:ORANN"}, {"text": "DEU:FTE", "url": "https://www.google.com/finance/quote/DEU:FTE"}, {"text": "PAR:ORA", "url": "https://www.google.com/finance/quote/ORA:PAR"}, {"text": "FRA:FTE", "url": "https://www.google.com/finance/quote/FRA:FTE"}, {"text": "PKC:FNCTF", "url": "https://www.google.com/finance/quote/FNCTF:PKC"}, {"text": "LSE:0OQV", "url": "https://www.google.com/finance/quote/0OQV:LSE"}, {"text": "MIL:ORA", "url": "https://www.google.com/finance/quote/MIL:ORA"}, {"text": "MUN:FTE", "url": "https://www.google.com/finance/quote/FTE:MUN"}, {"text": "HAM:FTE", "url": "https://www.google.com/finance/quote/FTE:HAM"}, {"text": "STU:FTE1", "url": "https://www.google.com/finance/quote/FTE1:STU"}, {"text": "NYQ:ORAN", "url": "https://www.google.com/finance/quote/NYQ:ORAN"}, {"text": "GER:FTEX", "url": "https://www.google.com/finance/quote/FTEX:GER"}, {"text": "ASE:ORAN", "url": "https://www.google.com/finance/quote/ASE:ORAN"}, {"text": "LSE:0A2Q", "url": "https://www.google.com/finance/quote/0A2Q:LSE"}, {"text": "BER:FTE", "url": "https://www.google.com/finance/quote/BER:FTE"}, {"text": "DUS:FTE", "url": "https://www.google.com/finance/quote/DUS:FTE"}, {"text": "BER:FTE1", "url": "https://www.google.com/finance/quote/BER:FTE1"}, {"text": "EBT:ORAP", "url": "https://www.google.com/finance/quote/EBT:ORAp"}, {"text": "STU:FTE", "url": "https://www.google.com/finance/quote/FTE:STU"}, {"text": "HAN:FTE", "url": "https://www.google.com/finance/quote/FTE:HAN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 18}, {"field_name": "Reinforcement learning", "field_count": 17}, {"field_name": "Artificial neural network", "field_count": 16}, {"field_name": "Deep learning", "field_count": 15}, {"field_name": "Convolutional neural network", "field_count": 11}, {"field_name": "Segmentation", "field_count": 10}, {"field_name": "Feature (computer vision)", "field_count": 8}, {"field_name": "Data stream mining", "field_count": 7}, {"field_name": "Question answering", "field_count": 6}, {"field_name": "Automatic summarization", "field_count": 6}], "clusters": [{"cluster_id": 2644, "cluster_count": 13}, {"cluster_id": 5300, "cluster_count": 13}, {"cluster_id": 484, "cluster_count": 11}, {"cluster_id": 14492, "cluster_count": 11}, {"cluster_id": 21196, "cluster_count": 10}, {"cluster_id": 28655, "cluster_count": 7}, {"cluster_id": 4301, "cluster_count": 7}, {"cluster_id": 6211, "cluster_count": 7}, {"cluster_id": 2016, "cluster_count": 7}, {"cluster_id": 855, "cluster_count": 7}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 368}, {"ref_CSET_id": 1952, "referenced_count": 323}, {"ref_CSET_id": 163, "referenced_count": 235}, {"ref_CSET_id": 87, "referenced_count": 105}, {"ref_CSET_id": 115, "referenced_count": 61}, {"ref_CSET_id": 792, "referenced_count": 47}, {"ref_CSET_id": 23, "referenced_count": 43}, {"ref_CSET_id": 184, "referenced_count": 28}, {"ref_CSET_id": 6, "referenced_count": 27}, {"ref_CSET_id": 245, "referenced_count": 23}], "tasks": [{"referent": "classification", "task_count": 79}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 24}, {"referent": "data_mining", "task_count": 19}, {"referent": "classification_tasks", "task_count": 15}, {"referent": "network_pruning", "task_count": 14}, {"referent": "image_processing", "task_count": 14}, {"referent": "supervised_learning", "task_count": 14}, {"referent": "clustering", "task_count": 13}, {"referent": "human_activity_recognition", "task_count": 13}, {"referent": "segmentation", "task_count": 11}], "methods": [{"referent": "double_q_learning", "method_count": 39}, {"referent": "recurrent_neural_networks", "method_count": 39}, {"referent": "3d_representations", "method_count": 31}, {"referent": "reinforcement_learning", "method_count": 28}, {"referent": "auto_classifier", "method_count": 26}, {"referent": "convolutional_neural_networks", "method_count": 26}, {"referent": "clustering", "method_count": 24}, {"referent": "vqa_models", "method_count": 22}, {"referent": "q_learning", "method_count": 21}, {"referent": "neural_architecture_search", "method_count": 20}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [345, 372, 308, 299, 263, 275, 287, 362, 384, 237, 1], "total": 3133, "isTopResearch": false, "rank": 91, "sp500_rank": 75}, "ai_publications": {"counts": [35, 42, 34, 40, 27, 27, 52, 67, 71, 26, 0], "total": 421, "isTopResearch": false, "rank": 46, "sp500_rank": 36}, "ai_publications_growth": {"counts": [], "total": -9.521326196751886, "isTopResearch": false, "rank": 1263, "sp500_rank": 312}, "ai_pubs_top_conf": {"counts": [0, 1, 1, 1, 2, 2, 4, 4, 3, 0, 0], "total": 18, "isTopResearch": false, "rank": 85, "sp500_rank": 46}, "citation_counts": {"counts": [257, 377, 450, 548, 645, 794, 1068, 1178, 1448, 1185, 43], "total": 7993, "isTopResearch": false, "rank": 55, "sp500_rank": 37}, "cv_pubs": {"counts": [14, 11, 7, 6, 6, 5, 8, 14, 10, 4, 0], "total": 85, "isTopResearch": true, "rank": 62, "sp500_rank": 45}, "nlp_pubs": {"counts": [2, 4, 6, 8, 1, 4, 10, 6, 6, 1, 0], "total": 48, "isTopResearch": true, "rank": 47, "sp500_rank": 34}, "robotics_pubs": {"counts": [0, 0, 0, 2, 0, 0, 2, 2, 2, 1, 0], "total": 9, "isTopResearch": true, "rank": 124, "sp500_rank": 89}, "citations_per_article": {"counts": [7.3428571428571425, 8.976190476190476, 13.235294117647058, 13.7, 23.88888888888889, 29.40740740740741, 20.53846153846154, 17.582089552238806, 20.3943661971831, 45.57692307692308, 0], "total": 18.985748218527316, "isTopResearch": false, "rank": 331, "sp500_rank": 101}}, "patents": {"ai_patents": {"counts": [0, 1, 1, 4, 3, 8, 10, 22, 5, 0, 0], "total": 54, "table": null, "rank": 212, "sp500_rank": 129}, "ai_patents_growth": {"counts": [], "total": 103.88888888888887, "table": null, "rank": 110, "sp500_rank": 53}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 10, 10, 40, 30, 80, 100, 220, 50, 0, 0], "total": 540, "table": null, "rank": 212, "sp500_rank": 129}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 139, "sp500_rank": 85}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 3, 2, 0, 0, 0], "total": 6, "table": "industry", "rank": 121, "sp500_rank": 83}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 4, 1, 4, 6, 5, 1, 0, 0], "total": 22, "table": "industry", "rank": 182, "sp500_rank": 101}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 1, 3, 0, 3, 5, 12, 4, 0, 0], "total": 28, "table": "industry", "rank": 116, "sp500_rank": 75}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 1, 0, 2, 0, 2, 0, 0, 0], "total": 5, "table": "industry", "rank": 213, "sp500_rank": 136}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 139, "sp500_rank": 81}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 214, "sp500_rank": 141}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 2, 0, 1, 0, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 1, 3, 2, 1, 0, 0], "total": 8, "table": "application", "rank": 131, "sp500_rank": 95}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 10400, "rank": 47, "sp500_rank": 37}, "ai_jobs": {"counts": null, "total": 598, "rank": 89, "sp500_rank": 60}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1125, "country": "Japan", "website": "http://www.fujitsu.com", "crunchbase": {"text": "4b7f49ee-d96f-9f16-199c-f3602f51ff1b", "url": "https://www.crunchbase.com/organization/fujitsu"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fujitsu"], "stage": "Mature", "name": "Fujitsu", "patent_name": "Fujitsu", "continent": "Asia", "local_logo": "fujitsu.png", "aliases": "Fujitsu; Fujitsu Limited; \u5bcc\u58eb\u901a; \u5bcc\u58eb\u901a\u30af\u30e9\u30a4\u30a2\u30f3\u30c8\u30b3\u30f3\u30d4\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0", "permid_links": [{"text": 4295877355, "url": "https://permid.org/1-4295877355"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:6702", "url": "https://www.google.com/finance/quote/6702:TYO"}], "market_full": [{"text": "PKL:FJTSF", "url": "https://www.google.com/finance/quote/FJTSF:PKL"}, {"text": "DEU:FUJA", "url": "https://www.google.com/finance/quote/DEU:FUJA"}, {"text": "TYO:6702", "url": "https://www.google.com/finance/quote/6702:TYO"}, {"text": "DEU:6702", "url": "https://www.google.com/finance/quote/6702:DEU"}, {"text": "FRA:FUJA", "url": "https://www.google.com/finance/quote/FRA:FUJA"}, {"text": "FRA:FUJ1", "url": "https://www.google.com/finance/quote/FRA:FUJ1"}, {"text": "BER:FUJ1", "url": "https://www.google.com/finance/quote/BER:FUJ1"}, {"text": "HAN:FUJ1", "url": "https://www.google.com/finance/quote/FUJ1:HAN"}, {"text": "VIE:FUJI", "url": "https://www.google.com/finance/quote/FUJI:VIE"}, {"text": "STU:FUJ1", "url": "https://www.google.com/finance/quote/FUJ1:STU"}, {"text": "MUN:FUJ1", "url": "https://www.google.com/finance/quote/FUJ1:MUN"}, {"text": "HAM:FUJ1", "url": "https://www.google.com/finance/quote/FUJ1:HAM"}, {"text": "PKL:FJTSY", "url": "https://www.google.com/finance/quote/FJTSY:PKL"}, {"text": "DUS:FUJ1", "url": "https://www.google.com/finance/quote/DUS:FUJ1"}, {"text": "MEX:6702N", "url": "https://www.google.com/finance/quote/6702N:MEX"}], "crunchbase_description": "Fujitsu is a information & communications technology equipment and services firm providing IT & IT infrastructure and other services.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 26}, {"field_name": "Deep learning", "field_count": 18}, {"field_name": "Feature (computer vision)", "field_count": 17}, {"field_name": "Robot", "field_count": 15}, {"field_name": "Artificial neural network", "field_count": 15}, {"field_name": "Segmentation", "field_count": 11}, {"field_name": "Robustness (computer science)", "field_count": 9}, {"field_name": "Cluster analysis", "field_count": 9}, {"field_name": "Reinforcement learning", "field_count": 9}, {"field_name": "Pixel", "field_count": 8}], "clusters": [{"cluster_id": 13431, "cluster_count": 15}, {"cluster_id": 5109, "cluster_count": 12}, {"cluster_id": 855, "cluster_count": 11}, {"cluster_id": 18488, "cluster_count": 9}, {"cluster_id": 33, "cluster_count": 8}, {"cluster_id": 981, "cluster_count": 8}, {"cluster_id": 655, "cluster_count": 7}, {"cluster_id": 1038, "cluster_count": 7}, {"cluster_id": 4358, "cluster_count": 6}, {"cluster_id": 228, "cluster_count": 6}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 633}, {"ref_CSET_id": 163, "referenced_count": 432}, {"ref_CSET_id": 1125, "referenced_count": 251}, {"ref_CSET_id": 87, "referenced_count": 219}, {"ref_CSET_id": 115, "referenced_count": 100}, {"ref_CSET_id": 184, "referenced_count": 42}, {"ref_CSET_id": 6, "referenced_count": 37}, {"ref_CSET_id": 1126, "referenced_count": 37}, {"ref_CSET_id": 23, "referenced_count": 33}, {"ref_CSET_id": 792, "referenced_count": 29}], "tasks": [{"referent": "classification", "task_count": 111}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 43}, {"referent": "image_processing", "task_count": 24}, {"referent": "system_identification", "task_count": 21}, {"referent": "classification_tasks", "task_count": 20}, {"referent": "image_analysis", "task_count": 17}, {"referent": "character_recognition", "task_count": 16}, {"referent": "feature_selection", "task_count": 16}, {"referent": "decision_making", "task_count": 16}, {"referent": "natural_language_processing", "task_count": 14}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 57}, {"referent": "convolutional_neural_networks", "method_count": 55}, {"referent": "mad_learning", "method_count": 47}, {"referent": "symbolic_deep_learning", "method_count": 42}, {"referent": "double_q_learning", "method_count": 40}, {"referent": "1d_cnn", "method_count": 38}, {"referent": "auto_classifier", "method_count": 36}, {"referent": "q_learning", "method_count": 34}, {"referent": "vqa_models", "method_count": 31}, {"referent": "3d_representations", "method_count": 26}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [623, 623, 600, 541, 677, 573, 482, 416, 337, 353, 2], "total": 5227, "isTopResearch": false, "rank": 63, "sp500_rank": 55}, "ai_publications": {"counts": [41, 45, 35, 63, 72, 68, 80, 95, 99, 50, 0], "total": 648, "isTopResearch": false, "rank": 34, "sp500_rank": 27}, "ai_publications_growth": {"counts": [], "total": -8.844807726386675, "isTopResearch": false, "rank": 1259, "sp500_rank": 309}, "ai_pubs_top_conf": {"counts": [3, 0, 2, 2, 2, 7, 9, 8, 6, 4, 0], "total": 43, "isTopResearch": false, "rank": 45, "sp500_rank": 24}, "citation_counts": {"counts": [182, 250, 293, 339, 442, 577, 962, 1247, 1454, 1159, 50], "total": 6955, "isTopResearch": false, "rank": 63, "sp500_rank": 42}, "cv_pubs": {"counts": [17, 22, 19, 26, 19, 18, 22, 25, 38, 16, 0], "total": 222, "isTopResearch": true, "rank": 33, "sp500_rank": 24}, "nlp_pubs": {"counts": [6, 6, 3, 8, 11, 11, 15, 9, 15, 6, 0], "total": 90, "isTopResearch": true, "rank": 26, "sp500_rank": 20}, "robotics_pubs": {"counts": [2, 3, 1, 7, 7, 1, 3, 7, 6, 3, 0], "total": 40, "isTopResearch": true, "rank": 53, "sp500_rank": 44}, "citations_per_article": {"counts": [4.439024390243903, 5.555555555555555, 8.371428571428572, 5.380952380952381, 6.138888888888889, 8.485294117647058, 12.025, 13.126315789473685, 14.686868686868687, 23.18, 0], "total": 10.733024691358025, "isTopResearch": false, "rank": 518, "sp500_rank": 190}}, "patents": {"ai_patents": {"counts": [31, 27, 56, 119, 172, 226, 280, 278, 101, 1, 0], "total": 1291, "table": null, "rank": 19, "sp500_rank": 16}, "ai_patents_growth": {"counts": [], "total": 18.191622810886035, "table": null, "rank": 301, "sp500_rank": 142}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [310, 270, 560, 1190, 1720, 2260, 2800, 2780, 1010, 10, 0], "total": 12910, "table": null, "rank": 19, "sp500_rank": 16}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 2, 1, 8, 0, 1, 0, 0], "total": 12, "table": null, "rank": 44, "sp500_rank": 37}, "Life_Sciences": {"counts": [2, 1, 7, 11, 9, 15, 16, 9, 2, 0, 0], "total": 72, "table": "industry", "rank": 17, "sp500_rank": 15}, "Security__eg_cybersecurity": {"counts": [3, 1, 2, 2, 2, 7, 6, 9, 3, 0, 0], "total": 35, "table": "industry", "rank": 29, "sp500_rank": 25}, "Transportation": {"counts": [0, 0, 1, 1, 2, 5, 4, 4, 2, 0, 0], "total": 19, "table": null, "rank": 72, "sp500_rank": 56}, "Industrial_and_Manufacturing": {"counts": [0, 1, 0, 3, 2, 5, 6, 7, 2, 0, 0], "total": 26, "table": null, "rank": 32, "sp500_rank": 28}, "Education": {"counts": [1, 0, 0, 2, 0, 0, 2, 0, 0, 0, 0], "total": 5, "table": null, "rank": 32, "sp500_rank": 24}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 34, "sp500_rank": 26}, "Personal_Devices_and_Computing": {"counts": [14, 9, 15, 64, 80, 97, 109, 110, 39, 0, 0], "total": 537, "table": "industry", "rank": 16, "sp500_rank": 13}, "Banking_and_Finance": {"counts": [1, 0, 1, 3, 3, 3, 2, 2, 0, 0, 0], "total": 15, "table": null, "rank": 58, "sp500_rank": 47}, "Telecommunications": {"counts": [9, 1, 7, 19, 14, 19, 21, 18, 4, 0, 0], "total": 112, "table": "industry", "rank": 38, "sp500_rank": 34}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 2, 0, 0, 1, 3, 1, 0, 0], "total": 7, "table": null, "rank": 26, "sp500_rank": 19}, "Business": {"counts": [3, 2, 3, 12, 9, 17, 22, 20, 4, 0, 0], "total": 92, "table": "industry", "rank": 30, "sp500_rank": 25}, "Energy_Management": {"counts": [0, 0, 1, 0, 1, 2, 10, 0, 0, 0, 0], "total": 14, "table": null, "rank": 39, "sp500_rank": 36}, "Entertainment": {"counts": [0, 0, 0, 1, 1, 1, 3, 0, 0, 0, 0], "total": 6, "table": null, "rank": 26, "sp500_rank": 18}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 28, "sp500_rank": 17}, "Language_Processing": {"counts": [1, 0, 2, 9, 15, 8, 1, 0, 0, 0, 0], "total": 36, "table": null, "rank": 13, "sp500_rank": 9}, "Speech_Processing": {"counts": [0, 0, 2, 3, 5, 7, 8, 2, 0, 0, 0], "total": 27, "table": null, "rank": 42, "sp500_rank": 33}, "Knowledge_Representation": {"counts": [1, 7, 5, 13, 18, 14, 27, 17, 4, 0, 0], "total": 106, "table": "application", "rank": 13, "sp500_rank": 11}, "Planning_and_Scheduling": {"counts": [3, 1, 2, 7, 2, 15, 15, 19, 3, 0, 0], "total": 67, "table": "application", "rank": 26, "sp500_rank": 24}, "Control": {"counts": [0, 0, 2, 4, 9, 21, 25, 8, 2, 0, 0], "total": 71, "table": "application", "rank": 43, "sp500_rank": 34}, "Distributed_AI": {"counts": [1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0], "total": 4, "table": null, "rank": 19, "sp500_rank": 16}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [7, 5, 13, 26, 57, 64, 108, 89, 26, 0, 0], "total": 395, "table": "application", "rank": 21, "sp500_rank": 16}, "Analytics_and_Algorithms": {"counts": [2, 1, 7, 4, 11, 8, 13, 14, 5, 0, 0], "total": 65, "table": "application", "rank": 23, "sp500_rank": 20}, "Measuring_and_Testing": {"counts": [0, 0, 2, 0, 5, 4, 6, 6, 2, 0, 0], "total": 25, "table": null, "rank": 70, "sp500_rank": 53}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 10084, "rank": 48, "sp500_rank": 38}, "ai_jobs": {"counts": null, "total": 155, "rank": 264, "sp500_rank": 159}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 184, "country": "United States", "website": "https://www.nvidia.com/en-in/", "crunchbase": {"text": "ee17319e-f5ee-9c9a-6500-edf82b4fbf05", "url": "https://www.crunchbase.com/organization/nvidia"}, "child_crunchbase": [{"text": "1eb7b9e6-dfc0-2fc6-b39b-d98e6b24ca56", "url": "https://www.crunchbase.com/organization/deepmap"}], "linkedin": ["https://www.linkedin.com/company/nvidia", "https://www.linkedin.com/company/deepmapinc"], "stage": "Mature", "name": "Nvidia", "patent_name": "nvidia", "continent": "North America", "local_logo": "nvidia.png", "aliases": "NVIDIA Corp; Nvidia Corporation", "permid_links": [{"text": 4295914405, "url": "https://permid.org/1-4295914405"}, {"text": 5055671454, "url": "https://permid.org/1-5055671454"}], "parent_info": null, "agg_child_info": "Deepmap, NVIDIA Research", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:NVDA", "url": "https://www.google.com/finance/quote/nasdaq:nvda"}], "market_full": [{"text": "NASDAQ:NVDA", "url": "https://www.google.com/finance/quote/nasdaq:nvda"}, {"text": "HAN:NVD", "url": "https://www.google.com/finance/quote/han:nvd"}, {"text": "BER:NVD", "url": "https://www.google.com/finance/quote/ber:nvd"}, {"text": "BMV:NVDA", "url": "https://www.google.com/finance/quote/bmv:nvda"}, {"text": "MUN:NVD", "url": "https://www.google.com/finance/quote/mun:nvd"}, {"text": "DUS:NVD", "url": "https://www.google.com/finance/quote/dus:nvd"}, {"text": "MIL:NVDA", "url": "https://www.google.com/finance/quote/mil:nvda"}, {"text": "FWB:NVD", "url": "https://www.google.com/finance/quote/fwb:nvd"}, {"text": "HAM:NVD", "url": "https://www.google.com/finance/quote/ham:nvd"}, {"text": "MOEX:NVDA-RM", "url": "https://www.google.com/finance/quote/moex:nvda-rm"}], "crunchbase_description": "NVIDIA is a computing platform company operating at the intersection of graphics, HPC, and AI.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 62}, {"field_name": "Segmentation", "field_count": 62}, {"field_name": "Convolutional neural network", "field_count": 52}, {"field_name": "Artificial neural network", "field_count": 44}, {"field_name": "Reinforcement learning", "field_count": 36}, {"field_name": "Pose", "field_count": 31}, {"field_name": "Robot", "field_count": 25}, {"field_name": "Object (computer science)", "field_count": 21}, {"field_name": "Pixel", "field_count": 20}, {"field_name": "Feature (computer vision)", "field_count": 18}], "clusters": [{"cluster_id": 3446, "cluster_count": 40}, {"cluster_id": 1621, "cluster_count": 36}, {"cluster_id": 1338, "cluster_count": 34}, {"cluster_id": 2473, "cluster_count": 33}, {"cluster_id": 5070, "cluster_count": 33}, {"cluster_id": 1149, "cluster_count": 28}, {"cluster_id": 1609, "cluster_count": 26}, {"cluster_id": 13150, "cluster_count": 24}, {"cluster_id": 26012, "cluster_count": 23}, {"cluster_id": 4473, "cluster_count": 18}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4647}, {"ref_CSET_id": 184, "referenced_count": 2334}, {"ref_CSET_id": 163, "referenced_count": 2101}, {"ref_CSET_id": 87, "referenced_count": 1777}, {"ref_CSET_id": 6, "referenced_count": 709}, {"ref_CSET_id": 127, "referenced_count": 489}, {"ref_CSET_id": 115, "referenced_count": 287}, {"ref_CSET_id": 23, "referenced_count": 271}, {"ref_CSET_id": 245, "referenced_count": 244}, {"ref_CSET_id": 223, "referenced_count": 241}], "tasks": [{"referent": "classification", "task_count": 129}, {"referent": "segmentation", "task_count": 70}, {"referent": "robots", "task_count": 65}, {"referent": "computer_vision", "task_count": 58}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 57}, {"referent": "semantic_segmentation", "task_count": 52}, {"referent": "classification_tasks", "task_count": 50}, {"referent": "image_processing", "task_count": 46}, {"referent": "object_detection", "task_count": 42}, {"referent": "image_recognition", "task_count": 40}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 186}, {"referent": "convolutional_neural_networks", "method_count": 136}, {"referent": "3d_representations", "method_count": 103}, {"referent": "vqa_models", "method_count": 75}, {"referent": "1d_cnn", "method_count": 74}, {"referent": "symbolic_deep_learning", "method_count": 69}, {"referent": "q_learning", "method_count": 62}, {"referent": "deep_belief_network", "method_count": 56}, {"referent": "reinforcement_learning", "method_count": 54}, {"referent": "optimization", "method_count": 53}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [180, 205, 238, 271, 388, 474, 687, 696, 889, 733, 6], "total": 4767, "isTopResearch": false, "rank": 72, "fortune500_rank": 24}, "ai_publications": {"counts": [17, 20, 32, 43, 71, 151, 259, 302, 364, 157, 0], "total": 1416, "isTopResearch": false, "rank": 18, "fortune500_rank": 8}, "ai_publications_growth": {"counts": [], "total": -6.578671313770651, "isTopResearch": false, "rank": 1242, "fortune500_rank": 357}, "ai_pubs_top_conf": {"counts": [3, 3, 9, 10, 35, 71, 90, 91, 96, 39, 0], "total": 447, "isTopResearch": false, "rank": 13, "fortune500_rank": 7}, "citation_counts": {"counts": [171, 264, 374, 733, 1613, 4305, 9105, 16981, 23380, 14905, 400], "total": 72231, "isTopResearch": false, "rank": 9, "fortune500_rank": 7}, "cv_pubs": {"counts": [9, 12, 18, 29, 50, 99, 143, 142, 178, 88, 0], "total": 768, "isTopResearch": true, "rank": 13, "fortune500_rank": 5}, "nlp_pubs": {"counts": [0, 0, 0, 1, 2, 8, 12, 22, 30, 6, 0], "total": 81, "isTopResearch": true, "rank": 30, "fortune500_rank": 13}, "robotics_pubs": {"counts": [0, 2, 1, 3, 5, 21, 50, 51, 57, 34, 0], "total": 224, "isTopResearch": true, "rank": 7, "fortune500_rank": 1}, "citations_per_article": {"counts": [10.058823529411764, 13.2, 11.6875, 17.046511627906977, 22.718309859154928, 28.509933774834437, 35.15444015444015, 56.228476821192054, 64.23076923076923, 94.93630573248407, 0], "total": 51.01059322033898, "isTopResearch": false, "rank": 93, "fortune500_rank": 23}}, "patents": {"ai_patents": {"counts": [7, 2, 1, 18, 56, 109, 160, 225, 93, 0, 0], "total": 671, "table": null, "rank": 42, "fortune500_rank": 13}, "ai_patents_growth": {"counts": [], "total": 60.68561598951507, "table": null, "rank": 174, "fortune500_rank": 43}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [70, 20, 10, 180, 560, 1090, 1600, 2250, 930, 0, 0], "total": 6710, "table": null, "rank": 42, "fortune500_rank": 13}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 3, 4, 8, 2, 0, 0], "total": 17, "table": null, "rank": 59, "fortune500_rank": 25}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 4, 2, 7, 1, 0, 0], "total": 14, "table": null, "rank": 76, "fortune500_rank": 35}, "Transportation": {"counts": [0, 0, 1, 4, 6, 21, 35, 32, 5, 0, 0], "total": 104, "table": "industry", "rank": 27, "fortune500_rank": 10}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 3, 11, 6, 5, 0, 0], "total": 25, "table": "industry", "rank": 34, "fortune500_rank": 11}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 61, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [2, 2, 1, 7, 7, 36, 56, 74, 22, 0, 0], "total": 207, "table": "industry", "rank": 38, "fortune500_rank": 16}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 172, "fortune500_rank": 60}, "Telecommunications": {"counts": [0, 0, 0, 1, 8, 21, 23, 35, 10, 0, 0], "total": 98, "table": "industry", "rank": 42, "fortune500_rank": 20}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 0], "total": 6, "table": null, "rank": 196, "fortune500_rank": 65}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": null, "rank": 97, "fortune500_rank": 24}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 9, 14, 2, 0, 0], "total": 25, "table": null, "rank": 8, "fortune500_rank": 4}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [1, 0, 0, 0, 0, 0, 1, 17, 13, 0, 0], "total": 32, "table": "industry", "rank": 6, "fortune500_rank": 4}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 0, 7, 10, 3, 0, 0], "total": 21, "table": "application", "rank": 51, "fortune500_rank": 16}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 1, 4, 0, 5, 0, 0, 0], "total": 11, "table": null, "rank": 69, "fortune500_rank": 37}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0], "total": 5, "table": null, "rank": 183, "fortune500_rank": 63}, "Control": {"counts": [0, 0, 0, 5, 7, 26, 35, 32, 5, 0, 0], "total": 110, "table": "application", "rank": 33, "fortune500_rank": 11}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 36, "fortune500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [3, 1, 1, 10, 40, 71, 106, 124, 43, 0, 0], "total": 399, "table": "application", "rank": 20, "fortune500_rank": 5}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 5, 13, 13, 4, 0, 0], "total": 36, "table": "application", "rank": 36, "fortune500_rank": 17}, "Measuring_and_Testing": {"counts": [0, 0, 1, 4, 3, 10, 20, 9, 1, 0, 0], "total": 48, "table": "application", "rank": 44, "fortune500_rank": 15}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 10027, "rank": 49, "fortune500_rank": 34}, "ai_jobs": {"counts": null, "total": 642, "rank": 83, "fortune500_rank": 43}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Nvidia Corporation[note 1] is an American multinational technology company incorporated in Delaware and based in Santa Clara, California. It designs graphics processing units (GPUs) for the gaming and professional markets, as well as system on a chip units (SoCs) for the mobile computing and automotive market. Its primary GPU line, labeled \"GeForce\", is in direct competition with the GPUs of the \"Radeon\" brand by Advanced Micro Devices (AMD). Nvidia expanded its presence in the gaming industry with its handheld game consoles Shield Portable, Shield Tablet, and Shield Android TV and its cloud gaming service GeForce Now. Its professional line of GPUs, Nvidia RTX, are used in professional workstations for applications in such fields as architecture, engineering and construction, media and entertainment, automotive, scientific research, and manufacturing design.", "wikipedia_link": "https://en.wikipedia.org/wiki/Nvidia", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2104, "country": "United Kingdom", "website": "https://www.bt.com/", "crunchbase": {"text": " 61d2e78e-d4a2-464a-9dd3-a620bcac2e06 ", "url": " https://www.crunchbase.com/organization/bt-group "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bt"], "stage": "Mature", "name": "Bt Group", "patent_name": "BT Group", "continent": "Europe", "local_logo": null, "aliases": "BT Group; Bt-Group Holding", "permid_links": [{"text": 4295895409, "url": "https://permid.org/1-4295895409"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "STU:BTQ", "url": "https://www.google.com/finance/quote/BTQ:STU"}, {"text": "HAN:BTQ", "url": "https://www.google.com/finance/quote/BTQ:HAN"}, {"text": "MUN:BTQ", "url": "https://www.google.com/finance/quote/BTQ:MUN"}, {"text": "DEU:BT", "url": "https://www.google.com/finance/quote/BT:DEU"}, {"text": "BRN:BTQ", "url": "https://www.google.com/finance/quote/BRN:BTQ"}, {"text": "LSE:BT.A", "url": "https://www.google.com/finance/quote/BT.A:LSE"}, {"text": "MEX:BTAN", "url": "https://www.google.com/finance/quote/BTAN:MEX"}, {"text": "FRA:BTQ", "url": "https://www.google.com/finance/quote/BTQ:FRA"}, {"text": "PKC:BTGOF", "url": "https://www.google.com/finance/quote/BTGOF:PKC"}, {"text": "DUS:BTQ", "url": "https://www.google.com/finance/quote/BTQ:DUS"}, {"text": "GER:BTQX", "url": "https://www.google.com/finance/quote/BTQX:GER"}, {"text": "BER:BTQ", "url": "https://www.google.com/finance/quote/BER:BTQ"}, {"text": "HAM:BTQ", "url": "https://www.google.com/finance/quote/BTQ:HAM"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Fuzzy logic", "field_count": 6}, {"field_name": "Markov chain", "field_count": 5}, {"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Object (computer science)", "field_count": 2}, {"field_name": "Linear model", "field_count": 2}, {"field_name": "Estimation of distribution algorithm", "field_count": 2}, {"field_name": "Multi-objective optimization", "field_count": 2}, {"field_name": "Data stream mining", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}], "clusters": [{"cluster_id": 94958, "cluster_count": 11}, {"cluster_id": 85260, "cluster_count": 9}, {"cluster_id": 10170, "cluster_count": 8}, {"cluster_id": 58375, "cluster_count": 2}, {"cluster_id": 2489, "cluster_count": 2}, {"cluster_id": 690, "cluster_count": 2}, {"cluster_id": 184, "cluster_count": 2}, {"cluster_id": 56007, "cluster_count": 2}, {"cluster_id": 28309, "cluster_count": 1}, {"cluster_id": 40901, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 30}, {"ref_CSET_id": 2104, "referenced_count": 26}, {"ref_CSET_id": 163, "referenced_count": 19}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 1797, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 23, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 27, "referenced_count": 2}, {"ref_CSET_id": 805, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 8}, {"referent": "motion_planning", "task_count": 4}, {"referent": "vehicle_detection", "task_count": 3}, {"referent": "decision_making", "task_count": 3}, {"referent": "image_processing", "task_count": 3}, {"referent": "information_extraction", "task_count": 2}, {"referent": "knowledge_base", "task_count": 2}, {"referent": "heterogeneous_face_recognition", "task_count": 2}, {"referent": "spelling_correction", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 9}, {"referent": "vqa_models", "method_count": 9}, {"referent": "ltls", "method_count": 6}, {"referent": "double_q_learning", "method_count": 6}, {"referent": "twin_networks", "method_count": 6}, {"referent": "3d_representations", "method_count": 4}, {"referent": "ga", "method_count": 3}, {"referent": "dnas", "method_count": 3}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "ggs_nns", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [27, 38, 35, 41, 34, 40, 45, 59, 52, 33, 2], "total": 406, "isTopResearch": false, "rank": 311, "sp500_rank": 204}, "ai_publications": {"counts": [2, 3, 2, 4, 5, 5, 6, 12, 12, 4, 0], "total": 55, "isTopResearch": false, "rank": 172, "sp500_rank": 109}, "ai_publications_growth": {"counts": [], "total": 11.111111111111109, "isTopResearch": false, "rank": 152, "sp500_rank": 79}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [46, 42, 43, 32, 47, 52, 46, 53, 107, 114, 4], "total": 586, "isTopResearch": false, "rank": 248, "sp500_rank": 133}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 3, 1, 0], "total": 6, "isTopResearch": true, "rank": 267, "sp500_rank": 137}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [23.0, 14.0, 21.5, 8.0, 9.4, 10.4, 7.666666666666667, 4.416666666666667, 8.916666666666666, 28.5, 0], "total": 10.654545454545454, "isTopResearch": false, "rank": 521, "sp500_rank": 192}}, "patents": {"ai_patents": {"counts": [5, 3, 8, 16, 32, 16, 36, 14, 12, 1, 0], "total": 143, "table": null, "rank": 130, "sp500_rank": 85}, "ai_patents_growth": {"counts": [], "total": 4.629629629629629, "table": null, "rank": 350, "sp500_rank": 164}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [50, 30, 80, 160, 320, 160, 360, 140, 120, 10, 0], "total": 1430, "table": null, "rank": 130, "sp500_rank": 85}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [1, 1, 0, 11, 13, 11, 14, 6, 2, 0, 0], "total": 59, "table": "industry", "rank": 20, "sp500_rank": 16}, "Transportation": {"counts": [0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 0], "total": 5, "table": "industry", "rank": 133, "sp500_rank": 96}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [4, 3, 2, 14, 18, 11, 18, 6, 6, 0, 0], "total": 82, "table": "industry", "rank": 87, "sp500_rank": 63}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0], "total": 3, "table": null, "rank": 141, "sp500_rank": 91}, "Telecommunications": {"counts": [3, 2, 7, 7, 18, 11, 23, 9, 5, 0, 0], "total": 85, "table": "industry", "rank": 50, "sp500_rank": 45}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [0, 1, 1, 1, 1, 0, 3, 2, 1, 0, 0], "total": 10, "table": "industry", "rank": 149, "sp500_rank": 101}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 1, 2, 1, 1, 1, 2, 0, 0, 0, 0], "total": 8, "table": "application", "rank": 88, "sp500_rank": 59}, "Planning_and_Scheduling": {"counts": [0, 1, 1, 1, 1, 0, 3, 2, 1, 0, 0], "total": 10, "table": "application", "rank": 124, "sp500_rank": 89}, "Control": {"counts": [0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 166, "sp500_rank": 113}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 2, 5, 7, 2, 0, 0, 0, 0], "total": 16, "table": "application", "rank": 206, "sp500_rank": 117}, "Analytics_and_Algorithms": {"counts": [1, 0, 2, 0, 2, 0, 3, 2, 3, 0, 0], "total": 13, "table": "application", "rank": 96, "sp500_rank": 71}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0], "total": 3, "table": null, "rank": 209, "sp500_rank": 132}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 9833, "rank": 50, "sp500_rank": 39}, "ai_jobs": {"counts": null, "total": 386, "rank": 146, "sp500_rank": 96}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1933, "country": null, "website": "https://www.continental.com/", "crunchbase": {"text": " f82127e6-3f7d-1ed0-4906-a61daf4135b0", "url": "https://www.crunchbase.com/organization/continental-ag"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/continental"], "stage": "Mature", "name": "Continental", "patent_name": "Continental", "continent": null, "local_logo": null, "aliases": "Continental; Continental Ag", "permid_links": [{"text": 4295869236, "url": "https://permid.org/1-4295869236"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "DUS:CON", "url": "https://www.google.com/finance/quote/CON:DUS"}, {"text": "HAM:CON", "url": "https://www.google.com/finance/quote/CON:HAM"}, {"text": "MEX:CONN", "url": "https://www.google.com/finance/quote/CONN:MEX"}, {"text": "GER:CONX", "url": "https://www.google.com/finance/quote/CONX:GER"}, {"text": "FRA:CONA", "url": "https://www.google.com/finance/quote/CONA:FRA"}, {"text": "EBT:COND", "url": "https://www.google.com/finance/quote/CONd:EBT"}, {"text": "MUN:CON", "url": "https://www.google.com/finance/quote/CON:MUN"}, {"text": "PKC:CTTAY", "url": "https://www.google.com/finance/quote/CTTAY:PKC"}, {"text": "BER:CON", "url": "https://www.google.com/finance/quote/BER:CON"}, {"text": "LSE:0LQ1", "url": "https://www.google.com/finance/quote/0LQ1:LSE"}, {"text": "HAN:CON", "url": "https://www.google.com/finance/quote/CON:HAN"}, {"text": "PKC:CTTAF", "url": "https://www.google.com/finance/quote/CTTAF:PKC"}, {"text": "FRA:CON", "url": "https://www.google.com/finance/quote/CON:FRA"}, {"text": "STU:CON", "url": "https://www.google.com/finance/quote/CON:STU"}, {"text": "DEU:CONA", "url": "https://www.google.com/finance/quote/CONA:DEU"}, {"text": "BRN:CON", "url": "https://www.google.com/finance/quote/BRN:CON"}, {"text": "MUN:CONA", "url": "https://www.google.com/finance/quote/CONA:MUN"}, {"text": "MIL:CON", "url": "https://www.google.com/finance/quote/CON:MIL"}, {"text": "DEU:CONG", "url": "https://www.google.com/finance/quote/CONG:DEU"}, {"text": "STU:CONA", "url": "https://www.google.com/finance/quote/CONA:STU"}, {"text": "VIE:CON", "url": "https://www.google.com/finance/quote/CON:VIE"}, {"text": "SWX:CONT", "url": "https://www.google.com/finance/quote/CONT:SWX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Advanced driver assistance systems", "field_count": 16}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Haptic technology", "field_count": 2}, {"field_name": "Sensor fusion", "field_count": 2}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Pose", "field_count": 1}], "clusters": [{"cluster_id": 22331, "cluster_count": 6}, {"cluster_id": 56508, "cluster_count": 4}, {"cluster_id": 31686, "cluster_count": 3}, {"cluster_id": 5109, "cluster_count": 3}, {"cluster_id": 62283, "cluster_count": 2}, {"cluster_id": 3281, "cluster_count": 2}, {"cluster_id": 44902, "cluster_count": 2}, {"cluster_id": 32715, "cluster_count": 2}, {"cluster_id": 3842, "cluster_count": 2}, {"cluster_id": 2381, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 123}, {"ref_CSET_id": 163, "referenced_count": 58}, {"ref_CSET_id": 87, "referenced_count": 49}, {"ref_CSET_id": 1933, "referenced_count": 41}, {"ref_CSET_id": 800, "referenced_count": 27}, {"ref_CSET_id": 1037, "referenced_count": 21}, {"ref_CSET_id": 115, "referenced_count": 18}, {"ref_CSET_id": 783, "referenced_count": 11}, {"ref_CSET_id": 127, "referenced_count": 10}, {"ref_CSET_id": 23, "referenced_count": 8}], "tasks": [{"referent": "autonomous_driving", "task_count": 28}, {"referent": "classification", "task_count": 10}, {"referent": "pedestrian_detection", "task_count": 7}, {"referent": "vehicle_detection", "task_count": 6}, {"referent": "autonomous_vehicles", "task_count": 6}, {"referent": "steering_control", "task_count": 5}, {"referent": "safety_perception_recognition", "task_count": 5}, {"referent": "object_detection", "task_count": 5}, {"referent": "system_identification", "task_count": 5}, {"referent": "traffic_prediction", "task_count": 4}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "3d_representations", "method_count": 6}, {"referent": "mad_learning", "method_count": 5}, {"referent": "clustering", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "vqa_models", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "ggs_nns", "method_count": 3}, {"referent": "cgnn", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [59, 56, 78, 57, 85, 90, 85, 48, 61, 44, 2], "total": 665, "isTopResearch": false, "rank": 240, "sp500_rank": 165}, "ai_publications": {"counts": [3, 3, 11, 6, 10, 12, 12, 7, 7, 5, 0], "total": 76, "isTopResearch": false, "rank": 145, "sp500_rank": 95}, "ai_publications_growth": {"counts": [], "total": -23.412698412698415, "isTopResearch": false, "rank": 1355, "sp500_rank": 362}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 1, 2, 0, 1, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 157, "sp500_rank": 75}, "citation_counts": {"counts": [14, 17, 21, 34, 41, 60, 101, 149, 191, 181, 9], "total": 818, "isTopResearch": false, "rank": 208, "sp500_rank": 117}, "cv_pubs": {"counts": [1, 1, 3, 4, 1, 3, 2, 1, 2, 1, 0], "total": 19, "isTopResearch": true, "rank": 143, "sp500_rank": 89}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [0, 1, 4, 1, 3, 2, 3, 1, 0, 2, 0], "total": 17, "isTopResearch": true, "rank": 85, "sp500_rank": 63}, "citations_per_article": {"counts": [4.666666666666667, 5.666666666666667, 1.9090909090909092, 5.666666666666667, 4.1, 5.0, 8.416666666666666, 21.285714285714285, 27.285714285714285, 36.2, 0], "total": 10.763157894736842, "isTopResearch": false, "rank": 516, "sp500_rank": 188}}, "patents": {"ai_patents": {"counts": [0, 5, 7, 13, 20, 44, 46, 43, 14, 3, 0], "total": 195, "table": null, "rank": 102, "sp500_rank": 72}, "ai_patents_growth": {"counts": [], "total": 39.34123847167326, "table": null, "rank": 245, "sp500_rank": 112}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 50, 70, 130, 200, 440, 460, 430, 140, 30, 0], "total": 1950, "table": null, "rank": 102, "sp500_rank": 72}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0], "total": 6, "table": null, "rank": 68, "sp500_rank": 56}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": null, "rank": 158, "sp500_rank": 91}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 4, 2, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 112, "sp500_rank": 79}, "Transportation": {"counts": [0, 4, 6, 11, 13, 31, 26, 6, 6, 0, 0], "total": 103, "table": "industry", "rank": 28, "sp500_rank": 22}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 1, 2, 3, 4, 0, 0, 0], "total": 11, "table": "industry", "rank": 250, "sp500_rank": 136}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 1, 5, 7, 1, 0, 0, 0], "total": 15, "table": "industry", "rank": 58, "sp500_rank": 47}, "Telecommunications": {"counts": [0, 1, 0, 0, 2, 8, 12, 6, 2, 0, 0], "total": 31, "table": "industry", "rank": 107, "sp500_rank": 71}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 2, 0, 0, 1, 1, 1, 0, 0, 0], "total": 5, "table": null, "rank": 213, "sp500_rank": 136}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], "total": 4, "table": "application", "rank": 137, "sp500_rank": 79}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": null, "rank": 214, "sp500_rank": 141}, "Control": {"counts": [0, 3, 3, 5, 11, 18, 20, 10, 3, 0, 0], "total": 73, "table": "application", "rank": 41, "sp500_rank": 33}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 2, 6, 12, 14, 12, 14, 4, 0, 0], "total": 64, "table": "application", "rank": 95, "sp500_rank": 64}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 3, 1, 2, 1, 0, 0], "total": 8, "table": "application", "rank": 131, "sp500_rank": 95}, "Measuring_and_Testing": {"counts": [0, 0, 0, 2, 5, 14, 11, 7, 2, 0, 0], "total": 41, "table": "application", "rank": 49, "sp500_rank": 37}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 9734, "rank": 51, "sp500_rank": 40}, "ai_jobs": {"counts": null, "total": 349, "rank": 160, "sp500_rank": 104}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 2794, "country": "France", "website": "http://www.thalesgroup.com/", "crunchbase": {"text": "b4879a55-29e0-7b1e-4f11-ce9842413d65", "url": "https://www.crunchbase.com/organization/thales-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/thales"], "stage": "Mature", "name": "Thales SA", "patent_name": "thales sa", "continent": "Europe", "local_logo": "thales_sa.png", "aliases": "Thales; Thales Group", "permid_links": [{"text": 4295866846, "url": "https://permid.org/1-4295866846"}], "parent_info": "Dassault Aviation", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PAR:HO", "url": "https://www.google.com/finance/quote/ho:par"}], "crunchbase_description": "Thales is a technology in the aerospace, transportation and defense and security markets.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 11}, {"field_name": "Convolutional neural network", "field_count": 10}, {"field_name": "Artificial neural network", "field_count": 10}, {"field_name": "Robustness (computer science)", "field_count": 8}, {"field_name": "Anomaly detection", "field_count": 6}, {"field_name": "Cluster analysis", "field_count": 6}, {"field_name": "Feature extraction", "field_count": 6}, {"field_name": "Pose", "field_count": 6}, {"field_name": "Swarm behaviour", "field_count": 5}, {"field_name": "Probabilistic logic", "field_count": 4}], "clusters": [{"cluster_id": 37872, "cluster_count": 13}, {"cluster_id": 39721, "cluster_count": 8}, {"cluster_id": 698, "cluster_count": 7}, {"cluster_id": 3501, "cluster_count": 7}, {"cluster_id": 2480, "cluster_count": 7}, {"cluster_id": 3842, "cluster_count": 7}, {"cluster_id": 1436, "cluster_count": 6}, {"cluster_id": 32715, "cluster_count": 6}, {"cluster_id": 14703, "cluster_count": 6}, {"cluster_id": 1918, "cluster_count": 6}], "company_references": [{"ref_CSET_id": 2794, "referenced_count": 223}, {"ref_CSET_id": 101, "referenced_count": 175}, {"ref_CSET_id": 163, "referenced_count": 95}, {"ref_CSET_id": 87, "referenced_count": 77}, {"ref_CSET_id": 115, "referenced_count": 34}, {"ref_CSET_id": 184, "referenced_count": 18}, {"ref_CSET_id": 127, "referenced_count": 14}, {"ref_CSET_id": 1867, "referenced_count": 13}, {"ref_CSET_id": 800, "referenced_count": 9}, {"ref_CSET_id": 810, "referenced_count": 9}], "tasks": [{"referent": "classification", "task_count": 76}, {"referent": "target_recognition", "task_count": 24}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 24}, {"referent": "video_surveillance", "task_count": 24}, {"referent": "image_processing", "task_count": 17}, {"referent": "system_identification", "task_count": 16}, {"referent": "autonomous_vehicles", "task_count": 15}, {"referent": "autonomous_navigation", "task_count": 14}, {"referent": "robots", "task_count": 13}, {"referent": "decision_making", "task_count": 12}], "methods": [{"referent": "vqa_models", "method_count": 29}, {"referent": "double_q_learning", "method_count": 28}, {"referent": "recurrent_neural_networks", "method_count": 27}, {"referent": "convolutional_neural_networks", "method_count": 23}, {"referent": "griffin_lim_algorithm", "method_count": 18}, {"referent": "3d_representations", "method_count": 18}, {"referent": "mad_learning", "method_count": 17}, {"referent": "meta_learning_algorithms", "method_count": 15}, {"referent": "q_learning", "method_count": 14}, {"referent": "auto_classifier", "method_count": 14}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [535, 629, 551, 619, 556, 522, 523, 444, 490, 351, 7], "total": 5227, "isTopResearch": false, "rank": 63}, "ai_publications": {"counts": [34, 30, 27, 30, 28, 38, 61, 45, 60, 18, 0], "total": 371, "isTopResearch": false, "rank": 49}, "ai_publications_growth": {"counts": [], "total": -20.965391621129324, "isTopResearch": false, "rank": 1337}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 3, 4, 4, 2, 5, 0, 0], "total": 19, "isTopResearch": false, "rank": 82}, "citation_counts": {"counts": [103, 164, 197, 212, 247, 353, 640, 792, 1007, 831, 22], "total": 4568, "isTopResearch": false, "rank": 74}, "cv_pubs": {"counts": [9, 7, 7, 7, 6, 14, 7, 12, 17, 7, 0], "total": 93, "isTopResearch": true, "rank": 59}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [4, 3, 4, 0, 4, 5, 3, 6, 6, 0, 0], "total": 35, "isTopResearch": true, "rank": 57}, "citations_per_article": {"counts": [3.0294117647058822, 5.466666666666667, 7.296296296296297, 7.066666666666666, 8.821428571428571, 9.289473684210526, 10.491803278688524, 17.6, 16.783333333333335, 46.166666666666664, 0], "total": 12.31266846361186, "isTopResearch": false, "rank": 464}}, "patents": {"ai_patents": {"counts": [6, 4, 7, 5, 6, 36, 39, 36, 8, 0, 0], "total": 147, "table": null, "rank": 123}, "ai_patents_growth": {"counts": [], "total": 166.8803418803419, "table": null, "rank": 60}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [60, 40, 70, 50, 60, 360, 390, 360, 80, 0, 0], "total": 1470, "table": null, "rank": 123}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], "total": 4, "table": null, "rank": 139}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 4, 6, 4, 5, 1, 0, 0], "total": 20, "table": "industry", "rank": 58}, "Transportation": {"counts": [0, 3, 0, 1, 1, 5, 8, 6, 2, 0, 0], "total": 26, "table": "industry", "rank": 63}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 165}, "Education": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0], "total": 4, "table": null, "rank": 39}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 7}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [3, 1, 4, 2, 4, 10, 10, 13, 2, 0, 0], "total": 49, "table": "industry", "rank": 120}, "Banking_and_Finance": {"counts": [0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 115}, "Telecommunications": {"counts": [1, 0, 1, 1, 3, 10, 12, 8, 0, 0, 0], "total": 36, "table": "industry", "rank": 95}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [2, 0, 0, 0, 0, 6, 5, 1, 1, 0, 0], "total": 15, "table": "industry", "rank": 123}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 10}, "Semiconductors": {"counts": [1, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 28}, "Language_Processing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 1, 1, 1, 0, 0, 0, 3, 0, 0, 0], "total": 6, "table": null, "rank": 109}, "Planning_and_Scheduling": {"counts": [2, 0, 0, 0, 0, 6, 5, 1, 1, 0, 0], "total": 15, "table": "application", "rank": 97}, "Control": {"counts": [1, 3, 1, 0, 1, 13, 14, 8, 2, 0, 0], "total": 43, "table": "application", "rank": 59}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 1, 1, 2, 7, 12, 5, 2, 0, 0], "total": 30, "table": "application", "rank": 153}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 1, 6, 2, 0, 0, 0], "total": 10, "table": "application", "rank": 114}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 0, 7, 10, 2, 1, 0, 0], "total": 21, "table": "application", "rank": 80}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 9689, "rank": 52}, "ai_jobs": {"counts": null, "total": 269, "rank": 197}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "From the bottom of the oceans to the depths of space and cyberspace, we help our customers think smarter and act faster - mastering ever greater complexity and every decisive moment along the way.", "company_site_link": "https://www.thalesgroup.com/en/global/about-us", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 245, "country": "China", "website": "https://www.tencent.com/en-us/", "crunchbase": {"text": "3cae090b-ed2d-95f8-79a9-e32ca480258f", "url": "https://www.crunchbase.com/organization/tencent"}, "child_crunchbase": [{"text": "9bfd8961-37b3-4f87-888c-e99895f58456", "url": "https://www.crunchbase.com/organization/tencent-ai-lab"}], "linkedin": ["https://www.linkedin.com/company/tencentglobal"], "stage": "Mature", "name": "Tencent", "patent_name": "tencent", "continent": "Asia", "local_logo": "tencent.png", "aliases": "Tencent Holdings; Tencent Holdings Limited; Tencent Ltd; Tengxun; \u817e\u8baf; \u817e\u8baf\u63a7\u80a1\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5057833188, "url": "https://permid.org/1-5057833188"}, {"text": 4295865078, "url": "https://permid.org/1-4295865078"}, {"text": 5065360019, "url": "https://permid.org/1-5065360019"}], "parent_info": null, "agg_child_info": "Tencent AI Lab", "unagg_child_info": null, "market_filt": [{"text": "HKG:0700", "url": "https://www.google.com/finance/quote/0700:hkg"}], "market_full": [{"text": "BER:NNND", "url": "https://www.google.com/finance/quote/ber:nnnd"}, {"text": "HKG:0700", "url": "https://www.google.com/finance/quote/0700:hkg"}, {"text": "BMV:TCEHY/N", "url": "https://www.google.com/finance/quote/bmv:tcehy/n"}, {"text": "FWB:NNND", "url": "https://www.google.com/finance/quote/fwb:nnnd"}, {"text": "OTC:TCEHY", "url": "https://www.google.com/finance/quote/otc:tcehy"}], "crunchbase_description": "Tencent is an internet service portal offering value-added internet, mobile, telecom, and online advertising services.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 126}, {"field_name": "Machine translation", "field_count": 101}, {"field_name": "Reinforcement learning", "field_count": 94}, {"field_name": "Segmentation", "field_count": 93}, {"field_name": "Convolutional neural network", "field_count": 89}, {"field_name": "Deep learning", "field_count": 82}, {"field_name": "Feature learning", "field_count": 68}, {"field_name": "Recommender system", "field_count": 49}, {"field_name": "Sentence", "field_count": 48}, {"field_name": "Robustness (computer science)", "field_count": 47}], "clusters": [{"cluster_id": 3527, "cluster_count": 121}, {"cluster_id": 13405, "cluster_count": 78}, {"cluster_id": 3291, "cluster_count": 69}, {"cluster_id": 1193, "cluster_count": 67}, {"cluster_id": 1989, "cluster_count": 66}, {"cluster_id": 1338, "cluster_count": 51}, {"cluster_id": 1422, "cluster_count": 46}, {"cluster_id": 2891, "cluster_count": 45}, {"cluster_id": 148, "cluster_count": 44}, {"cluster_id": 10485, "cluster_count": 44}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 9232}, {"ref_CSET_id": 163, "referenced_count": 7463}, {"ref_CSET_id": 245, "referenced_count": 3993}, {"ref_CSET_id": 87, "referenced_count": 3879}, {"ref_CSET_id": 115, "referenced_count": 1641}, {"ref_CSET_id": 6, "referenced_count": 1137}, {"ref_CSET_id": 112, "referenced_count": 1107}, {"ref_CSET_id": 37, "referenced_count": 982}, {"ref_CSET_id": 21, "referenced_count": 869}, {"ref_CSET_id": 223, "referenced_count": 848}], "tasks": [{"referent": "classification", "task_count": 361}, {"referent": "classification_tasks", "task_count": 131}, {"referent": "segmentation", "task_count": 103}, {"referent": "multi_task_learning", "task_count": 83}, {"referent": "neural_machine_translation", "task_count": 82}, {"referent": "recommendation", "task_count": 80}, {"referent": "translation", "task_count": 80}, {"referent": "computer_vision", "task_count": 79}, {"referent": "representation_learning", "task_count": 76}, {"referent": "speech_recognition", "task_count": 74}], "methods": [{"referent": "3d_representations", "method_count": 351}, {"referent": "recurrent_neural_networks", "method_count": 288}, {"referent": "convolutional_neural_networks", "method_count": 237}, {"referent": "vqa_models", "method_count": 196}, {"referent": "q_learning", "method_count": 194}, {"referent": "1d_cnn", "method_count": 147}, {"referent": "reinforcement_learning", "method_count": 132}, {"referent": "double_q_learning", "method_count": 120}, {"referent": "attention_mechanisms", "method_count": 103}, {"referent": "self_supervised_learning", "method_count": 97}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [31, 34, 36, 70, 228, 507, 784, 1006, 1215, 857, 11], "total": 4779, "isTopResearch": false, "rank": 71, "sp500_rank": 62}, "ai_publications": {"counts": [5, 10, 19, 46, 168, 422, 651, 792, 910, 405, 1], "total": 3429, "isTopResearch": false, "rank": 5, "sp500_rank": 4}, "ai_publications_growth": {"counts": [], "total": -6.3121764734667964, "isTopResearch": false, "rank": 1239, "sp500_rank": 300}, "ai_pubs_top_conf": {"counts": [0, 0, 6, 12, 67, 208, 320, 273, 365, 164, 0], "total": 1415, "isTopResearch": false, "rank": 5, "sp500_rank": 4}, "citation_counts": {"counts": [53, 51, 109, 171, 627, 2681, 8915, 17056, 25072, 20298, 724], "total": 75757, "isTopResearch": false, "rank": 7, "sp500_rank": 5}, "cv_pubs": {"counts": [1, 4, 7, 23, 79, 169, 261, 325, 395, 194, 0], "total": 1458, "isTopResearch": true, "rank": 3, "sp500_rank": 2}, "nlp_pubs": {"counts": [2, 0, 6, 7, 35, 109, 196, 198, 236, 70, 0], "total": 859, "isTopResearch": true, "rank": 6, "sp500_rank": 5}, "robotics_pubs": {"counts": [0, 1, 0, 0, 1, 4, 15, 17, 38, 20, 0], "total": 96, "isTopResearch": true, "rank": 28, "sp500_rank": 26}, "citations_per_article": {"counts": [10.6, 5.1, 5.7368421052631575, 3.717391304347826, 3.732142857142857, 6.3530805687203795, 13.69431643625192, 21.535353535353536, 27.551648351648353, 50.11851851851852, 724.0], "total": 22.093030037911927, "isTopResearch": false, "rank": 276, "sp500_rank": 76}}, "patents": {"ai_patents": {"counts": [25, 19, 25, 65, 171, 380, 980, 1719, 1535, 645, 0], "total": 5564, "table": null, "rank": 3, "sp500_rank": 3}, "ai_patents_growth": {"counts": [], "total": 118.50837410987788, "table": null, "rank": 94, "sp500_rank": 42}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [250, 190, 250, 650, 1710, 3800, 9800, 17190, 15350, 6450, 0], "total": 55640, "table": null, "rank": 3, "sp500_rank": 3}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": null, "rank": 125, "sp500_rank": 92}, "Life_Sciences": {"counts": [0, 0, 1, 0, 1, 15, 71, 55, 39, 3, 0], "total": 185, "table": "industry", "rank": 9, "sp500_rank": 8}, "Security__eg_cybersecurity": {"counts": [1, 1, 3, 5, 3, 7, 13, 35, 23, 6, 0], "total": 97, "table": null, "rank": 10, "sp500_rank": 10}, "Transportation": {"counts": [0, 0, 0, 1, 6, 1, 6, 20, 8, 4, 0], "total": 46, "table": null, "rank": 47, "sp500_rank": 36}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 3, 7, 4, 0, 0], "total": 15, "table": null, "rank": 54, "sp500_rank": 40}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 4, 4, 0, 0], "total": 9, "table": null, "rank": 13, "sp500_rank": 10}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0], "total": 5, "table": null, "rank": 21, "sp500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 1, 0, 3, 2, 4, 0, 0], "total": 10, "table": null, "rank": 5, "sp500_rank": 4}, "Personal_Devices_and_Computing": {"counts": [8, 10, 8, 30, 66, 109, 318, 667, 544, 91, 0], "total": 1851, "table": "industry", "rank": 3, "sp500_rank": 3}, "Banking_and_Finance": {"counts": [1, 0, 1, 6, 8, 3, 18, 26, 41, 0, 0], "total": 104, "table": null, "rank": 9, "sp500_rank": 8}, "Telecommunications": {"counts": [3, 4, 5, 14, 21, 44, 84, 217, 94, 5, 0], "total": 491, "table": "industry", "rank": 7, "sp500_rank": 7}, "Networks__eg_social_IOT_etc": {"counts": [3, 0, 1, 4, 5, 2, 9, 19, 6, 2, 0], "total": 51, "table": null, "rank": 4, "sp500_rank": 4}, "Business": {"counts": [5, 3, 4, 16, 11, 12, 47, 116, 102, 7, 0], "total": 323, "table": "industry", "rank": 7, "sp500_rank": 7}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 2, 1, 0], "total": 6, "table": null, "rank": 70, "sp500_rank": 63}, "Entertainment": {"counts": [2, 1, 1, 2, 4, 25, 42, 85, 58, 3, 0], "total": 223, "table": "industry", "rank": 1, "sp500_rank": 1}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0], "total": 5, "table": null, "rank": 3, "sp500_rank": 3}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [3, 3, 0, 4, 15, 15, 20, 0, 0, 0, 0], "total": 60, "table": null, "rank": 8, "sp500_rank": 5}, "Speech_Processing": {"counts": [9, 1, 0, 4, 20, 37, 75, 156, 73, 10, 0], "total": 385, "table": "application", "rank": 4, "sp500_rank": 4}, "Knowledge_Representation": {"counts": [7, 2, 2, 6, 8, 6, 7, 8, 3, 1, 0], "total": 50, "table": null, "rank": 27, "sp500_rank": 22}, "Planning_and_Scheduling": {"counts": [2, 1, 2, 5, 5, 4, 19, 53, 52, 3, 0], "total": 146, "table": "application", "rank": 10, "sp500_rank": 10}, "Control": {"counts": [0, 0, 0, 1, 7, 2, 5, 24, 9, 2, 0], "total": 50, "table": null, "rank": 51, "sp500_rank": 41}, "Distributed_AI": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 10, 25, 74, 195, 446, 707, 563, 114, 0], "total": 2135, "table": "application", "rank": 2, "sp500_rank": 2}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 4, 3, 10, 20, 17, 27, 2, 0], "total": 83, "table": "application", "rank": 19, "sp500_rank": 17}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 5, 3, 11, 20, 19, 3, 0], "total": 61, "table": "application", "rank": 40, "sp500_rank": 30}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 9627, "rank": 53, "sp500_rank": 41}, "ai_jobs": {"counts": null, "total": 1273, "rank": 33, "sp500_rank": 21}}, "sector": "Technology", "business_sector": "Telecommunications Services", "wikipedia_description": "Tencent Holdings Ltd., also known as Tencent, is a Chinese multinational technology conglomerate holding company. Founded in 1998, its subsidiaries globally market various Internet-related services and products, including in entertainment, artificial intelligence, and other technology. Its twin-skyscraper headquarters, Tencent Seafront Towers (also known as Tencent Binhai Mansion) are based in the Nanshan District of Shenzhen.", "wikipedia_link": "https://en.wikipedia.org/wiki/Tencent", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 195, "country": "United States", "website": "https://www.paypal.com/home", "crunchbase": {"text": "96ab87ca-00b5-2ebc-f218-86262954e320", "url": "https://www.crunchbase.com/organization/paypal"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/paypal"], "stage": "Mature", "name": "Paypal", "patent_name": "PayPal", "continent": "North America", "local_logo": "paypal.png", "aliases": "PayPal; Paypal Pte. Ltd", "permid_links": [{"text": 4295902034, "url": "https://permid.org/1-4295902034"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:PYPL", "url": "https://www.google.com/finance/quote/NASDAQ:PYPL"}], "market_full": [{"text": "SAO:PYPL34", "url": "https://www.google.com/finance/quote/PYPL34:SAO"}, {"text": "BUE:PYPL3", "url": "https://www.google.com/finance/quote/BUE:PYPL3"}, {"text": "DEU:2PP0", "url": "https://www.google.com/finance/quote/2PP0:DEU"}, {"text": "LSE:0R9U", "url": "https://www.google.com/finance/quote/0R9U:LSE"}, {"text": "FRA:2PP", "url": "https://www.google.com/finance/quote/2PP:FRA"}, {"text": "GER:2PPX", "url": "https://www.google.com/finance/quote/2PPX:GER"}, {"text": "BER:2PP0", "url": "https://www.google.com/finance/quote/2PP0:BER"}, {"text": "DUS:2PP", "url": "https://www.google.com/finance/quote/2PP:DUS"}, {"text": "BRN:2PP", "url": "https://www.google.com/finance/quote/2PP:BRN"}, {"text": "HAM:2PP", "url": "https://www.google.com/finance/quote/2PP:HAM"}, {"text": "VIE:PYPL", "url": "https://www.google.com/finance/quote/PYPL:VIE"}, {"text": "SWX:PYPL", "url": "https://www.google.com/finance/quote/PYPL:SWX"}, {"text": "STU:2PP", "url": "https://www.google.com/finance/quote/2PP:STU"}, {"text": "DEU:2PP", "url": "https://www.google.com/finance/quote/2PP:DEU"}, {"text": "NASDAQ:PYPL", "url": "https://www.google.com/finance/quote/NASDAQ:PYPL"}, {"text": "BER:2PP", "url": "https://www.google.com/finance/quote/2PP:BER"}, {"text": "UAX:PYPL", "url": "https://www.google.com/finance/quote/PYPL:UAX"}, {"text": "HAN:2PP", "url": "https://www.google.com/finance/quote/2PP:HAN"}, {"text": "MUN:2PP0", "url": "https://www.google.com/finance/quote/2PP0:MUN"}, {"text": "MUN:2PP", "url": "https://www.google.com/finance/quote/2PP:MUN"}, {"text": "MEX:PYPL*", "url": "https://www.google.com/finance/quote/MEX:PYPL*"}, {"text": "MCX:PYPL-RM", "url": "https://www.google.com/finance/quote/MCX:PYPL-RM"}], "crunchbase_description": "PayPal is a financial service company that provides online payment solutions to its users worldwide.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Machine translation", "field_count": 2}, {"field_name": "Feature selection", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Simulated annealing", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}, {"field_name": "Feature vector", "field_count": 1}, {"field_name": "k-nearest neighbors algorithm", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Normalization (statistics)", "field_count": 1}], "clusters": [{"cluster_id": 10973, "cluster_count": 3}, {"cluster_id": 8590, "cluster_count": 2}, {"cluster_id": 12214, "cluster_count": 2}, {"cluster_id": 96927, "cluster_count": 2}, {"cluster_id": 5788, "cluster_count": 1}, {"cluster_id": 1989, "cluster_count": 1}, {"cluster_id": 1627, "cluster_count": 1}, {"cluster_id": 16556, "cluster_count": 1}, {"cluster_id": 28978, "cluster_count": 1}, {"cluster_id": 19675, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 20}, {"ref_CSET_id": 115, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 7}, {"ref_CSET_id": 21, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 52, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 112, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "action_understanding", "task_count": 2}, {"referent": "machine_translation", "task_count": 2}, {"referent": "binary_classification", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "collaborative_filtering", "task_count": 1}, {"referent": "recommendation_systems", "task_count": 1}, {"referent": "recommendation", "task_count": 1}, {"referent": "data_mining", "task_count": 1}, {"referent": "biometric_authentication", "task_count": 1}], "methods": [{"referent": "logistic_regression", "method_count": 4}, {"referent": "clustering", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "cbam", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "cyclical_learning_rate_policy", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [7, 9, 15, 13, 11, 5, 13, 11, 14, 12, 0], "total": 110, "isTopResearch": false, "rank": 503, "fortune500_rank": 187}, "ai_publications": {"counts": [1, 5, 5, 6, 0, 1, 1, 2, 5, 1, 0], "total": 27, "isTopResearch": false, "rank": 260, "fortune500_rank": 78}, "ai_publications_growth": {"counts": [], "total": 56.666666666666664, "isTopResearch": false, "rank": 60, "fortune500_rank": 18}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 1, 1, 0], "total": 3, "isTopResearch": false, "rank": 188, "fortune500_rank": 54}, "citation_counts": {"counts": [3, 10, 22, 26, 44, 48, 72, 84, 72, 56, 3], "total": 440, "isTopResearch": false, "rank": 285, "fortune500_rank": 85}, "cv_pubs": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 1, 0, 1, 0, 0, 0, 1, 2, 0, 0], "total": 5, "isTopResearch": true, "rank": 141, "fortune500_rank": 42}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [3.0, 2.0, 4.4, 4.333333333333333, 0, 48.0, 72.0, 42.0, 14.4, 56.0, 0], "total": 16.296296296296298, "isTopResearch": false, "rank": 381, "fortune500_rank": 117}}, "patents": {"ai_patents": {"counts": [3, 1, 4, 15, 34, 32, 60, 72, 12, 0, 0], "total": 233, "table": null, "rank": 91, "fortune500_rank": 30}, "ai_patents_growth": {"counts": [], "total": 33.872549019607845, "table": null, "rank": 260, "fortune500_rank": 74}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 10, 40, 150, 340, 320, 600, 720, 120, 0, 0], "total": 2330, "table": null, "rank": 91, "fortune500_rank": 30}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 3, 5, 5, 9, 10, 2, 0, 0], "total": 34, "table": "industry", "rank": 31, "fortune500_rank": 11}, "Transportation": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 48, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [1, 0, 2, 7, 21, 21, 34, 48, 5, 0, 0], "total": 139, "table": "industry", "rank": 57, "fortune500_rank": 24}, "Banking_and_Finance": {"counts": [0, 0, 2, 7, 14, 10, 25, 30, 3, 0, 0], "total": 91, "table": "industry", "rank": 12, "fortune500_rank": 5}, "Telecommunications": {"counts": [0, 0, 2, 4, 7, 1, 16, 19, 5, 0, 0], "total": 54, "table": "industry", "rank": 73, "fortune500_rank": 28}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 2, 2, 2, 1, 3, 0, 0, 0], "total": 10, "table": null, "rank": 17, "fortune500_rank": 9}, "Business": {"counts": [2, 1, 1, 7, 11, 10, 10, 12, 1, 0, 0], "total": 55, "table": "industry", "rank": 51, "fortune500_rank": 22}, "Energy_Management": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 3, 5, 4, 0, 0, 0, 0], "total": 12, "table": "application", "rank": 34, "fortune500_rank": 19}, "Speech_Processing": {"counts": [0, 0, 0, 0, 2, 1, 0, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 127, "fortune500_rank": 37}, "Knowledge_Representation": {"counts": [0, 0, 0, 2, 4, 4, 8, 7, 0, 0, 0], "total": 25, "table": "application", "rank": 42, "fortune500_rank": 23}, "Planning_and_Scheduling": {"counts": [0, 1, 1, 1, 3, 1, 3, 5, 0, 0, 0], "total": 15, "table": "application", "rank": 97, "fortune500_rank": 38}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0], "total": 3, "table": null, "rank": 23, "fortune500_rank": 13}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 2, 4, 6, 10, 13, 2, 0, 0], "total": 37, "table": "application", "rank": 138, "fortune500_rank": 42}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 191, "fortune500_rank": 77}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 9522, "rank": 54, "fortune500_rank": 35}, "ai_jobs": {"counts": null, "total": 1411, "rank": 28, "fortune500_rank": 20}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 785, "country": "United States", "website": "http://www.ge.com", "crunchbase": {"text": "1f2d7988-b461-f905-b8ab-c9a773063bd7", "url": "https://www.crunchbase.com/organization/general-electric"}, "child_crunchbase": [{"text": "1966843c-3293-e58c-7b23-11d8e27d3a97", "url": "https://www.crunchbase.com/organization/ge-healthcare"}, {"text": "45d6d088-6e22-f5f6-9c2d-b79b84cbdcec", "url": "https://www.crunchbase.com/organization/ge-global-research"}, {"text": "4cd2b309-c59a-ea08-f256-66e947328fd6", "url": "https://www.crunchbase.com/organization/idx-2"}], "linkedin": ["https://www.linkedin.com/company/gehealthcare", "https://www.linkedin.com/company/geresearch", "https://www.linkedin.com/company/ge", "https://www.linkedin.com/company/idxtechnologiesinc"], "stage": "Mature", "name": "General Electric", "patent_name": "general electric ", "continent": "North America", "local_logo": "general_electric_.png", "aliases": "Ge; general electric ", "permid_links": [{"text": 4298219542, "url": "https://permid.org/1-4298219542"}, {"text": 5024587766, "url": "https://permid.org/1-5024587766"}, {"text": 4295903128, "url": "https://permid.org/1-4295903128"}, {"text": 5066248060, "url": "https://permid.org/1-5066248060"}], "parent_info": null, "agg_child_info": "Ge Healthcare, Ge Global Research, IDx Technologies", "unagg_child_info": null, "market_filt": [{"text": "NYSE:GE", "url": "https://www.google.com/finance/quote/ge:nyse"}], "market_full": [{"text": "BMV:GE", "url": "https://www.google.com/finance/quote/bmv:ge"}, {"text": "XETR:GCP", "url": "https://www.google.com/finance/quote/gcp:xetr"}, {"text": "LON:GEC", "url": "https://www.google.com/finance/quote/gec:lon"}, {"text": "NYSE:GE", "url": "https://www.google.com/finance/quote/ge:nyse"}, {"text": "BCBA:GE", "url": "https://www.google.com/finance/quote/bcba:ge"}, {"text": "EPA:GNE", "url": "https://www.google.com/finance/quote/epa:gne"}, {"text": "SWX:GE", "url": "https://www.google.com/finance/quote/ge:swx"}, {"text": "MOEX:GE-RM", "url": "https://www.google.com/finance/quote/ge-rm:moex"}], "crunchbase_description": "General Electric offers infrastructure and financial services worldwide.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Segmentation", "field_count": 86}, {"field_name": "Feature (computer vision)", "field_count": 46}, {"field_name": "Reinforcement learning", "field_count": 40}, {"field_name": "Receiver operating characteristic", "field_count": 37}, {"field_name": "Iterative reconstruction", "field_count": 36}, {"field_name": "Deep learning", "field_count": 34}, {"field_name": "Convolutional neural network", "field_count": 31}, {"field_name": "Cluster analysis", "field_count": 28}, {"field_name": "Robot", "field_count": 23}, {"field_name": "Inference", "field_count": 21}], "clusters": [{"cluster_id": 11234, "cluster_count": 27}, {"cluster_id": 3995, "cluster_count": 22}, {"cluster_id": 1798, "cluster_count": 21}, {"cluster_id": 31814, "cluster_count": 19}, {"cluster_id": 7391, "cluster_count": 18}, {"cluster_id": 690, "cluster_count": 18}, {"cluster_id": 35442, "cluster_count": 16}, {"cluster_id": 41358, "cluster_count": 15}, {"cluster_id": 13150, "cluster_count": 14}, {"cluster_id": 298, "cluster_count": 14}], "company_references": [{"ref_CSET_id": 785, "referenced_count": 1558}, {"ref_CSET_id": 101, "referenced_count": 875}, {"ref_CSET_id": 163, "referenced_count": 527}, {"ref_CSET_id": 87, "referenced_count": 296}, {"ref_CSET_id": 115, "referenced_count": 136}, {"ref_CSET_id": 789, "referenced_count": 114}, {"ref_CSET_id": 184, "referenced_count": 67}, {"ref_CSET_id": 127, "referenced_count": 66}, {"ref_CSET_id": 201, "referenced_count": 56}, {"ref_CSET_id": 6, "referenced_count": 46}], "tasks": [{"referent": "classification", "task_count": 353}, {"referent": "segmentation", "task_count": 149}, {"referent": "disease_detection", "task_count": 129}, {"referent": "image_processing", "task_count": 97}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 87}, {"referent": "image_analysis", "task_count": 86}, {"referent": "image_restoration", "task_count": 82}, {"referent": "feature_selection", "task_count": 57}, {"referent": "image_registration", "task_count": 51}, {"referent": "robots", "task_count": 47}], "methods": [{"referent": "vqa_models", "method_count": 132}, {"referent": "double_q_learning", "method_count": 127}, {"referent": "recurrent_neural_networks", "method_count": 106}, {"referent": "mad_learning", "method_count": 102}, {"referent": "3d_representations", "method_count": 101}, {"referent": "convolutional_neural_networks", "method_count": 93}, {"referent": "q_learning", "method_count": 93}, {"referent": "griffin_lim_algorithm", "method_count": 89}, {"referent": "symbolic_deep_learning", "method_count": 75}, {"referent": "auto_classifier", "method_count": 73}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [13870, 14115, 13926, 13945, 13640, 12908, 12500, 10597, 9765, 6197, 83], "total": 121546, "isTopResearch": false, "rank": 2, "sp500_rank": 2, "fortune500_rank": 1}, "ai_publications": {"counts": [218, 174, 178, 163, 158, 184, 202, 255, 247, 116, 0], "total": 1895, "isTopResearch": false, "rank": 14, "sp500_rank": 12, "fortune500_rank": 7}, "ai_publications_growth": {"counts": [], "total": -9.978689462182704, "isTopResearch": false, "rank": 1264, "sp500_rank": 313, "fortune500_rank": 363}, "ai_pubs_top_conf": {"counts": [6, 5, 4, 5, 17, 19, 14, 9, 10, 2, 0], "total": 91, "isTopResearch": false, "rank": 29, "sp500_rank": 17, "fortune500_rank": 12}, "citation_counts": {"counts": [1735, 2546, 3202, 3751, 4516, 5492, 7223, 8996, 10067, 8238, 324], "total": 56090, "isTopResearch": false, "rank": 13, "sp500_rank": 9, "fortune500_rank": 9}, "cv_pubs": {"counts": [76, 63, 73, 68, 64, 54, 67, 91, 79, 48, 0], "total": 683, "isTopResearch": true, "rank": 15, "sp500_rank": 11, "fortune500_rank": 7}, "nlp_pubs": {"counts": [11, 10, 12, 14, 16, 25, 23, 21, 24, 9, 0], "total": 165, "isTopResearch": true, "rank": 16, "sp500_rank": 12, "fortune500_rank": 7}, "robotics_pubs": {"counts": [16, 18, 22, 13, 4, 17, 11, 17, 9, 8, 0], "total": 135, "isTopResearch": true, "rank": 19, "sp500_rank": 17, "fortune500_rank": 4}, "citations_per_article": {"counts": [7.958715596330276, 14.632183908045977, 17.98876404494382, 23.012269938650306, 28.582278481012658, 29.847826086956523, 35.757425742574256, 35.27843137254902, 40.75708502024292, 71.01724137931035, 0], "total": 29.598944591029024, "isTopResearch": false, "rank": 197, "sp500_rank": 48, "fortune500_rank": 58}}, "patents": {"ai_patents": {"counts": [14, 19, 23, 76, 130, 184, 192, 119, 54, 5, 0], "total": 816, "table": null, "rank": 36, "sp500_rank": 29, "fortune500_rank": 8}, "ai_patents_growth": {"counts": [], "total": 2.621818097361576, "table": null, "rank": 354, "sp500_rank": 166, "fortune500_rank": 117}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [140, 190, 230, 760, 1300, 1840, 1920, 1190, 540, 50, 0], "total": 8160, "table": null, "rank": 36, "sp500_rank": 29, "fortune500_rank": 8}, "Physical_Sciences_and_Engineering": {"counts": [4, 0, 2, 9, 15, 7, 7, 7, 4, 0, 0], "total": 55, "table": null, "rank": 8, "sp500_rank": 6, "fortune500_rank": 4}, "Life_Sciences": {"counts": [4, 11, 2, 17, 26, 67, 92, 63, 21, 0, 0], "total": 303, "table": "industry", "rank": 5, "sp500_rank": 4, "fortune500_rank": 2}, "Security__eg_cybersecurity": {"counts": [1, 0, 0, 7, 3, 4, 8, 4, 3, 0, 0], "total": 30, "table": null, "rank": 36, "sp500_rank": 30, "fortune500_rank": 15}, "Transportation": {"counts": [1, 2, 3, 7, 10, 12, 9, 6, 0, 0, 0], "total": 50, "table": null, "rank": 43, "sp500_rank": 35, "fortune500_rank": 15}, "Industrial_and_Manufacturing": {"counts": [1, 0, 2, 6, 8, 22, 11, 17, 2, 1, 0], "total": 70, "table": "industry", "rank": 12, "sp500_rank": 10, "fortune500_rank": 3}, "Education": {"counts": [0, 0, 0, 2, 2, 1, 0, 1, 0, 0, 0], "total": 6, "table": null, "rank": 22, "sp500_rank": 16, "fortune500_rank": 7}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 23, "sp500_rank": 19, "fortune500_rank": 6}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 34, "sp500_rank": 26, "fortune500_rank": 8}, "Personal_Devices_and_Computing": {"counts": [3, 7, 8, 34, 53, 40, 50, 15, 8, 1, 0], "total": 219, "table": "industry", "rank": 36, "sp500_rank": 30, "fortune500_rank": 14}, "Banking_and_Finance": {"counts": [0, 1, 0, 1, 6, 4, 2, 5, 1, 0, 0], "total": 20, "table": null, "rank": 47, "sp500_rank": 37, "fortune500_rank": 19}, "Telecommunications": {"counts": [0, 1, 2, 9, 9, 20, 14, 4, 7, 1, 0], "total": 67, "table": "industry", "rank": 63, "sp500_rank": 52, "fortune500_rank": 24}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 55, "sp500_rank": 41, "fortune500_rank": 26}, "Business": {"counts": [3, 3, 5, 8, 14, 17, 14, 5, 1, 0, 0], "total": 70, "table": "industry", "rank": 38, "sp500_rank": 30, "fortune500_rank": 16}, "Energy_Management": {"counts": [2, 0, 5, 6, 8, 9, 13, 8, 5, 0, 0], "total": 56, "table": null, "rank": 12, "sp500_rank": 12, "fortune500_rank": 2}, "Entertainment": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39, "fortune500_rank": 23}, "Language_Processing": {"counts": [0, 0, 0, 3, 4, 1, 4, 0, 0, 0, 0], "total": 12, "table": null, "rank": 34, "sp500_rank": 24, "fortune500_rank": 19}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 0], "total": 5, "table": null, "rank": 117, "sp500_rank": 72, "fortune500_rank": 34}, "Knowledge_Representation": {"counts": [2, 1, 1, 15, 14, 5, 12, 2, 0, 0, 0], "total": 52, "table": null, "rank": 24, "sp500_rank": 19, "fortune500_rank": 12}, "Planning_and_Scheduling": {"counts": [3, 3, 4, 8, 14, 16, 12, 5, 1, 0, 0], "total": 66, "table": "application", "rank": 27, "sp500_rank": 25, "fortune500_rank": 9}, "Control": {"counts": [4, 5, 7, 23, 30, 36, 26, 14, 6, 0, 0], "total": 151, "table": "application", "rank": 22, "sp500_rank": 17, "fortune500_rank": 7}, "Distributed_AI": {"counts": [1, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0], "total": 5, "table": null, "rank": 14, "sp500_rank": 12, "fortune500_rank": 9}, "Robotics": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14, "fortune500_rank": 8}, "Computer_Vision": {"counts": [1, 6, 3, 25, 49, 85, 95, 69, 27, 2, 0], "total": 362, "table": "application", "rank": 25, "sp500_rank": 19, "fortune500_rank": 6}, "Analytics_and_Algorithms": {"counts": [3, 2, 3, 7, 7, 23, 39, 15, 6, 0, 0], "total": 105, "table": "application", "rank": 13, "sp500_rank": 11, "fortune500_rank": 5}, "Measuring_and_Testing": {"counts": [1, 1, 3, 9, 15, 25, 27, 22, 7, 0, 0], "total": 110, "table": "application", "rank": 22, "sp500_rank": 17, "fortune500_rank": 9}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 9038, "rank": 55, "sp500_rank": 42, "fortune500_rank": 36}, "ai_jobs": {"counts": null, "total": 616, "rank": 87, "sp500_rank": 59, "fortune500_rank": 45}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "General Electric Company (GE) is an American multinational conglomerate incorporated in New York City and headquartered in Boston. As of 2018, the company operates through the following segments: aviation, healthcare, power, renewable energy, digital industry, additive manufacturing and venture capital and finance.", "wikipedia_link": "https://en.wikipedia.org/wiki/General_Electric", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 328, "country": "United States", "website": "http://www.americanexpress.com", "crunchbase": {"text": "a998e3ab-9586-6be8-22d7-9c7f94668fe6", "url": "https://www.crunchbase.com/organization/americanexpress"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/american-express"], "stage": "Mature", "name": "American Express", "patent_name": "american express", "continent": "North America", "local_logo": "american_express.png", "aliases": "American Express Co; American Express Company; Amex", "permid_links": [{"text": 4295903329, "url": "https://permid.org/1-4295903329"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AXP", "url": "https://www.google.com/finance/quote/axp:nyse"}], "market_full": [{"text": "BMV:AXP", "url": "https://www.google.com/finance/quote/axp:bmv"}, {"text": "FRA:AXP", "url": "https://www.google.com/finance/quote/axp:fra"}, {"text": "SGO:AXP", "url": "https://www.google.com/finance/quote/axp:sgo"}, {"text": "NYSE:AXP", "url": "https://www.google.com/finance/quote/axp:nyse"}, {"text": "BCBA:AXP", "url": "https://www.google.com/finance/quote/axp:bcba"}, {"text": "MEX:AXP", "url": "https://www.google.com/finance/quote/axp:mex"}, {"text": "MOEX:AXP-RM", "url": "https://www.google.com/finance/quote/axp-rm:moex"}, {"text": "VIE:AXP", "url": "https://www.google.com/finance/quote/axp:vie"}], "crunchbase_description": "American Express is a global financial services company best known for its credit card, charge card, and traveler\u2019s cheque businesses.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Natural language", "field_count": 2}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Automatic summarization", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Query language", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}, {"field_name": "Pooling", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "Ranking", "field_count": 1}, {"field_name": "Semantics", "field_count": 1}], "clusters": [{"cluster_id": 9564, "cluster_count": 2}, {"cluster_id": 1149, "cluster_count": 1}, {"cluster_id": 42270, "cluster_count": 1}, {"cluster_id": 4379, "cluster_count": 1}, {"cluster_id": 13494, "cluster_count": 1}, {"cluster_id": 4358, "cluster_count": 1}, {"cluster_id": 6016, "cluster_count": 1}, {"cluster_id": 14889, "cluster_count": 1}, {"cluster_id": 17399, "cluster_count": 1}, {"cluster_id": 16537, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 19}, {"ref_CSET_id": 163, "referenced_count": 13}, {"ref_CSET_id": 792, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 5}, {"ref_CSET_id": 787, "referenced_count": 4}, {"ref_CSET_id": 21, "referenced_count": 2}, {"ref_CSET_id": 112, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 793, "referenced_count": 1}], "tasks": [{"referent": "multi_task_learning", "task_count": 2}, {"referent": "steering_control", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "component_classification", "task_count": 1}, {"referent": "video_similarity", "task_count": 1}, {"referent": "online_nonnegative_cp_decomposition", "task_count": 1}, {"referent": "graph_ranking", "task_count": 1}, {"referent": "summarization", "task_count": 1}, {"referent": "distributed_voting", "task_count": 1}, {"referent": "cloud_detection", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 3}, {"referent": "mad_learning", "method_count": 2}, {"referent": "representation_learning", "method_count": 1}, {"referent": "highway_layer", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "context2vec", "method_count": 1}, {"referent": "sequence_to_sequence_models", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "distributed_reinforcement_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [10, 8, 15, 10, 13, 12, 8, 6, 7, 4, 1], "total": 94, "isTopResearch": false, "rank": 518, "sp500_rank": 297, "fortune500_rank": 193}, "ai_publications": {"counts": [0, 1, 0, 0, 4, 2, 1, 1, 3, 0, 0], "total": 12, "isTopResearch": false, "rank": 384, "sp500_rank": 205, "fortune500_rank": 114}, "ai_publications_growth": {"counts": [], "total": 33.333333333333336, "isTopResearch": false, "rank": 86, "sp500_rank": 43, "fortune500_rank": 27}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [4, 6, 1, 3, 2, 7, 19, 18, 16, 14, 1], "total": 91, "isTopResearch": false, "rank": 518, "sp500_rank": 224, "fortune500_rank": 143}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 2, 2, 0, 1, 2, 0, 0], "total": 7, "isTopResearch": true, "rank": 117, "sp500_rank": 74, "fortune500_rank": 33}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 6.0, 0, 0, 0.5, 3.5, 19.0, 18.0, 5.333333333333333, 0, 0], "total": 7.583333333333333, "isTopResearch": false, "rank": 621, "sp500_rank": 238, "fortune500_rank": 180}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 9, 5, 8, 10, 3, 1, 0, 0], "total": 36, "table": null, "rank": 252, "sp500_rank": 143, "fortune500_rank": 81}, "ai_patents_growth": {"counts": [], "total": 5.0, "table": null, "rank": 347, "sp500_rank": 163, "fortune500_rank": 113}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 90, 50, 80, 100, 30, 10, 0, 0], "total": 360, "table": null, "rank": 252, "sp500_rank": 143, "fortune500_rank": 81}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 1, 1, 2, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 128, "sp500_rank": 88, "fortune500_rank": 48}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 4, 3, 6, 5, 1, 1, 0, 0], "total": 20, "table": "industry", "rank": 188, "sp500_rank": 106, "fortune500_rank": 70}, "Banking_and_Finance": {"counts": [0, 0, 0, 4, 1, 4, 3, 0, 0, 0, 0], "total": 12, "table": "industry", "rank": 67, "sp500_rank": 52, "fortune500_rank": 26}, "Telecommunications": {"counts": [0, 0, 0, 1, 1, 2, 2, 2, 0, 0, 0], "total": 8, "table": "industry", "rank": 185, "sp500_rank": 105, "fortune500_rank": 67}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 3, 2, 3, 3, 1, 0, 0, 0], "total": 12, "table": "industry", "rank": 140, "sp500_rank": 96, "fortune500_rank": 51}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 75, "sp500_rank": 50, "fortune500_rank": 39}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 160, "sp500_rank": 91, "fortune500_rank": 48}, "Knowledge_Representation": {"counts": [0, 0, 0, 2, 2, 2, 0, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 109, "sp500_rank": 68, "fortune500_rank": 50}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 2, 2, 0, 1, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 163, "sp500_rank": 110, "fortune500_rank": 55}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290, "sp500_rank": 156, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "sp500_rank": 196, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 223, "sp500_rank": 134, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 8957, "rank": 56, "sp500_rank": 43, "fortune500_rank": 37}, "ai_jobs": {"counts": null, "total": 1566, "rank": 25, "sp500_rank": 16, "fortune500_rank": 18}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "The American Express Company (Amex) is a multinational financial services corporation headquartered at 200 Vesey Street in the Financial District of Lower Manhattan in New York City. The company was founded in 1850 and is one of the 30 components of the Dow Jones Industrial Average. The company's logo, adopted in 1958, is a gladiator or centurion whose image appears on the company's well-known traveler's cheques, charge cards, and credit cards.", "wikipedia_link": "https://en.wikipedia.org/wiki/American_Express", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2322, "country": "United States", "website": "https://www.fiserv.com/", "crunchbase": {"text": "7b7e520c-b096-b774-d6cc-6bd6fd202d4b", "url": "https://www.crunchbase.com/organization/fiserv"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fiserv"], "stage": "Mature", "name": "Fiserv Inc", "patent_name": "fiserv inc", "continent": "North America", "local_logo": "fiserv_inc.png", "aliases": "Fiserv; Fiserv, Inc", "permid_links": [{"text": 4295906509, "url": "https://permid.org/1-4295906509"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:FISV", "url": "https://www.google.com/finance/quote/fisv:nasdaq"}], "market_full": [{"text": "BRN:FIV", "url": "https://www.google.com/finance/quote/brn:fiv"}, {"text": "DUS:FIV", "url": "https://www.google.com/finance/quote/dus:fiv"}, {"text": "VIE:FISV", "url": "https://www.google.com/finance/quote/fisv:vie"}, {"text": "HAM:FIV", "url": "https://www.google.com/finance/quote/fiv:ham"}, {"text": "FRA:FIV", "url": "https://www.google.com/finance/quote/fiv:fra"}, {"text": "GER:FIVX", "url": "https://www.google.com/finance/quote/fivx:ger"}, {"text": "STU:FIV", "url": "https://www.google.com/finance/quote/fiv:stu"}, {"text": "HAN:FIV", "url": "https://www.google.com/finance/quote/fiv:han"}, {"text": "NASDAQ:FISV", "url": "https://www.google.com/finance/quote/fisv:nasdaq"}, {"text": "LSE:0IP9", "url": "https://www.google.com/finance/quote/0ip9:lse"}, {"text": "MUN:FIV", "url": "https://www.google.com/finance/quote/fiv:mun"}, {"text": "BMV:FISV", "url": "https://www.google.com/finance/quote/bmv:fisv"}, {"text": "MOEX:FISV-RM", "url": "https://www.google.com/finance/quote/fisv-rm:moex"}, {"text": "MEX:FISV*", "url": "https://www.google.com/finance/quote/fisv*:mex"}, {"text": "SAO:F1IS34", "url": "https://www.google.com/finance/quote/f1is34:sao"}, {"text": "DEU:FISV", "url": "https://www.google.com/finance/quote/deu:fisv"}, {"text": "BER:FIV", "url": "https://www.google.com/finance/quote/ber:fiv"}], "crunchbase_description": "Fiserv is a provider of technology solutions to the financial services industry.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 2, 1, 1, 2, 2, 2, 1, 1, 0, 0], "total": 12, "isTopResearch": false, "rank": 907, "fortune500_rank": 317}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 8776, "rank": 57, "fortune500_rank": 38}, "ai_jobs": {"counts": null, "total": 291, "rank": 184, "fortune500_rank": 102}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Fiserv, Inc. is an American multinational Fortune 500 company known for providing Financial services, often Fintech, to banks and related foundations. The company's clients include banks, thrifts, credit unions, securities broker dealers, leasing and finance companies, and retailers. In October 2015, American Banker and BAI ranked the company third by revenue among technology providers to U.S. banks. Fiserv reported total revenue of $10.187 billion in 2019. In summer of 2018, Fiserv obtained the naming rights to the Fiserv Forum, home to the Milwaukee Bucks, for 25 years. Fiserv is also the owner of First Data since 2019, and by extension the Clover brand and products, meaning Fiserv is directly competing with Square, Inc. and Shopify in point of sale payment terminals for small businesses.", "wikipedia_link": "https://en.wikipedia.org/wiki/Fiserv", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 668, "country": "United States", "website": "https://www.spglobal.com/", "crunchbase": {"text": "70c237f1-acb9-b46e-b7ef-dcc6d4c7ae9a", "url": "https://www.crunchbase.com/organization/s-p-global"}, "child_crunchbase": [{"text": "46d41aaa-2ed5-a2b4-c0d2-cfda5ffbde96", "url": "https://www.crunchbase.com/organization/ihs-markit"}], "linkedin": ["https://www.linkedin.com/company/ihsmarkit", "https://www.linkedin.com/company/spglobal"], "stage": "Mature", "name": "S&P Global", "patent_name": "s&p global", "continent": "North America", "local_logo": "s&p_global.png", "aliases": "Mcgraw Hill Financial; S&P Global Inc", "permid_links": [{"text": 5042370971, "url": "https://permid.org/1-5042370971"}, {"text": 4295904495, "url": "https://permid.org/1-4295904495"}], "parent_info": null, "agg_child_info": "IHS Markit Ltd.", "unagg_child_info": null, "market_filt": [{"text": "NYSE:SPGI", "url": "https://www.google.com/finance/quote/nyse:spgi"}], "market_full": [{"text": "NYSE:SPGI", "url": "https://www.google.com/finance/quote/nyse:spgi"}], "crunchbase_description": "Say ''AAA!''. One of the big-three credit ratings agencies, S&P Global (formerly McGraw-Hill Financial) assigns companies.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Cluster analysis", "field_count": 3}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Graphical model", "field_count": 2}, {"field_name": "Orientation (computer vision)", "field_count": 1}, {"field_name": "Pattern recognition (psychology)", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Missing data", "field_count": 1}, {"field_name": "Dimensionality reduction", "field_count": 1}, {"field_name": "Font", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}], "clusters": [{"cluster_id": 7515, "cluster_count": 4}, {"cluster_id": 84758, "cluster_count": 2}, {"cluster_id": 9412, "cluster_count": 2}, {"cluster_id": 15731, "cluster_count": 1}, {"cluster_id": 3901, "cluster_count": 1}, {"cluster_id": 44536, "cluster_count": 1}, {"cluster_id": 405, "cluster_count": 1}, {"cluster_id": 49566, "cluster_count": 1}, {"cluster_id": 93086, "cluster_count": 1}, {"cluster_id": 52687, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 13}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 668, "referenced_count": 2}, {"ref_CSET_id": 2344, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 795, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "svbrdf_estimation", "task_count": 3}, {"referent": "seismic_analysis", "task_count": 3}, {"referent": "classification", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "binary_classification", "task_count": 2}, {"referent": "multivariate_time_series_imputation", "task_count": 2}, {"referent": "clustering", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "mim", "method_count": 2}, {"referent": "k_means_clustering", "method_count": 2}, {"referent": "semi_supervised_learning_methods", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "graph_models", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "clustering", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [52, 34, 48, 42, 45, 51, 52, 54, 47, 24, 0], "total": 449, "isTopResearch": false, "rank": 291, "fortune500_rank": 115}, "ai_publications": {"counts": [3, 1, 1, 1, 3, 1, 1, 4, 9, 0, 0], "total": 24, "isTopResearch": false, "rank": 273, "fortune500_rank": 82}, "ai_publications_growth": {"counts": [], "total": 108.33333333333333, "isTopResearch": false, "rank": 17, "fortune500_rank": 5}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "fortune500_rank": 59}, "citation_counts": {"counts": [0, 0, 1, 1, 3, 1, 2, 10, 6, 23, 0], "total": 47, "isTopResearch": false, "rank": 591, "fortune500_rank": 163}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "fortune500_rank": 54}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 2.0, 2.5, 0.6666666666666666, 0, 0], "total": 1.9583333333333333, "isTopResearch": false, "rank": 849, "fortune500_rank": 228}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 1, 1, 6, 2, 0, 0], "total": 11, "table": null, "rank": 394, "fortune500_rank": 126}, "ai_patents_growth": {"counts": [], "total": 250.0, "table": null, "rank": 33, "fortune500_rank": 3}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 10, 10, 60, 20, 0, 0], "total": 110, "table": null, "rank": 394, "fortune500_rank": 126}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 1, 1, 4, 1, 0, 0], "total": 8, "table": "industry", "rank": 273, "fortune500_rank": 99}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0], "total": 4, "table": "industry", "rank": 115, "fortune500_rank": 41}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0], "total": 5, "table": "industry", "rank": 213, "fortune500_rank": 72}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 162, "fortune500_rank": 70}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": "application", "rank": 214, "fortune500_rank": 70}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 8455, "rank": 58, "fortune500_rank": 39}, "ai_jobs": {"counts": null, "total": 2168, "rank": 15, "fortune500_rank": 12}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "S&P Global Inc. (prior to April 2016 McGraw Hill Financial, Inc., and prior to 2013 McGraw\u2013Hill Companies) is an American publicly traded corporation headquartered in Manhattan, New York City. Its primary areas of business are financial information and analytics. It is the parent company of S&P Global Ratings, S&P Global Market Intelligence, and S&P Global Platts, CRISIL, and is the majority owner of the S&P Dow Jones Indices joint venture. \"S&P\" is a shortening of \"Standard and Poor's\".", "wikipedia_link": "https://en.wikipedia.org/wiki/S%26P_Global", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 810, "country": null, "website": null, "crunchbase": {"text": null, "url": null}, "child_crunchbase": [{"text": "f03d3087-728a-2811-7fe0-69cab3e7bda8", "url": "https://www.crunchbase.com/organization/booz-allen-hamilton"}], "linkedin": ["https://www.linkedin.com/company/booz-allen-hamilton"], "stage": "Unknown", "name": "Pwc", "patent_name": " pwc ", "continent": null, "local_logo": null, "aliases": null, "permid_links": [{"text": 4296353850, "url": "https://permid.org/1-4296353850"}], "parent_info": null, "agg_child_info": "Booz Allen Hamilton", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 9}, {"field_name": "Face (geometry)", "field_count": 8}, {"field_name": "Artificial neural network", "field_count": 6}, {"field_name": "Deep learning", "field_count": 4}, {"field_name": "Natural language", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "False positive paradox", "field_count": 3}, {"field_name": "Anomaly detection", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "RGB color model", "field_count": 2}], "clusters": [{"cluster_id": 32827, "cluster_count": 15}, {"cluster_id": 57401, "cluster_count": 11}, {"cluster_id": 3064, "cluster_count": 7}, {"cluster_id": 2381, "cluster_count": 4}, {"cluster_id": 16940, "cluster_count": 4}, {"cluster_id": 4358, "cluster_count": 3}, {"cluster_id": 27034, "cluster_count": 3}, {"cluster_id": 8049, "cluster_count": 2}, {"cluster_id": 17094, "cluster_count": 2}, {"cluster_id": 21645, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 166}, {"ref_CSET_id": 163, "referenced_count": 141}, {"ref_CSET_id": 810, "referenced_count": 132}, {"ref_CSET_id": 87, "referenced_count": 75}, {"ref_CSET_id": 115, "referenced_count": 33}, {"ref_CSET_id": 127, "referenced_count": 20}, {"ref_CSET_id": 23, "referenced_count": 14}, {"ref_CSET_id": 184, "referenced_count": 13}, {"ref_CSET_id": 6, "referenced_count": 10}, {"ref_CSET_id": 245, "referenced_count": 10}], "tasks": [{"referent": "classification", "task_count": 24}, {"referent": "face_recognition", "task_count": 11}, {"referent": "object_detection", "task_count": 10}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 9}, {"referent": "malware_classification", "task_count": 8}, {"referent": "autonomous_vehicles", "task_count": 7}, {"referent": "heterogeneous_face_recognition", "task_count": 7}, {"referent": "human_activity_recognition", "task_count": 7}, {"referent": "image_processing", "task_count": 6}, {"referent": "adversarial_attack", "task_count": 5}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 15}, {"referent": "convolutional_neural_networks", "method_count": 14}, {"referent": "double_q_learning", "method_count": 11}, {"referent": "mad_learning", "method_count": 11}, {"referent": "vqa_models", "method_count": 6}, {"referent": "1d_cnn", "method_count": 6}, {"referent": "hit_detector", "method_count": 5}, {"referent": "3d_representations", "method_count": 5}, {"referent": "griffin_lim_algorithm", "method_count": 5}, {"referent": "dueling_network", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [90, 102, 97, 86, 74, 98, 107, 111, 89, 75, 1], "total": 930, "isTopResearch": false, "rank": 199}, "ai_publications": {"counts": [3, 6, 12, 17, 14, 21, 19, 24, 17, 5, 1], "total": 139, "isTopResearch": false, "rank": 100}, "ai_publications_growth": {"counts": [], "total": -24.479704162366705, "isTopResearch": false, "rank": 1363}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 2, 1, 1, 4, 5, 4, 0, 0], "total": 17, "isTopResearch": false, "rank": 87}, "citation_counts": {"counts": [12, 25, 36, 59, 77, 176, 333, 524, 594, 454, 10], "total": 2300, "isTopResearch": false, "rank": 121}, "cv_pubs": {"counts": [1, 3, 5, 11, 6, 10, 6, 8, 7, 3, 0], "total": 60, "isTopResearch": true, "rank": 76}, "nlp_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 3, 3, 2, 0], "total": 9, "isTopResearch": true, "rank": 99}, "robotics_pubs": {"counts": [0, 1, 3, 3, 2, 1, 2, 4, 2, 0, 0], "total": 18, "isTopResearch": true, "rank": 82}, "citations_per_article": {"counts": [4.0, 4.166666666666667, 3.0, 3.4705882352941178, 5.5, 8.380952380952381, 17.526315789473685, 21.833333333333332, 34.94117647058823, 90.8, 10.0], "total": 16.546762589928058, "isTopResearch": false, "rank": 374}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 6, 11, 2, 2, 0, 0], "total": 22, "table": null, "rank": 307}, "ai_patents_growth": {"counts": [], "total": 0.7575757575757578, "table": null, "rank": 357}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 60, 110, 20, 20, 0, 0], "total": 220, "table": null, "rank": 307}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0], "total": 3, "table": "industry", "rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 1, 3, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 305}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 4, 3, 1, 0, 0, 0], "total": 9, "table": "industry", "rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 3, 7, 1, 2, 0, 0], "total": 13, "table": "application", "rank": 224}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0], "total": 3, "table": "application", "rank": 209}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 8283, "rank": 59}, "ai_jobs": {"counts": null, "total": 2095, "rank": 17}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 831, "country": "United States", "website": "https://www.t-mobile.com/", "crunchbase": {"text": "9ae1effe-eeb7-b325-7a07-93b2ee97c033", "url": "https://www.crunchbase.com/organization/t-mobile"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/t-mobile"], "stage": "Mature", "name": "T-Mobile", "patent_name": "T-Mobile", "continent": "North America", "local_logo": "t-mobile.png", "aliases": "T-Mobile; T-Mobile Us, Inc; T-Mobile Usa, Inc", "permid_links": [{"text": 4295900188, "url": "https://permid.org/1-4295900188"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:TMUS", "url": "https://www.google.com/finance/quote/NASDAQ:TMUS"}], "market_full": [{"text": "DEU:TM5", "url": "https://www.google.com/finance/quote/DEU:TM5"}, {"text": "STU:TM5", "url": "https://www.google.com/finance/quote/STU:TM5"}, {"text": "LSE:0R2L", "url": "https://www.google.com/finance/quote/0R2L:LSE"}, {"text": "NASDAQ:TMUS", "url": "https://www.google.com/finance/quote/NASDAQ:TMUS"}, {"text": "BER:TM5", "url": "https://www.google.com/finance/quote/BER:TM5"}, {"text": "FRA:TM5", "url": "https://www.google.com/finance/quote/FRA:TM5"}, {"text": "SWX:TMUS", "url": "https://www.google.com/finance/quote/SWX:TMUS"}], "crunchbase_description": "T-Mobile is redefining the way consumers and businesses buy wireless services.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Robot", "field_count": 1}, {"field_name": "Applications of artificial intelligence", "field_count": 1}], "clusters": [{"cluster_id": 34709, "cluster_count": 1}, {"cluster_id": 9134, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 792, "referenced_count": 1}], "tasks": [{"referent": "advertising", "task_count": 1}, {"referent": "web_page_tagging", "task_count": 1}, {"referent": "object_reconstruction", "task_count": 1}, {"referent": "human_activity_recognition", "task_count": 1}, {"referent": "land_cover_mapping", "task_count": 1}], "methods": [{"referent": "schnet", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 10, 6, 4, 3, 4, 6, 5, 3, 4, 0], "total": 54, "isTopResearch": false, "rank": 604, "fortune500_rank": 224}, "ai_publications": {"counts": [2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 2, 2, 2, 0, 3, 2, 1, 0, 0], "total": 12, "isTopResearch": false, "rank": 740, "fortune500_rank": 200}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 2.0, 0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735, "fortune500_rank": 206}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 4, 13, 14, 15, 47, 8, 0, 0], "total": 101, "table": null, "rank": 160, "fortune500_rank": 49}, "ai_patents_growth": {"counts": [], "total": 76.05616605616606, "table": null, "rank": 150, "fortune500_rank": 33}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 40, 130, 140, 150, 470, 80, 0, 0], "total": 1010, "table": null, "rank": 160, "fortune500_rank": 49}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 2, 2, 4, 0, 0, 0], "total": 9, "table": "industry", "rank": 95, "fortune500_rank": 39}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "fortune500_rank": 20}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 4, 6, 7, 14, 2, 0, 0], "total": 34, "table": "industry", "rank": 143, "fortune500_rank": 51}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 172, "fortune500_rank": 60}, "Telecommunications": {"counts": [0, 0, 0, 4, 11, 11, 12, 40, 6, 0, 0], "total": 84, "table": "industry", "rank": 53, "fortune500_rank": 21}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 2, 4, 2, 7, 1, 0, 0], "total": 16, "table": "industry", "rank": 119, "fortune500_rank": 45}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], "total": 4, "table": "application", "rank": 127, "fortune500_rank": 37}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 1, 3, 4, 0, 0, 0], "total": 9, "table": "application", "rank": 78, "fortune500_rank": 40}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": null, "rank": 214, "fortune500_rank": 70}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 1, 1, 5, 0, 0, 0], "total": 8, "table": "application", "rank": 269, "fortune500_rank": 82}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 1, 4, 9, 0, 0, 0], "total": 15, "table": "application", "rank": 84, "fortune500_rank": 36}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "total": 4, "table": "application", "rank": 189, "fortune500_rank": 62}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 8264, "rank": 60, "fortune500_rank": 40}, "ai_jobs": {"counts": null, "total": 474, "rank": 121, "fortune500_rank": 68}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2409, "country": "United States", "website": "https://investor.mastercard.com/investor-relations/default.aspx", "crunchbase": {"text": "e9afab07-e0f4-4e15-8a2e-2e93901c89ee", "url": "https://www.crunchbase.com/organization/mastercard"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mastercard"], "stage": "Mature", "name": "Mastercard Inc.", "patent_name": "mastercard inc.", "continent": "North America", "local_logo": "mastercard_inc.png", "aliases": "Interbank Card Association; Mastercard; Mastercard Inc; Mastercard Incorporated; Mastercard International Incorporated", "permid_links": [{"text": 4295902520, "url": "https://permid.org/1-4295902520"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MA", "url": "https://www.google.com/finance/quote/ma:nyse"}], "market_full": [{"text": "NYSE:MA", "url": "https://www.google.com/finance/quote/ma:nyse"}, {"text": "LSE:0R2Z", "url": "https://www.google.com/finance/quote/0r2z:lse"}, {"text": "BER:M4I", "url": "https://www.google.com/finance/quote/ber:m4i"}, {"text": "SAO:MSCD34", "url": "https://www.google.com/finance/quote/mscd34:sao"}, {"text": "DEU:MA", "url": "https://www.google.com/finance/quote/deu:ma"}, {"text": "NYQ:MA", "url": "https://www.google.com/finance/quote/ma:nyq"}, {"text": "MEX:MA*", "url": "https://www.google.com/finance/quote/ma*:mex"}, {"text": "STU:M4I", "url": "https://www.google.com/finance/quote/m4i:stu"}, {"text": "HAN:M4I", "url": "https://www.google.com/finance/quote/han:m4i"}, {"text": "ASE:MA", "url": "https://www.google.com/finance/quote/ase:ma"}, {"text": "HAM:M4I", "url": "https://www.google.com/finance/quote/ham:m4i"}, {"text": "MCX:MA-RM", "url": "https://www.google.com/finance/quote/ma-rm:mcx"}, {"text": "FRA:M4I", "url": "https://www.google.com/finance/quote/fra:m4i"}, {"text": "BUE:MA", "url": "https://www.google.com/finance/quote/bue:ma"}, {"text": "DUS:M4I", "url": "https://www.google.com/finance/quote/dus:m4i"}, {"text": "GER:M4IX", "url": "https://www.google.com/finance/quote/ger:m4ix"}, {"text": "SWX:MA", "url": "https://www.google.com/finance/quote/ma:swx"}, {"text": "VIE:MAST", "url": "https://www.google.com/finance/quote/mast:vie"}, {"text": "BRN:M4I", "url": "https://www.google.com/finance/quote/brn:m4i"}, {"text": "MUN:M4I", "url": "https://www.google.com/finance/quote/m4i:mun"}], "crunchbase_description": "MasterCard is a provides payment processing products and solutions and related consulting services.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 4949, "cluster_count": 1}, {"cluster_id": 24333, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 806, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "anomaly_detection", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "speech_production", "task_count": 1}, {"referent": "system_identification", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 1, 0, 0, 2, 0, 1, 0, 1, 3, 0], "total": 9, "isTopResearch": false, "rank": 958, "fortune500_rank": 330}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 3, 2, 0], "total": 8, "isTopResearch": false, "rank": 782, "fortune500_rank": 210}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0.0, 0, 0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735, "fortune500_rank": 206}}, "patents": {"ai_patents": {"counts": [5, 22, 5, 9, 14, 15, 17, 41, 14, 0, 0], "total": 142, "table": null, "rank": 132, "fortune500_rank": 43}, "ai_patents_growth": {"counts": [], "total": 53.8842203548086, "table": null, "rank": 193, "fortune500_rank": 52}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [50, 220, 50, 90, 140, 150, 170, 410, 140, 0, 0], "total": 1420, "table": null, "rank": 132, "fortune500_rank": 43}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 2, 2, 0, 4, 1, 2, 3, 1, 0, 0], "total": 15, "table": "industry", "rank": 72, "fortune500_rank": 33}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 5, 3, 2, 10, 5, 12, 16, 2, 0, 0], "total": 55, "table": "industry", "rank": 108, "fortune500_rank": 43}, "Banking_and_Finance": {"counts": [4, 17, 2, 5, 9, 11, 9, 18, 7, 0, 0], "total": 82, "table": "industry", "rank": 15, "fortune500_rank": 7}, "Telecommunications": {"counts": [0, 3, 1, 2, 5, 1, 5, 15, 1, 0, 0], "total": 33, "table": "industry", "rank": 99, "fortune500_rank": 42}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": null, "rank": 55, "fortune500_rank": 26}, "Business": {"counts": [2, 10, 3, 5, 5, 3, 4, 13, 4, 0, 0], "total": 49, "table": "industry", "rank": 55, "fortune500_rank": 24}, "Energy_Management": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "fortune500_rank": 43}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": "application", "rank": 139, "fortune500_rank": 43}, "Knowledge_Representation": {"counts": [2, 3, 2, 1, 4, 4, 1, 4, 1, 0, 0], "total": 22, "table": "application", "rank": 50, "fortune500_rank": 26}, "Planning_and_Scheduling": {"counts": [1, 4, 2, 4, 2, 0, 2, 7, 1, 0, 0], "total": 23, "table": "application", "rank": 76, "fortune500_rank": 28}, "Control": {"counts": [0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212, "fortune500_rank": 73}, "Distributed_AI": {"counts": [0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 23, "fortune500_rank": 13}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 2, 4, 2, 8, 2, 0, 0], "total": 19, "table": "application", "rank": 194, "fortune500_rank": 54}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 8108, "rank": 61, "fortune500_rank": 41}, "ai_jobs": {"counts": null, "total": 542, "rank": 105, "fortune500_rank": 59}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Mastercard Incorporated (stylized as MasterCard from 1979 to 2016 and mastercard since 2016) is an American multinational financial services corporation headquartered in the Mastercard International Global Headquarters in Purchase, New York, United States. The Global Operations Headquarters is located in O'Fallon, Missouri, United States, a municipality of St. Charles County, Missouri. Throughout the world, its principal business is to process payments between the banks of merchants and the card-issuing banks or credit unions of the purchasers who use the \"Mastercard\" brand debit, credit and prepaid cards to make purchases. Mastercard Worldwide has been a publicly traded company since 2006. Prior to its initial public offering, Mastercard Worldwide was a cooperative owned by the more than 25,000 financial institutions that issue its branded cards.", "wikipedia_link": "https://en.wikipedia.org/wiki/Mastercard", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1230, "country": "United Kingdom", "website": "https://www.barclays.co.uk/", "crunchbase": {"text": "8b4b73f6-f945-4d33-994d-ce87bc56365d", "url": "https://www.crunchbase.com/organization/barclays-plc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/barclays-bank"], "stage": "Mature", "name": "Barclays", "patent_name": "Barclays", "continent": "Europe", "local_logo": "barclays.png", "aliases": "Barclays; Barclays Bank Uk Plc", "permid_links": [{"text": 8589934333, "url": "https://permid.org/1-8589934333"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BCS", "url": "https://www.google.com/finance/quote/BCS:NYSE"}], "market_full": [{"text": "DUS:BCY", "url": "https://www.google.com/finance/quote/BCY:DUS"}, {"text": "HAM:BCY", "url": "https://www.google.com/finance/quote/BCY:HAM"}, {"text": "GER:BCYX", "url": "https://www.google.com/finance/quote/BCYX:GER"}, {"text": "SWX:BARC", "url": "https://www.google.com/finance/quote/BARC:SWX"}, {"text": "SAO:B1CS34", "url": "https://www.google.com/finance/quote/B1CS34:SAO"}, {"text": "DEU:BARC", "url": "https://www.google.com/finance/quote/BARC:DEU"}, {"text": "PKC:BCLYF", "url": "https://www.google.com/finance/quote/BCLYF:PKC"}, {"text": "ASE:BCS", "url": "https://www.google.com/finance/quote/ASE:BCS"}, {"text": "FRA:BCY2", "url": "https://www.google.com/finance/quote/BCY2:FRA"}, {"text": "BRN:BCY", "url": "https://www.google.com/finance/quote/BCY:BRN"}, {"text": "MEX:BCSN", "url": "https://www.google.com/finance/quote/BCSN:MEX"}, {"text": "LSE:BARC", "url": "https://www.google.com/finance/quote/BARC:LSE"}, {"text": "NYSE:BCS", "url": "https://www.google.com/finance/quote/BCS:NYSE"}, {"text": "DEU:BCY2", "url": "https://www.google.com/finance/quote/BCY2:DEU"}, {"text": "BUE:DBCS3", "url": "https://www.google.com/finance/quote/BUE:DBCS3"}, {"text": "MUN:BCY", "url": "https://www.google.com/finance/quote/BCY:MUN"}, {"text": "BUE:BCS3", "url": "https://www.google.com/finance/quote/BCS3:BUE"}, {"text": "BER:BCY2", "url": "https://www.google.com/finance/quote/BCY2:BER"}, {"text": "BER:BCY", "url": "https://www.google.com/finance/quote/BCY:BER"}, {"text": "FRA:BCY", "url": "https://www.google.com/finance/quote/BCY:FRA"}, {"text": "STU:BCY", "url": "https://www.google.com/finance/quote/BCY:STU"}, {"text": "HAN:BCY", "url": "https://www.google.com/finance/quote/BCY:HAN"}, {"text": "NYQ:BCS", "url": "https://www.google.com/finance/quote/BCS:NYQ"}, {"text": "MUN:BCY2", "url": "https://www.google.com/finance/quote/BCY2:MUN"}], "crunchbase_description": "Barclays is a global financial services company that provides various financial products and services worldwide.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Class (philosophy)", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Intrusion detection system", "field_count": 1}, {"field_name": "Ground truth", "field_count": 1}, {"field_name": "Fuzzy logic", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}], "clusters": [{"cluster_id": 89675, "cluster_count": 1}, {"cluster_id": 1154, "cluster_count": 1}, {"cluster_id": 57620, "cluster_count": 1}, {"cluster_id": 51264, "cluster_count": 1}, {"cluster_id": 59709, "cluster_count": 1}, {"cluster_id": 25177, "cluster_count": 1}, {"cluster_id": 20535, "cluster_count": 1}, {"cluster_id": 34709, "cluster_count": 1}, {"cluster_id": 5339, "cluster_count": 1}, {"cluster_id": 1149, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 115, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 277, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "image_analysis", "task_count": 1}, {"referent": "information_extraction", "task_count": 1}, {"referent": "steering_control", "task_count": 1}, {"referent": "disease_diagnosis", "task_count": 1}, {"referent": "disease_detection", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "environmental_sound_classification", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "rule_based_systems", "method_count": 1}, {"referent": "inception_a", "method_count": 1}, {"referent": "mrnn", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "adversarial_training", "method_count": 1}, {"referent": "random_erasing", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "adamw", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [28, 47, 81, 37, 27, 32, 20, 31, 23, 17, 0], "total": 343, "isTopResearch": false, "rank": 339, "sp500_rank": 220}, "ai_publications": {"counts": [0, 0, 0, 1, 1, 2, 1, 1, 0, 3, 0], "total": 9, "isTopResearch": false, "rank": 437, "sp500_rank": 224}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [6, 6, 6, 5, 11, 11, 8, 11, 22, 30, 1], "total": 117, "isTopResearch": false, "rank": 479, "sp500_rank": 213}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 5.0, 11.0, 5.5, 8.0, 11.0, 0, 10.0, 0], "total": 13.0, "isTopResearch": false, "rank": 445, "sp500_rank": 152}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 7945, "rank": 62, "sp500_rank": 44}, "ai_jobs": {"counts": null, "total": 778, "rank": 63, "sp500_rank": 43}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 201, "country": "Netherlands", "website": "http://www.slc.philips.com/home", "crunchbase": {"text": "03099c0f-ed6a-d0ea-bf12-1347b36ed611", "url": "https://www.crunchbase.com/organization/koninklijke-philips"}, "child_crunchbase": [{"text": "777530eb-ddd9-725b-0558-a8ad8f59f3ca", "url": "https://www.crunchbase.com/organization/philips-north-america"}], "linkedin": ["https://www.linkedin.com/company/philips"], "stage": "Mature", "name": "Philips", "patent_name": "philips", "continent": "Europe", "local_logo": "philips.png", "aliases": "Koninklijke Philips; Koninklijke Philips NV; Royal Philips", "permid_links": [{"text": 4295884721, "url": "https://permid.org/1-4295884721"}, {"text": 4296739105, "url": "https://permid.org/1-4296739105"}], "parent_info": "Royal Philips Electronics", "agg_child_info": "Philips Research North America", "unagg_child_info": "Agilent Technologies", "market_filt": [{"text": "NYSE:PHG", "url": "https://www.google.com/finance/quote/nyse:phg"}], "market_full": [{"text": "LSE:0LNG", "url": "https://www.google.com/finance/quote/0lng:lse"}, {"text": "AMS:PHIA", "url": "https://www.google.com/finance/quote/ams:phia"}, {"text": "XETR:PHI1", "url": "https://www.google.com/finance/quote/phi1:xetr"}, {"text": "MIL:PHIA", "url": "https://www.google.com/finance/quote/mil:phia"}, {"text": "NYSE:PHG", "url": "https://www.google.com/finance/quote/nyse:phg"}], "crunchbase_description": "Koninklijke Philips is a technology company that provides healthcare, consumer lifestyle, and lighting products, solutions, and services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Segmentation", "field_count": 143}, {"field_name": "Deep learning", "field_count": 42}, {"field_name": "Feature (computer vision)", "field_count": 34}, {"field_name": "Convolutional neural network", "field_count": 29}, {"field_name": "Motion estimation", "field_count": 24}, {"field_name": "Voxel", "field_count": 15}, {"field_name": "Support vector machine", "field_count": 14}, {"field_name": "Robustness (computer science)", "field_count": 14}, {"field_name": "Discriminative model", "field_count": 12}, {"field_name": "Iterative reconstruction", "field_count": 12}], "clusters": [{"cluster_id": 35442, "cluster_count": 34}, {"cluster_id": 10371, "cluster_count": 30}, {"cluster_id": 24792, "cluster_count": 29}, {"cluster_id": 11234, "cluster_count": 25}, {"cluster_id": 67845, "cluster_count": 24}, {"cluster_id": 6370, "cluster_count": 23}, {"cluster_id": 5141, "cluster_count": 19}, {"cluster_id": 2489, "cluster_count": 16}, {"cluster_id": 970, "cluster_count": 15}, {"cluster_id": 28719, "cluster_count": 14}], "company_references": [{"ref_CSET_id": 201, "referenced_count": 1107}, {"ref_CSET_id": 101, "referenced_count": 537}, {"ref_CSET_id": 163, "referenced_count": 389}, {"ref_CSET_id": 87, "referenced_count": 223}, {"ref_CSET_id": 789, "referenced_count": 161}, {"ref_CSET_id": 115, "referenced_count": 119}, {"ref_CSET_id": 785, "referenced_count": 97}, {"ref_CSET_id": 184, "referenced_count": 80}, {"ref_CSET_id": 127, "referenced_count": 36}, {"ref_CSET_id": 6, "referenced_count": 30}], "tasks": [{"referent": "classification", "task_count": 247}, {"referent": "segmentation", "task_count": 197}, {"referent": "ultrasound", "task_count": 91}, {"referent": "image_registration", "task_count": 79}, {"referent": "disease_detection", "task_count": 76}, {"referent": "image_restoration", "task_count": 52}, {"referent": "image_analysis", "task_count": 52}, {"referent": "image_processing", "task_count": 49}, {"referent": "motion_detection", "task_count": 33}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 33}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 121}, {"referent": "double_q_learning", "method_count": 106}, {"referent": "auto_classifier", "method_count": 81}, {"referent": "vqa_models", "method_count": 75}, {"referent": "symbolic_deep_learning", "method_count": 71}, {"referent": "recurrent_neural_networks", "method_count": 62}, {"referent": "1d_cnn", "method_count": 55}, {"referent": "3d_representations", "method_count": 55}, {"referent": "q_learning", "method_count": 50}, {"referent": "mad_learning", "method_count": 49}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1576, 1694, 1704, 1616, 1684, 1444, 1343, 1313, 1273, 1092, 5], "total": 14744, "isTopResearch": false, "rank": 27}, "ai_publications": {"counts": [94, 91, 111, 100, 93, 134, 155, 142, 134, 66, 0], "total": 1120, "isTopResearch": false, "rank": 22}, "ai_publications_growth": {"counts": [], "total": -21.58905608260379, "isTopResearch": false, "rank": 1340}, "ai_pubs_top_conf": {"counts": [2, 2, 3, 3, 4, 17, 6, 3, 0, 0, 0], "total": 40, "isTopResearch": false, "rank": 48}, "citation_counts": {"counts": [878, 1183, 1427, 1699, 1968, 2499, 3418, 4606, 5479, 4191, 148], "total": 27496, "isTopResearch": false, "rank": 23}, "cv_pubs": {"counts": [61, 52, 63, 43, 39, 71, 81, 71, 69, 36, 0], "total": 586, "isTopResearch": true, "rank": 19}, "nlp_pubs": {"counts": [5, 5, 5, 8, 7, 14, 19, 9, 7, 1, 0], "total": 80, "isTopResearch": true, "rank": 31}, "robotics_pubs": {"counts": [3, 3, 0, 5, 0, 2, 0, 3, 2, 2, 0], "total": 20, "isTopResearch": true, "rank": 77}, "citations_per_article": {"counts": [9.340425531914894, 13.0, 12.855855855855856, 16.99, 21.161290322580644, 18.649253731343283, 22.051612903225806, 32.436619718309856, 40.88805970149254, 63.5, 0], "total": 24.55, "isTopResearch": false, "rank": 245}}, "patents": {"ai_patents": {"counts": [41, 36, 38, 76, 131, 211, 189, 156, 44, 0, 0], "total": 922, "table": null, "rank": 29}, "ai_patents_growth": {"counts": [], "total": 11.06061484846623, "table": null, "rank": 328}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [410, 360, 380, 760, 1310, 2110, 1890, 1560, 440, 0, 0], "total": 9220, "table": null, "rank": 29}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0], "total": 3, "table": null, "rank": 105}, "Life_Sciences": {"counts": [33, 31, 34, 59, 92, 158, 122, 91, 30, 0, 0], "total": 650, "table": "industry", "rank": 2}, "Security__eg_cybersecurity": {"counts": [4, 2, 2, 4, 4, 3, 8, 2, 0, 0, 0], "total": 29, "table": "industry", "rank": 39}, "Transportation": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 180}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 4, 1, 3, 0, 0, 0, 0], "total": 9, "table": null, "rank": 76}, "Education": {"counts": [2, 0, 0, 1, 0, 3, 1, 2, 0, 0, 0], "total": 9, "table": null, "rank": 13}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [11, 17, 19, 19, 35, 34, 28, 12, 6, 0, 0], "total": 181, "table": "industry", "rank": 47}, "Banking_and_Finance": {"counts": [0, 1, 0, 1, 0, 5, 0, 0, 0, 0, 0], "total": 7, "table": null, "rank": 88}, "Telecommunications": {"counts": [2, 1, 4, 5, 5, 8, 6, 3, 1, 0, 0], "total": 35, "table": "industry", "rank": 96}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 55}, "Business": {"counts": [1, 3, 5, 3, 8, 9, 2, 3, 2, 0, 0], "total": 36, "table": "industry", "rank": 69}, "Energy_Management": {"counts": [0, 0, 0, 2, 2, 0, 1, 0, 1, 0, 0], "total": 6, "table": null, "rank": 70}, "Entertainment": {"counts": [0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 32}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [2, 1, 0, 5, 5, 4, 0, 0, 0, 0, 0], "total": 17, "table": null, "rank": 28}, "Speech_Processing": {"counts": [0, 0, 0, 2, 1, 4, 4, 3, 0, 0, 0], "total": 14, "table": null, "rank": 69}, "Knowledge_Representation": {"counts": [0, 0, 2, 4, 8, 10, 6, 3, 0, 0, 0], "total": 33, "table": "application", "rank": 31}, "Planning_and_Scheduling": {"counts": [1, 2, 5, 2, 6, 6, 1, 3, 1, 0, 0], "total": 27, "table": "application", "rank": 64}, "Control": {"counts": [0, 0, 1, 1, 1, 3, 5, 3, 0, 0, 0], "total": 14, "table": null, "rank": 116}, "Distributed_AI": {"counts": [0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0], "total": 3, "table": null, "rank": 23}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [13, 5, 12, 19, 54, 82, 80, 58, 14, 0, 0], "total": 337, "table": "application", "rank": 28}, "Analytics_and_Algorithms": {"counts": [21, 21, 15, 32, 27, 49, 39, 31, 11, 0, 0], "total": 246, "table": "application", "rank": 5}, "Measuring_and_Testing": {"counts": [3, 4, 2, 5, 15, 21, 20, 15, 5, 0, 0], "total": 90, "table": "application", "rank": 30}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 7939, "rank": 63}, "ai_jobs": {"counts": null, "total": 405, "rank": 140}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Koninklijke Philips N.V. (literally Royal Philips, commonly shortened to Philips, stylized in its logo as PHILIPS) is a Dutch multinational conglomerate corporation that was founded in Eindhoven. Since 1997, it has been mostly headquartered in Amsterdam, though the Benelux headquarters is still in Eindhoven. Philips was formerly one of the largest electronics companies in the world, currently focused in the area of health technology, with other divisions being divested.", "wikipedia_link": "https://en.wikipedia.org/wiki/Philips", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2190, "country": "United States", "website": "http://usa.visa.com/", "crunchbase": {"text": "95b124ce-5927-50eb-d1ea-15aad4f20ce9", "url": "https://www.crunchbase.com/organization/visa"}, "child_crunchbase": [{"text": "6c8d84f3-9e95-8b70-ef4d-f9659f4fc073", "url": "https://www.crunchbase.com/organization/visa-research"}], "linkedin": ["https://www.linkedin.com/company/visa"], "stage": "Mature", "name": "Visa", "patent_name": "visa", "continent": "North America", "local_logo": "visa.png", "aliases": "Visa Inc; Visa, Inc", "permid_links": [{"text": 4298015179, "url": "https://permid.org/1-4298015179"}, {"text": 5082105316, "url": "https://permid.org/1-5082105316"}], "parent_info": null, "agg_child_info": "Visa Research", "unagg_child_info": null, "market_filt": [{"text": "NYSE:V", "url": "https://www.google.com/finance/quote/nyse:v"}], "market_full": [{"text": "MUN:3V64", "url": "https://www.google.com/finance/quote/3v64:mun"}, {"text": "NYQ:V", "url": "https://www.google.com/finance/quote/nyq:v"}, {"text": "HAN:3V64", "url": "https://www.google.com/finance/quote/3v64:han"}, {"text": "SGO:VCL", "url": "https://www.google.com/finance/quote/sgo:vcl"}, {"text": "VIE:VISA", "url": "https://www.google.com/finance/quote/vie:visa"}, {"text": "NYSE:V", "url": "https://www.google.com/finance/quote/nyse:v"}, {"text": "DEU:VA", "url": "https://www.google.com/finance/quote/deu:va"}, {"text": "ASE:V", "url": "https://www.google.com/finance/quote/ase:v"}, {"text": "SGO:V", "url": "https://www.google.com/finance/quote/sgo:v"}, {"text": "MEX:V*", "url": "https://www.google.com/finance/quote/mex:v*"}, {"text": "DUS:3V64", "url": "https://www.google.com/finance/quote/3v64:dus"}, {"text": "FRA:3V6", "url": "https://www.google.com/finance/quote/3v6:fra"}, {"text": "DEU:3V6", "url": "https://www.google.com/finance/quote/3v6:deu"}, {"text": "BER:3V6", "url": "https://www.google.com/finance/quote/3v6:ber"}, {"text": "BUE:V3", "url": "https://www.google.com/finance/quote/bue:v3"}, {"text": "STU:3V64", "url": "https://www.google.com/finance/quote/3v64:stu"}, {"text": "FRA:3V64", "url": "https://www.google.com/finance/quote/3v64:fra"}, {"text": "BER:3V64", "url": "https://www.google.com/finance/quote/3v64:ber"}, {"text": "UAX:V", "url": "https://www.google.com/finance/quote/uax:v"}, {"text": "BRN:3V64", "url": "https://www.google.com/finance/quote/3v64:brn"}, {"text": "SAO:VISA34", "url": "https://www.google.com/finance/quote/sao:visa34"}, {"text": "MCX:V-RM", "url": "https://www.google.com/finance/quote/mcx:v-rm"}, {"text": "SWX:V", "url": "https://www.google.com/finance/quote/swx:v"}, {"text": "LSE:0QZ0", "url": "https://www.google.com/finance/quote/0qz0:lse"}, {"text": "GER:VX,A", "url": "https://www.google.com/finance/quote/ger:vx,a"}, {"text": "HAM:3V64", "url": "https://www.google.com/finance/quote/3v64:ham"}, {"text": "MUN:3V6", "url": "https://www.google.com/finance/quote/3v6:mun"}], "crunchbase_description": "Visa is a multinational financial services company that facilitates electronic payment systems throughout the world.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 2}, {"field_name": "Fingerprint (computing)", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Random forest", "field_count": 2}, {"field_name": "Ensemble forecasting", "field_count": 2}, {"field_name": "Pruning (morphology)", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Handwriting", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}], "clusters": [{"cluster_id": 23422, "cluster_count": 4}, {"cluster_id": 1989, "cluster_count": 2}, {"cluster_id": 37500, "cluster_count": 2}, {"cluster_id": 2381, "cluster_count": 2}, {"cluster_id": 26998, "cluster_count": 2}, {"cluster_id": 8473, "cluster_count": 2}, {"cluster_id": 30906, "cluster_count": 2}, {"cluster_id": 10454, "cluster_count": 1}, {"cluster_id": 22388, "cluster_count": 1}, {"cluster_id": 27166, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 53}, {"ref_CSET_id": 163, "referenced_count": 50}, {"ref_CSET_id": 87, "referenced_count": 22}, {"ref_CSET_id": 115, "referenced_count": 16}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 21, "referenced_count": 5}, {"ref_CSET_id": 133, "referenced_count": 5}, {"ref_CSET_id": 833, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "image_interpretation", "task_count": 3}, {"referent": "relation_classification", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "visual_localization", "task_count": 2}, {"referent": "data_mining", "task_count": 2}, {"referent": "svbrdf_estimation", "task_count": 2}, {"referent": "language_identification", "task_count": 2}, {"referent": "speaker_verification", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 4}, {"referent": "logistic_regression", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "q_learning", "method_count": 3}, {"referent": "vqa_models", "method_count": 3}, {"referent": "twin_networks", "method_count": 3}, {"referent": "1d_cnn", "method_count": 3}, {"referent": "3d_sa", "method_count": 2}, {"referent": "multigrain", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 10, 9, 15, 20, 18, 23, 24, 21, 19, 0], "total": 164, "isTopResearch": false, "rank": 438, "fortune500_rank": 170}, "ai_publications": {"counts": [0, 1, 3, 3, 6, 7, 3, 9, 4, 6, 0], "total": 42, "isTopResearch": false, "rank": 198, "fortune500_rank": 63}, "ai_publications_growth": {"counts": [], "total": 64.81481481481482, "isTopResearch": false, "rank": 49, "fortune500_rank": 12}, "ai_pubs_top_conf": {"counts": [0, 1, 1, 1, 0, 0, 1, 1, 1, 2, 0], "total": 8, "isTopResearch": false, "rank": 127, "fortune500_rank": 40}, "citation_counts": {"counts": [0, 0, 1, 10, 29, 105, 240, 360, 409, 268, 7], "total": 1429, "isTopResearch": false, "rank": 165, "fortune500_rank": 49}, "cv_pubs": {"counts": [0, 0, 0, 0, 3, 1, 0, 2, 2, 1, 0], "total": 9, "isTopResearch": true, "rank": 217, "fortune500_rank": 62}, "nlp_pubs": {"counts": [0, 0, 1, 1, 0, 2, 1, 2, 1, 1, 0], "total": 9, "isTopResearch": true, "rank": 99, "fortune500_rank": 28}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0.0, 0.3333333333333333, 3.3333333333333335, 4.833333333333333, 15.0, 80.0, 40.0, 102.25, 44.666666666666664, 0], "total": 34.023809523809526, "isTopResearch": false, "rank": 160, "fortune500_rank": 45}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 3, 29, 59, 57, 31, 15, 0, 0], "total": 195, "table": null, "rank": 102, "fortune500_rank": 36}, "ai_patents_growth": {"counts": [], "total": 18.1481367552917, "table": null, "rank": 302, "fortune500_rank": 93}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 30, 290, 590, 570, 310, 150, 0, 0], "total": 1950, "table": null, "rank": 102, "fortune500_rank": 36}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 3, 11, 7, 3, 3, 0, 0], "total": 28, "table": "industry", "rank": 41, "fortune500_rank": 18}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 1, 17, 29, 28, 14, 4, 0, 0], "total": 94, "table": "industry", "rank": 78, "fortune500_rank": 33}, "Banking_and_Finance": {"counts": [0, 0, 1, 0, 9, 28, 26, 11, 4, 0, 0], "total": 79, "table": "industry", "rank": 16, "fortune500_rank": 8}, "Telecommunications": {"counts": [0, 0, 1, 1, 5, 15, 11, 4, 3, 0, 0], "total": 40, "table": "industry", "rank": 91, "fortune500_rank": 40}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 2, 15, 21, 19, 10, 2, 0, 0], "total": 69, "table": "industry", "rank": 40, "fortune500_rank": 17}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "fortune500_rank": 43}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 139, "fortune500_rank": 43}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 7, 10, 4, 7, 0, 0, 0], "total": 29, "table": "application", "rank": 34, "fortune500_rank": 19}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 10, 9, 4, 2, 1, 0, 0], "total": 26, "table": "application", "rank": 66, "fortune500_rank": 25}, "Control": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 212, "fortune500_rank": 73}, "Distributed_AI": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 36, "fortune500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 1, 0, 4, 12, 7, 12, 4, 0, 0], "total": 40, "table": "application", "rank": 133, "fortune500_rank": 39}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 173, "fortune500_rank": 70}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 7849, "rank": 64, "fortune500_rank": 42}, "ai_jobs": {"counts": null, "total": 783, "rank": 62, "fortune500_rank": 34}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Visa Inc. is an American multinational financial services corporation headquartered in Foster City, California, United States. It facilitates electronic funds transfers throughout the world, most commonly through Visa-branded credit cards, debit cards and prepaid cards. Visa is one of the world's most valuable companies.", "wikipedia_link": "https://en.wikipedia.org/wiki/Visa_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1796, "country": "United States", "website": "https://www.cvshealth.com/", "crunchbase": {"text": " 01eb04d7-5502-20f8-e18e-1fc5abd492e8", "url": "https://www.crunchbase.com/organization/cvs-caremark"}, "child_crunchbase": [{"text": "10876542-f5ef-1ba5-23fc-232a5b53f10d", "url": "https://www.crunchbase.com/organization/aetna"}], "linkedin": ["https://www.linkedin.com/company/aetna", "https://www.linkedin.com/company/cvs-health"], "stage": "Mature", "name": "Cvs Health", "patent_name": "cvs health", "continent": "North America", "local_logo": null, "aliases": "Cvs; Cvs Health Corporation; Cvs/Pharmacy", "permid_links": [{"text": 4295903286, "url": "https://permid.org/1-4295903286"}, {"text": 4295903627, "url": "https://permid.org/1-4295903627"}], "parent_info": null, "agg_child_info": "Aetna", "unagg_child_info": null, "market_filt": [{"text": "NYSE:CVS", "url": "https://www.google.com/finance/quote/CVS:NYSE"}], "market_full": [{"text": "MUN:CVS", "url": "https://www.google.com/finance/quote/CVS:MUN"}, {"text": "GER:CVSX", "url": "https://www.google.com/finance/quote/CVSX:GER"}, {"text": "ASE:CVS", "url": "https://www.google.com/finance/quote/ASE:CVS"}, {"text": "STU:CVS", "url": "https://www.google.com/finance/quote/CVS:STU"}, {"text": "DEU:CVS", "url": "https://www.google.com/finance/quote/CVS:DEU"}, {"text": "BRN:CVS", "url": "https://www.google.com/finance/quote/BRN:CVS"}, {"text": "SAO:CVSH34", "url": "https://www.google.com/finance/quote/CVSH34:SAO"}, {"text": "SGO:CVS", "url": "https://www.google.com/finance/quote/CVS:SGO"}, {"text": "DUS:CVS", "url": "https://www.google.com/finance/quote/CVS:DUS"}, {"text": "FRA:CVS", "url": "https://www.google.com/finance/quote/CVS:FRA"}, {"text": "MCX:CVS-RM", "url": "https://www.google.com/finance/quote/CVS-RM:MCX"}, {"text": "VIE:CVS", "url": "https://www.google.com/finance/quote/CVS:VIE"}, {"text": "NYSE:CVS", "url": "https://www.google.com/finance/quote/CVS:NYSE"}, {"text": "LSE:0HRS", "url": "https://www.google.com/finance/quote/0HRS:LSE"}, {"text": "NYQ:CVS", "url": "https://www.google.com/finance/quote/CVS:NYQ"}, {"text": "BER:CVS", "url": "https://www.google.com/finance/quote/BER:CVS"}, {"text": "SGO:CVSCL", "url": "https://www.google.com/finance/quote/CVSCL:SGO"}, {"text": "MEX:CVS", "url": "https://www.google.com/finance/quote/CVS:MEX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Decision support system", "field_count": 2}, {"field_name": "Analytics", "field_count": 2}, {"field_name": "Ranking", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Automatic summarization", "field_count": 1}, {"field_name": "Question answering", "field_count": 1}], "clusters": [{"cluster_id": 41074, "cluster_count": 3}, {"cluster_id": 43229, "cluster_count": 1}, {"cluster_id": 25351, "cluster_count": 1}, {"cluster_id": 27271, "cluster_count": 1}, {"cluster_id": 1149, "cluster_count": 1}, {"cluster_id": 23924, "cluster_count": 1}, {"cluster_id": 23354, "cluster_count": 1}, {"cluster_id": 44298, "cluster_count": 1}, {"cluster_id": 90120, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 201, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 792, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 2024, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "retrieval", "task_count": 3}, {"referent": "image_annotation", "task_count": 3}, {"referent": "visual_question_answering", "task_count": 3}, {"referent": "medical", "task_count": 3}, {"referent": "image_analysis", "task_count": 2}, {"referent": "question_generation", "task_count": 2}, {"referent": "diabetes_prediction", "task_count": 1}, {"referent": "survival_analysis", "task_count": 1}, {"referent": "data_visualization", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "bifpn", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "admm", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "bart", "method_count": 1}, {"referent": "ghm_r", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [50, 101, 100, 92, 68, 55, 52, 49, 49, 77, 1], "total": 694, "isTopResearch": false, "rank": 237, "sp500_rank": 164, "fortune500_rank": 91}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 7, 1, 3, 4, 0, 0], "total": 15, "isTopResearch": false, "rank": 346, "sp500_rank": 188, "fortune500_rank": 105}, "ai_publications_growth": {"counts": [], "total": 44.44444444444445, "isTopResearch": false, "rank": 71, "sp500_rank": 35, "fortune500_rank": 22}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 2, 13, 17, 30, 1], "total": 63, "isTopResearch": false, "rank": 556, "sp500_rank": 242, "fortune500_rank": 151}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 2.0, 4.333333333333333, 4.25, 0, 0], "total": 4.2, "isTopResearch": false, "rank": 732, "sp500_rank": 292, "fortune500_rank": 205}}, "patents": {"ai_patents": {"counts": [2, 0, 1, 1, 1, 1, 5, 11, 0, 0, 0], "total": 22, "table": null, "rank": 307, "sp500_rank": 160, "fortune500_rank": 106}, "ai_patents_growth": {"counts": [], "total": 173.33333333333334, "table": null, "rank": 57, "sp500_rank": 23, "fortune500_rank": 11}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [20, 0, 10, 10, 10, 10, 50, 110, 0, 0, 0], "total": 220, "table": null, "rank": 307, "sp500_rank": 160, "fortune500_rank": 106}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [2, 0, 0, 0, 1, 1, 1, 8, 0, 0, 0], "total": 13, "table": "industry", "rank": 70, "sp500_rank": 47, "fortune500_rank": 29}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 3, "table": null, "rank": 157, "sp500_rank": 102, "fortune500_rank": 58}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [2, 0, 0, 1, 1, 0, 3, 4, 0, 0, 0], "total": 11, "table": "industry", "rank": 250, "sp500_rank": 136, "fortune500_rank": 94}, "Banking_and_Finance": {"counts": [1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 103, "sp500_rank": 71, "fortune500_rank": 36}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 2, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 249, "sp500_rank": 129, "fortune500_rank": 95}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [1, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 233, "sp500_rank": 145, "fortune500_rank": 77}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "sp500_rank": 67, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "sp500_rank": 101, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "sp500_rank": 152, "fortune500_rank": 78}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0], "total": 5, "table": "application", "rank": 318, "sp500_rank": 158, "fortune500_rank": 96}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 7793, "rank": 65, "sp500_rank": 45, "fortune500_rank": 43}, "ai_jobs": {"counts": null, "total": 1701, "rank": 21, "sp500_rank": 13, "fortune500_rank": 15}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2224, "country": "United States", "website": "https://www.adp.com/", "crunchbase": {"text": "91638d36-44ab-c37f-2821-55046bbc042e", "url": "https://www.crunchbase.com/organization/adp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/adp"], "stage": "Mature", "name": "Automatic Data Processing", "patent_name": "automatic data processing", "continent": "North America", "local_logo": "automatic_data_processing.png", "aliases": "Adp; Automatic Data Processing, Inc", "permid_links": [{"text": 4295903514, "url": "https://permid.org/1-4295903514"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ADP", "url": "https://www.google.com/finance/quote/adp:nasdaq"}], "market_full": [{"text": "SAO:ADPR34", "url": "https://www.google.com/finance/quote/adpr34:sao"}, {"text": "DUS:ADP", "url": "https://www.google.com/finance/quote/adp:dus"}, {"text": "SGO:ADPCL", "url": "https://www.google.com/finance/quote/adpcl:sgo"}, {"text": "LSE:0HJI", "url": "https://www.google.com/finance/quote/0hji:lse"}, {"text": "DEU:AUD", "url": "https://www.google.com/finance/quote/aud:deu"}, {"text": "BUE:ADP3", "url": "https://www.google.com/finance/quote/adp3:bue"}, {"text": "VIE:ADP", "url": "https://www.google.com/finance/quote/adp:vie"}, {"text": "MEX:ADAP*", "url": "https://www.google.com/finance/quote/adap*:mex"}, {"text": "BER:ADP", "url": "https://www.google.com/finance/quote/adp:ber"}, {"text": "MUN:ADP", "url": "https://www.google.com/finance/quote/adp:mun"}, {"text": "FRA:ADP", "url": "https://www.google.com/finance/quote/adp:fra"}, {"text": "NASDAQ:ADP", "url": "https://www.google.com/finance/quote/adp:nasdaq"}, {"text": "GER:ADPX", "url": "https://www.google.com/finance/quote/adpx:ger"}, {"text": "SGO:ADP", "url": "https://www.google.com/finance/quote/adp:sgo"}, {"text": "HAN:ADP", "url": "https://www.google.com/finance/quote/adp:han"}, {"text": "BRN:ADP", "url": "https://www.google.com/finance/quote/adp:brn"}, {"text": "MCX:ADP-RM", "url": "https://www.google.com/finance/quote/adp-rm:mcx"}], "crunchbase_description": "ADP provides business outsourcing solutions that facilitate businesses in HR, payroll, and administration processes.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 1, 2, 0, 1, 1, 3, 2, 0], "total": 11, "isTopResearch": false, "rank": 924, "fortune500_rank": 321}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 2, 12, 17, 14, 2, 0, 0], "total": 48, "table": null, "rank": 221, "fortune500_rank": 69}, "ai_patents_growth": {"counts": [], "total": 174.67320261437908, "table": null, "rank": 55, "fortune500_rank": 10}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 20, 120, 170, 140, 20, 0, 0], "total": 480, "table": null, "rank": 221, "fortune500_rank": 69}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 157, "fortune500_rank": 58}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 6, 7, 8, 1, 0, 0], "total": 23, "table": "industry", "rank": 178, "fortune500_rank": 67}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 3, 3, 6, 1, 0, 0], "total": 14, "table": "industry", "rank": 60, "fortune500_rank": 23}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 2, 3, 0, 0, 0], "total": 6, "table": "industry", "rank": 204, "fortune500_rank": 77}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 1, 0, 0, 0, 8, 12, 11, 2, 0, 0], "total": 34, "table": "industry", "rank": 73, "fortune500_rank": 29}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 87, "fortune500_rank": 43}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 109, "fortune500_rank": 50}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 0, 0, 6, 8, 11, 2, 0, 0], "total": 28, "table": "application", "rank": 61, "fortune500_rank": 22}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 4, 3, 0, 0, 0], "total": 8, "table": "application", "rank": 269, "fortune500_rank": 82}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 7519, "rank": 66, "fortune500_rank": 44}, "ai_jobs": {"counts": null, "total": 374, "rank": 150, "fortune500_rank": 81}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Automatic Data Processing, Inc. (ADP) is an American provider of human resources management software and services.", "wikipedia_link": "https://en.wikipedia.org/wiki/ADP_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 327, "country": "United States", "website": "http://www.amd.com", "crunchbase": {"text": "2cfe46cc-8fab-be71-e75d-279342fbbfb7", "url": "https://www.crunchbase.com/organization/amd"}, "child_crunchbase": [{"text": "c3e5a994-4f3d-0e7f-6f21-21ff6a87635e", "url": "https://www.crunchbase.com/organization/xilinx"}], "linkedin": ["https://www.linkedin.com/company/amd", "https://www.linkedin.com/company/xilinx"], "stage": "Mature", "name": "AMD", "patent_name": "amd", "continent": "North America", "local_logo": "amd.png", "aliases": "Advanced Micro Devices; Advanced Micro Devices Inc", "permid_links": [{"text": 4295903297, "url": "https://permid.org/1-4295903297"}, {"text": 4295908502, "url": "https://permid.org/1-4295908502"}], "parent_info": "Qualcomm (Acquired)", "agg_child_info": "Xilinx", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:AMD", "url": "https://www.google.com/finance/quote/amd:nasdaq"}], "market_full": [{"text": "FWB:AMD", "url": "https://www.google.com/finance/quote/amd:fwb"}, {"text": "NASDAQ:AMD", "url": "https://www.google.com/finance/quote/amd:nasdaq"}, {"text": "XETR:AMD", "url": "https://www.google.com/finance/quote/amd:xetr"}, {"text": "HAN:AMD", "url": "https://www.google.com/finance/quote/amd:han"}, {"text": "DUS:AMD", "url": "https://www.google.com/finance/quote/amd:dus"}, {"text": "MOEX:AMD-RM", "url": "https://www.google.com/finance/quote/amd-rm:moex"}, {"text": "VIE:AMD", "url": "https://www.google.com/finance/quote/amd:vie"}, {"text": "MIL:AMD", "url": "https://www.google.com/finance/quote/amd:mil"}, {"text": "BER:AMD", "url": "https://www.google.com/finance/quote/amd:ber"}, {"text": "BCBA:AMD", "url": "https://www.google.com/finance/quote/amd:bcba"}, {"text": "FRA:AMD", "url": "https://www.google.com/finance/quote/amd:fra"}, {"text": "HAM:AMD", "url": "https://www.google.com/finance/quote/amd:ham"}, {"text": "MUN:AMD", "url": "https://www.google.com/finance/quote/amd:mun"}, {"text": "BMV:AMD", "url": "https://www.google.com/finance/quote/amd:bmv"}], "crunchbase_description": "Advanced Micro Devices (AMD) is a semiconductor company that designs and develops graphics units, processors, and media solutions.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 13}, {"field_name": "Convolutional neural network", "field_count": 7}, {"field_name": "Quantization (signal processing)", "field_count": 5}, {"field_name": "Deep learning", "field_count": 4}, {"field_name": "Inference", "field_count": 3}, {"field_name": "Segmentation", "field_count": 3}, {"field_name": "Prognostics", "field_count": 3}, {"field_name": "Pruning (morphology)", "field_count": 3}, {"field_name": "Biometrics", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}], "clusters": [{"cluster_id": 1621, "cluster_count": 26}, {"cluster_id": 19756, "cluster_count": 6}, {"cluster_id": 25609, "cluster_count": 4}, {"cluster_id": 5070, "cluster_count": 4}, {"cluster_id": 10424, "cluster_count": 4}, {"cluster_id": 3886, "cluster_count": 2}, {"cluster_id": 180, "cluster_count": 2}, {"cluster_id": 3797, "cluster_count": 2}, {"cluster_id": 17690, "cluster_count": 2}, {"cluster_id": 34653, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 267}, {"ref_CSET_id": 163, "referenced_count": 177}, {"ref_CSET_id": 87, "referenced_count": 95}, {"ref_CSET_id": 184, "referenced_count": 90}, {"ref_CSET_id": 327, "referenced_count": 73}, {"ref_CSET_id": 127, "referenced_count": 55}, {"ref_CSET_id": 115, "referenced_count": 51}, {"ref_CSET_id": 23, "referenced_count": 28}, {"ref_CSET_id": 161, "referenced_count": 27}, {"ref_CSET_id": 37, "referenced_count": 22}], "tasks": [{"referent": "classification", "task_count": 17}, {"referent": "image_processing", "task_count": 13}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 10}, {"referent": "object_detection", "task_count": 10}, {"referent": "inference_attack", "task_count": 9}, {"referent": "neural_network_compression", "task_count": 9}, {"referent": "computer_vision", "task_count": 9}, {"referent": "classification_tasks", "task_count": 8}, {"referent": "semantic_segmentation", "task_count": 7}, {"referent": "system_identification", "task_count": 7}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 45}, {"referent": "convolutional_neural_networks", "method_count": 21}, {"referent": "1d_cnn", "method_count": 16}, {"referent": "optimization", "method_count": 15}, {"referent": "vqa_models", "method_count": 14}, {"referent": "wgan_gp", "method_count": 14}, {"referent": "symbolic_deep_learning", "method_count": 13}, {"referent": "meta_learning_algorithms", "method_count": 12}, {"referent": "q_learning", "method_count": 11}, {"referent": "ggs_nns", "method_count": 10}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [203, 222, 193, 224, 207, 243, 226, 186, 172, 149, 2], "total": 2027, "isTopResearch": false, "rank": 124, "fortune500_rank": 48}, "ai_publications": {"counts": [3, 9, 3, 7, 11, 19, 22, 35, 33, 8, 0], "total": 150, "isTopResearch": false, "rank": 95, "fortune500_rank": 29}, "ai_publications_growth": {"counts": [], "total": -7.460317460317458, "isTopResearch": false, "rank": 1247, "fortune500_rank": 359}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 0, 0, 1, 0, 4, 7, 4, 0], "total": 17, "isTopResearch": false, "rank": 87, "fortune500_rank": 29}, "citation_counts": {"counts": [18, 20, 32, 33, 92, 209, 352, 563, 751, 627, 22], "total": 2719, "isTopResearch": false, "rank": 111, "fortune500_rank": 35}, "cv_pubs": {"counts": [3, 4, 1, 3, 3, 6, 3, 11, 11, 4, 0], "total": 49, "isTopResearch": true, "rank": 84, "fortune500_rank": 23}, "nlp_pubs": {"counts": [0, 1, 0, 0, 1, 1, 0, 2, 2, 0, 0], "total": 7, "isTopResearch": true, "rank": 117, "fortune500_rank": 33}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "fortune500_rank": 67}, "citations_per_article": {"counts": [6.0, 2.2222222222222223, 10.666666666666666, 4.714285714285714, 8.363636363636363, 11.0, 16.0, 16.085714285714285, 22.757575757575758, 78.375, 0], "total": 18.126666666666665, "isTopResearch": false, "rank": 345, "fortune500_rank": 108}}, "patents": {"ai_patents": {"counts": [0, 4, 0, 23, 58, 83, 46, 30, 8, 0, 0], "total": 252, "table": null, "rank": 87, "fortune500_rank": 28}, "ai_patents_growth": {"counts": [], "total": -12.085824557600716, "table": null, "rank": 1444, "fortune500_rank": 416}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 40, 0, 230, 580, 830, 460, 300, 80, 0, 0], "total": 2520, "table": null, "rank": 87, "fortune500_rank": 28}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 4, 0, 7, 29, 55, 28, 18, 3, 0, 0], "total": 144, "table": "industry", "rank": 55, "fortune500_rank": 23}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 2, 0, 2, 11, 3, 6, 5, 3, 0, 0], "total": 32, "table": "industry", "rank": 103, "fortune500_rank": 43}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": "industry", "rank": 45, "fortune500_rank": 19}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 3, 3, 0, 0, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 105, "fortune500_rank": 30}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 4, 1, 0, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 109, "fortune500_rank": 50}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 1, 0, 5, 6, 6, 3, 1, 0, 0, 0], "total": 22, "table": "application", "rank": 85, "fortune500_rank": 28}, "Distributed_AI": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 5, 9, 13, 12, 8, 3, 0, 0], "total": 50, "table": "application", "rank": 117, "fortune500_rank": 35}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 0, 4, 1, 2, 3, 0, 0, 0], "total": 11, "table": "application", "rank": 105, "fortune500_rank": 44}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": null, "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 7467, "rank": 67, "fortune500_rank": 45}, "ai_jobs": {"counts": null, "total": 123, "rank": 305, "fortune500_rank": 166}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 1993, "country": "Switzerland", "website": "https://www.ubs.com/", "crunchbase": {"text": "e1a29c26-a6c2-b208-6ee4-165cf83b1656", "url": "https://www.crunchbase.com/organization/ubs"}, "child_crunchbase": [{"text": "21b16b6f-0f9c-59dd-7a97-432c4f38ca49", "url": "https://www.crunchbase.com/organization/wealthfront"}], "linkedin": ["https://www.linkedin.com/company/ubs", "https://www.linkedin.com/company/wealthfront"], "stage": "Mature", "name": "Ubs Group", "patent_name": "UBS Group", "continent": "Europe", "local_logo": "ubs_group.png", "aliases": "UBS Group; Ubs Group Ag", "permid_links": [{"text": 5043337560, "url": "https://permid.org/1-5043337560"}, {"text": 5000612164, "url": "https://permid.org/1-5000612164"}], "parent_info": null, "agg_child_info": "Wealthfront Inc", "unagg_child_info": null, "market_filt": [{"text": "NYSE:UBS", "url": "https://www.google.com/finance/quote/NYSE:UBS"}], "market_full": [{"text": "SWX:UBSG", "url": "https://www.google.com/finance/quote/SWX:UBSG"}, {"text": "LSE:0R3T", "url": "https://www.google.com/finance/quote/0R3T:LSE"}, {"text": "NYSE:UBS", "url": "https://www.google.com/finance/quote/NYSE:UBS"}, {"text": "MUN:0UB", "url": "https://www.google.com/finance/quote/0UB:MUN"}, {"text": "STU:0UB", "url": "https://www.google.com/finance/quote/0UB:STU"}, {"text": "MEX:UBSN", "url": "https://www.google.com/finance/quote/MEX:UBSN"}, {"text": "FRA:0UB", "url": "https://www.google.com/finance/quote/0UB:FRA"}, {"text": "BRN:0UB", "url": "https://www.google.com/finance/quote/0UB:BRN"}, {"text": "NYQ:UBS", "url": "https://www.google.com/finance/quote/NYQ:UBS"}, {"text": "DEU:0UBN", "url": "https://www.google.com/finance/quote/0UBn:DEU"}, {"text": "DUS:0UB", "url": "https://www.google.com/finance/quote/0UB:DUS"}, {"text": "ASE:UBS", "url": "https://www.google.com/finance/quote/ASE:UBS"}, {"text": "HAM:0UB", "url": "https://www.google.com/finance/quote/0UB:HAM"}, {"text": "HAN:0UB", "url": "https://www.google.com/finance/quote/0UB:HAN"}, {"text": "SWX:UBSGE", "url": "https://www.google.com/finance/quote/SWX:UBSGE"}, {"text": "BER:0UB", "url": "https://www.google.com/finance/quote/0UB:BER"}, {"text": "SAO:UBSG34", "url": "https://www.google.com/finance/quote/SAO:UBSG34"}], "crunchbase_description": "UBS is a global financial services company that engages in the provision of financial management solutions.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Random forest", "field_count": 1}, {"field_name": "Ground truth", "field_count": 1}, {"field_name": "Smoothing", "field_count": 1}, {"field_name": "Driving simulator", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Precision and recall", "field_count": 1}, {"field_name": "Linear model", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}], "clusters": [{"cluster_id": 20889, "cluster_count": 2}, {"cluster_id": 23653, "cluster_count": 2}, {"cluster_id": 109, "cluster_count": 2}, {"cluster_id": 50080, "cluster_count": 1}, {"cluster_id": 28660, "cluster_count": 1}, {"cluster_id": 16550, "cluster_count": 1}, {"cluster_id": 19629, "cluster_count": 1}, {"cluster_id": 32856, "cluster_count": 1}, {"cluster_id": 2983, "cluster_count": 1}, {"cluster_id": 16876, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 25}, {"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 1126, "referenced_count": 3}, {"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 1993, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 21, "referenced_count": 2}], "tasks": [{"referent": "image_analysis", "task_count": 3}, {"referent": "representation_learning", "task_count": 2}, {"referent": "multi_task_learning", "task_count": 2}, {"referent": "fault_detection", "task_count": 2}, {"referent": "interactive_segmentation", "task_count": 1}, {"referent": "automatic_post_editing", "task_count": 1}, {"referent": "motion_retargeting", "task_count": 1}, {"referent": "image_inpainting", "task_count": 1}, {"referent": "super_resolution", "task_count": 1}, {"referent": "sentiment_detection", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 5}, {"referent": "vqa_models", "method_count": 3}, {"referent": "reinforcement_learning", "method_count": 2}, {"referent": "discriminators", "method_count": 2}, {"referent": "clustering", "method_count": 2}, {"referent": "video_sampling", "method_count": 1}, {"referent": "markov_chain_monte_carlo", "method_count": 1}, {"referent": "autoencoder", "method_count": 1}, {"referent": "hierarchical_vae", "method_count": 1}, {"referent": "attention_patterns", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [44, 68, 47, 45, 55, 39, 40, 53, 40, 33, 0], "total": 464, "isTopResearch": false, "rank": 287, "sp500_rank": 192}, "ai_publications": {"counts": [2, 0, 0, 0, 1, 2, 3, 3, 8, 3, 0], "total": 22, "isTopResearch": false, "rank": 286, "sp500_rank": 166}, "ai_publications_growth": {"counts": [], "total": 34.72222222222222, "isTopResearch": false, "rank": 83, "sp500_rank": 41}, "ai_pubs_top_conf": {"counts": [1, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0], "total": 5, "isTopResearch": false, "rank": 157, "sp500_rank": 75}, "citation_counts": {"counts": [62, 65, 58, 72, 98, 75, 97, 87, 126, 99, 4], "total": 843, "isTopResearch": false, "rank": 204, "sp500_rank": 113}, "cv_pubs": {"counts": [2, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "sp500_rank": 146}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [31.0, 0, 0, 0, 98.0, 37.5, 32.333333333333336, 29.0, 15.75, 33.0, 0], "total": 38.31818181818182, "isTopResearch": false, "rank": 140, "sp500_rank": 32}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 4, "table": null, "rank": 565, "sp500_rank": 235}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0], "total": 40, "table": null, "rank": 565, "sp500_rank": 235}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 7446, "rank": 68, "sp500_rank": 46}, "ai_jobs": {"counts": null, "total": 722, "rank": 70, "sp500_rank": 47}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 1922, "country": "Brazil", "website": "https://www.itau.com.br/", "crunchbase": {"text": " fe46efab-7a5d-4f87-2932-f76dce72f9ef ", "url": "https://www.crunchbase.com/organization/banco-itau"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/itau"], "stage": "Mature", "name": "Ita\u00fa Unibanco Holding", "patent_name": "Ita\u00fa Unibanco Holding", "continent": "South America", "local_logo": null, "aliases": "Ita\u00fa Unibanco Holding; Ita\u00fasa", "permid_links": [{"text": 4295859722, "url": "https://permid.org/1-4295859722"}], "parent_info": "Ita\u00fasa", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ITUB", "url": "https://www.google.com/finance/quote/ITUB:NYSE"}], "market_full": [{"text": "SAO:ITUB3", "url": "https://www.google.com/finance/quote/ITUB3:SAO"}, {"text": "MUN:BVXB", "url": "https://www.google.com/finance/quote/BVXB:MUN"}, {"text": "NYQ:ITUB", "url": "https://www.google.com/finance/quote/ITUB:NYQ"}, {"text": "BER:BVXB", "url": "https://www.google.com/finance/quote/BER:BVXB"}, {"text": "MEX:ITUBN", "url": "https://www.google.com/finance/quote/ITUBN:MEX"}, {"text": "BUE:ITUB3", "url": "https://www.google.com/finance/quote/BUE:ITUB3"}, {"text": "FRA:BVXB", "url": "https://www.google.com/finance/quote/BVXB:FRA"}, {"text": "SAO:ITUB4", "url": "https://www.google.com/finance/quote/ITUB4:SAO"}, {"text": "ASE:ITUB", "url": "https://www.google.com/finance/quote/ASE:ITUB"}, {"text": "DUS:BVXB", "url": "https://www.google.com/finance/quote/BVXB:DUS"}, {"text": "DEU:BVXB", "url": "https://www.google.com/finance/quote/BVXB:DEU"}, {"text": "NYSE:ITUB", "url": "https://www.google.com/finance/quote/ITUB:NYSE"}, {"text": "STU:BVXB", "url": "https://www.google.com/finance/quote/BVXB:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "sp500_rank": 446}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 7340, "rank": 69, "sp500_rank": 47}, "ai_jobs": {"counts": null, "total": 1272, "rank": 34, "sp500_rank": 22}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 800, "country": "Germany", "website": "http://www.bosch.com", "crunchbase": {"text": "dcf152a1-23fc-6a0e-9a76-68c3fc2ec472", "url": "https://www.crunchbase.com/organization/bosch"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bosch", "https://www.linkedin.com/company/bosch-research"], "stage": "Unknown", "name": "Bosch", "patent_name": "bosch", "continent": "Europe", "local_logo": "bosch.png", "aliases": "The Bosch Group", "permid_links": [{"text": 4295869214, "url": "https://permid.org/1-4295869214"}], "parent_info": null, "agg_child_info": "Bosch Research And Technology Center", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "The Bosch Group is a global supplier of technology and services.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Advanced driver assistance systems", "field_count": 37}, {"field_name": "Artificial neural network", "field_count": 36}, {"field_name": "Deep learning", "field_count": 36}, {"field_name": "Robustness (computer science)", "field_count": 33}, {"field_name": "Robot", "field_count": 29}, {"field_name": "Reinforcement learning", "field_count": 28}, {"field_name": "Pose", "field_count": 25}, {"field_name": "Convolutional neural network", "field_count": 23}, {"field_name": "Feature (computer vision)", "field_count": 19}, {"field_name": "Segmentation", "field_count": 18}], "clusters": [{"cluster_id": 2381, "cluster_count": 28}, {"cluster_id": 31686, "cluster_count": 19}, {"cluster_id": 19977, "cluster_count": 17}, {"cluster_id": 303, "cluster_count": 17}, {"cluster_id": 1764, "cluster_count": 17}, {"cluster_id": 56508, "cluster_count": 16}, {"cluster_id": 32715, "cluster_count": 16}, {"cluster_id": 7496, "cluster_count": 15}, {"cluster_id": 1609, "cluster_count": 15}, {"cluster_id": 23307, "cluster_count": 14}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2114}, {"ref_CSET_id": 800, "referenced_count": 1087}, {"ref_CSET_id": 163, "referenced_count": 814}, {"ref_CSET_id": 87, "referenced_count": 706}, {"ref_CSET_id": 115, "referenced_count": 277}, {"ref_CSET_id": 184, "referenced_count": 190}, {"ref_CSET_id": 127, "referenced_count": 170}, {"ref_CSET_id": 23, "referenced_count": 138}, {"ref_CSET_id": 37, "referenced_count": 108}, {"ref_CSET_id": 789, "referenced_count": 103}], "tasks": [{"referent": "classification", "task_count": 174}, {"referent": "autonomous_driving", "task_count": 168}, {"referent": "autonomous_vehicles", "task_count": 87}, {"referent": "robots", "task_count": 68}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 58}, {"referent": "object_detection", "task_count": 51}, {"referent": "classification_tasks", "task_count": 42}, {"referent": "image_processing", "task_count": 42}, {"referent": "image_recognition", "task_count": 36}, {"referent": "motion_planning", "task_count": 34}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 153}, {"referent": "vqa_models", "method_count": 86}, {"referent": "q_learning", "method_count": 73}, {"referent": "convolutional_neural_networks", "method_count": 66}, {"referent": "3d_representations", "method_count": 61}, {"referent": "optimization", "method_count": 53}, {"referent": "mad_learning", "method_count": 53}, {"referent": "double_q_learning", "method_count": 52}, {"referent": "ggs_nns", "method_count": 51}, {"referent": "auto_classifier", "method_count": 50}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [531, 558, 698, 733, 781, 758, 1022, 992, 1089, 791, 7], "total": 7960, "isTopResearch": false, "rank": 47, "sp500_rank": 42}, "ai_publications": {"counts": [29, 28, 75, 82, 106, 156, 209, 250, 249, 107, 0], "total": 1291, "isTopResearch": false, "rank": 20, "sp500_rank": 16}, "ai_publications_growth": {"counts": [], "total": -12.603629189805474, "isTopResearch": false, "rank": 1282, "sp500_rank": 326}, "ai_pubs_top_conf": {"counts": [1, 4, 3, 4, 14, 24, 31, 40, 34, 14, 0], "total": 169, "isTopResearch": false, "rank": 19, "sp500_rank": 13}, "citation_counts": {"counts": [206, 316, 519, 639, 1074, 1758, 3319, 5184, 6786, 4542, 158], "total": 24501, "isTopResearch": false, "rank": 29, "sp500_rank": 19}, "cv_pubs": {"counts": [7, 14, 20, 24, 36, 40, 57, 77, 61, 46, 0], "total": 382, "isTopResearch": true, "rank": 24, "sp500_rank": 18}, "nlp_pubs": {"counts": [1, 1, 6, 7, 5, 19, 16, 35, 31, 6, 0], "total": 127, "isTopResearch": true, "rank": 18, "sp500_rank": 13}, "robotics_pubs": {"counts": [13, 8, 19, 26, 22, 34, 34, 44, 46, 21, 0], "total": 267, "isTopResearch": true, "rank": 6, "sp500_rank": 5}, "citations_per_article": {"counts": [7.103448275862069, 11.285714285714286, 6.92, 7.7926829268292686, 10.132075471698114, 11.26923076923077, 15.880382775119617, 20.736, 27.253012048192772, 42.44859813084112, 0], "total": 18.978311386522076, "isTopResearch": false, "rank": 332, "sp500_rank": 102}}, "patents": {"ai_patents": {"counts": [15, 18, 23, 37, 105, 195, 378, 481, 170, 10, 0], "total": 1432, "table": null, "rank": 17, "sp500_rank": 14}, "ai_patents_growth": {"counts": [], "total": 68.93637226970559, "table": null, "rank": 159, "sp500_rank": 76}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [150, 180, 230, 370, 1050, 1950, 3780, 4810, 1700, 100, 0], "total": 14320, "table": null, "rank": 17, "sp500_rank": 14}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 0, 0, 4, 2, 7, 10, 7, 0, 0], "total": 31, "table": null, "rank": 20, "sp500_rank": 15}, "Life_Sciences": {"counts": [0, 0, 2, 0, 0, 8, 12, 9, 0, 0, 0], "total": 31, "table": null, "rank": 33, "sp500_rank": 25}, "Security__eg_cybersecurity": {"counts": [0, 1, 1, 2, 5, 10, 14, 23, 3, 1, 0], "total": 60, "table": null, "rank": 19, "sp500_rank": 15}, "Transportation": {"counts": [5, 12, 20, 20, 45, 68, 73, 72, 25, 0, 0], "total": 340, "table": "industry", "rank": 7, "sp500_rank": 6}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 6, 6, 35, 36, 11, 0, 0], "total": 94, "table": "industry", "rank": 7, "sp500_rank": 5}, "Education": {"counts": [0, 1, 0, 1, 0, 1, 4, 1, 0, 0, 0], "total": 8, "table": null, "rank": 18, "sp500_rank": 13}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 1, 3, 3, 5, 0, 0, 0, 0], "total": 12, "table": null, "rank": 13, "sp500_rank": 10}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 34, "sp500_rank": 26}, "Personal_Devices_and_Computing": {"counts": [3, 6, 4, 9, 22, 41, 81, 129, 35, 1, 0], "total": 331, "table": "industry", "rank": 27, "sp500_rank": 23}, "Banking_and_Finance": {"counts": [0, 0, 1, 3, 4, 5, 11, 6, 6, 0, 0], "total": 36, "table": null, "rank": 28, "sp500_rank": 22}, "Telecommunications": {"counts": [0, 5, 2, 2, 20, 32, 27, 31, 8, 3, 0], "total": 130, "table": "industry", "rank": 32, "sp500_rank": 29}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 55, "sp500_rank": 41}, "Business": {"counts": [0, 0, 3, 5, 4, 12, 7, 20, 5, 0, 0], "total": 56, "table": null, "rank": 50, "sp500_rank": 39}, "Energy_Management": {"counts": [1, 2, 0, 1, 2, 7, 11, 33, 8, 0, 0], "total": 65, "table": "industry", "rank": 9, "sp500_rank": 9}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 45, "sp500_rank": 29}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 10, "sp500_rank": 9}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 1, 3, 2, 0, 0, 0], "total": 6, "table": null, "rank": 20, "sp500_rank": 12}, "Language_Processing": {"counts": [0, 1, 0, 0, 3, 2, 0, 1, 0, 0, 0], "total": 7, "table": null, "rank": 45, "sp500_rank": 34}, "Speech_Processing": {"counts": [0, 2, 0, 2, 0, 6, 6, 5, 2, 0, 0], "total": 23, "table": null, "rank": 46, "sp500_rank": 37}, "Knowledge_Representation": {"counts": [2, 2, 0, 2, 2, 9, 15, 21, 10, 0, 0], "total": 63, "table": "application", "rank": 19, "sp500_rank": 16}, "Planning_and_Scheduling": {"counts": [0, 0, 2, 4, 3, 12, 5, 18, 5, 0, 0], "total": 49, "table": null, "rank": 35, "sp500_rank": 31}, "Control": {"counts": [6, 13, 17, 23, 53, 72, 94, 99, 27, 0, 0], "total": 404, "table": "application", "rank": 5, "sp500_rank": 5}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14}, "Computer_Vision": {"counts": [0, 5, 6, 7, 33, 70, 148, 165, 50, 3, 0], "total": 487, "table": "application", "rank": 17, "sp500_rank": 13}, "Analytics_and_Algorithms": {"counts": [0, 0, 2, 0, 6, 14, 27, 44, 8, 0, 0], "total": 101, "table": "application", "rank": 14, "sp500_rank": 12}, "Measuring_and_Testing": {"counts": [3, 4, 4, 8, 24, 34, 56, 69, 14, 0, 0], "total": 216, "table": "application", "rank": 6, "sp500_rank": 6}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 7117, "rank": 70, "sp500_rank": 48}, "ai_jobs": {"counts": null, "total": 376, "rank": 149, "sp500_rank": 99}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "Robert Bosch GmbH ), commonly known as Bosch, is a German multinational engineering and technology company headquartered in Gerlingen. The company was founded by Robert Bosch in Stuttgart in 1886. Bosch is 92% owned by Robert Bosch Stiftung, a charitable institution.", "wikipedia_link": "https://en.wikipedia.org/wiki/Robert_Bosch_GmbH", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2740, "country": "United States", "website": "http://www.saic.com/", "crunchbase": {"text": "29849eb2-5367-1cef-685e-4d4f444bd4de", "url": "https://www.crunchbase.com/organization/saic"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/saicinc"], "stage": "Mature", "name": "Science Applications International Corp", "patent_name": "science applications international corp", "continent": "North America", "local_logo": "science_applications_international_corp.png", "aliases": "SAIC; Saic (Science Applications International Corporation); Saic Gemini; Saic Gemini, Inc; Saic, Inc; Science Applications International Corporation", "permid_links": [{"text": 5039584611, "url": "https://permid.org/1-5039584611"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SAIC", "url": "https://www.google.com/finance/quote/nyse:saic"}], "market_full": [{"text": "LSE:0V9N", "url": "https://www.google.com/finance/quote/0v9n:lse"}, {"text": "MUN:85S", "url": "https://www.google.com/finance/quote/85s:mun"}, {"text": "ASE:SAIC", "url": "https://www.google.com/finance/quote/ase:saic"}, {"text": "BRN:85S", "url": "https://www.google.com/finance/quote/85s:brn"}, {"text": "NYQ:SAIC", "url": "https://www.google.com/finance/quote/nyq:saic"}, {"text": "NYSE:SAIC", "url": "https://www.google.com/finance/quote/nyse:saic"}, {"text": "FRA:85S", "url": "https://www.google.com/finance/quote/85s:fra"}, {"text": "DEU:85S", "url": "https://www.google.com/finance/quote/85s:deu"}, {"text": "STU:85S", "url": "https://www.google.com/finance/quote/85s:stu"}, {"text": "DUS:85S", "url": "https://www.google.com/finance/quote/85s:dus"}], "crunchbase_description": "SAIC provides scientific, engineering, and systems integration and technical services and solutions in the United States.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Machine translation", "field_count": 6}, {"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Event calculus", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Transfer of learning", "field_count": 2}, {"field_name": "Automatic summarization", "field_count": 2}, {"field_name": "Motion estimation", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Bilinear interpolation", "field_count": 1}, {"field_name": "Change detection", "field_count": 1}], "clusters": [{"cluster_id": 655, "cluster_count": 5}, {"cluster_id": 25681, "cluster_count": 3}, {"cluster_id": 29535, "cluster_count": 3}, {"cluster_id": 15904, "cluster_count": 3}, {"cluster_id": 16633, "cluster_count": 2}, {"cluster_id": 31257, "cluster_count": 2}, {"cluster_id": 474, "cluster_count": 2}, {"cluster_id": 578, "cluster_count": 2}, {"cluster_id": 788, "cluster_count": 1}, {"cluster_id": 21509, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 22}, {"ref_CSET_id": 163, "referenced_count": 15}, {"ref_CSET_id": 2740, "referenced_count": 9}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 839, "referenced_count": 5}, {"ref_CSET_id": 184, "referenced_count": 4}, {"ref_CSET_id": 949, "referenced_count": 3}, {"ref_CSET_id": 787, "referenced_count": 3}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 456, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 13}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "machine_translation", "task_count": 4}, {"referent": "translation", "task_count": 4}, {"referent": "image_processing", "task_count": 4}, {"referent": "face_recognition", "task_count": 4}, {"referent": "system_identification", "task_count": 4}, {"referent": "autonomous_driving", "task_count": 3}, {"referent": "information_retrieval", "task_count": 3}, {"referent": "developmental_learning", "task_count": 3}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "q_learning", "method_count": 4}, {"referent": "vqa_models", "method_count": 4}, {"referent": "griffin_lim_algorithm", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "3d_representations", "method_count": 3}, {"referent": "video_sampling", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "reinforcement_learning", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [452, 195, 103, 112, 102, 78, 66, 56, 72, 31, 1], "total": 1268, "isTopResearch": false, "rank": 167}, "ai_publications": {"counts": [18, 3, 0, 6, 4, 7, 5, 4, 6, 0, 0], "total": 53, "isTopResearch": false, "rank": 176}, "ai_publications_growth": {"counts": [], "total": -23.333333333333332, "isTopResearch": false, "rank": 1353}, "ai_pubs_top_conf": {"counts": [2, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 157}, "citation_counts": {"counts": [56, 64, 82, 59, 88, 93, 172, 176, 186, 111, 1], "total": 1088, "isTopResearch": false, "rank": 182}, "cv_pubs": {"counts": [1, 1, 0, 1, 1, 1, 2, 1, 1, 0, 0], "total": 9, "isTopResearch": true, "rank": 217}, "nlp_pubs": {"counts": [3, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0], "total": 7, "isTopResearch": true, "rank": 117}, "robotics_pubs": {"counts": [3, 0, 0, 1, 1, 2, 1, 2, 0, 0, 0], "total": 10, "isTopResearch": true, "rank": 114}, "citations_per_article": {"counts": [3.111111111111111, 21.333333333333332, 0, 9.833333333333334, 22.0, 13.285714285714286, 34.4, 44.0, 31.0, 0, 0], "total": 20.528301886792452, "isTopResearch": false, "rank": 303}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 7004, "rank": 71}, "ai_jobs": {"counts": null, "total": 260, "rank": 203}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Science Applications International Corporation (SAIC) is an American company headquartered in Reston, Virginia that provides government services and information technology support.", "wikipedia_link": "https://en.wikipedia.org/wiki/Science_Applications_International_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 516, "country": "United States", "website": "https://www.iqvia.com/", "crunchbase": {"text": "ef7c4e51-ba44-9374-911c-28d13cab996a", "url": "https://www.crunchbase.com/organization/quintilesims"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/iqvia"], "stage": "Mature", "name": "IQVIA", "patent_name": "iqvia", "continent": "North America", "local_logo": null, "aliases": "IQVIA Inc; Iqvia Holding Inc", "permid_links": [{"text": 4295903150, "url": "https://permid.org/1-4295903150"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:IQV", "url": "https://www.google.com/finance/quote/iqv:nyse"}], "market_full": [{"text": "HAN:QTS", "url": "https://www.google.com/finance/quote/han:qts"}, {"text": "LSE:0JDM", "url": "https://www.google.com/finance/quote/0jdm:lse"}, {"text": "NYQ:IQV", "url": "https://www.google.com/finance/quote/iqv:nyq"}, {"text": "BER:QTS", "url": "https://www.google.com/finance/quote/ber:qts"}, {"text": "DUS:QTS", "url": "https://www.google.com/finance/quote/dus:qts"}, {"text": "NYSE:IQV", "url": "https://www.google.com/finance/quote/iqv:nyse"}, {"text": "MOEX:IQV-RM", "url": "https://www.google.com/finance/quote/iqv-rm:moex"}, {"text": "MUN:QTS", "url": "https://www.google.com/finance/quote/mun:qts"}, {"text": "XETR:QTS", "url": "https://www.google.com/finance/quote/qts:xetr"}, {"text": "FWB:QTS", "url": "https://www.google.com/finance/quote/fwb:qts"}, {"text": "BMV:IQV", "url": "https://www.google.com/finance/quote/bmv:iqv"}], "crunchbase_description": "IQVIA is a global provider of advanced analytics, technology solutions and contract research services to the life sciences industry.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 8}, {"field_name": "Feature learning", "field_count": 4}, {"field_name": "Interpretability", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Receiver operating characteristic", "field_count": 1}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Inference", "field_count": 1}, {"field_name": "External Data Representation", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}], "clusters": [{"cluster_id": 23924, "cluster_count": 19}, {"cluster_id": 23169, "cluster_count": 7}, {"cluster_id": 9662, "cluster_count": 4}, {"cluster_id": 6692, "cluster_count": 4}, {"cluster_id": 30120, "cluster_count": 3}, {"cluster_id": 5070, "cluster_count": 2}, {"cluster_id": 1989, "cluster_count": 2}, {"cluster_id": 16698, "cluster_count": 2}, {"cluster_id": 1627, "cluster_count": 2}, {"cluster_id": 39035, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 129}, {"ref_CSET_id": 115, "referenced_count": 88}, {"ref_CSET_id": 516, "referenced_count": 57}, {"ref_CSET_id": 163, "referenced_count": 53}, {"ref_CSET_id": 87, "referenced_count": 40}, {"ref_CSET_id": 787, "referenced_count": 11}, {"ref_CSET_id": 341, "referenced_count": 11}, {"ref_CSET_id": 805, "referenced_count": 9}, {"ref_CSET_id": 1797, "referenced_count": 7}, {"ref_CSET_id": 201, "referenced_count": 7}], "tasks": [{"referent": "classification", "task_count": 20}, {"referent": "disease_detection", "task_count": 8}, {"referent": "classification_tasks", "task_count": 7}, {"referent": "developmental_learning", "task_count": 6}, {"referent": "drug_discovery", "task_count": 5}, {"referent": "drug\u2013drug_interaction_extraction", "task_count": 5}, {"referent": "data_mining", "task_count": 4}, {"referent": "covid_19_tracking", "task_count": 4}, {"referent": "inference_attack", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 15}, {"referent": "symbolic_deep_learning", "method_count": 11}, {"referent": "3d_representations", "method_count": 10}, {"referent": "vqa_models", "method_count": 8}, {"referent": "optimization", "method_count": 6}, {"referent": "mad_learning", "method_count": 6}, {"referent": "ggs_nns", "method_count": 5}, {"referent": "attention_mechanisms", "method_count": 4}, {"referent": "topic_embeddings", "method_count": 4}, {"referent": "q_learning", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [407, 455, 442, 415, 1043, 1074, 1207, 1334, 1199, 1445, 8], "total": 9029, "isTopResearch": false, "rank": 42, "fortune500_rank": 14}, "ai_publications": {"counts": [0, 3, 2, 2, 6, 4, 18, 34, 17, 6, 0], "total": 92, "isTopResearch": false, "rank": 127, "fortune500_rank": 41}, "ai_publications_growth": {"counts": [], "total": -8.60566448801743, "isTopResearch": false, "rank": 1257, "fortune500_rank": 360}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 1, 9, 18, 11, 2, 0], "total": 42, "isTopResearch": false, "rank": 46, "fortune500_rank": 17}, "citation_counts": {"counts": [0, 1, 5, 16, 23, 74, 143, 281, 586, 564, 21], "total": 1714, "isTopResearch": false, "rank": 151, "fortune500_rank": 45}, "cv_pubs": {"counts": [0, 0, 0, 0, 2, 0, 0, 2, 0, 1, 0], "total": 5, "isTopResearch": true, "rank": 287, "fortune500_rank": 78}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 6, 1, 0, 0], "total": 7, "isTopResearch": true, "rank": 117, "fortune500_rank": 33}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0.3333333333333333, 2.5, 8.0, 3.8333333333333335, 18.5, 7.944444444444445, 8.264705882352942, 34.470588235294116, 94.0, 0], "total": 18.630434782608695, "isTopResearch": false, "rank": 337, "fortune500_rank": 106}}, "patents": {"ai_patents": {"counts": [0, 0, 2, 2, 2, 3, 5, 1, 4, 0, 0], "total": 19, "table": null, "rank": 333, "fortune500_rank": 111}, "ai_patents_growth": {"counts": [], "total": 12.222222222222223, "table": null, "rank": 323, "fortune500_rank": 103}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 20, 20, 20, 30, 50, 10, 40, 0, 0], "total": 190, "table": null, "rank": 333, "fortune500_rank": 111}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 2, 1, 1, 2, 3, 1, 3, 0, 0], "total": 13, "table": "industry", "rank": 70, "fortune500_rank": 29}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 2, 1, 1, 2, 4, 0, 3, 0, 0], "total": 13, "table": "industry", "rank": 233, "fortune500_rank": 86}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 252, "fortune500_rank": 82}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 6952, "rank": 72, "fortune500_rank": 46}, "ai_jobs": {"counts": null, "total": 1699, "rank": 22, "fortune500_rank": 16}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "IQVIA, formerly Quintiles and IMS Health, Inc., is an American multinational company serving the combined industries of health information technology and clinical research. It is a provider of biopharmaceutical development and commercial outsourcing services, focused primarily on Phase I-IV clinical trials and associated laboratory and analytical services, including consulting services. It has a network of more than 58,000 employees in more than 100 countries. As of 2019, IQVIA was reported to be one of the world's largest contract research organizations", "wikipedia_link": "https://en.wikipedia.org/wiki/IQVIA", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 471, "country": "United States", "website": "http://www.goldmansachs.com/", "crunchbase": {"text": "30b3efdf-6024-804d-ea55-c4d1a8dfc86c", "url": "https://www.crunchbase.com/organization/goldman-sachs"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/goldman-sachs"], "stage": "Mature", "name": "Goldman Sachs", "patent_name": "goldman sachs", "continent": "North America", "local_logo": "goldman_sachs.png", "aliases": "Goldman Sachs Ag", "permid_links": [{"text": 4296253669, "url": "https://permid.org/1-4296253669"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:GS", "url": "https://www.google.com/finance/quote/gs:nyse"}], "market_full": [{"text": "NYSE:GS", "url": "https://www.google.com/finance/quote/gs:nyse"}, {"text": "FWB:GOS", "url": "https://www.google.com/finance/quote/fwb:gos"}, {"text": "HAM:GOS", "url": "https://www.google.com/finance/quote/gos:ham"}, {"text": "BER:GOS", "url": "https://www.google.com/finance/quote/ber:gos"}, {"text": "MOEX:GS-RM", "url": "https://www.google.com/finance/quote/gs-rm:moex"}, {"text": "XETR:GOS", "url": "https://www.google.com/finance/quote/gos:xetr"}, {"text": "HAN:GOS", "url": "https://www.google.com/finance/quote/gos:han"}, {"text": "MUN:GOS", "url": "https://www.google.com/finance/quote/gos:mun"}, {"text": "DUS:GOS", "url": "https://www.google.com/finance/quote/dus:gos"}], "crunchbase_description": "Goldman Sachs is a multinational financial services firm providing securities, investment banking, and management services.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Principal component analysis", "field_count": 2}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "Hyperparameter", "field_count": 1}, {"field_name": "Sentence", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "k-nearest neighbors algorithm", "field_count": 1}, {"field_name": "Interpretability", "field_count": 1}], "clusters": [{"cluster_id": 16472, "cluster_count": 4}, {"cluster_id": 9371, "cluster_count": 2}, {"cluster_id": 5197, "cluster_count": 1}, {"cluster_id": 42575, "cluster_count": 1}, {"cluster_id": 10973, "cluster_count": 1}, {"cluster_id": 9084, "cluster_count": 1}, {"cluster_id": 3007, "cluster_count": 1}, {"cluster_id": 4050, "cluster_count": 1}, {"cluster_id": 25647, "cluster_count": 1}, {"cluster_id": 20136, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 19}, {"ref_CSET_id": 101, "referenced_count": 14}, {"ref_CSET_id": 115, "referenced_count": 8}, {"ref_CSET_id": 792, "referenced_count": 6}, {"ref_CSET_id": 471, "referenced_count": 5}, {"ref_CSET_id": 21, "referenced_count": 5}, {"ref_CSET_id": 671, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 3}, {"ref_CSET_id": 787, "referenced_count": 2}], "tasks": [{"referent": "knowledge_graphs", "task_count": 3}, {"referent": "relation_classification", "task_count": 3}, {"referent": "classification", "task_count": 3}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "entity_disambiguation", "task_count": 1}, {"referent": "link_prediction", "task_count": 1}, {"referent": "interpretability_techniques_for_deep_learning", "task_count": 1}, {"referent": "distributed_voting", "task_count": 1}, {"referent": "distributed_computing", "task_count": 1}, {"referent": "end_to_end_speech_recognition", "task_count": 1}], "methods": [{"referent": "bp_transformer", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "characterbert", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "probabilistic_anchor_assignment", "method_count": 1}, {"referent": "linear_warmup_with_linear_decay", "method_count": 1}, {"referent": "graph_embeddings", "method_count": 1}, {"referent": "hoc", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [46, 37, 58, 27, 21, 35, 19, 23, 33, 22, 2], "total": 323, "isTopResearch": false, "rank": 346, "sp500_rank": 224, "fortune500_rank": 132}, "ai_publications": {"counts": [0, 0, 3, 1, 1, 1, 3, 2, 8, 2, 0], "total": 21, "isTopResearch": false, "rank": 294, "sp500_rank": 170, "fortune500_rank": 89}, "ai_publications_growth": {"counts": [], "total": 63.88888888888889, "isTopResearch": false, "rank": 50, "sp500_rank": 27, "fortune500_rank": 13}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 3, 0, 0], "total": 4, "isTopResearch": false, "rank": 169, "sp500_rank": 82, "fortune500_rank": 47}, "citation_counts": {"counts": [4, 1, 9, 11, 20, 22, 32, 37, 75, 63, 2], "total": 276, "isTopResearch": false, "rank": 342, "sp500_rank": 160, "fortune500_rank": 101}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 5, 2, 0], "total": 10, "isTopResearch": true, "rank": 92, "sp500_rank": 63, "fortune500_rank": 25}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 3.0, 11.0, 20.0, 22.0, 10.666666666666666, 18.5, 9.375, 31.5, 0], "total": 13.142857142857142, "isTopResearch": false, "rank": 443, "sp500_rank": 150, "fortune500_rank": 136}}, "patents": {"ai_patents": {"counts": [0, 4, 3, 3, 4, 1, 1, 4, 0, 0, 0], "total": 20, "table": null, "rank": 323, "sp500_rank": 165, "fortune500_rank": 109}, "ai_patents_growth": {"counts": [], "total": 75.0, "table": null, "rank": 153, "sp500_rank": 71, "fortune500_rank": 35}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 40, 30, 30, 40, 10, 10, 40, 0, 0, 0], "total": 200, "table": null, "rank": 323, "sp500_rank": 165, "fortune500_rank": 109}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "sp500_rank": 115, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 2, 3, 0, 4, 1, 0, 4, 0, 0, 0], "total": 14, "table": "industry", "rank": 226, "sp500_rank": 123, "fortune500_rank": 82}, "Banking_and_Finance": {"counts": [0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0], "total": 5, "table": "industry", "rank": 103, "sp500_rank": 71, "fortune500_rank": 36}, "Telecommunications": {"counts": [0, 2, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "sp500_rank": 141, "fortune500_rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 252, "sp500_rank": 151, "fortune500_rank": 82}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39, "fortune500_rank": 23}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "sp500_rank": 67, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 162, "sp500_rank": 88, "fortune500_rank": 70}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 214, "sp500_rank": 141, "fortune500_rank": 70}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "sp500_rank": 134, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 6592, "rank": 73, "sp500_rank": 49, "fortune500_rank": 47}, "ai_jobs": {"counts": null, "total": 1144, "rank": 36, "sp500_rank": 24, "fortune500_rank": 24}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "The Goldman Sachs Group, Inc., is an American multinational investment bank and financial services company headquartered in New York City. It offers services in investment management, securities, asset management, prime brokerage, and securities underwriting. It also provides investment banking to institutional investors.", "wikipedia_link": "https://en.wikipedia.org/wiki/Goldman_Sachs", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 359, "country": "United States", "website": "http://www.bloomberg.com", "crunchbase": {"text": "3eae151d-c4b2-9a66-45a7-0dd77cdc3ab1", "url": "https://www.crunchbase.com/organization/bloomberg"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bloomberg-lp"], "stage": "Unknown", "name": "Bloomberg LP", "patent_name": "bloomberg lp", "continent": "North America", "local_logo": "bloomberg_lp.png", "aliases": "Bloomberg Business; Bloomberg L.P", "permid_links": [{"text": 4295956702, "url": "https://permid.org/1-4295956702"}], "parent_info": "Bloomberg Inc.", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Bloomberg provides news, data, analytics, and communication services for the global business and financial world.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Big data", "field_count": 5}, {"field_name": "Automatic summarization", "field_count": 4}, {"field_name": "Question answering", "field_count": 3}, {"field_name": "Language model", "field_count": 2}, {"field_name": "Sensor fusion", "field_count": 2}, {"field_name": "Structured prediction", "field_count": 2}, {"field_name": "Sentiment analysis", "field_count": 2}, {"field_name": "Dropout (neural networks)", "field_count": 2}, {"field_name": "Text processing", "field_count": 2}, {"field_name": "Information extraction", "field_count": 2}], "clusters": [{"cluster_id": 46634, "cluster_count": 6}, {"cluster_id": 9371, "cluster_count": 5}, {"cluster_id": 16537, "cluster_count": 3}, {"cluster_id": 23422, "cluster_count": 2}, {"cluster_id": 29300, "cluster_count": 2}, {"cluster_id": 10489, "cluster_count": 2}, {"cluster_id": 34838, "cluster_count": 2}, {"cluster_id": 12712, "cluster_count": 2}, {"cluster_id": 31858, "cluster_count": 2}, {"cluster_id": 18838, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 137}, {"ref_CSET_id": 163, "referenced_count": 105}, {"ref_CSET_id": 792, "referenced_count": 48}, {"ref_CSET_id": 115, "referenced_count": 42}, {"ref_CSET_id": 87, "referenced_count": 33}, {"ref_CSET_id": 319, "referenced_count": 12}, {"ref_CSET_id": 359, "referenced_count": 11}, {"ref_CSET_id": 805, "referenced_count": 10}, {"ref_CSET_id": 37, "referenced_count": 10}, {"ref_CSET_id": 23, "referenced_count": 8}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "knowledge_base", "task_count": 6}, {"referent": "classification_tasks", "task_count": 6}, {"referent": "information_retrieval", "task_count": 6}, {"referent": "knowledge_graphs", "task_count": 6}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "named_entity_recognition", "task_count": 5}, {"referent": "natural_language_processing", "task_count": 4}, {"referent": "recommendation_systems", "task_count": 4}, {"referent": "question_answering", "task_count": 4}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "meta_learning_algorithms", "method_count": 7}, {"referent": "mad_learning", "method_count": 5}, {"referent": "3d_representations", "method_count": 5}, {"referent": "vqa_models", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "word_embeddings", "method_count": 4}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "graphsage", "method_count": 3}, {"referent": "dropout", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [25, 17, 22, 62, 49, 46, 44, 46, 56, 16, 1], "total": 384, "isTopResearch": false, "rank": 321}, "ai_publications": {"counts": [2, 2, 8, 9, 16, 16, 10, 20, 9, 0, 0], "total": 92, "isTopResearch": false, "rank": 127}, "ai_publications_growth": {"counts": [], "total": -18.333333333333332, "isTopResearch": false, "rank": 1316}, "ai_pubs_top_conf": {"counts": [0, 0, 7, 2, 2, 4, 3, 6, 3, 0, 0], "total": 27, "isTopResearch": false, "rank": 67}, "citation_counts": {"counts": [33, 57, 76, 66, 84, 162, 216, 283, 383, 232, 5], "total": 1597, "isTopResearch": false, "rank": 156}, "cv_pubs": {"counts": [0, 0, 0, 0, 2, 1, 1, 2, 1, 0, 0], "total": 7, "isTopResearch": true, "rank": 252}, "nlp_pubs": {"counts": [1, 1, 5, 6, 6, 4, 5, 9, 4, 0, 0], "total": 41, "isTopResearch": true, "rank": 52}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [16.5, 28.5, 9.5, 7.333333333333333, 5.25, 10.125, 21.6, 14.15, 42.55555555555556, 0, 0], "total": 17.358695652173914, "isTopResearch": false, "rank": 360}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 6548, "rank": 74}, "ai_jobs": {"counts": null, "total": 873, "rank": 50}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Bloomberg L.P. is a privately held financial, software, data, and media company headquartered in Midtown Manhattan, New York City. It was founded by Michael Bloomberg in 1981, with the help of Thomas Secunda, Duncan MacMillan, Charles Zegar, and a 12% ownership investment by Merrill Lynch.", "wikipedia_link": "https://en.wikipedia.org/wiki/Bloomberg_L.P.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 737, "country": "United States", "website": "http://www.uber.com", "crunchbase": {"text": "1eb37109-3b93-01a9-177f-fee2cb1bfcdc", "url": "https://www.crunchbase.com/organization/uber"}, "child_crunchbase": [{"text": "a5d9c84d-b399-15e1-169f-3403db38736f", "url": "https://www.crunchbase.com/organization/spare5"}], "linkedin": ["https://www.linkedin.com/company/uber-ai-labs", "https://www.linkedin.com/company/mightyai", "https://www.linkedin.com/company/uber-com"], "stage": "Mature", "name": "Uber", "patent_name": "uber", "continent": "North America", "local_logo": "uber.png", "aliases": "Uber Technologies Inc; Ubercab; Ubercab.Com", "permid_links": [{"text": 5044170969, "url": "https://permid.org/1-5044170969"}, {"text": 5037473967, "url": "https://permid.org/1-5037473967"}], "parent_info": null, "agg_child_info": "Uber AI Labs, Mighty AI", "unagg_child_info": null, "market_filt": [{"text": "NYSE:UBER", "url": "https://www.google.com/finance/quote/nyse:uber"}], "market_full": [{"text": "MOEX:UBER-RM", "url": "https://www.google.com/finance/quote/moex:uber-rm"}, {"text": "XETR:UT8", "url": "https://www.google.com/finance/quote/ut8:xetr"}, {"text": "HAN:UT8", "url": "https://www.google.com/finance/quote/han:ut8"}, {"text": "FWB:UT8", "url": "https://www.google.com/finance/quote/fwb:ut8"}, {"text": "LON:0A1U", "url": "https://www.google.com/finance/quote/0a1u:lon"}, {"text": "BER:UT8", "url": "https://www.google.com/finance/quote/ber:ut8"}, {"text": "BMV:UBER", "url": "https://www.google.com/finance/quote/bmv:uber"}, {"text": "MEX:UBER", "url": "https://www.google.com/finance/quote/mex:uber"}, {"text": "NYSE:UBER", "url": "https://www.google.com/finance/quote/nyse:uber"}, {"text": "DUS:UT8", "url": "https://www.google.com/finance/quote/dus:ut8"}, {"text": "MUN:UT8", "url": "https://www.google.com/finance/quote/mun:ut8"}, {"text": "HAM:UT8", "url": "https://www.google.com/finance/quote/ham:ut8"}], "crunchbase_description": "Uber develops, markets, and operates a ride-sharing mobile application that allows consumers to submit a trip request.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 11}, {"field_name": "Reinforcement learning", "field_count": 6}, {"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Cluster analysis", "field_count": 4}, {"field_name": "Feature learning", "field_count": 3}, {"field_name": "Bayesian optimization", "field_count": 3}, {"field_name": "Inference", "field_count": 3}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 1}], "clusters": [{"cluster_id": 1609, "cluster_count": 7}, {"cluster_id": 1539, "cluster_count": 6}, {"cluster_id": 34017, "cluster_count": 5}, {"cluster_id": 3886, "cluster_count": 3}, {"cluster_id": 44272, "cluster_count": 3}, {"cluster_id": 1338, "cluster_count": 3}, {"cluster_id": 5300, "cluster_count": 3}, {"cluster_id": 4184, "cluster_count": 2}, {"cluster_id": 7095, "cluster_count": 2}, {"cluster_id": 4379, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 292}, {"ref_CSET_id": 163, "referenced_count": 51}, {"ref_CSET_id": 87, "referenced_count": 46}, {"ref_CSET_id": 737, "referenced_count": 26}, {"ref_CSET_id": 6, "referenced_count": 16}, {"ref_CSET_id": 115, "referenced_count": 14}, {"ref_CSET_id": 23, "referenced_count": 9}, {"ref_CSET_id": 792, "referenced_count": 8}, {"ref_CSET_id": 805, "referenced_count": 8}, {"ref_CSET_id": 793, "referenced_count": 7}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 9}, {"referent": "classification", "task_count": 6}, {"referent": "general_reinforcement_learning", "task_count": 5}, {"referent": "efficient_exploration", "task_count": 4}, {"referent": "inference_attack", "task_count": 4}, {"referent": "portfolio_optimization", "task_count": 4}, {"referent": "neural_network_compression", "task_count": 4}, {"referent": "neural_architecture_search", "task_count": 3}, {"referent": "image_processing", "task_count": 3}, {"referent": "speech_recognition", "task_count": 3}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 20}, {"referent": "q_learning", "method_count": 9}, {"referent": "meta_learning_algorithms", "method_count": 9}, {"referent": "3d_representations", "method_count": 7}, {"referent": "griffin_lim_algorithm", "method_count": 7}, {"referent": "symbolic_deep_learning", "method_count": 7}, {"referent": "causal_inference", "method_count": 6}, {"referent": "reinforcement_learning", "method_count": 5}, {"referent": "aging_evolution", "method_count": 5}, {"referent": "generative_models", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 2, 6, 10, 37, 38, 55, 28, 11, 14, 0], "total": 202, "isTopResearch": false, "rank": 410}, "ai_publications": {"counts": [0, 1, 1, 3, 14, 20, 30, 11, 1, 3, 0], "total": 84, "isTopResearch": false, "rank": 136}, "ai_publications_growth": {"counts": [], "total": 15.25252525252525, "isTopResearch": false, "rank": 137}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 2, 1, 5, 11, 4, 0, 0, 0], "total": 23, "isTopResearch": false, "rank": 72}, "citation_counts": {"counts": [0, 0, 0, 13, 89, 267, 622, 1009, 1221, 768, 19], "total": 4008, "isTopResearch": false, "rank": 84}, "cv_pubs": {"counts": [0, 0, 0, 3, 2, 2, 1, 1, 0, 0, 0], "total": 9, "isTopResearch": true, "rank": 217}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 2, 3, 0, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 141}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 214}, "citations_per_article": {"counts": [0, 0.0, 0.0, 4.333333333333333, 6.357142857142857, 13.35, 20.733333333333334, 91.72727272727273, 1221.0, 256.0, 0], "total": 47.714285714285715, "isTopResearch": false, "rank": 100}}, "patents": {"ai_patents": {"counts": [0, 1, 14, 32, 120, 67, 32, 17, 2, 0, 0], "total": 285, "table": null, "rank": 83}, "ai_patents_growth": {"counts": [], "total": -47.7601575456053, "table": null, "rank": 1506}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 140, 320, 1200, 670, 320, 170, 20, 0, 0], "total": 2850, "table": null, "rank": 83}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 105}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 2, 2, 2, 4, 1, 0, 0, 0, 0], "total": 11, "table": null, "rank": 86}, "Transportation": {"counts": [0, 0, 13, 23, 91, 45, 25, 12, 1, 0, 0], "total": 210, "table": "industry", "rank": 13}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 0], "total": 6, "table": null, "rank": 94}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 5, 23, 18, 7, 4, 0, 0, 0], "total": 57, "table": "industry", "rank": 107}, "Banking_and_Finance": {"counts": [0, 0, 1, 5, 9, 5, 4, 0, 0, 0, 0], "total": 24, "table": "industry", "rank": 44}, "Telecommunications": {"counts": [0, 0, 7, 13, 24, 17, 16, 7, 0, 0, 0], "total": 84, "table": "industry", "rank": 53}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 0, 3, 10, 20, 16, 7, 4, 1, 0, 0], "total": 61, "table": "industry", "rank": 43}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 2, 4, 2, 1, 1, 0, 0, 0], "total": 10, "table": "application", "rank": 72}, "Planning_and_Scheduling": {"counts": [0, 0, 3, 9, 15, 14, 5, 3, 1, 0, 0], "total": 50, "table": "application", "rank": 34}, "Control": {"counts": [0, 0, 13, 22, 92, 45, 19, 9, 0, 0, 0], "total": 200, "table": "application", "rank": 20}, "Distributed_AI": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 1, 2, 4, 30, 24, 7, 7, 0, 0, 0], "total": 75, "table": "application", "rank": 85}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 2, 3, 0, 2, 0, 0, 0], "total": 7, "table": null, "rank": 137}, "Measuring_and_Testing": {"counts": [0, 0, 9, 5, 55, 25, 16, 10, 1, 0, 0], "total": 121, "table": "application", "rank": 18}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 6439, "rank": 75}, "ai_jobs": {"counts": null, "total": 1116, "rank": 37}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Uber Technologies, Inc., commonly known as Uber, is an American technology company. Its services include ride-hailing, food delivery (Uber Eats), package delivery, couriers, freight transportation, and, through a partnership with Lime, electric bicycle and motorized scooter rental. The company is based in San Francisco and has operations in over 900 metropolitan areas worldwide. It is one of the largest firms in the gig economy.", "wikipedia_link": "https://en.wikipedia.org/wiki/Uber", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1852, "country": "France", "website": "https://group.bnpparibas/", "crunchbase": {"text": " d0ed55db-0a76-49a1-9a12-13578a53450c", "url": " https://www.crunchbase.com/organization/bnp-paribas"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bnp-paribas"], "stage": "Mature", "name": "Bnp Paribas", "patent_name": "BNP Paribas", "continent": "Europe", "local_logo": null, "aliases": "BNP Paribas; Bnp Paribas Fortis", "permid_links": [{"text": 8589934326, "url": "https://permid.org/1-8589934326"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "DEU:BNPH", "url": "https://www.google.com/finance/quote/BNPH:DEU"}, {"text": "EBT:BNPP", "url": "https://www.google.com/finance/quote/BNPp:EBT"}, {"text": "DEU:BNPP", "url": "https://www.google.com/finance/quote/BNPP:DEU"}, {"text": "VIE:BNP", "url": "https://www.google.com/finance/quote/BNP:VIE"}, {"text": "QXI:BNPQF", "url": "https://www.google.com/finance/quote/BNPQF:QXI"}, {"text": "PKC:BNPZY", "url": "https://www.google.com/finance/quote/BNPZY:PKC"}, {"text": "MUN:BNP", "url": "https://www.google.com/finance/quote/BNP:MUN"}, {"text": "QXI:BNPQY", "url": "https://www.google.com/finance/quote/BNPQY:QXI"}, {"text": "PAR:4779", "url": "https://www.google.com/finance/quote/4779:PAR"}, {"text": "SWX:BNP", "url": "https://www.google.com/finance/quote/BNP:SWX"}, {"text": "FRA:BNP", "url": "https://www.google.com/finance/quote/BNP:FRA"}, {"text": "PAR:BNPAQ", "url": "https://www.google.com/finance/quote/BNPAQ:PAR"}, {"text": "LSE:0HB5", "url": "https://www.google.com/finance/quote/0HB5:LSE"}, {"text": "PAR:TPB", "url": "https://www.google.com/finance/quote/PAR:TPB"}, {"text": "DUS:BNP", "url": "https://www.google.com/finance/quote/BNP:DUS"}, {"text": "BER:BNPH", "url": "https://www.google.com/finance/quote/BER:BNPH"}, {"text": "HAN:BNP", "url": "https://www.google.com/finance/quote/BNP:HAN"}, {"text": "HAM:BNP", "url": "https://www.google.com/finance/quote/BNP:HAM"}, {"text": "BER:BNP", "url": "https://www.google.com/finance/quote/BER:BNP"}, {"text": "FRA:BNPH", "url": "https://www.google.com/finance/quote/BNPH:FRA"}, {"text": "MEX:BNPN", "url": "https://www.google.com/finance/quote/BNPN:MEX"}, {"text": "PAR:BNP", "url": "https://www.google.com/finance/quote/BNP:PAR"}, {"text": "GER:BNPX", "url": "https://www.google.com/finance/quote/BNPX:GER"}, {"text": "PAR:4783", "url": "https://www.google.com/finance/quote/4783:PAR"}, {"text": "MIL:BNP", "url": "https://www.google.com/finance/quote/BNP:MIL"}, {"text": "STU:BNPH", "url": "https://www.google.com/finance/quote/BNPH:STU"}, {"text": "STU:BNP", "url": "https://www.google.com/finance/quote/BNP:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Language model", "field_count": 3}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Data stream mining", "field_count": 1}, {"field_name": "Empirical risk minimization", "field_count": 1}, {"field_name": "Undersampling", "field_count": 1}, {"field_name": "Natural language", "field_count": 1}, {"field_name": "Machine translation", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}, {"field_name": "False positive paradox", "field_count": 1}, {"field_name": "Fuzzy logic", "field_count": 1}], "clusters": [{"cluster_id": 7916, "cluster_count": 4}, {"cluster_id": 66327, "cluster_count": 2}, {"cluster_id": 2050, "cluster_count": 2}, {"cluster_id": 35111, "cluster_count": 2}, {"cluster_id": 16472, "cluster_count": 2}, {"cluster_id": 80976, "cluster_count": 1}, {"cluster_id": 3527, "cluster_count": 1}, {"cluster_id": 2381, "cluster_count": 1}, {"cluster_id": 369, "cluster_count": 1}, {"cluster_id": 25730, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 69}, {"ref_CSET_id": 87, "referenced_count": 21}, {"ref_CSET_id": 163, "referenced_count": 17}, {"ref_CSET_id": 1852, "referenced_count": 12}, {"ref_CSET_id": 115, "referenced_count": 10}, {"ref_CSET_id": 112, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 4}, {"ref_CSET_id": 1126, "referenced_count": 3}, {"ref_CSET_id": 1425, "referenced_count": 3}, {"ref_CSET_id": 184, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "data_to_text_generation", "task_count": 4}, {"referent": "fraud_detection", "task_count": 3}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "end_to_end_speech_recognition", "task_count": 2}, {"referent": "named_entity_recognition", "task_count": 2}, {"referent": "recommendation_systems", "task_count": 2}, {"referent": "mobile_security", "task_count": 2}, {"referent": "neural_machine_translation", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 6}, {"referent": "language_models", "method_count": 2}, {"referent": "bert", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "clustering", "method_count": 2}, {"referent": "normalizing_flows", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [31, 19, 62, 56, 44, 25, 56, 42, 38, 22, 0], "total": 395, "isTopResearch": false, "rank": 315, "sp500_rank": 206}, "ai_publications": {"counts": [2, 1, 1, 0, 0, 1, 5, 10, 6, 4, 0], "total": 30, "isTopResearch": false, "rank": 240, "sp500_rank": 146}, "ai_publications_growth": {"counts": [], "total": 8.888888888888888, "isTopResearch": false, "rank": 161, "sp500_rank": 83}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0], "total": 6, "isTopResearch": false, "rank": 140, "sp500_rank": 69}, "citation_counts": {"counts": [2, 9, 13, 7, 9, 9, 13, 34, 74, 57, 4], "total": 231, "isTopResearch": false, "rank": 371, "sp500_rank": 171}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 3, 4, 4, 0, 0], "total": 11, "isTopResearch": true, "rank": 87, "sp500_rank": 59}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [1.0, 9.0, 13.0, 0, 0, 9.0, 2.6, 3.4, 12.333333333333334, 14.25, 0], "total": 7.7, "isTopResearch": false, "rank": 615, "sp500_rank": 233}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 6401, "rank": 76, "sp500_rank": 50}, "ai_jobs": {"counts": null, "total": 485, "rank": 117, "sp500_rank": 75}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 839, "country": "United States", "website": "https://www.leidos.com/", "crunchbase": {"text": "504f4b06-6124-a0c9-1925-2cdef5afab6f", "url": "https://www.crunchbase.com/organization/leidos-holdings"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/leidos"], "stage": "Mature", "name": "Leidos Holdings Inc", "patent_name": "leidos holdings inc", "continent": "North America", "local_logo": "leidos_holdings_inc.png", "aliases": "Leidos; Leidos Holdings", "permid_links": [{"text": 4295900055, "url": "https://permid.org/1-4295900055"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LDOS", "url": "https://www.google.com/finance/quote/ldos:nyse"}], "market_full": [{"text": "NYSE:LDOS", "url": "https://www.google.com/finance/quote/ldos:nyse"}, {"text": "BRN:S6IA", "url": "https://www.google.com/finance/quote/brn:s6ia"}, {"text": "BER:S6IA", "url": "https://www.google.com/finance/quote/ber:s6ia"}, {"text": "DEU:S6IA", "url": "https://www.google.com/finance/quote/deu:s6ia"}, {"text": "ASE:LDOS", "url": "https://www.google.com/finance/quote/ase:ldos"}, {"text": "NYQ:LDOS", "url": "https://www.google.com/finance/quote/ldos:nyq"}, {"text": "FRA:S6IA", "url": "https://www.google.com/finance/quote/fra:s6ia"}, {"text": "MUN:S6IA", "url": "https://www.google.com/finance/quote/mun:s6ia"}, {"text": "MEX:LDOS", "url": "https://www.google.com/finance/quote/ldos:mex"}, {"text": "STU:S6IA", "url": "https://www.google.com/finance/quote/s6ia:stu"}], "crunchbase_description": "Leidos holdings is a provider of scientific, engineering, systems integration and technical services and solutions.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Segmentation", "field_count": 3}, {"field_name": "Turing test", "field_count": 2}, {"field_name": "Wavelet", "field_count": 2}, {"field_name": "NIST", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Evolutionary algorithm", "field_count": 1}, {"field_name": "Pixel", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Open-source intelligence", "field_count": 1}], "clusters": [{"cluster_id": 18183, "cluster_count": 4}, {"cluster_id": 33422, "cluster_count": 2}, {"cluster_id": 1193, "cluster_count": 2}, {"cluster_id": 66297, "cluster_count": 2}, {"cluster_id": 16633, "cluster_count": 2}, {"cluster_id": 25681, "cluster_count": 2}, {"cluster_id": 2651, "cluster_count": 2}, {"cluster_id": 18367, "cluster_count": 2}, {"cluster_id": 29535, "cluster_count": 2}, {"cluster_id": 27271, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 24}, {"ref_CSET_id": 163, "referenced_count": 15}, {"ref_CSET_id": 839, "referenced_count": 12}, {"ref_CSET_id": 184, "referenced_count": 9}, {"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 127, "referenced_count": 6}, {"ref_CSET_id": 2601, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 789, "referenced_count": 3}, {"ref_CSET_id": 2048, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 12}, {"referent": "image_analysis", "task_count": 8}, {"referent": "segmentation", "task_count": 5}, {"referent": "autonomous_vehicles", "task_count": 5}, {"referent": "image_processing", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "change_detection", "task_count": 3}, {"referent": "image_registration", "task_count": 3}, {"referent": "object_detection", "task_count": 3}, {"referent": "nuclear_segmentation", "task_count": 2}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 6}, {"referent": "griffin_lim_algorithm", "method_count": 6}, {"referent": "vqa_models", "method_count": 5}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "optimization", "method_count": 4}, {"referent": "q_learning", "method_count": 3}, {"referent": "mad_learning", "method_count": 3}, {"referent": "ca", "method_count": 2}, {"referent": "sabn", "method_count": 2}, {"referent": "crf", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [254, 261, 247, 241, 329, 293, 330, 402, 351, 260, 7], "total": 2975, "isTopResearch": false, "rank": 95, "fortune500_rank": 37}, "ai_publications": {"counts": [3, 6, 7, 3, 11, 4, 17, 16, 9, 1, 0], "total": 77, "isTopResearch": false, "rank": 142, "fortune500_rank": 45}, "ai_publications_growth": {"counts": [], "total": -46.17374727668845, "isTopResearch": false, "rank": 1438, "fortune500_rank": 418}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 188, "fortune500_rank": 54}, "citation_counts": {"counts": [42, 65, 80, 87, 114, 166, 245, 456, 444, 232, 8], "total": 1939, "isTopResearch": false, "rank": 140, "fortune500_rank": 41}, "cv_pubs": {"counts": [1, 1, 3, 0, 2, 1, 4, 4, 1, 0, 0], "total": 17, "isTopResearch": true, "rank": 154, "fortune500_rank": 43}, "nlp_pubs": {"counts": [1, 1, 1, 0, 1, 1, 0, 0, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 141, "fortune500_rank": 42}, "robotics_pubs": {"counts": [0, 2, 1, 0, 2, 0, 4, 2, 3, 0, 0], "total": 14, "isTopResearch": true, "rank": 94, "fortune500_rank": 26}, "citations_per_article": {"counts": [14.0, 10.833333333333334, 11.428571428571429, 29.0, 10.363636363636363, 41.5, 14.411764705882353, 28.5, 49.333333333333336, 232.0, 0], "total": 25.181818181818183, "isTopResearch": false, "rank": 236, "fortune500_rank": 73}}, "patents": {"ai_patents": {"counts": [1, 3, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525, "fortune500_rank": 169}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 30, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525, "fortune500_rank": 169}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 6398, "rank": 77, "fortune500_rank": 48}, "ai_jobs": {"counts": null, "total": 278, "rank": 192, "fortune500_rank": 108}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Leidos, formerly known as Science Applications International Corporation (SAIC), is an American Defense, Aviation, Information Technology (Lockheed Martin IS&GS), and Biomedical Research company headquartered in Reston, Virginia, that provides scientific, engineering, systems integration, and technical services. Leidos merged with Lockheed Martin's IT sector in August 2016 for Information Systems & Global Solutions business to create the defense industry\u2019s largest IT services provider. The Leidos-Lockheed Martin merger is one of the biggest transactions thus far in the consolidation of a defense sector. Leidos works extensively with the United States Department of Defense (4th largest DoD contractor FY2012), the United States Department of Homeland Security, and the United States Intelligence Community, including the NSA, as well as other U.S. government civil agencies and selected commercial markets.", "wikipedia_link": "https://en.wikipedia.org/wiki/Leidos", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 514, "country": "United States", "website": "http://www.intuit.com", "crunchbase": {"text": "fbef6457-9149-72cf-af57-7cfbe15c05f8", "url": "https://www.crunchbase.com/organization/intuit"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/intuit"], "stage": "Mature", "name": "Intuit", "patent_name": "intuit", "continent": "North America", "local_logo": "intuit.png", "aliases": "Intuit Inc; Intuit, Inc", "permid_links": [{"text": 4295906862, "url": "https://permid.org/1-4295906862"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:INTU", "url": "https://www.google.com/finance/quote/intu:nasdaq"}], "market_full": [{"text": "MOEX:INTU-RM", "url": "https://www.google.com/finance/quote/intu-rm:moex"}, {"text": "LON:0JCT", "url": "https://www.google.com/finance/quote/0jct:lon"}, {"text": "VIE:INTU", "url": "https://www.google.com/finance/quote/intu:vie"}, {"text": "NASDAQ:INTU", "url": "https://www.google.com/finance/quote/intu:nasdaq"}, {"text": "HAN:ITU", "url": "https://www.google.com/finance/quote/han:itu"}, {"text": "BMV:INTU", "url": "https://www.google.com/finance/quote/bmv:intu"}, {"text": "DUS:ITU", "url": "https://www.google.com/finance/quote/dus:itu"}, {"text": "HAM:ITU", "url": "https://www.google.com/finance/quote/ham:itu"}, {"text": "MUN:ITU", "url": "https://www.google.com/finance/quote/itu:mun"}, {"text": "XETR:ITU", "url": "https://www.google.com/finance/quote/itu:xetr"}, {"text": "FWB:ITU", "url": "https://www.google.com/finance/quote/fwb:itu"}, {"text": "MEX:INTU", "url": "https://www.google.com/finance/quote/intu:mex"}, {"text": "BER:ITU", "url": "https://www.google.com/finance/quote/ber:itu"}], "crunchbase_description": "Intuit offers business and financial management solutions for SMBs, financial institutions, consumers, and accounting professionals.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Recommender system", "field_count": 4}, {"field_name": "Feature selection", "field_count": 2}, {"field_name": "Principle of maximum entropy", "field_count": 2}, {"field_name": "Multimodal learning", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Question answering", "field_count": 1}, {"field_name": "Relevance (information retrieval)", "field_count": 1}, {"field_name": "Categorization", "field_count": 1}, {"field_name": "Interpretability", "field_count": 1}, {"field_name": "Federated search", "field_count": 1}], "clusters": [{"cluster_id": 148, "cluster_count": 4}, {"cluster_id": 5109, "cluster_count": 3}, {"cluster_id": 20825, "cluster_count": 2}, {"cluster_id": 9084, "cluster_count": 2}, {"cluster_id": 484, "cluster_count": 2}, {"cluster_id": 18032, "cluster_count": 2}, {"cluster_id": 15731, "cluster_count": 2}, {"cluster_id": 23354, "cluster_count": 2}, {"cluster_id": 37314, "cluster_count": 2}, {"cluster_id": 11644, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 50}, {"ref_CSET_id": 163, "referenced_count": 46}, {"ref_CSET_id": 115, "referenced_count": 39}, {"ref_CSET_id": 87, "referenced_count": 17}, {"ref_CSET_id": 514, "referenced_count": 15}, {"ref_CSET_id": 792, "referenced_count": 8}, {"ref_CSET_id": 21, "referenced_count": 7}, {"ref_CSET_id": 319, "referenced_count": 5}, {"ref_CSET_id": 1126, "referenced_count": 4}, {"ref_CSET_id": 23, "referenced_count": 3}], "tasks": [{"referent": "recommendation_systems", "task_count": 7}, {"referent": "classification", "task_count": 4}, {"referent": "image_processing", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "time_series", "task_count": 3}, {"referent": "feature_selection", "task_count": 3}, {"referent": "portfolio_optimization", "task_count": 2}, {"referent": "named_entity_recognition", "task_count": 2}, {"referent": "personal_identification", "task_count": 2}, {"referent": "user_identification", "task_count": 2}], "methods": [{"referent": "3d_representations", "method_count": 7}, {"referent": "vqa_models", "method_count": 6}, {"referent": "mad_learning", "method_count": 6}, {"referent": "auto_classifier", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "l1_regularization", "method_count": 3}, {"referent": "bilstm", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "adversarial_training", "method_count": 2}, {"referent": "q_learning", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [6, 5, 11, 8, 19, 29, 37, 27, 24, 22, 0], "total": 188, "isTopResearch": false, "rank": 416, "fortune500_rank": 159}, "ai_publications": {"counts": [2, 1, 4, 0, 2, 12, 11, 8, 7, 5, 0], "total": 52, "isTopResearch": false, "rank": 178, "fortune500_rank": 55}, "ai_publications_growth": {"counts": [], "total": -22.781385281385283, "isTopResearch": false, "rank": 1351, "fortune500_rank": 392}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 4, 5, 4, 1, 1, 0], "total": 15, "isTopResearch": false, "rank": 95, "fortune500_rank": 34}, "citation_counts": {"counts": [14, 33, 44, 49, 67, 89, 152, 266, 293, 262, 10], "total": 1279, "isTopResearch": false, "rank": 174, "fortune500_rank": 53}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 2, 1, 2, 0, 0], "total": 6, "isTopResearch": true, "rank": 267, "fortune500_rank": 73}, "nlp_pubs": {"counts": [0, 0, 1, 0, 1, 7, 3, 3, 1, 1, 0], "total": 17, "isTopResearch": true, "rank": 71, "fortune500_rank": 23}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [7.0, 33.0, 11.0, 0, 33.5, 7.416666666666667, 13.818181818181818, 33.25, 41.857142857142854, 52.4, 0], "total": 24.596153846153847, "isTopResearch": false, "rank": 244, "fortune500_rank": 77}}, "patents": {"ai_patents": {"counts": [5, 7, 9, 28, 37, 58, 74, 84, 37, 2, 0], "total": 341, "table": null, "rank": 71, "fortune500_rank": 22}, "ai_patents_growth": {"counts": [], "total": 32.618825722274, "table": null, "rank": 267, "fortune500_rank": 78}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [50, 70, 90, 280, 370, 580, 740, 840, 370, 20, 0], "total": 3410, "table": null, "rank": 71, "fortune500_rank": 22}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 0, 4, 3, 5, 5, 1, 0, 0], "total": 19, "table": "industry", "rank": 59, "fortune500_rank": 24}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 3, "table": null, "rank": 27, "fortune500_rank": 5}, "Personal_Devices_and_Computing": {"counts": [3, 3, 4, 18, 26, 43, 45, 52, 21, 1, 0], "total": 216, "table": "industry", "rank": 37, "fortune500_rank": 15}, "Banking_and_Finance": {"counts": [2, 3, 6, 19, 15, 19, 19, 16, 8, 0, 0], "total": 107, "table": "industry", "rank": 8, "fortune500_rank": 3}, "Telecommunications": {"counts": [0, 2, 0, 1, 6, 10, 5, 13, 8, 0, 0], "total": 45, "table": "industry", "rank": 83, "fortune500_rank": 36}, "Networks__eg_social_IOT_etc": {"counts": [2, 1, 0, 0, 1, 1, 2, 0, 0, 0, 0], "total": 7, "table": null, "rank": 26, "fortune500_rank": 14}, "Business": {"counts": [3, 1, 5, 9, 11, 14, 19, 32, 6, 0, 0], "total": 100, "table": "industry", "rank": 28, "fortune500_rank": 11}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [1, 1, 0, 6, 5, 4, 10, 0, 0, 0, 0], "total": 27, "table": "application", "rank": 19, "fortune500_rank": 11}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 4, 4, 3, 0, 0], "total": 11, "table": "application", "rank": 77, "fortune500_rank": 23}, "Knowledge_Representation": {"counts": [2, 0, 3, 6, 10, 7, 12, 9, 4, 0, 0], "total": 53, "table": "application", "rank": 23, "fortune500_rank": 11}, "Planning_and_Scheduling": {"counts": [1, 1, 1, 6, 6, 3, 7, 15, 2, 0, 0], "total": 42, "table": "application", "rank": 44, "fortune500_rank": 15}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 3, 4, 12, 17, 18, 9, 0, 0], "total": 63, "table": "application", "rank": 98, "fortune500_rank": 30}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 6226, "rank": 78, "fortune500_rank": 49}, "ai_jobs": {"counts": null, "total": 587, "rank": 90, "fortune500_rank": 47}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Intuit Inc. is an American business that specializes in financial software. The company is headquartered in Mountain View, California and the CEO is Sasan Goodarzi. As of 2019, more than 95% of its revenues and earnings come from its activities within the United States. Intuit's products include the tax preparation application TurboTax, personal finance app Mint and the small business accounting program QuickBooks. Intuit has lobbied extensively against the IRS providing taxpayers with free pre-filled forms, as is the norm in other developed countries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Intuit", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1961, "country": null, "website": "https://www.db.com/", "crunchbase": {"text": " e649d0c7-3f41-e2c0-03b7-867ab82fb8d2", "url": " https://www.crunchbase.com/organization/deutsche-bank"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/deutsche-bank"], "stage": "Mature", "name": "Deutsche Bank", "patent_name": "Deutsche Bank", "continent": null, "local_logo": null, "aliases": "Deutsche Bank; Deutsche Bank Ag", "permid_links": [{"text": 4295869482, "url": "https://permid.org/1-4295869482"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DB", "url": "https://www.google.com/finance/quote/DB:NYSE"}], "market_full": [{"text": "HAM:DBK", "url": "https://www.google.com/finance/quote/DBK:HAM"}, {"text": "MEX:DBN", "url": "https://www.google.com/finance/quote/DBN:MEX"}, {"text": "HAN:DBK", "url": "https://www.google.com/finance/quote/DBK:HAN"}, {"text": "BUD:DEUTSCHEBANK", "url": "https://www.google.com/finance/quote/BUD:DEUTSCHEBANK"}, {"text": "PRA:DBK", "url": "https://www.google.com/finance/quote/DBK:PRA"}, {"text": "SWX:DBK", "url": "https://www.google.com/finance/quote/DBK:SWX"}, {"text": "EBT:DBKD", "url": "https://www.google.com/finance/quote/DBKd:EBT"}, {"text": "VIE:DBK", "url": "https://www.google.com/finance/quote/DBK:VIE"}, {"text": "NYSE:DB", "url": "https://www.google.com/finance/quote/DB:NYSE"}, {"text": "GER:DBKX.N", "url": "https://www.google.com/finance/quote/DBKX.N:GER"}, {"text": "ASE:DB", "url": "https://www.google.com/finance/quote/ASE:DB"}, {"text": "LSE:0H7D", "url": "https://www.google.com/finance/quote/0H7D:LSE"}, {"text": "DEU:DBKGN", "url": "https://www.google.com/finance/quote/DBKGn:DEU"}, {"text": "DUS:DBK", "url": "https://www.google.com/finance/quote/DBK:DUS"}, {"text": "MIL:DBK", "url": "https://www.google.com/finance/quote/DBK:MIL"}, {"text": "MUN:DBK", "url": "https://www.google.com/finance/quote/DBK:MUN"}, {"text": "STU:DBK", "url": "https://www.google.com/finance/quote/DBK:STU"}, {"text": "NYQ:DB", "url": "https://www.google.com/finance/quote/DB:NYQ"}, {"text": "BER:DBK", "url": "https://www.google.com/finance/quote/BER:DBK"}, {"text": "BRN:DBK", "url": "https://www.google.com/finance/quote/BRN:DBK"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Sentiment analysis", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}], "clusters": [{"cluster_id": 38981, "cluster_count": 1}, {"cluster_id": 6433, "cluster_count": 1}, {"cluster_id": 8346, "cluster_count": 1}, {"cluster_id": 28814, "cluster_count": 1}, {"cluster_id": 1027, "cluster_count": 1}, {"cluster_id": 57620, "cluster_count": 1}, {"cluster_id": 13252, "cluster_count": 1}, {"cluster_id": 9397, "cluster_count": 1}, {"cluster_id": 47589, "cluster_count": 1}, {"cluster_id": 746, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 115, "referenced_count": 7}, {"ref_CSET_id": 1933, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}, {"ref_CSET_id": 800, "referenced_count": 1}, {"ref_CSET_id": 456, "referenced_count": 1}], "tasks": [{"referent": "image_analysis", "task_count": 2}, {"referent": "information_extraction", "task_count": 1}, {"referent": "superpixel_image_classification", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "traffic_prediction", "task_count": 1}, {"referent": "horizon_line_estimation", "task_count": 1}, {"referent": "mas", "task_count": 1}, {"referent": "customer_segmentation", "task_count": 1}, {"referent": "nethack", "task_count": 1}], "methods": [{"referent": "estimation_statistics", "method_count": 2}, {"referent": "inception_a", "method_count": 1}, {"referent": "spp_net", "method_count": 1}, {"referent": "k_means_clustering", "method_count": 1}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "weight_tying", "method_count": 1}, {"referent": "ca", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [46, 123, 47, 70, 46, 52, 28, 33, 108, 23, 0], "total": 576, "isTopResearch": false, "rank": 256, "sp500_rank": 172}, "ai_publications": {"counts": [2, 0, 1, 1, 2, 2, 2, 1, 1, 0, 0], "total": 12, "isTopResearch": false, "rank": 384, "sp500_rank": 205}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 3, 13, 25, 29, 42, 52, 66, 60, 41, 2], "total": 333, "isTopResearch": false, "rank": 319, "sp500_rank": 155}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0.0, 0, 13.0, 25.0, 14.5, 21.0, 26.0, 66.0, 60.0, 0, 0], "total": 27.75, "isTopResearch": false, "rank": 211, "sp500_rank": 55}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 10, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 78, "sp500_rank": 54}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 6114, "rank": 79, "sp500_rank": 51}, "ai_jobs": {"counts": null, "total": 572, "rank": 97, "sp500_rank": 62}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 840, "country": "United States", "website": "http://www.servicenow.com/", "crunchbase": {"text": "5732f882-ce88-4954-eb91-1f5f65907e4b", "url": "https://www.crunchbase.com/organization/service-now-com"}, "child_crunchbase": [{"text": "480a1964-c614-84fb-b0ac-c981b1ceb5cd", "url": "https://www.crunchbase.com/organization/element-ai"}], "linkedin": ["https://www.linkedin.com/company/servicenow"], "stage": "Mature", "name": "Servicenow", "patent_name": "ServiceNow", "continent": "North America", "local_logo": "servicenow.png", "aliases": "ServiceNow; Servicenow, Inc", "permid_links": [{"text": 5000388033, "url": "https://permid.org/1-5000388033"}, {"text": 5052540212, "url": "https://permid.org/1-5052540212"}], "parent_info": null, "agg_child_info": "Element Ai", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:NOW", "url": "https://www.google.com/finance/quote/NASDAQ:NOW"}, {"text": "NYSE:NOW", "url": "https://www.google.com/finance/quote/NOW:NYSE"}], "market_full": [{"text": "FRA:4S0", "url": "https://www.google.com/finance/quote/4S0:FRA"}, {"text": "MCX:NOW-RM", "url": "https://www.google.com/finance/quote/MCX:NOW-RM"}, {"text": "BER:4S0", "url": "https://www.google.com/finance/quote/4S0:BER"}, {"text": "GER:4S0X", "url": "https://www.google.com/finance/quote/4S0X:GER"}, {"text": "LSE:0L5N", "url": "https://www.google.com/finance/quote/0L5N:LSE"}, {"text": "BRN:4S0", "url": "https://www.google.com/finance/quote/4S0:BRN"}, {"text": "MUN:4S0", "url": "https://www.google.com/finance/quote/4S0:MUN"}, {"text": "VIE:SNOW", "url": "https://www.google.com/finance/quote/SNOW:VIE"}, {"text": "ASE:NOW", "url": "https://www.google.com/finance/quote/ASE:NOW"}, {"text": "HAN:4S0", "url": "https://www.google.com/finance/quote/4S0:HAN"}, {"text": "DUS:4S0", "url": "https://www.google.com/finance/quote/4S0:DUS"}, {"text": "DEU:4S0", "url": "https://www.google.com/finance/quote/4S0:DEU"}, {"text": "NASDAQ:NOW", "url": "https://www.google.com/finance/quote/NASDAQ:NOW"}, {"text": "MEX:NOWW*", "url": "https://www.google.com/finance/quote/MEX:NOWW*"}, {"text": "STU:4S0", "url": "https://www.google.com/finance/quote/4S0:STU"}, {"text": "NYSE:NOW", "url": "https://www.google.com/finance/quote/NOW:NYSE"}, {"text": "SAO:N1OW34", "url": "https://www.google.com/finance/quote/N1OW34:SAO"}], "crunchbase_description": "ServiceNow provides cloud-based solutions that define, structure, manage, and automate services for enterprise operations.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Segmentation", "field_count": 6}, {"field_name": "Convolutional neural network", "field_count": 5}, {"field_name": "Object (computer science)", "field_count": 3}, {"field_name": "Reinforcement learning", "field_count": 3}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Test data generation", "field_count": 1}], "clusters": [{"cluster_id": 14903, "cluster_count": 4}, {"cluster_id": 26441, "cluster_count": 4}, {"cluster_id": 7095, "cluster_count": 3}, {"cluster_id": 1206, "cluster_count": 3}, {"cluster_id": 3446, "cluster_count": 3}, {"cluster_id": 73490, "cluster_count": 3}, {"cluster_id": 3167, "cluster_count": 2}, {"cluster_id": 21939, "cluster_count": 2}, {"cluster_id": 1338, "cluster_count": 2}, {"cluster_id": 27564, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 297}, {"ref_CSET_id": 163, "referenced_count": 134}, {"ref_CSET_id": 87, "referenced_count": 107}, {"ref_CSET_id": 840, "referenced_count": 45}, {"ref_CSET_id": 115, "referenced_count": 21}, {"ref_CSET_id": 23, "referenced_count": 19}, {"ref_CSET_id": 184, "referenced_count": 18}, {"ref_CSET_id": 127, "referenced_count": 14}, {"ref_CSET_id": 21, "referenced_count": 13}, {"ref_CSET_id": 6, "referenced_count": 13}], "tasks": [{"referent": "classification", "task_count": 10}, {"referent": "domain_generalization", "task_count": 8}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 7}, {"referent": "computer_vision", "task_count": 6}, {"referent": "robots", "task_count": 4}, {"referent": "segmentation", "task_count": 4}, {"referent": "domain_adaptation", "task_count": 4}, {"referent": "inference_attack", "task_count": 3}, {"referent": "decision_making", "task_count": 3}, {"referent": "active_learning", "task_count": 3}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 17}, {"referent": "3d_representations", "method_count": 8}, {"referent": "convolutional_neural_networks", "method_count": 7}, {"referent": "q_learning", "method_count": 6}, {"referent": "symbolic_deep_learning", "method_count": 6}, {"referent": "meta_learning_algorithms", "method_count": 6}, {"referent": "double_q_learning", "method_count": 5}, {"referent": "reinforcement_learning", "method_count": 5}, {"referent": "optimization", "method_count": 4}, {"referent": "neural_architecture_search", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 3, 13, 29, 45, 25, 20, 1], "total": 137, "isTopResearch": false, "rank": 467, "fortune500_rank": 177}, "ai_publications": {"counts": [0, 0, 0, 0, 3, 11, 21, 29, 14, 9, 1], "total": 88, "isTopResearch": false, "rank": 132, "fortune500_rank": 44}, "ai_publications_growth": {"counts": [], "total": -16.447728516694035, "isTopResearch": false, "rank": 1299, "fortune500_rank": 378}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 4, 13, 8, 2, 1, 0], "total": 29, "isTopResearch": false, "rank": 60, "fortune500_rank": 21}, "citation_counts": {"counts": [0, 0, 0, 0, 4, 67, 311, 738, 1068, 645, 21], "total": 2854, "isTopResearch": false, "rank": 104, "fortune500_rank": 34}, "cv_pubs": {"counts": [0, 0, 0, 0, 2, 4, 12, 11, 7, 4, 1], "total": 41, "isTopResearch": true, "rank": 95, "fortune500_rank": 26}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 3, 2, 1, 0], "total": 8, "isTopResearch": true, "rank": 110, "fortune500_rank": 31}, "robotics_pubs": {"counts": [0, 0, 0, 0, 2, 0, 1, 0, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 187, "fortune500_rank": 49}, "citations_per_article": {"counts": [0, 0, 0, 0, 1.3333333333333333, 6.090909090909091, 14.80952380952381, 25.448275862068964, 76.28571428571429, 71.66666666666667, 21.0], "total": 32.43181818181818, "isTopResearch": false, "rank": 174, "fortune500_rank": 48}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 3, 14, 76, 40, 61, 14, 0, 0], "total": 209, "table": null, "rank": 99, "fortune500_rank": 34}, "ai_patents_growth": {"counts": [], "total": 149.3295739348371, "table": null, "rank": 75, "fortune500_rank": 17}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 30, 140, 760, 400, 610, 140, 0, 0], "total": 2090, "table": null, "rank": 99, "fortune500_rank": 34}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 2, 2, 2, 1, 0, 0], "total": 7, "table": "industry", "rank": 112, "fortune500_rank": 45}, "Transportation": {"counts": [0, 0, 0, 0, 0, 4, 1, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 133, "fortune500_rank": 42}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 104, "fortune500_rank": 31}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 3, 12, 49, 26, 27, 8, 0, 0], "total": 126, "table": "industry", "rank": 63, "fortune500_rank": 26}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 115, "fortune500_rank": 41}, "Telecommunications": {"counts": [0, 0, 0, 1, 8, 15, 11, 8, 6, 0, 0], "total": 49, "table": "industry", "rank": 78, "fortune500_rank": 32}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 8, 17, 4, 7, 1, 0, 0], "total": 38, "table": "industry", "rank": 67, "fortune500_rank": 28}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 1, 0, 3, 7, 4, 0, 0, 0, 0], "total": 15, "table": "application", "rank": 31, "fortune500_rank": 17}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 1, 0, 0], "total": 5, "table": null, "rank": 117, "fortune500_rank": 34}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 3, 7, 2, 4, 1, 0, 0], "total": 17, "table": "application", "rank": 59, "fortune500_rank": 33}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 8, 13, 4, 7, 0, 0, 0], "total": 33, "table": "application", "rank": 50, "fortune500_rank": 20}, "Control": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 1, 0, 0], "total": 4, "table": null, "rank": 190, "fortune500_rank": 67}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 36, "fortune500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 30, 10, 27, 1, 0, 0], "total": 69, "table": "application", "rank": 89, "fortune500_rank": 27}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 5, 6, 3, 2, 0, 0], "total": 17, "table": "application", "rank": 76, "fortune500_rank": 33}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 6087, "rank": 80, "fortune500_rank": 50}, "ai_jobs": {"counts": null, "total": 314, "rank": 174, "fortune500_rank": 95}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 50, "country": "China", "website": "http://bytedance.com", "crunchbase": {"text": "47f9688f-00a9-23f9-3a64-179bc6dd31d4", "url": "https://www.crunchbase.com/organization/bytedance"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bytedance"], "stage": "Mature", "name": "Bytedance", "patent_name": "bytedance", "continent": "Asia", "local_logo": "bytedance.png", "aliases": "Beijing Bytedance Technology Co Ltd; Bytedance; Tiaodong; Zijie Tiaodong; \u5317\u4eac\u5b57\u8282\u8df3\u52a8\u79d1\u6280\u6709\u9650\u516c\u53f8; \u5b57\u8282\u8df3\u52a8", "permid_links": [{"text": 5042940843, "url": "https://permid.org/1-5042940843"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "ByteDance is an internet technology company that operates creative content platforms.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 31}, {"field_name": "Deep learning", "field_count": 25}, {"field_name": "Segmentation", "field_count": 21}, {"field_name": "Convolutional neural network", "field_count": 14}, {"field_name": "Object (computer science)", "field_count": 12}, {"field_name": "Machine translation", "field_count": 12}, {"field_name": "Reinforcement learning", "field_count": 11}, {"field_name": "Feature learning", "field_count": 11}, {"field_name": "Robustness (computer science)", "field_count": 10}, {"field_name": "Pose", "field_count": 10}], "clusters": [{"cluster_id": 1149, "cluster_count": 11}, {"cluster_id": 1338, "cluster_count": 11}, {"cluster_id": 3886, "cluster_count": 11}, {"cluster_id": 1422, "cluster_count": 10}, {"cluster_id": 56285, "cluster_count": 9}, {"cluster_id": 214, "cluster_count": 9}, {"cluster_id": 2505, "cluster_count": 8}, {"cluster_id": 1206, "cluster_count": 8}, {"cluster_id": 5507, "cluster_count": 8}, {"cluster_id": 3527, "cluster_count": 7}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1735}, {"ref_CSET_id": 163, "referenced_count": 1246}, {"ref_CSET_id": 87, "referenced_count": 864}, {"ref_CSET_id": 6, "referenced_count": 392}, {"ref_CSET_id": 245, "referenced_count": 276}, {"ref_CSET_id": 184, "referenced_count": 228}, {"ref_CSET_id": 223, "referenced_count": 220}, {"ref_CSET_id": 37, "referenced_count": 200}, {"ref_CSET_id": 112, "referenced_count": 199}, {"ref_CSET_id": 21, "referenced_count": 168}], "tasks": [{"referent": "classification", "task_count": 31}, {"referent": "classification_tasks", "task_count": 25}, {"referent": "computer_vision", "task_count": 23}, {"referent": "image_recognition", "task_count": 18}, {"referent": "object_detection", "task_count": 17}, {"referent": "semantic_segmentation", "task_count": 16}, {"referent": "segmentation", "task_count": 15}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 13}, {"referent": "machine_translation", "task_count": 13}, {"referent": "recommendation", "task_count": 11}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 50}, {"referent": "3d_representations", "method_count": 47}, {"referent": "convolutional_neural_networks", "method_count": 34}, {"referent": "vqa_models", "method_count": 30}, {"referent": "q_learning", "method_count": 25}, {"referent": "generative_adversarial_networks", "method_count": 20}, {"referent": "symbolic_deep_learning", "method_count": 18}, {"referent": "attention_mechanisms", "method_count": 16}, {"referent": "1d_cnn", "method_count": 16}, {"referent": "neural_architecture_search", "method_count": 16}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 4, 13, 50, 112, 161, 210, 246, 5], "total": 801, "isTopResearch": false, "rank": 214}, "ai_publications": {"counts": [0, 0, 0, 2, 11, 37, 73, 111, 153, 116, 0], "total": 503, "isTopResearch": false, "rank": 40}, "ai_publications_growth": {"counts": [], "total": 21.903208607479357, "isTopResearch": false, "rank": 113}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 3, 21, 40, 52, 52, 50, 0], "total": 219, "isTopResearch": false, "rank": 18}, "citation_counts": {"counts": [0, 0, 0, 1, 23, 110, 789, 2199, 4322, 3998, 147], "total": 11589, "isTopResearch": false, "rank": 44}, "cv_pubs": {"counts": [0, 0, 0, 0, 6, 23, 42, 56, 84, 67, 0], "total": 278, "isTopResearch": true, "rank": 28}, "nlp_pubs": {"counts": [0, 0, 0, 0, 3, 6, 13, 18, 19, 11, 0], "total": 70, "isTopResearch": true, "rank": 34}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 3, 4, 0], "total": 11, "isTopResearch": true, "rank": 106}, "citations_per_article": {"counts": [0, 0, 0, 0.5, 2.090909090909091, 2.972972972972973, 10.808219178082192, 19.81081081081081, 28.248366013071895, 34.46551724137931, 0], "total": 23.03976143141153, "isTopResearch": false, "rank": 264}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 5, 2, 85, 139, 238, 111, 28, 0], "total": 609, "table": null, "rank": 47}, "ai_patents_growth": {"counts": [], "total": 1428.2508111158133, "table": null, "rank": 3}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 0, 0, 50, 20, 850, 1390, 2380, 1110, 280, 0], "total": 6090, "table": null, "rank": 47}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], "total": 5, "table": null, "rank": 122}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 3, 1, 2, 0], "total": 7, "table": "industry", "rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 2, 0, 0, 2, 0, 1, 0, 0], "total": 5, "table": null, "rank": 32}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 3, 1, 13, 21, 62, 27, 9, 0], "total": 136, "table": "industry", "rank": 59}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 4, 8, 17, 6, 2, 0], "total": 37, "table": "industry", "rank": 94}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 3, 1, 2, 0, 0, 0], "total": 6, "table": null, "rank": 31}, "Business": {"counts": [0, 0, 0, 1, 1, 6, 3, 14, 2, 2, 0], "total": 29, "table": "industry", "rank": 80}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 3, 0, 3, 2, 1, 0], "total": 10, "table": "industry", "rank": 15}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 5, 42, 10, 1, 0], "total": 58, "table": "application", "rank": 16}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 1, 0], "total": 4, "table": "application", "rank": 137}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 0, 3, 1, 1, 1, 2, 0], "total": 9, "table": "application", "rank": 134}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 46, 80, 130, 66, 13, 0], "total": 336, "table": "application", "rank": 29}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 2, 2, 3, 1, 1, 0], "total": 10, "table": "application", "rank": 114}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 6041, "rank": 81}, "ai_jobs": {"counts": null, "total": 1376, "rank": 30}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "ByteDance Ltd. (Chinese: \u5b57\u8282\u8df3\u52a8; pinyin: Z\u00ecji\u00e9 Ti\u00e0od\u00f2ng) is a multinational internet technology company headquartered in Beijing and legally domiciled in the Cayman Islands. It was founded by Zhang Yiming in 2012. ByteDance is reportedly worth over US$100 billion as of May 2020.\nByteDance's core product, Toutiao (\"Headlines\"), is a content platform in China and around the world. Toutiao started out as a news recommendation engine and gradually evolved into a platform delivering content in various formats, such as texts, images, question-and-answer posts, microblogs, and videos.", "wikipedia_link": "https://en.wikipedia.org/wiki/ByteDance", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 826, "country": "United States", "website": "https://www.usaa.com", "crunchbase": {"text": "102129ce-5759-569f-f553-a56309279015", "url": "https://www.crunchbase.com/organization/usaa"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/usaa"], "stage": "Unknown", "name": "Usaa", "patent_name": "USAA", "continent": "North America", "local_logo": "usaa.png", "aliases": "USAA; United Services Automobile Association", "permid_links": [{"text": 4298009388, "url": "https://permid.org/1-4298009388"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "USAA is a financial services company.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 1}, {"field_name": "Advanced driver assistance systems", "field_count": 1}, {"field_name": "Generalized additive model", "field_count": 1}], "clusters": [{"cluster_id": 54793, "cluster_count": 1}, {"cluster_id": 8466, "cluster_count": 1}, {"cluster_id": 40133, "cluster_count": 1}, {"cluster_id": 39195, "cluster_count": 1}, {"cluster_id": 8773, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 1933, "referenced_count": 1}], "tasks": [{"referent": "sequence_to_sequence_speech_recognition", "task_count": 1}, {"referent": "intent_detection", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}, {"referent": "human_robot_interaction", "task_count": 1}, {"referent": "cancer", "task_count": 1}, {"referent": "cancer_diagnosis", "task_count": 1}, {"referent": "end_to_end_speech_recognition", "task_count": 1}, {"referent": "data_augmentation", "task_count": 1}, {"referent": "prostate_cancer", "task_count": 1}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "ga", "method_count": 1}, {"referent": "generalized_linear_models", "method_count": 1}, {"referent": "linear_regression", "method_count": 1}, {"referent": "non_parametric_regression", "method_count": 1}, {"referent": "cbam", "method_count": 1}, {"referent": "generalized_additive_models", "method_count": 1}, {"referent": "sequence_to_sequence_models", "method_count": 1}, {"referent": "attention_mechanisms", "method_count": 1}, {"referent": "awd_lstm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2, 24, 3, 7, 5, 5, 10, 13, 11, 5, 0], "total": 85, "isTopResearch": false, "rank": 538, "sp500_rank": 302}, "ai_publications": {"counts": [0, 1, 0, 1, 1, 1, 0, 1, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "sp500_rank": 262}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 1, 8, 23, 25, 36, 33, 33, 0], "total": 159, "isTopResearch": false, "rank": 430, "sp500_rank": 196}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 0.0, 0, 1.0, 8.0, 23.0, 0, 36.0, 0, 0, 0], "total": 31.8, "isTopResearch": false, "rank": 181, "sp500_rank": 43}}, "patents": {"ai_patents": {"counts": [2, 2, 1, 11, 16, 16, 6, 1, 0, 0, 0], "total": 55, "table": null, "rank": 210, "sp500_rank": 128}, "ai_patents_growth": {"counts": [], "total": -48.61111111111111, "table": null, "rank": 1508, "sp500_rank": 443}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [20, 20, 10, 110, 160, 160, 60, 10, 0, 0, 0], "total": 550, "table": null, "rank": 210, "sp500_rank": 128}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 3, 3, 1, 0, 0, 0, 0, 0], "total": 8, "table": null, "rank": 103, "sp500_rank": 73}, "Transportation": {"counts": [0, 1, 1, 2, 5, 3, 0, 0, 0, 0, 0], "total": 12, "table": "industry", "rank": 91, "sp500_rank": 71}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 5, 4, 6, 4, 1, 0, 0, 0], "total": 20, "table": "industry", "rank": 188, "sp500_rank": 106}, "Banking_and_Finance": {"counts": [2, 1, 1, 4, 5, 4, 3, 1, 0, 0, 0], "total": 21, "table": "industry", "rank": 46, "sp500_rank": 36}, "Telecommunications": {"counts": [0, 1, 1, 5, 9, 8, 3, 0, 0, 0, 0], "total": 27, "table": "industry", "rank": 118, "sp500_rank": 76}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [1, 1, 1, 1, 6, 4, 5, 1, 0, 0, 0], "total": 20, "table": "industry", "rank": 106, "sp500_rank": 76}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 4, 0, 0, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 62, "sp500_rank": 44}, "Speech_Processing": {"counts": [0, 0, 0, 2, 2, 6, 1, 0, 0, 0, 0], "total": 11, "table": "application", "rank": 77, "sp500_rank": 55}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 162, "sp500_rank": 88}, "Planning_and_Scheduling": {"counts": [1, 1, 1, 1, 2, 4, 3, 1, 0, 0, 0], "total": 14, "table": "application", "rank": 103, "sp500_rank": 72}, "Control": {"counts": [0, 1, 1, 2, 5, 2, 0, 0, 0, 0, 0], "total": 11, "table": "application", "rank": 126, "sp500_rank": 89}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 2, 5, 2, 0, 1, 0, 0, 0], "total": 10, "table": "application", "rank": 241, "sp500_rank": 134}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 191, "sp500_rank": 121}, "Measuring_and_Testing": {"counts": [0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 209, "sp500_rank": 132}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 5999, "rank": 82, "sp500_rank": 52}, "ai_jobs": {"counts": null, "total": 817, "rank": 57, "sp500_rank": 40}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 1911, "country": "Spain", "website": "https://www.telefonica.com/", "crunchbase": {"text": " b762c7e1-7212-5b8f-b315-5757d6a20338", "url": "https://www.crunchbase.com/organization/telefonica"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/telef\u00f3nica"], "stage": "Unknown", "name": "Telef\u00f3nica", "patent_name": "Telef\u00f3nica", "continent": "Europe", "local_logo": null, "aliases": "Telef\u00f3nica; Telef\u00f3nica, S.A", "permid_links": [{"text": 5000062703, "url": "https://permid.org/1-5000062703"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Keyword spotting", "field_count": 2}, {"field_name": "Language model", "field_count": 2}, {"field_name": "Analytics", "field_count": 2}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Expert system", "field_count": 1}, {"field_name": "Automated guided vehicle", "field_count": 1}, {"field_name": "Hidden Markov model", "field_count": 1}, {"field_name": "Speech processing", "field_count": 1}, {"field_name": "Biometrics", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}], "clusters": [{"cluster_id": 7061, "cluster_count": 3}, {"cluster_id": 11352, "cluster_count": 2}, {"cluster_id": 5109, "cluster_count": 2}, {"cluster_id": 14492, "cluster_count": 2}, {"cluster_id": 3291, "cluster_count": 2}, {"cluster_id": 148, "cluster_count": 2}, {"cluster_id": 1422, "cluster_count": 1}, {"cluster_id": 11238, "cluster_count": 1}, {"cluster_id": 1149, "cluster_count": 1}, {"cluster_id": 56039, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 56}, {"ref_CSET_id": 163, "referenced_count": 22}, {"ref_CSET_id": 87, "referenced_count": 19}, {"ref_CSET_id": 115, "referenced_count": 9}, {"ref_CSET_id": 1911, "referenced_count": 6}, {"ref_CSET_id": 792, "referenced_count": 5}, {"ref_CSET_id": 37, "referenced_count": 5}, {"ref_CSET_id": 671, "referenced_count": 5}, {"ref_CSET_id": 184, "referenced_count": 5}, {"ref_CSET_id": 550, "referenced_count": 4}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "image_processing", "task_count": 3}, {"referent": "speech_recognition", "task_count": 3}, {"referent": "recommendation", "task_count": 3}, {"referent": "speaker_recognition", "task_count": 2}, {"referent": "biometric_authentication", "task_count": 2}, {"referent": "speech_enhancement", "task_count": 2}, {"referent": "voice_assistant", "task_count": 2}, {"referent": "keyword_spotting", "task_count": 2}], "methods": [{"referent": "vqa_models", "method_count": 7}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "3d_representations", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "speech_enhancement", "method_count": 2}, {"referent": "hit_detector", "method_count": 2}, {"referent": "language_models", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "setse", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [29, 34, 52, 47, 48, 38, 47, 37, 50, 33, 0], "total": 415, "isTopResearch": false, "rank": 304, "sp500_rank": 200}, "ai_publications": {"counts": [0, 4, 2, 3, 4, 3, 3, 5, 7, 2, 0], "total": 33, "isTopResearch": false, "rank": 227, "sp500_rank": 139}, "ai_publications_growth": {"counts": [], "total": 11.746031746031747, "isTopResearch": false, "rank": 148, "sp500_rank": 75}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 1, 0, 1, 1, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 169, "sp500_rank": 82}, "citation_counts": {"counts": [24, 36, 48, 54, 61, 103, 197, 555, 1193, 1240, 60], "total": 3571, "isTopResearch": false, "rank": 89, "sp500_rank": 59}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 2, 0, 0, 1, 2, 0, 1, 3, 1, 0], "total": 10, "isTopResearch": true, "rank": 92, "sp500_rank": 63}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 9.0, 24.0, 18.0, 15.25, 34.333333333333336, 65.66666666666667, 111.0, 170.42857142857142, 620.0, 0], "total": 108.21212121212122, "isTopResearch": false, "rank": 29, "sp500_rank": 4}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 2, 1, 0, 1, 0, 0], "total": 5, "table": null, "rank": 525, "sp500_rank": 225}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561, "sp500_rank": 462}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 20, 10, 0, 10, 0, 0], "total": 50, "table": null, "rank": 525, "sp500_rank": 225}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 1, 0, 0, 2, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 249, "sp500_rank": 129}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 5988, "rank": 83, "sp500_rank": 53}, "ai_jobs": {"counts": null, "total": 435, "rank": 133, "sp500_rank": 86}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2064, "country": "Switzerland", "website": "https://www.credit-suisse.com/", "crunchbase": {"text": " 2a5902e2-8ba2-6f02-6b05-6b6e96091d79", "url": " https://www.crunchbase.com/organization/credit-suisse"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/credit-suisse"], "stage": "Mature", "name": "Credit Suisse Group", "patent_name": "Credit Suisse Group", "continent": "Europe", "local_logo": null, "aliases": "Credit Suisse Group; Credit Suisse Group Ag; Credit Suisse Zurich", "permid_links": [{"text": 4295890672, "url": "https://permid.org/1-4295890672"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CS", "url": "https://www.google.com/finance/quote/CS:NYSE"}], "market_full": [{"text": "FRA:CSX", "url": "https://www.google.com/finance/quote/CSX:FRA"}, {"text": "MEX:CSN", "url": "https://www.google.com/finance/quote/CSN:MEX"}, {"text": "STU:CSX1", "url": "https://www.google.com/finance/quote/CSX1:STU"}, {"text": "BRN:CSX", "url": "https://www.google.com/finance/quote/BRN:CSX"}, {"text": "SWX:CSGN", "url": "https://www.google.com/finance/quote/CSGN:SWX"}, {"text": "DUS:CSX1", "url": "https://www.google.com/finance/quote/CSX1:DUS"}, {"text": "NYQ:CS", "url": "https://www.google.com/finance/quote/CS:NYQ"}, {"text": "HAN:CSX", "url": "https://www.google.com/finance/quote/CSX:HAN"}, {"text": "MUN:CSX1", "url": "https://www.google.com/finance/quote/CSX1:MUN"}, {"text": "SAO:C1SU34", "url": "https://www.google.com/finance/quote/C1SU34:SAO"}, {"text": "DEU:CSGN", "url": "https://www.google.com/finance/quote/CSGN:DEU"}, {"text": "DEU:CSX1", "url": "https://www.google.com/finance/quote/CSX1:DEU"}, {"text": "PKC:CSGKF", "url": "https://www.google.com/finance/quote/CSGKF:PKC"}, {"text": "MUN:CSX", "url": "https://www.google.com/finance/quote/CSX:MUN"}, {"text": "LSE:0QP5", "url": "https://www.google.com/finance/quote/0QP5:LSE"}, {"text": "LSE:0I4P", "url": "https://www.google.com/finance/quote/0I4P:LSE"}, {"text": "BUE:CS3", "url": "https://www.google.com/finance/quote/BUE:CS3"}, {"text": "ASE:CS", "url": "https://www.google.com/finance/quote/ASE:CS"}, {"text": "FRA:CSX1", "url": "https://www.google.com/finance/quote/CSX1:FRA"}, {"text": "HAM:CSX", "url": "https://www.google.com/finance/quote/CSX:HAM"}, {"text": "NYSE:CS", "url": "https://www.google.com/finance/quote/CS:NYSE"}, {"text": "DUS:CSX", "url": "https://www.google.com/finance/quote/CSX:DUS"}, {"text": "BER:CSX1", "url": "https://www.google.com/finance/quote/BER:CSX1"}, {"text": "STU:CSX", "url": "https://www.google.com/finance/quote/CSX:STU"}, {"text": "BER:CSX", "url": "https://www.google.com/finance/quote/BER:CSX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}, {"field_name": "Natural language", "field_count": 1}], "clusters": [{"cluster_id": 16647, "cluster_count": 1}, {"cluster_id": 49864, "cluster_count": 1}, {"cluster_id": 25799, "cluster_count": 1}, {"cluster_id": 8090, "cluster_count": 1}, {"cluster_id": 32943, "cluster_count": 1}, {"cluster_id": 26, "cluster_count": 1}, {"cluster_id": 13965, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 1835, "referenced_count": 1}], "tasks": [{"referent": "survival_analysis", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "computational_manga", "task_count": 1}, {"referent": "cancer", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "variable_selection", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "clustering", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "gradient_clipping", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "spectral_clustering", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "bart", "method_count": 1}, {"referent": "td_vae", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [21, 20, 16, 27, 9, 11, 12, 13, 9, 4, 0], "total": 142, "isTopResearch": false, "rank": 463, "sp500_rank": 276}, "ai_publications": {"counts": [0, 1, 0, 1, 0, 2, 1, 2, 1, 0, 0], "total": 8, "isTopResearch": false, "rank": 455, "sp500_rank": 233}, "ai_publications_growth": {"counts": [], "total": -16.666666666666668, "isTopResearch": false, "rank": 1303, "sp500_rank": 339}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 2, 7, 0], "total": 12, "isTopResearch": false, "rank": 740, "sp500_rank": 305}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0.0, 0, 0.0, 0, 0.5, 0.0, 1.0, 2.0, 0, 0], "total": 1.5, "isTopResearch": false, "rank": 855, "sp500_rank": 341}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 5910, "rank": 84, "sp500_rank": 54}, "ai_jobs": {"counts": null, "total": 643, "rank": 82, "sp500_rank": 56}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2109, "country": "France", "website": "https://www.se.com/", "crunchbase": {"text": " cb96e835-d324-d68a-759a-61fed8b632b3", "url": " https://www.crunchbase.com/organization/schneider-electric"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/schneider-electric"], "stage": "Mature", "name": "Schneider Electric", "patent_name": "Schneider Electric", "continent": "Europe", "local_logo": null, "aliases": "American Power Conversion; Schneider Electric; Schneider Electric Industries Sas; Schneider Electric Se; Squared", "permid_links": [{"text": 4295866940, "url": "https://permid.org/1-4295866940"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MIL:SU", "url": "https://www.google.com/finance/quote/MIL:SU"}, {"text": "FRA:SND", "url": "https://www.google.com/finance/quote/FRA:SND"}, {"text": "PAR:SU", "url": "https://www.google.com/finance/quote/PAR:SU"}, {"text": "VIE:SU", "url": "https://www.google.com/finance/quote/SU:VIE"}, {"text": "BER:SND", "url": "https://www.google.com/finance/quote/BER:SND"}, {"text": "HAM:SND", "url": "https://www.google.com/finance/quote/HAM:SND"}, {"text": "PKL:SBGSF", "url": "https://www.google.com/finance/quote/PKL:SBGSF"}, {"text": "STU:SND", "url": "https://www.google.com/finance/quote/SND:STU"}, {"text": "DEU:SCHN", "url": "https://www.google.com/finance/quote/DEU:SCHN"}, {"text": "BER:SNDB", "url": "https://www.google.com/finance/quote/BER:SNDB"}, {"text": "MUN:SND", "url": "https://www.google.com/finance/quote/MUN:SND"}, {"text": "HAN:SND", "url": "https://www.google.com/finance/quote/HAN:SND"}, {"text": "EBT:SUP", "url": "https://www.google.com/finance/quote/EBT:SUp"}, {"text": "MEX:SUN", "url": "https://www.google.com/finance/quote/MEX:SUN"}, {"text": "LSE:0NWV", "url": "https://www.google.com/finance/quote/0NWV:LSE"}, {"text": "DEU:SNDB", "url": "https://www.google.com/finance/quote/DEU:SNDB"}, {"text": "STU:SNDB", "url": "https://www.google.com/finance/quote/SNDB:STU"}, {"text": "GER:SNDX", "url": "https://www.google.com/finance/quote/GER:SNDX"}, {"text": "PNK:SBGSY", "url": "https://www.google.com/finance/quote/PNK:SBGSY"}, {"text": "FRA:SNDB", "url": "https://www.google.com/finance/quote/FRA:SNDB"}, {"text": "DUS:SND", "url": "https://www.google.com/finance/quote/DUS:SND"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Analytics", "field_count": 2}, {"field_name": "Bayesian network", "field_count": 1}, {"field_name": "Association rule learning", "field_count": 1}, {"field_name": "Computational intelligence", "field_count": 1}, {"field_name": "Frame rate", "field_count": 1}, {"field_name": "Mahalanobis distance", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Gesture", "field_count": 1}, {"field_name": "Robot", "field_count": 1}], "clusters": [{"cluster_id": 50212, "cluster_count": 3}, {"cluster_id": 484, "cluster_count": 3}, {"cluster_id": 33193, "cluster_count": 2}, {"cluster_id": 21430, "cluster_count": 2}, {"cluster_id": 31299, "cluster_count": 2}, {"cluster_id": 10510, "cluster_count": 2}, {"cluster_id": 4147, "cluster_count": 1}, {"cluster_id": 1213, "cluster_count": 1}, {"cluster_id": 9951, "cluster_count": 1}, {"cluster_id": 35922, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2109, "referenced_count": 7}, {"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 1791, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 789, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 1952, "referenced_count": 1}, {"ref_CSET_id": 2794, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 6}, {"referent": "system_identification", "task_count": 4}, {"referent": "steering_control", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "time_series", "task_count": 4}, {"referent": "image_processing", "task_count": 2}, {"referent": "speech_production", "task_count": 2}, {"referent": "point_processes", "task_count": 2}, {"referent": "industrial_robots", "task_count": 2}, {"referent": "portfolio_optimization", "task_count": 2}], "methods": [{"referent": "vqa_models", "method_count": 4}, {"referent": "mad_learning", "method_count": 4}, {"referent": "optimization", "method_count": 3}, {"referent": "q_learning", "method_count": 3}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "reinforcement_learning", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "object_detection_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [181, 186, 183, 152, 173, 134, 142, 138, 134, 59, 0], "total": 1482, "isTopResearch": false, "rank": 145, "sp500_rank": 113}, "ai_publications": {"counts": [2, 2, 5, 4, 4, 6, 1, 5, 4, 1, 0], "total": 34, "isTopResearch": false, "rank": 221, "sp500_rank": 136}, "ai_publications_growth": {"counts": [], "total": 101.66666666666667, "isTopResearch": false, "rank": 21, "sp500_rank": 11}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [6, 7, 24, 19, 33, 53, 50, 67, 54, 50, 4], "total": 367, "isTopResearch": false, "rank": 307, "sp500_rank": 153}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 1, 0, 0, 1, 1, 1, 1, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 171, "sp500_rank": 107}, "citations_per_article": {"counts": [3.0, 3.5, 4.8, 4.75, 8.25, 8.833333333333334, 50.0, 13.4, 13.5, 50.0, 0], "total": 10.794117647058824, "isTopResearch": false, "rank": 514, "sp500_rank": 186}}, "patents": {"ai_patents": {"counts": [4, 1, 3, 4, 14, 8, 21, 12, 1, 0, 0], "total": 68, "table": null, "rank": 189, "sp500_rank": 120}, "ai_patents_growth": {"counts": [], "total": 25.59523809523809, "table": null, "rank": 283, "sp500_rank": 132}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [40, 10, 30, 40, 140, 80, 210, 120, 10, 0, 0], "total": 680, "table": null, "rank": 189, "sp500_rank": 120}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 1, 0, 1, 0, 4, 4, 0, 0, 0], "total": 10, "table": "industry", "rank": 51, "sp500_rank": 44}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 157, "sp500_rank": 102}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0], "total": 6, "table": null, "rank": 94, "sp500_rank": 65}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [3, 1, 0, 1, 9, 4, 3, 2, 0, 0, 0], "total": 23, "table": "industry", "rank": 178, "sp500_rank": 99}, "Banking_and_Finance": {"counts": [0, 0, 0, 2, 5, 0, 2, 0, 1, 0, 0], "total": 10, "table": "industry", "rank": 78, "sp500_rank": 59}, "Telecommunications": {"counts": [0, 1, 1, 1, 2, 3, 1, 1, 0, 0, 0], "total": 10, "table": "industry", "rank": 165, "sp500_rank": 97}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [1, 0, 0, 1, 3, 2, 1, 0, 0, 0, 0], "total": 8, "table": null, "rank": 168, "sp500_rank": 113}, "Energy_Management": {"counts": [2, 0, 1, 1, 2, 0, 1, 6, 0, 0, 0], "total": 13, "table": "industry", "rank": 42, "sp500_rank": 39}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 3, 0, 3, 2, 0, 0, 0], "total": 9, "table": "application", "rank": 78, "sp500_rank": 55}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0], "total": 5, "table": null, "rank": 183, "sp500_rank": 120}, "Control": {"counts": [1, 0, 1, 0, 0, 3, 6, 4, 0, 0, 0], "total": 15, "table": "application", "rank": 111, "sp500_rank": 80}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 1, 0, 1, 3, 3, 3, 0, 0, 0], "total": 11, "table": "application", "rank": 236, "sp500_rank": 131}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 1, 2, 1, 2, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 137, "sp500_rank": 98}, "Measuring_and_Testing": {"counts": [1, 0, 1, 1, 1, 1, 0, 8, 0, 0, 0], "total": 13, "table": "application", "rank": 104, "sp500_rank": 80}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 5671, "rank": 85, "sp500_rank": 55}, "ai_jobs": {"counts": null, "total": 443, "rank": 130, "sp500_rank": 85}}, "sector": "Industrials", "business_sector": "Industrial Goods"}, {"cset_id": 1385, "country": "United States", "website": "https://exxonmobil.com", "crunchbase": {"text": "e0da6e2f-eb97-b57a-4f5c-ef737d75e675", "url": "https://www.crunchbase.com/organization/exxonmobil"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/exxonmobil"], "stage": "Unknown", "name": "Exxonmobil", "patent_name": "ExxonMobil", "continent": "North America", "local_logo": "exxonmobil.png", "aliases": "Exxon Mobil Corporation; ExxonMobil; Xom", "permid_links": [{"text": 4295912121, "url": "https://permid.org/1-4295912121"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "ExxonMobil is an international oil and gas company, providing energy that helps underpin growing economies.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Reinforcement learning", "field_count": 4}, {"field_name": "Boosting (machine learning)", "field_count": 2}, {"field_name": "Decision rule", "field_count": 2}, {"field_name": "Heuristic", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Probabilistic logic", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Keyword spotting", "field_count": 2}, {"field_name": "Orientation (computer vision)", "field_count": 1}, {"field_name": "Haptic technology", "field_count": 1}], "clusters": [{"cluster_id": 109, "cluster_count": 3}, {"cluster_id": 49423, "cluster_count": 3}, {"cluster_id": 10801, "cluster_count": 3}, {"cluster_id": 12079, "cluster_count": 3}, {"cluster_id": 27269, "cluster_count": 3}, {"cluster_id": 41009, "cluster_count": 3}, {"cluster_id": 83588, "cluster_count": 2}, {"cluster_id": 3165, "cluster_count": 2}, {"cluster_id": 67962, "cluster_count": 2}, {"cluster_id": 30371, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 47}, {"ref_CSET_id": 1385, "referenced_count": 15}, {"ref_CSET_id": 115, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 5}, {"ref_CSET_id": 805, "referenced_count": 3}, {"ref_CSET_id": 1827, "referenced_count": 3}, {"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 9}, {"referent": "fault_detection", "task_count": 7}, {"referent": "decision_making", "task_count": 7}, {"referent": "developmental_learning", "task_count": 5}, {"referent": "video_surveillance", "task_count": 4}, {"referent": "image_processing", "task_count": 4}, {"referent": "environmental_sound_classification", "task_count": 3}, {"referent": "seismic_analysis", "task_count": 3}, {"referent": "pattern_classification", "task_count": 3}, {"referent": "time_series", "task_count": 3}], "methods": [{"referent": "vqa_models", "method_count": 12}, {"referent": "recurrent_neural_networks", "method_count": 9}, {"referent": "optimization", "method_count": 8}, {"referent": "symbolic_deep_learning", "method_count": 7}, {"referent": "mad_learning", "method_count": 6}, {"referent": "1d_cnn", "method_count": 5}, {"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "glow", "method_count": 4}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "reinforcement_learning", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [449, 461, 424, 491, 443, 466, 517, 359, 436, 369, 13], "total": 4428, "isTopResearch": false, "rank": 76, "sp500_rank": 66, "fortune500_rank": 26}, "ai_publications": {"counts": [7, 4, 5, 4, 6, 10, 6, 9, 12, 6, 0], "total": 69, "isTopResearch": false, "rank": 151, "sp500_rank": 99, "fortune500_rank": 50}, "ai_publications_growth": {"counts": [], "total": 11.111111111111114, "isTopResearch": false, "rank": 151, "sp500_rank": 78, "fortune500_rank": 41}, "ai_pubs_top_conf": {"counts": [0, 2, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 169, "sp500_rank": 82, "fortune500_rank": 47}, "citation_counts": {"counts": [29, 70, 81, 114, 116, 113, 171, 180, 266, 239, 14], "total": 1393, "isTopResearch": false, "rank": 166, "sp500_rank": 98, "fortune500_rank": 50}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 1, 0, 1, 2, 2, 0], "total": 7, "isTopResearch": true, "rank": 252, "sp500_rank": 131, "fortune500_rank": 70}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115, "fortune500_rank": 61}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 1, 1, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114, "fortune500_rank": 49}, "citations_per_article": {"counts": [4.142857142857143, 17.5, 16.2, 28.5, 19.333333333333332, 11.3, 28.5, 20.0, 22.166666666666668, 39.833333333333336, 0], "total": 20.18840579710145, "isTopResearch": false, "rank": 312, "sp500_rank": 93, "fortune500_rank": 99}}, "patents": {"ai_patents": {"counts": [1, 2, 2, 3, 4, 19, 15, 14, 6, 0, 0], "total": 66, "table": null, "rank": 195, "sp500_rank": 125, "fortune500_rank": 62}, "ai_patents_growth": {"counts": [], "total": 115.76023391812863, "table": null, "rank": 96, "sp500_rank": 44, "fortune500_rank": 20}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 20, 20, 30, 40, 190, 150, 140, 60, 0, 0], "total": 660, "table": null, "rank": 195, "sp500_rank": 125, "fortune500_rank": 62}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 0, 1, 0, 2, 4, 4, 1, 0, 0], "total": 13, "table": "industry", "rank": 40, "sp500_rank": 34, "fortune500_rank": 15}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "sp500_rank": 114, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 165, "sp500_rank": 110, "fortune500_rank": 55}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 38, "sp500_rank": 31, "fortune500_rank": 11}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 2, 2, 8, 5, 2, 0, 0, 0], "total": 20, "table": "industry", "rank": 188, "sp500_rank": 106, "fortune500_rank": 70}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 381, "sp500_rank": 174, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54, "fortune500_rank": 34}, "Business": {"counts": [0, 1, 0, 1, 0, 1, 3, 0, 1, 0, 0], "total": 7, "table": "industry", "rank": 183, "sp500_rank": 119, "fortune500_rank": 61}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "sp500_rank": 57, "fortune500_rank": 43}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 0, 0, 0, 3, 0, 1, 0, 0], "total": 5, "table": "application", "rank": 183, "sp500_rank": 120, "fortune500_rank": 63}, "Control": {"counts": [0, 1, 0, 2, 2, 1, 4, 1, 0, 0, 0], "total": 11, "table": "application", "rank": 126, "sp500_rank": 89, "fortune500_rank": 42}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 0, 1, 7, 5, 1, 1, 0, 0], "total": 16, "table": "application", "rank": 206, "sp500_rank": 117, "fortune500_rank": 61}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 191, "sp500_rank": 121, "fortune500_rank": 77}, "Measuring_and_Testing": {"counts": [0, 1, 2, 2, 2, 14, 7, 10, 2, 0, 0], "total": 40, "table": "application", "rank": 50, "sp500_rank": 38, "fortune500_rank": 19}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 5620, "rank": 86, "sp500_rank": 56, "fortune500_rank": 51}, "ai_jobs": {"counts": null, "total": 434, "rank": 135, "sp500_rank": 88, "fortune500_rank": 76}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2229, "country": "United States", "website": "https://www.bnymellon.com/apac/en/home.jsp", "crunchbase": {"text": "f98d61fa-5672-5c33-d07f-a716be4929c3", "url": "https://www.crunchbase.com/organization/bnymellon"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bny-mellon"], "stage": "Mature", "name": "The Bank of New York Mellon Corp.", "patent_name": "the bank of new york mellon corp.", "continent": "North America", "local_logo": "the_bank_of_new_york_mellon_corp.png", "aliases": "Bank Of New York Mellon Corp; Bny Mellon; The Bank Of New York Mellon; The Bank Of New York Mellon Corporation", "permid_links": [{"text": 5000001034, "url": "https://permid.org/1-5000001034"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BK", "url": "https://www.google.com/finance/quote/bk:nyse"}], "market_full": [{"text": "SAO:BONY34", "url": "https://www.google.com/finance/quote/bony34:sao"}, {"text": "MCX:BK-RM", "url": "https://www.google.com/finance/quote/bk-rm:mcx"}, {"text": "LSE:0HLQ", "url": "https://www.google.com/finance/quote/0hlq:lse"}, {"text": "STU:BN9", "url": "https://www.google.com/finance/quote/bn9:stu"}, {"text": "GER:BN9X", "url": "https://www.google.com/finance/quote/bn9x:ger"}, {"text": "VIE:BONY", "url": "https://www.google.com/finance/quote/bony:vie"}, {"text": "HAN:BN9", "url": "https://www.google.com/finance/quote/bn9:han"}, {"text": "NYSE:BK", "url": "https://www.google.com/finance/quote/bk:nyse"}, {"text": "FRA:BN9", "url": "https://www.google.com/finance/quote/bn9:fra"}, {"text": "BER:BN9", "url": "https://www.google.com/finance/quote/ber:bn9"}, {"text": "BRN:BN9", "url": "https://www.google.com/finance/quote/bn9:brn"}, {"text": "BUE:BK3", "url": "https://www.google.com/finance/quote/bk3:bue"}, {"text": "ASE:BK", "url": "https://www.google.com/finance/quote/ase:bk"}, {"text": "NYQ:BK", "url": "https://www.google.com/finance/quote/bk:nyq"}, {"text": "DUS:BN9", "url": "https://www.google.com/finance/quote/bn9:dus"}, {"text": "MEX:BK*", "url": "https://www.google.com/finance/quote/bk*:mex"}, {"text": "MUN:BN9", "url": "https://www.google.com/finance/quote/bn9:mun"}, {"text": "DEU:BN9", "url": "https://www.google.com/finance/quote/bn9:deu"}], "crunchbase_description": "BNY Mellon is an investment company that provides investment management, investment services, and wealth management services.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 50517, "cluster_count": 2}, {"cluster_id": 56743, "cluster_count": 1}, {"cluster_id": 15742, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 2792, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "feature_selection", "task_count": 2}, {"referent": "material_classification", "task_count": 1}, {"referent": "object_detection", "task_count": 1}, {"referent": "supervised_learning", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "point_processes", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "time_series_analysis", "method_count": 1}, {"referent": "3d_sa", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [4, 2, 4, 4, 3, 15, 3, 2, 6, 4, 0], "total": 47, "isTopResearch": false, "rank": 625, "fortune500_rank": 232}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 2, 1, 0], "total": 5, "isTopResearch": false, "rank": 540, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": 25.0, "isTopResearch": false, "rank": 101, "fortune500_rank": 31}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 6, 1], "total": 9, "isTopResearch": false, "rank": 774, "fortune500_rank": 208}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 0.0, 1.0, 6.0, 0], "total": 1.8, "isTopResearch": false, "rank": 850, "fortune500_rank": 229}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 1, 2, 1, 1, 1, 5, 0, 0], "total": 12, "table": null, "rank": 384, "fortune500_rank": 125}, "ai_patents_growth": {"counts": [], "total": -16.666666666666668, "table": null, "rank": 1452, "fortune500_rank": 420}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 0, 10, 20, 10, 10, 10, 50, 0, 0], "total": 120, "table": null, "rank": 384, "fortune500_rank": 125}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 193, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 1, 1, 1, 1, 0, 3, 0, 0], "total": 8, "table": "industry", "rank": 273, "fortune500_rank": 99}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 2, 0, 0], "total": 4, "table": "industry", "rank": 115, "fortune500_rank": 41}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 1, 1, 1, 2, 0, 0], "total": 6, "table": "industry", "rank": 204, "fortune500_rank": 77}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "table": "application", "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 5522, "rank": 87, "fortune500_rank": 52}, "ai_jobs": {"counts": null, "total": 578, "rank": 96, "fortune500_rank": 53}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "The Bank of New York Mellon Corporation, commonly known as BNY Mellon, is an American investment banking services holding company headquartered in New York City. BNY Mellon was formed from the merger of The Bank of New York and the Mellon Financial Corporation in 2007. It is the world's largest custodian bank and asset servicing company, with $2.0 trillion in assets under management and $38.6 trillion in assets under custody as of the second quarter of 2020. BNY Mellon is incorporated in Delaware.", "wikipedia_link": "https://en.wikipedia.org/wiki/BNY_Mellon", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3147, "country": "Canada", "website": "https://www.td.com/", "crunchbase": {"text": " b0bd6854-67f6-fb38-27e1-efd1c1c994cf ", "url": "https://www.crunchbase.com/organization/toronto-dominion-bank-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/td"], "stage": "Mature", "name": "Toronto-Dominion Bank", "patent_name": "Toronto-Dominion Bank", "continent": "North America", "local_logo": null, "aliases": "Toronto Dominion Bank Group; Toronto-Dominion Bank", "permid_links": [{"text": 4295862902, "url": "https://permid.org/1-4295862902"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TD", "url": "https://www.google.com/finance/quote/NYSE:TD"}], "market_full": [{"text": "MUN:TDB", "url": "https://www.google.com/finance/quote/MUN:TDB"}, {"text": "TOR:TD.PF.C", "url": "https://www.google.com/finance/quote/TD.PF.C:TOR"}, {"text": "HAN:TDB", "url": "https://www.google.com/finance/quote/HAN:TDB"}, {"text": "NYSE:TD", "url": "https://www.google.com/finance/quote/NYSE:TD"}, {"text": "PKC:TNTTF", "url": "https://www.google.com/finance/quote/PKC:TNTTF"}, {"text": "TOR:TD", "url": "https://www.google.com/finance/quote/TD:TOR"}, {"text": "TOR:TD.PF.E", "url": "https://www.google.com/finance/quote/TD.PF.E:TOR"}, {"text": "DUS:TDB", "url": "https://www.google.com/finance/quote/DUS:TDB"}, {"text": "TOR:TD.PF.L", "url": "https://www.google.com/finance/quote/TD.PF.L:TOR"}, {"text": "TOR:TD.PF.B", "url": "https://www.google.com/finance/quote/TD.PF.B:TOR"}, {"text": "FRA:TDB", "url": "https://www.google.com/finance/quote/FRA:TDB"}, {"text": "TOR:TD.PF.K", "url": "https://www.google.com/finance/quote/TD.PF.K:TOR"}, {"text": "DEU:TD", "url": "https://www.google.com/finance/quote/DEU:TD"}, {"text": "STU:TDB", "url": "https://www.google.com/finance/quote/STU:TDB"}, {"text": "PKC:TDBKF", "url": "https://www.google.com/finance/quote/PKC:TDBKF"}, {"text": "BER:TDB", "url": "https://www.google.com/finance/quote/BER:TDB"}, {"text": "LSE:0VL8", "url": "https://www.google.com/finance/quote/0VL8:LSE"}, {"text": "TOR:TD.PF.A", "url": "https://www.google.com/finance/quote/TD.PF.A:TOR"}, {"text": "TOR:TD.PF.I", "url": "https://www.google.com/finance/quote/TD.PF.I:TOR"}, {"text": "TOR:TD.PF.J", "url": "https://www.google.com/finance/quote/TD.PF.J:TOR"}, {"text": "NYQ:TD", "url": "https://www.google.com/finance/quote/NYQ:TD"}, {"text": "ASE:TD", "url": "https://www.google.com/finance/quote/ASE:TD"}, {"text": "TOR:TD.PF.D", "url": "https://www.google.com/finance/quote/TD.PF.D:TOR"}, {"text": "TOR:TD.PF.M", "url": "https://www.google.com/finance/quote/TD.PF.M:TOR"}, {"text": "MEX:TDN", "url": "https://www.google.com/finance/quote/MEX:TDN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [{"cluster_id": 86255, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 550, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 1, 1, 1, 1, 1, 2, 0, 2, 1, 0], "total": 10, "isTopResearch": false, "rank": 942, "sp500_rank": 392}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 17, 39, 2], "total": 60, "isTopResearch": false, "rank": 565, "sp500_rank": 246}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 17.0, 0, 0], "total": 60.0, "isTopResearch": false, "rank": 73, "sp500_rank": 11}}, "patents": {"ai_patents": {"counts": [0, 0, 2, 0, 2, 20, 27, 28, 21, 0, 0], "total": 100, "table": null, "rank": 162, "sp500_rank": 105}, "ai_patents_growth": {"counts": [], "total": 312.9012345679012, "table": null, "rank": 23, "sp500_rank": 9}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 20, 0, 20, 200, 270, 280, 210, 0, 0], "total": 1000, "table": null, "rank": 162, "sp500_rank": 105}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 5, 3, 1, 0, 0], "total": 10, "table": "industry", "rank": 90, "sp500_rank": 65}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": null, "rank": 27, "sp500_rank": 21}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 1, 9, 15, 12, 3, 0, 0], "total": 41, "table": "industry", "rank": 132, "sp500_rank": 81}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 7, 11, 12, 9, 0, 0], "total": 40, "table": "industry", "rank": 24, "sp500_rank": 19}, "Telecommunications": {"counts": [0, 0, 1, 0, 1, 7, 7, 3, 3, 0, 0], "total": 22, "table": "industry", "rank": 130, "sp500_rank": 82}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 1, 0, 0, 2, 6, 5, 7, 0, 0], "total": 21, "table": "industry", "rank": 99, "sp500_rank": 70}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 62, "sp500_rank": 44}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 139, "sp500_rank": 81}, "Knowledge_Representation": {"counts": [0, 0, 2, 0, 1, 1, 2, 3, 1, 0, 0], "total": 10, "table": "application", "rank": 72, "sp500_rank": 53}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 5, 2, 2, 0, 0], "total": 9, "table": "application", "rank": 134, "sp500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 6, 5, 3, 0, 0], "total": 16, "table": "application", "rank": 206, "sp500_rank": 117}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 5463, "rank": 88, "sp500_rank": 57}, "ai_jobs": {"counts": null, "total": 681, "rank": 76, "sp500_rank": 51}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 822, "country": "United States", "website": "https://www.expediagroup.com/", "crunchbase": {"text": " 696be8d5-ae4f-4d40-95cd-a4f4222e9e51", "url": " https://www.crunchbase.com/organization/expedia-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/expedia"], "stage": "Mature", "name": "Expedia Group", "patent_name": "Expedia Group", "continent": "North America", "local_logo": null, "aliases": "Expedia; Expedia Group; Expedia, Inc", "permid_links": [{"text": 4295899731, "url": "https://permid.org/1-4295899731"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:EXPE", "url": "https://www.google.com/finance/quote/EXPE:NASDAQ"}], "market_full": [{"text": "VIE:EXPE", "url": "https://www.google.com/finance/quote/EXPE:VIE"}, {"text": "BER:E3X1", "url": "https://www.google.com/finance/quote/BER:E3X1"}, {"text": "DUS:E3X1", "url": "https://www.google.com/finance/quote/DUS:E3X1"}, {"text": "SAO:EXGR34", "url": "https://www.google.com/finance/quote/EXGR34:SAO"}, {"text": "NASDAQ:EXPE", "url": "https://www.google.com/finance/quote/EXPE:NASDAQ"}, {"text": "STU:E3X1", "url": "https://www.google.com/finance/quote/E3X1:STU"}, {"text": "GER:E3XX.A", "url": "https://www.google.com/finance/quote/E3XX.A:GER"}, {"text": "MUN:E3X1", "url": "https://www.google.com/finance/quote/E3X1:MUN"}, {"text": "DEU:E3X1", "url": "https://www.google.com/finance/quote/DEU:E3X1"}, {"text": "BRN:E3X1", "url": "https://www.google.com/finance/quote/BRN:E3X1"}, {"text": "HAN:E3X1", "url": "https://www.google.com/finance/quote/E3X1:HAN"}, {"text": "FRA:E3X1", "url": "https://www.google.com/finance/quote/E3X1:FRA"}, {"text": "LSE:0R1T", "url": "https://www.google.com/finance/quote/0R1T:LSE"}, {"text": "MCX:EXPE-RM", "url": "https://www.google.com/finance/quote/EXPE-RM:MCX"}, {"text": "HAM:E3X1", "url": "https://www.google.com/finance/quote/E3X1:HAM"}, {"text": "MEX:EXPE", "url": "https://www.google.com/finance/quote/EXPE:MEX"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Time series", "field_count": 1}, {"field_name": "Activity recognition", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Dimensionality reduction", "field_count": 1}, {"field_name": "Parsing", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Active learning (machine learning)", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}], "clusters": [{"cluster_id": 13618, "cluster_count": 2}, {"cluster_id": 63240, "cluster_count": 2}, {"cluster_id": 49190, "cluster_count": 1}, {"cluster_id": 26207, "cluster_count": 1}, {"cluster_id": 95888, "cluster_count": 1}, {"cluster_id": 36512, "cluster_count": 1}, {"cluster_id": 2190, "cluster_count": 1}, {"cluster_id": 23169, "cluster_count": 1}, {"cluster_id": 11659, "cluster_count": 1}, {"cluster_id": 981, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 54}, {"ref_CSET_id": 163, "referenced_count": 25}, {"ref_CSET_id": 87, "referenced_count": 12}, {"ref_CSET_id": 115, "referenced_count": 10}, {"ref_CSET_id": 37, "referenced_count": 6}, {"ref_CSET_id": 792, "referenced_count": 4}, {"ref_CSET_id": 822, "referenced_count": 4}, {"ref_CSET_id": 341, "referenced_count": 3}, {"ref_CSET_id": 27, "referenced_count": 3}, {"ref_CSET_id": 734, "referenced_count": 3}], "tasks": [{"referent": "classification_tasks", "task_count": 4}, {"referent": "classification", "task_count": 3}, {"referent": "natural_language_understanding", "task_count": 2}, {"referent": "named_entity_recognition", "task_count": 2}, {"referent": "matrix_completion", "task_count": 2}, {"referent": "recommendation", "task_count": 2}, {"referent": "patient_outcomes", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "mobile_robot", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}], "methods": [{"referent": "q_learning", "method_count": 4}, {"referent": "mad_learning", "method_count": 3}, {"referent": "vqa_models", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "stochastic_gradient_variational_bayes", "method_count": 3}, {"referent": "3d_representations", "method_count": 3}, {"referent": "optimization", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [6, 4, 8, 5, 7, 8, 11, 11, 9, 5, 0], "total": 74, "isTopResearch": false, "rank": 558, "fortune500_rank": 208}, "ai_publications": {"counts": [0, 0, 5, 2, 4, 3, 6, 6, 4, 2, 0], "total": 32, "isTopResearch": false, "rank": 230, "fortune500_rank": 71}, "ai_publications_growth": {"counts": [], "total": -27.777777777777782, "isTopResearch": false, "rank": 1380, "fortune500_rank": 399}, "ai_pubs_top_conf": {"counts": [0, 0, 3, 0, 2, 0, 0, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 157, "fortune500_rank": 46}, "citation_counts": {"counts": [0, 0, 1, 1, 9, 15, 28, 75, 126, 77, 0], "total": 332, "isTopResearch": false, "rank": 320, "fortune500_rank": 95}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 2, 0, 0, 0, 1, 1, 1, 0, 0], "total": 5, "isTopResearch": true, "rank": 141, "fortune500_rank": 42}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 243, "fortune500_rank": 67}, "citations_per_article": {"counts": [0, 0, 0.2, 0.5, 2.25, 5.0, 4.666666666666667, 12.5, 31.5, 38.5, 0], "total": 10.375, "isTopResearch": false, "rank": 529, "fortune500_rank": 155}}, "patents": {"ai_patents": {"counts": [1, 1, 2, 0, 0, 0, 2, 0, 0, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 10, 20, 0, 0, 0, 20, 0, 0, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "fortune500_rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 5428, "rank": 89, "fortune500_rank": 53}, "ai_jobs": {"counts": null, "total": 752, "rank": 67, "fortune500_rank": 36}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services"}, {"cset_id": 1985, "country": "United States", "website": "https://corporate.charter.com/", "crunchbase": {"text": " 9652c9de-5056-588f-334d-d64828b8c6ab", "url": " https://www.crunchbase.com/organization/charter-communications"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/charter-communications"], "stage": "Mature", "name": "Charter Communications", "patent_name": "Charter Communications", "continent": "North America", "local_logo": null, "aliases": "Charter Communications; Charter Communications, Inc", "permid_links": [{"text": 4295894971, "url": "https://permid.org/1-4295894971"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CHTR", "url": "https://www.google.com/finance/quote/CHTR:NASDAQ"}], "market_full": [{"text": "MCX:CHTR", "url": "https://www.google.com/finance/quote/CHTR:MCX"}, {"text": "LSE:0HW4", "url": "https://www.google.com/finance/quote/0HW4:LSE"}, {"text": "STU:CQD", "url": "https://www.google.com/finance/quote/CQD:STU"}, {"text": "BRN:CQD", "url": "https://www.google.com/finance/quote/BRN:CQD"}, {"text": "NASDAQ:CHTR", "url": "https://www.google.com/finance/quote/CHTR:NASDAQ"}, {"text": "HAN:CQD", "url": "https://www.google.com/finance/quote/CQD:HAN"}, {"text": "HAM:CQD", "url": "https://www.google.com/finance/quote/CQD:HAM"}, {"text": "FRA:CQD", "url": "https://www.google.com/finance/quote/CQD:FRA"}, {"text": "SAO:CHCM34", "url": "https://www.google.com/finance/quote/CHCM34:SAO"}, {"text": "BER:CQD", "url": "https://www.google.com/finance/quote/BER:CQD"}, {"text": "GER:CQDX", "url": "https://www.google.com/finance/quote/CQDX:GER"}, {"text": "VIE:CHTR", "url": "https://www.google.com/finance/quote/CHTR:VIE"}, {"text": "DEU:CQD", "url": "https://www.google.com/finance/quote/CQD:DEU"}, {"text": "DUS:CQD", "url": "https://www.google.com/finance/quote/CQD:DUS"}, {"text": "MUN:CQD", "url": "https://www.google.com/finance/quote/CQD:MUN"}, {"text": "MEX:CHTR", "url": "https://www.google.com/finance/quote/CHTR:MEX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 4, 4, 1, 0], "total": 11, "isTopResearch": false, "rank": 924, "sp500_rank": 389, "fortune500_rank": 321}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [1, 0, 1, 0, 0, 2, 6, 11, 3, 0, 0], "total": 24, "table": null, "rank": 295, "sp500_rank": 157, "fortune500_rank": 100}, "ai_patents_growth": {"counts": [], "total": 141.66666666666666, "table": null, "rank": 79, "sp500_rank": 33, "fortune500_rank": 18}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 10, 0, 0, 20, 60, 110, 30, 0, 0], "total": 240, "table": null, "rank": 295, "sp500_rank": 157, "fortune500_rank": 100}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": "industry", "rank": 157, "sp500_rank": 102, "fortune500_rank": 58}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 2, 2, 2, 0, 0], "total": 7, "table": "industry", "rank": 287, "sp500_rank": 150, "fortune500_rank": 104}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [1, 0, 1, 0, 0, 2, 6, 10, 2, 0, 0], "total": 22, "table": "industry", "rank": 130, "sp500_rank": 82, "fortune500_rank": 53}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 252, "sp500_rank": 151, "fortune500_rank": 82}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0], "total": 5, "table": "application", "rank": 318, "sp500_rank": 158, "fortune500_rank": 96}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 0, 0, 1, 8, 1, 0, 0], "total": 11, "table": "application", "rank": 105, "sp500_rank": 78, "fortune500_rank": 44}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 5417, "rank": 90, "sp500_rank": 58, "fortune500_rank": 54}, "ai_jobs": {"counts": null, "total": 331, "rank": 167, "sp500_rank": 110, "fortune500_rank": 90}}, "sector": "Industrials", "business_sector": "Industrial Goods"}, {"cset_id": 2422, "country": "United States", "website": "https://www.motorolasolutions.com/", "crunchbase": {"text": "d65bcbfb-b94e-e848-a953-bcd89ab7de00", "url": "https://www.crunchbase.com/organization/motorola-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/motorolasolutions"], "stage": "Mature", "name": "Motorola Solutions Inc.", "patent_name": "motorola solutions inc.", "continent": "North America", "local_logo": "motorola_solutions_inc.png", "aliases": "Motorola; Motorola Inc; Motorola Mobility Holdings, Inc; Motorola Solutions; Motorola Solutions Inc; Motorola Solutions, Inc; Motorola Solutions, Inc. (Nyse: Msi)", "permid_links": [{"text": 4295904562, "url": "https://permid.org/1-4295904562"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MSI", "url": "https://www.google.com/finance/quote/msi:nyse"}], "market_full": [{"text": "HAM:MTLA", "url": "https://www.google.com/finance/quote/ham:mtla"}, {"text": "BUE:MSI3", "url": "https://www.google.com/finance/quote/bue:msi3"}, {"text": "BER:MTLA", "url": "https://www.google.com/finance/quote/ber:mtla"}, {"text": "BRN:MTLA", "url": "https://www.google.com/finance/quote/brn:mtla"}, {"text": "SAO:M1SI34", "url": "https://www.google.com/finance/quote/m1si34:sao"}, {"text": "DUS:MTLA", "url": "https://www.google.com/finance/quote/dus:mtla"}, {"text": "MEX:MSI*", "url": "https://www.google.com/finance/quote/mex:msi*"}, {"text": "NYSE:MSI", "url": "https://www.google.com/finance/quote/msi:nyse"}, {"text": "MCX:MSI-RM", "url": "https://www.google.com/finance/quote/mcx:msi-rm"}, {"text": "VIE:MOSI", "url": "https://www.google.com/finance/quote/mosi:vie"}, {"text": "STU:MTLA", "url": "https://www.google.com/finance/quote/mtla:stu"}, {"text": "FRA:MTLA", "url": "https://www.google.com/finance/quote/fra:mtla"}, {"text": "DEU:MOT", "url": "https://www.google.com/finance/quote/deu:mot"}, {"text": "HAN:MTLA", "url": "https://www.google.com/finance/quote/han:mtla"}, {"text": "MUN:MTLA", "url": "https://www.google.com/finance/quote/mtla:mun"}, {"text": "LSE:0K3H", "url": "https://www.google.com/finance/quote/0k3h:lse"}, {"text": "NYQ:MSI", "url": "https://www.google.com/finance/quote/msi:nyq"}, {"text": "GER:MTLX.A", "url": "https://www.google.com/finance/quote/ger:mtlx.a"}, {"text": "ASE:MSI", "url": "https://www.google.com/finance/quote/ase:msi"}], "crunchbase_description": "Motorola Solutions creates mission-critical communication solutions and services for public safety and commercial customers.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Cluster analysis", "field_count": 3}, {"field_name": "Dimensionality reduction", "field_count": 2}, {"field_name": "Language model", "field_count": 2}, {"field_name": "Activity recognition", "field_count": 2}, {"field_name": "Boosting (machine learning)", "field_count": 2}, {"field_name": "Intelligent decision support system", "field_count": 1}, {"field_name": "Pose", "field_count": 1}, {"field_name": "Verb", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "False positive paradox", "field_count": 1}], "clusters": [{"cluster_id": 15794, "cluster_count": 2}, {"cluster_id": 44101, "cluster_count": 2}, {"cluster_id": 9233, "cluster_count": 2}, {"cluster_id": 7652, "cluster_count": 2}, {"cluster_id": 14492, "cluster_count": 2}, {"cluster_id": 1821, "cluster_count": 2}, {"cluster_id": 13431, "cluster_count": 2}, {"cluster_id": 2387, "cluster_count": 2}, {"cluster_id": 2231, "cluster_count": 1}, {"cluster_id": 49319, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 19}, {"ref_CSET_id": 101, "referenced_count": 17}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 2422, "referenced_count": 6}, {"ref_CSET_id": 1126, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 676, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 3}, {"ref_CSET_id": 2344, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 7}, {"referent": "disease_detection", "task_count": 4}, {"referent": "image_analysis", "task_count": 3}, {"referent": "face_recognition", "task_count": 3}, {"referent": "pattern_classification", "task_count": 3}, {"referent": "human_activity_recognition", "task_count": 2}, {"referent": "activity_detection", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "software_defect_prediction", "task_count": 2}, {"referent": "computer_vision", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 6}, {"referent": "optimization", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "auto_classifier", "method_count": 4}, {"referent": "3d_representations", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "mckernel", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "gts", "method_count": 2}, {"referent": "wfst", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [63, 58, 34, 33, 77, 24, 19, 25, 16, 10, 0], "total": 359, "isTopResearch": false, "rank": 331, "fortune500_rank": 126}, "ai_publications": {"counts": [5, 2, 2, 6, 1, 2, 1, 7, 2, 2, 0], "total": 30, "isTopResearch": false, "rank": 240, "fortune500_rank": 73}, "ai_publications_growth": {"counts": [], "total": 176.19047619047618, "isTopResearch": false, "rank": 5, "fortune500_rank": 2}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [41, 57, 63, 71, 113, 136, 139, 162, 199, 147, 7], "total": 1135, "isTopResearch": false, "rank": 180, "fortune500_rank": 55}, "cv_pubs": {"counts": [2, 0, 1, 1, 1, 1, 1, 3, 1, 1, 0], "total": 12, "isTopResearch": true, "rank": 188, "fortune500_rank": 49}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [8.2, 28.5, 31.5, 11.833333333333334, 113.0, 68.0, 139.0, 23.142857142857142, 99.5, 73.5, 0], "total": 37.833333333333336, "isTopResearch": false, "rank": 142, "fortune500_rank": 36}}, "patents": {"ai_patents": {"counts": [2, 0, 4, 13, 11, 19, 20, 23, 5, 0, 0], "total": 97, "table": null, "rank": 164, "fortune500_rank": 51}, "ai_patents_growth": {"counts": [], "total": 30.996810207336523, "table": null, "rank": 275, "fortune500_rank": 80}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [20, 0, 40, 130, 110, 190, 200, 230, 50, 0, 0], "total": 970, "table": null, "rank": 164, "fortune500_rank": 51}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 2, 0, 1, 1, 1, 0, 0, 0], "total": 5, "table": null, "rank": 122, "fortune500_rank": 52}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 1, 2, 6, 3, 10, 1, 0, 0], "total": 24, "table": "industry", "rank": 49, "fortune500_rank": 23}, "Transportation": {"counts": [1, 0, 1, 2, 1, 0, 2, 0, 0, 0, 0], "total": 7, "table": null, "rank": 112, "fortune500_rank": 32}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 2, 4, 1, 0, 2, 2, 1, 0, 0], "total": 12, "table": "industry", "rank": 4, "fortune500_rank": 2}, "Personal_Devices_and_Computing": {"counts": [0, 0, 2, 5, 4, 11, 6, 11, 3, 0, 0], "total": 42, "table": "industry", "rank": 131, "fortune500_rank": 48}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": null, "rank": 141, "fortune500_rank": 50}, "Telecommunications": {"counts": [0, 0, 2, 10, 7, 11, 8, 10, 0, 0, 0], "total": 48, "table": "industry", "rank": 80, "fortune500_rank": 33}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 78, "fortune500_rank": 34}, "Business": {"counts": [1, 0, 2, 6, 1, 1, 2, 2, 2, 0, 0], "total": 17, "table": "industry", "rank": 114, "fortune500_rank": 43}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 60, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 1, 0, 0, 1, 2, 0, 0, 0, 0], "total": 4, "table": null, "rank": 62, "fortune500_rank": 35}, "Speech_Processing": {"counts": [0, 0, 1, 2, 0, 2, 3, 0, 0, 0, 0], "total": 8, "table": "application", "rank": 90, "fortune500_rank": 26}, "Knowledge_Representation": {"counts": [0, 0, 0, 3, 1, 1, 1, 1, 1, 0, 0], "total": 8, "table": "application", "rank": 88, "fortune500_rank": 46}, "Planning_and_Scheduling": {"counts": [1, 0, 2, 6, 1, 1, 2, 2, 1, 0, 0], "total": 16, "table": "application", "rank": 93, "fortune500_rank": 36}, "Control": {"counts": [1, 0, 2, 2, 1, 1, 3, 1, 0, 0, 0], "total": 11, "table": "application", "rank": 126, "fortune500_rank": 42}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 1, 6, 6, 11, 3, 10, 2, 0, 0], "total": 39, "table": "application", "rank": 136, "fortune500_rank": 40}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 2, 3, 1, 0, 0, 0], "total": 7, "table": null, "rank": 137, "fortune500_rank": 57}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 1, 1, 2, 1, 0, 0, 0], "total": 6, "table": null, "rank": 158, "fortune500_rank": 51}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 5214, "rank": 91, "fortune500_rank": 55}, "ai_jobs": {"counts": null, "total": 74, "rank": 397, "fortune500_rank": 210}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Motorola Solutions, Inc., is an American data communications and telecommunications equipment provider that succeeded Motorola, Inc., following the spinoff of the mobile phone division into Motorola Mobility in 2011. The company is headquartered in Chicago, Illinois.", "wikipedia_link": "https://en.wikipedia.org/wiki/Motorola_Solutions", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 663, "country": "Switzerland", "website": "http://www.roche.com", "crunchbase": {"text": "393a50c8-102c-5fb0-0c75-f88756e297d8", "url": "https://www.crunchbase.com/organization/roche"}, "child_crunchbase": [{"text": "b379c88b-2767-3cdc-652e-4ab5eddf6692", "url": "https://www.crunchbase.com/organization/flatiron-health"}, {"text": "c753860f-ab3d-816a-2dc5-9b26c6b9725b", "url": "https://www.crunchbase.com/organization/genentech"}], "linkedin": ["https://www.linkedin.com/company/flatiron-health", "https://www.linkedin.com/company/genentech", "https://www.linkedin.com/company/roche"], "stage": "Mature", "name": "Roche", "patent_name": "roche", "continent": "Europe", "local_logo": "roche.png", "aliases": "F Hoffmann La Roche Ag; F. Hoffmann-La Roche Ltd", "permid_links": [{"text": 5038040231, "url": "https://permid.org/1-5038040231"}, {"text": 4295912132, "url": "https://permid.org/1-4295912132"}, {"text": 5000075049, "url": "https://permid.org/1-5000075049"}], "parent_info": null, "agg_child_info": "Flatiron Health, Genentech", "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "HAM:RHO5", "url": "https://www.google.com/finance/quote/ham:rho5"}, {"text": "SWX:ROG", "url": "https://www.google.com/finance/quote/rog:swx"}, {"text": "LON:OQQ6", "url": "https://www.google.com/finance/quote/lon:oqq6"}, {"text": "BER:RHO5", "url": "https://www.google.com/finance/quote/ber:rho5"}, {"text": "MEX:ROGN", "url": "https://www.google.com/finance/quote/mex:rogn"}, {"text": "OTC:RHHBY", "url": "https://www.google.com/finance/quote/otc:rhhby"}, {"text": "DUS:RHO5", "url": "https://www.google.com/finance/quote/dus:rho5"}, {"text": "MUN:RHO5", "url": "https://www.google.com/finance/quote/mun:rho5"}, {"text": "FRA:RHO6", "url": "https://www.google.com/finance/quote/fra:rho6"}], "crunchbase_description": "Roche is a pharmaceutical and diagnostics company that focuses on improving people\u2019s lives.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 11}, {"field_name": "Digital pathology", "field_count": 10}, {"field_name": "Segmentation", "field_count": 8}, {"field_name": "Convolutional neural network", "field_count": 5}, {"field_name": "Robot", "field_count": 4}, {"field_name": "Pixel", "field_count": 4}, {"field_name": "Cluster analysis", "field_count": 3}, {"field_name": "Random forest", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Feature (computer vision)", "field_count": 3}], "clusters": [{"cluster_id": 1683, "cluster_count": 13}, {"cluster_id": 36174, "cluster_count": 8}, {"cluster_id": 1038, "cluster_count": 7}, {"cluster_id": 27242, "cluster_count": 6}, {"cluster_id": 3628, "cluster_count": 5}, {"cluster_id": 298, "cluster_count": 4}, {"cluster_id": 6865, "cluster_count": 4}, {"cluster_id": 54074, "cluster_count": 3}, {"cluster_id": 28437, "cluster_count": 3}, {"cluster_id": 28968, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 126}, {"ref_CSET_id": 163, "referenced_count": 58}, {"ref_CSET_id": 663, "referenced_count": 55}, {"ref_CSET_id": 87, "referenced_count": 36}, {"ref_CSET_id": 115, "referenced_count": 23}, {"ref_CSET_id": 789, "referenced_count": 11}, {"ref_CSET_id": 1633, "referenced_count": 11}, {"ref_CSET_id": 434, "referenced_count": 9}, {"ref_CSET_id": 3116, "referenced_count": 8}, {"ref_CSET_id": 805, "referenced_count": 8}], "tasks": [{"referent": "classification", "task_count": 37}, {"referent": "disease_detection", "task_count": 23}, {"referent": "image_analysis", "task_count": 20}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 15}, {"referent": "developmental_learning", "task_count": 14}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 12}, {"referent": "segmentation", "task_count": 10}, {"referent": "decision_making", "task_count": 10}, {"referent": "drug_discovery", "task_count": 8}, {"referent": "image_processing", "task_count": 8}], "methods": [{"referent": "vqa_models", "method_count": 17}, {"referent": "mad_learning", "method_count": 16}, {"referent": "convolutional_neural_networks", "method_count": 15}, {"referent": "auto_classifier", "method_count": 15}, {"referent": "meta_learning_algorithms", "method_count": 12}, {"referent": "double_q_learning", "method_count": 12}, {"referent": "recurrent_neural_networks", "method_count": 11}, {"referent": "q_learning", "method_count": 10}, {"referent": "sm3", "method_count": 8}, {"referent": "symbolic_deep_learning", "method_count": 8}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [3101, 2899, 3054, 3667, 4008, 3967, 3856, 4182, 4084, 3745, 27], "total": 36590, "isTopResearch": false, "rank": 4, "sp500_rank": 4}, "ai_publications": {"counts": [13, 19, 18, 21, 16, 22, 31, 37, 55, 32, 0], "total": 264, "isTopResearch": false, "rank": 66, "sp500_rank": 52}, "ai_publications_growth": {"counts": [], "total": 8.728435180048082, "isTopResearch": false, "rank": 162, "sp500_rank": 84}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 0, 0, 0, 3, 2, 4, 1, 0], "total": 11, "isTopResearch": false, "rank": 108, "sp500_rank": 56}, "citation_counts": {"counts": [153, 197, 246, 265, 383, 525, 859, 1174, 1464, 1297, 44], "total": 6607, "isTopResearch": false, "rank": 66, "sp500_rank": 44}, "cv_pubs": {"counts": [4, 7, 8, 5, 5, 6, 11, 7, 11, 8, 0], "total": 72, "isTopResearch": true, "rank": 68, "sp500_rank": 49}, "nlp_pubs": {"counts": [0, 1, 0, 1, 1, 4, 2, 0, 3, 5, 0], "total": 17, "isTopResearch": true, "rank": 71, "sp500_rank": 50}, "robotics_pubs": {"counts": [0, 3, 1, 1, 1, 1, 1, 0, 1, 0, 0], "total": 9, "isTopResearch": true, "rank": 124, "sp500_rank": 89}, "citations_per_article": {"counts": [11.76923076923077, 10.368421052631579, 13.666666666666666, 12.619047619047619, 23.9375, 23.863636363636363, 27.70967741935484, 31.72972972972973, 26.618181818181817, 40.53125, 0], "total": 25.026515151515152, "isTopResearch": false, "rank": 238, "sp500_rank": 69}}, "patents": {"ai_patents": {"counts": [1, 6, 3, 6, 9, 15, 41, 54, 11, 0, 0], "total": 146, "table": null, "rank": 126, "sp500_rank": 83}, "ai_patents_growth": {"counts": [], "total": 90.5691056910569, "table": null, "rank": 125, "sp500_rank": 60}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 60, 30, 60, 90, 150, 410, 540, 110, 0, 0], "total": 1460, "table": null, "rank": 126, "sp500_rank": 83}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 4, 1, 4, 8, 12, 31, 27, 8, 0, 0], "total": 95, "table": "industry", "rank": 13, "sp500_rank": 11}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 1, 1, 0, 1, 5, 3, 2, 3, 0, 0], "total": 16, "table": "industry", "rank": 209, "sp500_rank": 117}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 4, 0, 1, 0, 0], "total": 6, "table": "industry", "rank": 204, "sp500_rank": 111}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": "industry", "rank": 252, "sp500_rank": 151}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": "application", "rank": 162, "sp500_rank": 88}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": "application", "rank": 214, "sp500_rank": 141}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 239, "sp500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [1, 5, 2, 2, 4, 8, 20, 22, 2, 0, 0], "total": 66, "table": "application", "rank": 93, "sp500_rank": 63}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 3, 2, 2, 8, 2, 1, 0, 0], "total": 18, "table": "application", "rank": 72, "sp500_rank": 56}, "Measuring_and_Testing": {"counts": [0, 1, 1, 0, 3, 2, 6, 3, 3, 0, 0], "total": 19, "table": "application", "rank": 88, "sp500_rank": 65}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4938, "rank": 92, "sp500_rank": 59}, "ai_jobs": {"counts": null, "total": 1018, "rank": 43, "sp500_rank": 30}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We have been committed to improving lives since the company was founded in 1896 in Basel, Switzerland. Today, Roche creates innovative medicines and diagnostic tests that help millions of patients globally.", "company_site_link": "https://www.roche.com/about.htm", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 429, "country": "United States", "website": "http://ebay.com", "crunchbase": {"text": "e56b0ceb-bb30-bbec-805e-d5dc7412dcb1", "url": "https://www.crunchbase.com/organization/ebay"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ebay"], "stage": "Mature", "name": "Ebay", "patent_name": "ebay", "continent": "North America", "local_logo": "ebay.png", "aliases": "Ebay Inc", "permid_links": [{"text": 4295906238, "url": "https://permid.org/1-4295906238"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:EBAY", "url": "https://www.google.com/finance/quote/ebay:nasdaq"}], "market_full": [{"text": "MEX:EBAY", "url": "https://www.google.com/finance/quote/ebay:mex"}, {"text": "DUS:EBA", "url": "https://www.google.com/finance/quote/dus:eba"}, {"text": "BMV:EBAY", "url": "https://www.google.com/finance/quote/bmv:ebay"}, {"text": "NASDAQ:EBAY", "url": "https://www.google.com/finance/quote/ebay:nasdaq"}, {"text": "MUN:EBA", "url": "https://www.google.com/finance/quote/eba:mun"}, {"text": "VIE:EBAY", "url": "https://www.google.com/finance/quote/ebay:vie"}, {"text": "FRA:EBAY", "url": "https://www.google.com/finance/quote/ebay:fra"}, {"text": "HAN:EBA", "url": "https://www.google.com/finance/quote/eba:han"}, {"text": "FWB:EBA", "url": "https://www.google.com/finance/quote/eba:fwb"}, {"text": "BER:EBA", "url": "https://www.google.com/finance/quote/ber:eba"}, {"text": "HAM:EBA", "url": "https://www.google.com/finance/quote/eba:ham"}, {"text": "XETR:EBA", "url": "https://www.google.com/finance/quote/eba:xetr"}, {"text": "BCBA:EBAY", "url": "https://www.google.com/finance/quote/bcba:ebay"}, {"text": "SGO:EBAY", "url": "https://www.google.com/finance/quote/ebay:sgo"}, {"text": "MOEX:EBAY-RM", "url": "https://www.google.com/finance/quote/ebay-rm:moex"}], "crunchbase_description": "eBay is an online marketplace that connects a global network of buyers and sellers.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Machine translation", "field_count": 17}, {"field_name": "Feature (computer vision)", "field_count": 8}, {"field_name": "Ranking", "field_count": 6}, {"field_name": "Parsing", "field_count": 5}, {"field_name": "Relevance (information retrieval)", "field_count": 5}, {"field_name": "Anomaly detection", "field_count": 5}, {"field_name": "Cluster analysis", "field_count": 4}, {"field_name": "Recommender system", "field_count": 4}, {"field_name": "Categorization", "field_count": 3}, {"field_name": "Sentence", "field_count": 3}], "clusters": [{"cluster_id": 82164, "cluster_count": 11}, {"cluster_id": 3527, "cluster_count": 10}, {"cluster_id": 25062, "cluster_count": 9}, {"cluster_id": 75688, "cluster_count": 7}, {"cluster_id": 148, "cluster_count": 6}, {"cluster_id": 1989, "cluster_count": 5}, {"cluster_id": 16788, "cluster_count": 4}, {"cluster_id": 36678, "cluster_count": 4}, {"cluster_id": 14994, "cluster_count": 3}, {"cluster_id": 44849, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 240}, {"ref_CSET_id": 163, "referenced_count": 208}, {"ref_CSET_id": 87, "referenced_count": 125}, {"ref_CSET_id": 429, "referenced_count": 71}, {"ref_CSET_id": 115, "referenced_count": 68}, {"ref_CSET_id": 792, "referenced_count": 41}, {"ref_CSET_id": 21, "referenced_count": 28}, {"ref_CSET_id": 23, "referenced_count": 26}, {"ref_CSET_id": 6, "referenced_count": 21}, {"ref_CSET_id": 1126, "referenced_count": 20}], "tasks": [{"referent": "classification", "task_count": 28}, {"referent": "code_search", "task_count": 11}, {"referent": "neural_machine_translation", "task_count": 10}, {"referent": "classification_tasks", "task_count": 9}, {"referent": "recommendation", "task_count": 9}, {"referent": "retrieval", "task_count": 8}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 7}, {"referent": "machine_translation", "task_count": 7}, {"referent": "computer_vision", "task_count": 6}, {"referent": "patch_matching", "task_count": 6}], "methods": [{"referent": "3d_representations", "method_count": 19}, {"referent": "double_q_learning", "method_count": 10}, {"referent": "q_learning", "method_count": 9}, {"referent": "vqa_models", "method_count": 8}, {"referent": "meta_learning_algorithms", "method_count": 7}, {"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "self_supervised_learning", "method_count": 6}, {"referent": "semi_supervised_learning_methods", "method_count": 6}, {"referent": "representation_learning", "method_count": 6}, {"referent": "language_models", "method_count": 6}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [63, 71, 66, 28, 30, 57, 65, 50, 52, 29, 0], "total": 511, "isTopResearch": false, "rank": 276, "fortune500_rank": 107}, "ai_publications": {"counts": [22, 15, 15, 6, 12, 24, 27, 19, 26, 8, 0], "total": 174, "isTopResearch": false, "rank": 85, "fortune500_rank": 25}, "ai_publications_growth": {"counts": [], "total": -20.67276453241365, "isTopResearch": false, "rank": 1331, "fortune500_rank": 387}, "ai_pubs_top_conf": {"counts": [7, 10, 7, 2, 7, 15, 14, 4, 10, 6, 0], "total": 82, "isTopResearch": false, "rank": 31, "fortune500_rank": 14}, "citation_counts": {"counts": [45, 139, 216, 265, 346, 389, 538, 673, 730, 492, 21], "total": 3854, "isTopResearch": false, "rank": 85, "fortune500_rank": 30}, "cv_pubs": {"counts": [6, 9, 2, 2, 3, 6, 3, 3, 2, 1, 0], "total": 37, "isTopResearch": true, "rank": 100, "fortune500_rank": 28}, "nlp_pubs": {"counts": [8, 2, 7, 2, 4, 9, 11, 8, 8, 2, 0], "total": 61, "isTopResearch": true, "rank": 42, "fortune500_rank": 16}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [2.0454545454545454, 9.266666666666667, 14.4, 44.166666666666664, 28.833333333333332, 16.208333333333332, 19.925925925925927, 35.421052631578945, 28.076923076923077, 61.5, 0], "total": 22.149425287356323, "isTopResearch": false, "rank": 274, "fortune500_rank": 87}}, "patents": {"ai_patents": {"counts": [5, 13, 9, 34, 16, 24, 18, 16, 11, 0, 0], "total": 146, "table": null, "rank": 126, "fortune500_rank": 41}, "ai_patents_growth": {"counts": [], "total": 4.62962962962963, "table": null, "rank": 349, "fortune500_rank": 115}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [50, 130, 90, 340, 160, 240, 180, 160, 110, 0, 0], "total": 1460, "table": null, "rank": 126, "fortune500_rank": 41}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 2, 1, 2, 2, 1, 0, 0], "total": 8, "table": "industry", "rank": 103, "fortune500_rank": 43}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 165, "fortune500_rank": 55}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [2, 6, 7, 30, 14, 21, 13, 11, 4, 0, 0], "total": 108, "table": "industry", "rank": 69, "fortune500_rank": 30}, "Banking_and_Finance": {"counts": [0, 0, 0, 2, 0, 1, 4, 0, 2, 0, 0], "total": 9, "table": "industry", "rank": 80, "fortune500_rank": 30}, "Telecommunications": {"counts": [0, 3, 0, 4, 1, 3, 2, 3, 2, 0, 0], "total": 18, "table": "industry", "rank": 138, "fortune500_rank": 54}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 3, 0, 1, 1, 0, 0], "total": 6, "table": null, "rank": 31, "fortune500_rank": 16}, "Business": {"counts": [4, 7, 8, 20, 9, 16, 12, 10, 10, 0, 0], "total": 96, "table": "industry", "rank": 29, "fortune500_rank": 12}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 3, 0, 9, 4, 2, 0, 0, 0, 0, 0], "total": 18, "table": "application", "rank": 27, "fortune500_rank": 15}, "Speech_Processing": {"counts": [0, 0, 0, 3, 1, 0, 1, 0, 1, 0, 0], "total": 6, "table": "application", "rank": 105, "fortune500_rank": 30}, "Knowledge_Representation": {"counts": [0, 1, 0, 9, 5, 0, 2, 1, 0, 0, 0], "total": 18, "table": "application", "rank": 56, "fortune500_rank": 31}, "Planning_and_Scheduling": {"counts": [3, 1, 1, 0, 3, 2, 2, 3, 3, 0, 0], "total": 18, "table": "application", "rank": 88, "fortune500_rank": 33}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 47, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [2, 1, 2, 8, 6, 5, 1, 5, 3, 0, 0], "total": 33, "table": "application", "rank": 145, "fortune500_rank": 45}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4938, "rank": 92, "fortune500_rank": 56}, "ai_jobs": {"counts": null, "total": 579, "rank": 95, "fortune500_rank": 52}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "eBay Inc. is an American multinational e-commerce corporation based in San Jose, California, that facilitates consumer-to-consumer and business-to-consumer sales through its website. eBay was founded by Pierre Omidyar in 1995, and became a notable success story of the dot-com bubble. eBay is a multibillion-dollar business with operations in about 32 countries, as of 2019. The company manages the eBay website, an online auction and shopping website in which people and businesses buy and sell a wide variety of goods and services worldwide. The website is free to use for buyers, but sellers are charged fees for listing items after a limited number of free listings, and again when those items are sold.", "wikipedia_link": "https://en.wikipedia.org/wiki/EBay", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 830, "country": "United States", "website": "http://www.nike.com/", "crunchbase": {"text": "4273d16f-0893-3300-8352-59a7126f06fc", "url": "https://www.crunchbase.com/organization/nike"}, "child_crunchbase": [{"text": "c09a1976-b607-b08e-d9d8-d4bd4bf88386", "url": "https://www.crunchbase.com/organization/celect"}], "linkedin": ["https://www.linkedin.com/company/nike", "https://www.linkedin.com/company/celect-inc-"], "stage": "Mature", "name": "Nike", "patent_name": "nike", "continent": "North America", "local_logo": "nike.png", "aliases": "Nike Inc; Nike, Inc", "permid_links": [{"text": 4295904620, "url": "https://permid.org/1-4295904620"}, {"text": 5046285632, "url": "https://permid.org/1-5046285632"}], "parent_info": null, "agg_child_info": "Celect Inc", "unagg_child_info": null, "market_filt": [{"text": "NYSE:NKE", "url": "https://www.google.com/finance/quote/nke:nyse"}], "market_full": [{"text": "DUS:NKE", "url": "https://www.google.com/finance/quote/dus:nke"}, {"text": "BCBA:NKE", "url": "https://www.google.com/finance/quote/bcba:nke"}, {"text": "HAN:NKE", "url": "https://www.google.com/finance/quote/han:nke"}, {"text": "LON:0QZ6", "url": "https://www.google.com/finance/quote/0qz6:lon"}, {"text": "FRA:NKE", "url": "https://www.google.com/finance/quote/fra:nke"}, {"text": "XETR:NKE", "url": "https://www.google.com/finance/quote/nke:xetr"}, {"text": "FWB:NKE", "url": "https://www.google.com/finance/quote/fwb:nke"}, {"text": "VIE:NKE", "url": "https://www.google.com/finance/quote/nke:vie"}, {"text": "BMV:NKE", "url": "https://www.google.com/finance/quote/bmv:nke"}, {"text": "MOEX:NKE-RM", "url": "https://www.google.com/finance/quote/moex:nke-rm"}, {"text": "BER:NKE", "url": "https://www.google.com/finance/quote/ber:nke"}, {"text": "HAM:NKE", "url": "https://www.google.com/finance/quote/ham:nke"}, {"text": "NYSE:NKE", "url": "https://www.google.com/finance/quote/nke:nyse"}, {"text": "SAO:NKE", "url": "https://www.google.com/finance/quote/nke:sao"}, {"text": "MUN:NKE", "url": "https://www.google.com/finance/quote/mun:nke"}, {"text": "MEX:NKE", "url": "https://www.google.com/finance/quote/mex:nke"}], "crunchbase_description": "Nike designs, develops, and markets footwear, apparel, equipment, and accessory products.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Big data", "field_count": 1}, {"field_name": "Query language", "field_count": 1}, {"field_name": "Linear discriminant analysis", "field_count": 1}, {"field_name": "Point cloud", "field_count": 1}], "clusters": [{"cluster_id": 2202, "cluster_count": 2}, {"cluster_id": 10485, "cluster_count": 2}, {"cluster_id": 39957, "cluster_count": 1}, {"cluster_id": 34841, "cluster_count": 1}, {"cluster_id": 2242, "cluster_count": 1}, {"cluster_id": 41857, "cluster_count": 1}, {"cluster_id": 3446, "cluster_count": 1}, {"cluster_id": 70049, "cluster_count": 1}, {"cluster_id": 319, "cluster_count": 1}, {"cluster_id": 78027, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 17}, {"ref_CSET_id": 163, "referenced_count": 7}, {"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 6, "referenced_count": 6}, {"ref_CSET_id": 21, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 50, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 830, "referenced_count": 1}, {"ref_CSET_id": 434, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "computer_vision", "task_count": 1}, {"referent": "speech_production", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "advertising", "task_count": 1}, {"referent": "manufacturing_quality_control", "task_count": 1}, {"referent": "matrix_completion", "task_count": 1}, {"referent": "time_series", "task_count": 1}, {"referent": "few_shot_regression", "task_count": 1}, {"referent": "point_processes", "task_count": 1}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "weight_demodulation", "method_count": 1}, {"referent": "td3", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "pyramid_pooling_module", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "rms_pooling", "method_count": 1}, {"referent": "contrastive_predictive_coding", "method_count": 1}, {"referent": "discriminators", "method_count": 1}, {"referent": "topic_embeddings", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [17, 22, 17, 11, 11, 14, 31, 14, 19, 15, 0], "total": 171, "isTopResearch": false, "rank": 428, "sp500_rank": 257, "fortune500_rank": 165}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 1, 4, 5, 2, 2, 0], "total": 15, "isTopResearch": false, "rank": 346, "sp500_rank": 188, "fortune500_rank": 105}, "ai_publications_growth": {"counts": [], "total": -11.666666666666666, "isTopResearch": false, "rank": 1280, "sp500_rank": 324, "fortune500_rank": 372}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 4, 9, 34, 55, 47, 1], "total": 150, "isTopResearch": false, "rank": 442, "sp500_rank": 201, "fortune500_rank": 129}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0], "total": 4, "isTopResearch": true, "rank": 313, "sp500_rank": 158, "fortune500_rank": 84}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114, "fortune500_rank": 49}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 4.0, 2.25, 6.8, 27.5, 23.5, 0], "total": 10.0, "isTopResearch": false, "rank": 535, "sp500_rank": 198, "fortune500_rank": 158}}, "patents": {"ai_patents": {"counts": [1, 0, 1, 2, 1, 1, 0, 2, 0, 0, 0], "total": 8, "table": null, "rank": 443, "sp500_rank": 203, "fortune500_rank": 142}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "sp500_rank": 444, "fortune500_rank": 438}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 10, 20, 10, 10, 0, 20, 0, 0, 0], "total": 80, "table": null, "rank": 443, "sp500_rank": 203, "fortune500_rank": 142}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158, "sp500_rank": 91, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 1, 2, 1, 0, 0, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 305, "sp500_rank": 156, "fortune500_rank": 110}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 37, "sp500_rank": 23, "fortune500_rank": 17}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "sp500_rank": 196, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4937, "rank": 94, "sp500_rank": 60, "fortune500_rank": 57}, "ai_jobs": {"counts": null, "total": 768, "rank": 65, "sp500_rank": 44, "fortune500_rank": 35}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "Nike, Inc. [note 1] is an American multinational corporation that is engaged in the design, development, manufacturing, and worldwide marketing and sales of footwear, apparel, equipment, accessories, and services. The company is headquartered near Beaverton, Oregon, in the Portland metropolitan area. It is the world's largest supplier of athletic shoes and apparel and a major manufacturer of sports equipment, with revenue in excess of US$37.4 billion in its fiscal year 2020 (ending May 31, 2020). As of 2020, it employed 76,700 people worldwide. In 2020 the brand alone was valued in excess of $32 billion, making it the most valuable brand among sports businesses. Previously in 2017, the Nike brand was valued at $29.6 billion. Nike ranked No. 89 in the 2018 Fortune 500 list of the largest United States corporations by total revenue.", "wikipedia_link": "https://en.wikipedia.org/wiki/Nike,_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2175, "country": "United States", "website": "https://www.usbank.com/index.html", "crunchbase": {"text": " 9561f613-9cc0-d418-da8c-2f545b6eb8b6", "url": " https://www.crunchbase.com/organization/u-s-bancorp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/us-bank"], "stage": "Mature", "name": "U.S. Bancorp", "patent_name": "U.S. Bancorp", "continent": "North America", "local_logo": null, "aliases": "U.S. Bancorp; U.S. Bancorp Asset Management; U.S. Bancorp Fund Services", "permid_links": [{"text": 8589934183, "url": "https://permid.org/1-8589934183"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:USB PR H", "url": "https://www.google.com/finance/quote/NYSE:USB PR H"}, {"text": "NYSE:USB PR Q", "url": "https://www.google.com/finance/quote/NYSE:USB PR Q"}, {"text": "NYSE:USB PR P", "url": "https://www.google.com/finance/quote/NYSE:USB PR P"}, {"text": "NYSE:UB5", "url": "https://www.google.com/finance/quote/NYSE:UB5"}, {"text": "NYSE:USB PR A", "url": "https://www.google.com/finance/quote/NYSE:USB PR A"}], "market_full": [{"text": "DUS:UB5", "url": "https://www.google.com/finance/quote/DUS:UB5"}, {"text": "ASE:USB PR Q", "url": "https://www.google.com/finance/quote/ASE:USB PR Q"}, {"text": "ASE:USB PR H", "url": "https://www.google.com/finance/quote/ASE:USB PR H"}, {"text": "MUN:UB5", "url": "https://www.google.com/finance/quote/MUN:UB5"}, {"text": "NYSE:USB PR H", "url": "https://www.google.com/finance/quote/NYSE:USB PR H"}, {"text": "HAN:UB5", "url": "https://www.google.com/finance/quote/HAN:UB5"}, {"text": "GER:UB5X", "url": "https://www.google.com/finance/quote/GER:UB5X"}, {"text": "ASE:USB PR A", "url": "https://www.google.com/finance/quote/ASE:USB PR A"}, {"text": "DEU:FSR", "url": "https://www.google.com/finance/quote/DEU:FSR"}, {"text": "NYSE:USB PR Q", "url": "https://www.google.com/finance/quote/NYSE:USB PR Q"}, {"text": "NYSE:USB PR P", "url": "https://www.google.com/finance/quote/NYSE:USB PR P"}, {"text": "VIE:USBC", "url": "https://www.google.com/finance/quote/USBC:VIE"}, {"text": "HAM:UB5", "url": "https://www.google.com/finance/quote/HAM:UB5"}, {"text": "NYSE:UB5", "url": "https://www.google.com/finance/quote/NYSE:UB5"}, {"text": "ASE:USB PR P", "url": "https://www.google.com/finance/quote/ASE:USB PR P"}, {"text": "ASE:USB", "url": "https://www.google.com/finance/quote/ASE:USB"}, {"text": "MEX:USB", "url": "https://www.google.com/finance/quote/MEX:USB"}, {"text": "NYSE:USB PR A", "url": "https://www.google.com/finance/quote/NYSE:USB PR A"}, {"text": "BUE:UB5", "url": "https://www.google.com/finance/quote/BUE:UB5"}, {"text": "SGO:USB", "url": "https://www.google.com/finance/quote/SGO:USB"}, {"text": "STU:UB5", "url": "https://www.google.com/finance/quote/STU:UB5"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148, "sp500_rank": 428, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4900, "rank": 95, "sp500_rank": 61, "fortune500_rank": 58}, "ai_jobs": {"counts": null, "total": 380, "rank": 148, "sp500_rank": 98, "fortune500_rank": 80}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 710, "country": "United States", "website": "https://www.target.com/", "crunchbase": {"text": "0f67629f-2381-2fee-583b-6c2be3dfb7f2", "url": "https://www.crunchbase.com/organization/target"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/target"], "stage": "Mature", "name": "Target", "patent_name": "target", "continent": "North America", "local_logo": "target.png", "aliases": "Dayton Hudson Corp; Target Brands, Inc; Target Corp; Target Corporation", "permid_links": [{"text": 4295912282, "url": "https://permid.org/1-4295912282"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TGT", "url": "https://www.google.com/finance/quote/nyse:tgt"}, {"text": "HKG:6161", "url": "https://www.google.com/finance/quote/6161:hkg"}], "market_full": [{"text": "MOEX:TGT-RM", "url": "https://www.google.com/finance/quote/moex:tgt-rm"}, {"text": "LON:0LD8", "url": "https://www.google.com/finance/quote/0ld8:lon"}, {"text": "NYSE:TGT", "url": "https://www.google.com/finance/quote/nyse:tgt"}, {"text": "BMV:TGT", "url": "https://www.google.com/finance/quote/bmv:tgt"}, {"text": "XETR:DYH", "url": "https://www.google.com/finance/quote/dyh:xetr"}, {"text": "HKG:6161", "url": "https://www.google.com/finance/quote/6161:hkg"}, {"text": "OTC:CBDY", "url": "https://www.google.com/finance/quote/cbdy:otc"}, {"text": "FWB:DYH", "url": "https://www.google.com/finance/quote/dyh:fwb"}], "crunchbase_description": "Target is an American retailing company providing access to a wide selection of products such as furniture, electronics, toys, and more.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Salient", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Ordinal regression", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Pairwise comparison", "field_count": 1}, {"field_name": "Empirical risk minimization", "field_count": 1}], "clusters": [{"cluster_id": 25062, "cluster_count": 2}, {"cluster_id": 35601, "cluster_count": 2}, {"cluster_id": 26, "cluster_count": 1}, {"cluster_id": 25800, "cluster_count": 1}, {"cluster_id": 228, "cluster_count": 1}, {"cluster_id": 41877, "cluster_count": 1}, {"cluster_id": 10558, "cluster_count": 1}, {"cluster_id": 6321, "cluster_count": 1}, {"cluster_id": 1989, "cluster_count": 1}, {"cluster_id": 39636, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 28}, {"ref_CSET_id": 163, "referenced_count": 14}, {"ref_CSET_id": 87, "referenced_count": 9}, {"ref_CSET_id": 710, "referenced_count": 9}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 127, "referenced_count": 4}, {"ref_CSET_id": 792, "referenced_count": 3}, {"ref_CSET_id": 787, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 223, "referenced_count": 2}], "tasks": [{"referent": "computer_vision", "task_count": 3}, {"referent": "recommendation", "task_count": 3}, {"referent": "action_understanding", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "anomaly_detection", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "word_embeddings", "task_count": 1}, {"referent": "action_localization", "task_count": 1}, {"referent": "object_detection", "task_count": 1}, {"referent": "event_extraction", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "siamese_network", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 2}, {"referent": "one_shot_aggregation", "method_count": 2}, {"referent": "wgan_gp", "method_count": 2}, {"referent": "amsgrad", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [7, 3, 21, 9, 10, 14, 9, 7, 2, 3, 0], "total": 85, "isTopResearch": false, "rank": 538, "sp500_rank": 302, "fortune500_rank": 200}, "ai_publications": {"counts": [1, 0, 1, 0, 1, 2, 5, 6, 0, 0, 0], "total": 16, "isTopResearch": false, "rank": 341, "sp500_rank": 186, "fortune500_rank": 103}, "ai_publications_growth": {"counts": [], "total": -40.0, "isTopResearch": false, "rank": 1425, "sp500_rank": 395, "fortune500_rank": 412}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 188, "sp500_rank": 92, "fortune500_rank": 54}, "citation_counts": {"counts": [0, 0, 0, 1, 4, 10, 17, 39, 55, 55, 1], "total": 182, "isTopResearch": false, "rank": 398, "sp500_rank": 180, "fortune500_rank": 117}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 1, 3, 4, 0, 0, 0], "total": 9, "isTopResearch": true, "rank": 217, "sp500_rank": 122, "fortune500_rank": 62}, "nlp_pubs": {"counts": [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115, "fortune500_rank": 61}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0.0, 0, 0.0, 0, 4.0, 5.0, 3.4, 6.5, 0, 0, 0], "total": 11.375, "isTopResearch": false, "rank": 490, "sp500_rank": 170, "fortune500_rank": 146}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 5, 9, 10, 5, 1, 0, 0], "total": 31, "table": null, "rank": 266, "sp500_rank": 149, "fortune500_rank": 90}, "ai_patents_growth": {"counts": [], "total": 13.703703703703704, "table": null, "rank": 320, "sp500_rank": 149, "fortune500_rank": 102}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 50, 90, 100, 50, 10, 0, 0], "total": 310, "table": null, "rank": 266, "sp500_rank": 149, "fortune500_rank": 90}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "sp500_rank": 115, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 165, "sp500_rank": 110, "fortune500_rank": 55}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 3, 5, 7, 3, 1, 0, 0], "total": 20, "table": "industry", "rank": 188, "sp500_rank": 106, "fortune500_rank": 70}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 2, 1, 1, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 225, "sp500_rank": 119, "fortune500_rank": 86}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 2, 6, 9, 4, 1, 0, 0], "total": 22, "table": "industry", "rank": 94, "sp500_rank": 68, "fortune500_rank": 38}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "sp500_rank": 67, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "sp500_rank": 101, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 5, 4, 2, 1, 0, 0], "total": 12, "table": "application", "rank": 113, "sp500_rank": 80, "fortune500_rank": 42}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 3, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 318, "sp500_rank": 158, "fortune500_rank": 96}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4847, "rank": 96, "sp500_rank": 62, "fortune500_rank": 59}, "ai_jobs": {"counts": null, "total": 709, "rank": 74, "sp500_rank": 50, "fortune500_rank": 40}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "Target Corporation is an American retail corporation. The eighth-largest retailer in the United States, it is a component of the S&P 500 Index. Its largest competitors, Walmart and Amazon.com, are the first and second largest retailers, respectively.", "wikipedia_link": "https://en.wikipedia.org/wiki/Target_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 37, "country": "China", "website": "http://www.baidu.com", "crunchbase": {"text": "c273424a-c118-e7ab-29a6-843775e7e6d0", "url": "https://www.crunchbase.com/organization/baidu"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/baidu-usa", "https://www.linkedin.com/company/baidu-inc"], "stage": "Mature", "name": "Baidu", "patent_name": "baidu", "continent": "Asia", "local_logo": "baidu.png", "aliases": "Baidu Inc; \u767e\u5ea6; \u767e\u5ea6\u516c\u53f8", "permid_links": [{"text": 5036392074, "url": "https://permid.org/1-5036392074"}, {"text": 4295864818, "url": "https://permid.org/1-4295864818"}], "parent_info": null, "agg_child_info": "Baidu Usa, Baidu Silicon Valley AI Lab", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:BIDU", "url": "https://www.google.com/finance/quote/bidu:nasdaq"}, {"text": "HKG:9888", "url": "https://www.google.com/finance/quote/9888:hkg"}], "market_full": [{"text": "BUE:BIDU", "url": "https://www.google.com/finance/quote/bidu:bue"}, {"text": "VIE:BIDU", "url": "https://www.google.com/finance/quote/bidu:vie"}, {"text": "NASDAQ:BIDU", "url": "https://www.google.com/finance/quote/bidu:nasdaq"}, {"text": "HKG:9888", "url": "https://www.google.com/finance/quote/9888:hkg"}], "crunchbase_description": "Baidu is a search engine that enables individuals to obtain information and finds what they need.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 65}, {"field_name": "Machine translation", "field_count": 49}, {"field_name": "Deep learning", "field_count": 47}, {"field_name": "Convolutional neural network", "field_count": 39}, {"field_name": "Artificial neural network", "field_count": 33}, {"field_name": "Reinforcement learning", "field_count": 33}, {"field_name": "Segmentation", "field_count": 31}, {"field_name": "Feature learning", "field_count": 30}, {"field_name": "Robustness (computer science)", "field_count": 28}, {"field_name": "Language model", "field_count": 28}], "clusters": [{"cluster_id": 1193, "cluster_count": 41}, {"cluster_id": 13405, "cluster_count": 34}, {"cluster_id": 3527, "cluster_count": 28}, {"cluster_id": 148, "cluster_count": 24}, {"cluster_id": 5070, "cluster_count": 24}, {"cluster_id": 7496, "cluster_count": 20}, {"cluster_id": 57334, "cluster_count": 19}, {"cluster_id": 43229, "cluster_count": 19}, {"cluster_id": 22315, "cluster_count": 18}, {"cluster_id": 1338, "cluster_count": 17}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3996}, {"ref_CSET_id": 163, "referenced_count": 3008}, {"ref_CSET_id": 87, "referenced_count": 1668}, {"ref_CSET_id": 37, "referenced_count": 1660}, {"ref_CSET_id": 115, "referenced_count": 630}, {"ref_CSET_id": 245, "referenced_count": 533}, {"ref_CSET_id": 112, "referenced_count": 405}, {"ref_CSET_id": 6, "referenced_count": 380}, {"ref_CSET_id": 21, "referenced_count": 348}, {"ref_CSET_id": 223, "referenced_count": 344}], "tasks": [{"referent": "classification", "task_count": 169}, {"referent": "classification_tasks", "task_count": 64}, {"referent": "autonomous_driving", "task_count": 49}, {"referent": "recommendation", "task_count": 48}, {"referent": "computer_vision", "task_count": 48}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 45}, {"referent": "multi_task_learning", "task_count": 42}, {"referent": "translation", "task_count": 42}, {"referent": "image_recognition", "task_count": 39}, {"referent": "feature_selection", "task_count": 39}], "methods": [{"referent": "3d_representations", "method_count": 153}, {"referent": "recurrent_neural_networks", "method_count": 142}, {"referent": "vqa_models", "method_count": 99}, {"referent": "convolutional_neural_networks", "method_count": 92}, {"referent": "q_learning", "method_count": 80}, {"referent": "double_q_learning", "method_count": 62}, {"referent": "1d_cnn", "method_count": 57}, {"referent": "deep_belief_network", "method_count": 53}, {"referent": "reinforcement_learning", "method_count": 49}, {"referent": "optimization", "method_count": 47}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [43, 55, 100, 136, 147, 204, 378, 425, 488, 293, 16], "total": 2285, "isTopResearch": false, "rank": 115}, "ai_publications": {"counts": [29, 37, 64, 67, 91, 145, 282, 315, 398, 179, 2], "total": 1609, "isTopResearch": false, "rank": 16}, "ai_publications_growth": {"counts": [], "total": -5.657930539786631, "isTopResearch": false, "rank": 1237}, "ai_pubs_top_conf": {"counts": [7, 13, 36, 28, 35, 69, 131, 147, 172, 69, 0], "total": 707, "isTopResearch": false, "rank": 10}, "citation_counts": {"counts": [145, 363, 957, 2144, 3714, 6128, 9983, 13734, 17127, 11099, 410], "total": 65804, "isTopResearch": false, "rank": 10}, "cv_pubs": {"counts": [2, 6, 21, 14, 21, 48, 115, 111, 174, 104, 0], "total": 616, "isTopResearch": true, "rank": 18}, "nlp_pubs": {"counts": [15, 14, 16, 28, 31, 48, 82, 82, 89, 34, 0], "total": 439, "isTopResearch": true, "rank": 9}, "robotics_pubs": {"counts": [0, 0, 0, 1, 5, 7, 11, 14, 13, 4, 0], "total": 55, "isTopResearch": true, "rank": 43}, "citations_per_article": {"counts": [5.0, 9.81081081081081, 14.953125, 32.0, 40.81318681318681, 42.262068965517244, 35.40070921985816, 43.6, 43.03266331658291, 62.00558659217877, 205.0], "total": 40.89745183343692, "isTopResearch": false, "rank": 127}}, "patents": {"ai_patents": {"counts": [11, 16, 86, 220, 382, 487, 477, 359, 207, 25, 0], "total": 2270, "table": null, "rank": 10}, "ai_patents_growth": {"counts": [], "total": 0.231859137250949, "table": null, "rank": 362}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [110, 160, 860, 2200, 3820, 4870, 4770, 3590, 2070, 250, 0], "total": 22700, "table": null, "rank": 10}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 2, 1, 4, 0, 0, 0], "total": 8, "table": null, "rank": 59}, "Life_Sciences": {"counts": [0, 0, 0, 3, 6, 4, 9, 7, 3, 0, 0], "total": 32, "table": null, "rank": 31}, "Security__eg_cybersecurity": {"counts": [0, 1, 2, 3, 4, 10, 36, 29, 10, 0, 0], "total": 95, "table": "industry", "rank": 11}, "Transportation": {"counts": [0, 1, 4, 44, 63, 123, 83, 40, 8, 1, 0], "total": 367, "table": "industry", "rank": 6}, "Industrial_and_Manufacturing": {"counts": [0, 0, 3, 6, 1, 0, 2, 7, 3, 0, 0], "total": 22, "table": null, "rank": 39}, "Education": {"counts": [0, 0, 0, 0, 6, 3, 6, 0, 1, 0, 0], "total": 16, "table": null, "rank": 7}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 38}, "Computing_in_Government": {"counts": [0, 0, 0, 1, 0, 1, 3, 2, 1, 0, 0], "total": 8, "table": null, "rank": 7}, "Personal_Devices_and_Computing": {"counts": [3, 9, 34, 141, 208, 128, 189, 203, 95, 6, 0], "total": 1016, "table": "industry", "rank": 7}, "Banking_and_Finance": {"counts": [0, 1, 0, 6, 7, 14, 6, 4, 1, 0, 0], "total": 39, "table": null, "rank": 25}, "Telecommunications": {"counts": [0, 2, 14, 21, 55, 46, 62, 58, 43, 2, 0], "total": 303, "table": "industry", "rank": 15}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 1, 0, 1, 3, 0, 2, 0, 0, 0], "total": 7, "table": null, "rank": 26}, "Business": {"counts": [0, 2, 2, 15, 16, 40, 39, 37, 5, 2, 0], "total": 158, "table": "industry", "rank": 19}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 2, 1, 2, 2, 0, 0], "total": 7, "table": null, "rank": 62}, "Entertainment": {"counts": [0, 0, 1, 1, 0, 2, 2, 1, 2, 0, 0], "total": 9, "table": null, "rank": 17}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 1, 3, 0, 3, 1, 0, 0], "total": 8, "table": null, "rank": 17}, "Language_Processing": {"counts": [0, 1, 7, 24, 66, 12, 8, 0, 0, 0, 0], "total": 118, "table": "application", "rank": 3}, "Speech_Processing": {"counts": [0, 1, 14, 30, 74, 46, 49, 32, 30, 1, 0], "total": 277, "table": "application", "rank": 7}, "Knowledge_Representation": {"counts": [0, 3, 6, 12, 29, 17, 25, 22, 0, 0, 0], "total": 114, "table": null, "rank": 10}, "Planning_and_Scheduling": {"counts": [0, 1, 1, 8, 12, 23, 21, 17, 3, 0, 0], "total": 86, "table": null, "rank": 22}, "Control": {"counts": [0, 0, 6, 47, 65, 120, 78, 36, 9, 0, 0], "total": 361, "table": "application", "rank": 7}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 2, 15, 22, 116, 217, 168, 138, 64, 4, 0], "total": 746, "table": "application", "rank": 10}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 1, 0, 10, 5, 10, 0, 0, 0], "total": 27, "table": null, "rank": 52}, "Measuring_and_Testing": {"counts": [0, 1, 5, 15, 34, 68, 38, 23, 8, 0, 0], "total": 192, "table": "application", "rank": 10}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4813, "rank": 97}, "ai_jobs": {"counts": null, "total": 692, "rank": 75}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Baidu, Inc. is a Chinese multinational technology company specializing in Internet-related services and products and artificial intelligence (AI), headquartered in Beijing's Haidian District. It is one of the largest AI and Internet companies in the world. The holding company of the group is incorporated in the Cayman Islands. Baidu was incorporated in January 2000 by Robin Li and Eric Xu. The Baidu search engine is currently the fourth largest website in the Alexa Internet rankings. Baidu has origins in RankDex, an earlier search engine developed by Robin Li in 1996, before he founded Baidu in 2000.", "wikipedia_link": "https://en.wikipedia.org/wiki/Baidu", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 533, "country": "United States", "website": "http://www.kaiserpermanente.org", "crunchbase": {"text": "86205927-bac0-bd77-5f18-4887ea006f76", "url": "https://www.crunchbase.com/organization/kaiser-permanente"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mid-atlantic-permanente-medical-group", "https://www.linkedin.com/company/kaiser-permanente"], "stage": "Mature", "name": "Kaiser Permanente", "patent_name": "kaiser permanente", "continent": "North America", "local_logo": "kaiser_permanente.png", "aliases": null, "permid_links": [{"text": 4296597486, "url": "https://permid.org/1-4296597486"}], "parent_info": null, "agg_child_info": "Kaiser Permanente - Mid-Atlantic Permanente Medical Group (MAPMG)", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Kaiser Permanente is a healthcare provider of integrated managed care consortium and not-for-profit health plans.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Parsing", "field_count": 5}, {"field_name": "Receiver operating characteristic", "field_count": 4}, {"field_name": "Analytics", "field_count": 2}, {"field_name": "Annotation", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Time series", "field_count": 1}, {"field_name": "Data warehouse", "field_count": 1}, {"field_name": "Bayesian information criterion", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}], "clusters": [{"cluster_id": 6370, "cluster_count": 18}, {"cluster_id": 57896, "cluster_count": 4}, {"cluster_id": 1477, "cluster_count": 3}, {"cluster_id": 45525, "cluster_count": 3}, {"cluster_id": 53938, "cluster_count": 2}, {"cluster_id": 807, "cluster_count": 2}, {"cluster_id": 6739, "cluster_count": 2}, {"cluster_id": 26403, "cluster_count": 2}, {"cluster_id": 29223, "cluster_count": 2}, {"cluster_id": 8230, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 37}, {"ref_CSET_id": 533, "referenced_count": 27}, {"ref_CSET_id": 163, "referenced_count": 14}, {"ref_CSET_id": 115, "referenced_count": 10}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 396, "referenced_count": 3}, {"ref_CSET_id": 408, "referenced_count": 3}, {"ref_CSET_id": 1797, "referenced_count": 3}, {"ref_CSET_id": 1928, "referenced_count": 2}, {"ref_CSET_id": 516, "referenced_count": 2}], "tasks": [{"referent": "natural_language_processing", "task_count": 17}, {"referent": "disease_detection", "task_count": 15}, {"referent": "classification", "task_count": 13}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 9}, {"referent": "individual_identification", "task_count": 4}, {"referent": "mortality_prediction", "task_count": 4}, {"referent": "decision_making", "task_count": 4}, {"referent": "developmental_learning", "task_count": 4}, {"referent": "image_analysis", "task_count": 3}, {"referent": "image_interpretation", "task_count": 3}], "methods": [{"referent": "mad_learning", "method_count": 16}, {"referent": "natural_language_processing", "method_count": 14}, {"referent": "q_learning", "method_count": 8}, {"referent": "logistic_regression", "method_count": 6}, {"referent": "griffin_lim_algorithm", "method_count": 6}, {"referent": "meta_learning_algorithms", "method_count": 5}, {"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "merl", "method_count": 4}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2868, 2724, 2868, 2819, 3526, 3865, 3959, 4324, 4293, 3921, 24], "total": 35191, "isTopResearch": false, "rank": 7}, "ai_publications": {"counts": [6, 8, 9, 9, 11, 10, 21, 17, 17, 6, 0], "total": 114, "isTopResearch": false, "rank": 112}, "ai_publications_growth": {"counts": [], "total": -27.91783380018674, "isTopResearch": false, "rank": 1385}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [58, 54, 83, 132, 163, 259, 571, 804, 1071, 836, 13], "total": 4044, "isTopResearch": false, "rank": 83}, "cv_pubs": {"counts": [1, 1, 0, 1, 1, 0, 2, 3, 3, 1, 0], "total": 13, "isTopResearch": true, "rank": 179}, "nlp_pubs": {"counts": [3, 4, 7, 2, 1, 3, 4, 4, 2, 2, 0], "total": 32, "isTopResearch": true, "rank": 54}, "robotics_pubs": {"counts": [1, 0, 0, 1, 2, 0, 0, 2, 0, 0, 0], "total": 6, "isTopResearch": true, "rank": 156}, "citations_per_article": {"counts": [9.666666666666666, 6.75, 9.222222222222221, 14.666666666666666, 14.818181818181818, 25.9, 27.19047619047619, 47.294117647058826, 63.0, 139.33333333333334, 0], "total": 35.473684210526315, "isTopResearch": false, "rank": 156}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4671, "rank": 98}, "ai_jobs": {"counts": null, "total": 776, "rank": 64}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Kaiser Permanente is an American integrated managed care consortium, based in Oakland, California, United States, founded in 1945 by industrialist Henry J. Kaiser and physician Sidney Garfield. Kaiser Permanente is made up of three distinct but interdependent groups of entities: the Kaiser Foundation Health Plan, Inc. (KFHP) and its regional operating subsidiaries; Kaiser Foundation Hospitals; and the regional Permanente Medical Groups. As of 2017, Kaiser Permanente operates in eight states (Hawaii, Washington, Oregon, California, Colorado, Maryland, Virginia, Georgia) and the District of Columbia, and is the largest managed care organization in the United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Kaiser_Permanente", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 845, "country": "United States", "website": "http://www.synopsys.com", "crunchbase": {"text": "c331f266-44d9-dff6-5e01-240a2831c494", "url": "https://www.crunchbase.com/organization/synopsys"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/synopsys"], "stage": "Mature", "name": "Synopsys Inc", "patent_name": "Synopsys Inc", "continent": "North America", "local_logo": "synopsys_inc.png", "aliases": "Synopsys; Synopsys Inc", "permid_links": [{"text": 4295908075, "url": "https://permid.org/1-4295908075"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:SNPS", "url": "https://www.google.com/finance/quote/NASDAQ:SNPS"}], "market_full": [{"text": "GER:SYPX", "url": "https://www.google.com/finance/quote/GER:SYPX"}, {"text": "DUS:SYP", "url": "https://www.google.com/finance/quote/DUS:SYP"}, {"text": "BRN:SYP", "url": "https://www.google.com/finance/quote/BRN:SYP"}, {"text": "STU:SYP", "url": "https://www.google.com/finance/quote/STU:SYP"}, {"text": "NASDAQ:SNPS", "url": "https://www.google.com/finance/quote/NASDAQ:SNPS"}, {"text": "BER:SYP", "url": "https://www.google.com/finance/quote/BER:SYP"}, {"text": "MUN:SYP", "url": "https://www.google.com/finance/quote/MUN:SYP"}, {"text": "DEU:SNPS", "url": "https://www.google.com/finance/quote/DEU:SNPS"}, {"text": "MCX:SNPS-RM", "url": "https://www.google.com/finance/quote/MCX:SNPS-RM"}, {"text": "LSE:0LBP", "url": "https://www.google.com/finance/quote/0LBP:LSE"}, {"text": "FRA:SYP", "url": "https://www.google.com/finance/quote/FRA:SYP"}, {"text": "MEX:SNPS", "url": "https://www.google.com/finance/quote/MEX:SNPS"}, {"text": "HAN:SYP", "url": "https://www.google.com/finance/quote/HAN:SYP"}, {"text": "SAO:S1NP34", "url": "https://www.google.com/finance/quote/S1NP34:SAO"}, {"text": "VIE:SYNP", "url": "https://www.google.com/finance/quote/SYNP:VIE"}], "crunchbase_description": "Synopsys is a software company providing electronic design automation (EDA), semiconductor IP, software quality, and security solutions.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 7}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "False alarm", "field_count": 2}, {"field_name": "Retargeting", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Unsupervised learning", "field_count": 1}], "clusters": [{"cluster_id": 6871, "cluster_count": 26}, {"cluster_id": 10369, "cluster_count": 5}, {"cluster_id": 28358, "cluster_count": 3}, {"cluster_id": 1621, "cluster_count": 3}, {"cluster_id": 17690, "cluster_count": 2}, {"cluster_id": 10424, "cluster_count": 2}, {"cluster_id": 11445, "cluster_count": 1}, {"cluster_id": 109, "cluster_count": 1}, {"cluster_id": 54075, "cluster_count": 1}, {"cluster_id": 39888, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 48}, {"ref_CSET_id": 163, "referenced_count": 18}, {"ref_CSET_id": 845, "referenced_count": 18}, {"ref_CSET_id": 789, "referenced_count": 15}, {"ref_CSET_id": 184, "referenced_count": 14}, {"ref_CSET_id": 87, "referenced_count": 10}, {"ref_CSET_id": 127, "referenced_count": 9}, {"ref_CSET_id": 115, "referenced_count": 9}, {"ref_CSET_id": 2075, "referenced_count": 7}, {"ref_CSET_id": 2241, "referenced_count": 5}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 11}, {"referent": "classification", "task_count": 8}, {"referent": "motion_synthesis", "task_count": 8}, {"referent": "image_processing", "task_count": 6}, {"referent": "robust_design", "task_count": 5}, {"referent": "feature_selection", "task_count": 3}, {"referent": "computer_vision", "task_count": 3}, {"referent": "system_identification", "task_count": 3}, {"referent": "fault_detection", "task_count": 3}, {"referent": "disease_detection", "task_count": 3}], "methods": [{"referent": "mad_learning", "method_count": 23}, {"referent": "recurrent_neural_networks", "method_count": 11}, {"referent": "vqa_models", "method_count": 9}, {"referent": "convolutional_neural_networks", "method_count": 8}, {"referent": "griffin_lim_algorithm", "method_count": 7}, {"referent": "optimization", "method_count": 5}, {"referent": "self_supervised_learning", "method_count": 5}, {"referent": "3d_representations", "method_count": 5}, {"referent": "deep_belief_network", "method_count": 4}, {"referent": "backbone_architectures", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [271, 219, 187, 169, 255, 234, 226, 214, 219, 170, 4], "total": 2168, "isTopResearch": false, "rank": 118, "fortune500_rank": 45}, "ai_publications": {"counts": [5, 5, 4, 1, 6, 7, 15, 16, 11, 4, 0], "total": 74, "isTopResearch": false, "rank": 147, "fortune500_rank": 48}, "ai_publications_growth": {"counts": [], "total": -29.406565656565657, "isTopResearch": false, "rank": 1390, "fortune500_rank": 403}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [17, 34, 44, 43, 74, 84, 144, 180, 239, 205, 4], "total": 1068, "isTopResearch": false, "rank": 184, "fortune500_rank": 56}, "cv_pubs": {"counts": [3, 2, 1, 0, 1, 1, 1, 2, 4, 1, 0], "total": 16, "isTopResearch": true, "rank": 158, "fortune500_rank": 44}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "fortune500_rank": 67}, "citations_per_article": {"counts": [3.4, 6.8, 11.0, 43.0, 12.333333333333334, 12.0, 9.6, 11.25, 21.727272727272727, 51.25, 0], "total": 14.432432432432432, "isTopResearch": false, "rank": 416, "fortune500_rank": 126}}, "patents": {"ai_patents": {"counts": [4, 1, 1, 3, 6, 11, 12, 13, 4, 0, 0], "total": 55, "table": null, "rank": 210, "fortune500_rank": 67}, "ai_patents_growth": {"counts": [], "total": 33.58585858585858, "table": null, "rank": 261, "fortune500_rank": 75}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [40, 10, 10, 30, 60, 110, 120, 130, 40, 0, 0], "total": 550, "table": null, "rank": 210, "fortune500_rank": 67}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 165, "fortune500_rank": 55}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [3, 1, 0, 3, 6, 11, 10, 12, 3, 0, 0], "total": 49, "table": "industry", "rank": 120, "fortune500_rank": 45}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "fortune500_rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 10, "fortune500_rank": 5}, "Semiconductors": {"counts": [1, 0, 0, 0, 1, 0, 3, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 20, "fortune500_rank": 10}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 162, "fortune500_rank": 70}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0], "total": 6, "table": "application", "rank": 300, "fortune500_rank": 91}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 4, 6, 4, 1, 0, 0], "total": 16, "table": "application", "rank": 81, "fortune500_rank": 34}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4544, "rank": 99, "fortune500_rank": 60}, "ai_jobs": {"counts": null, "total": 55, "rank": 461, "fortune500_rank": 245}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 783, "country": "Germany", "website": "http://www.bmwgroup.com/", "crunchbase": {"text": "b462608d-8bf4-93f1-4f68-e41ee10f0df2", "url": "https://www.crunchbase.com/organization/bmw"}, "child_crunchbase": [{"text": "53fe0a1b-e20d-0371-f9e5-ecddcd853b0c", "url": "https://www.crunchbase.com/organization/rolls-royce-plc"}, {"text": "16ebf23b-2e69-4fda-b909-65607f7f329d", "url": "https://www.crunchbase.com/organization/bmw-of-north-america"}], "linkedin": ["https://www.linkedin.com/company/bmw-group", "https://www.linkedin.com/company/rolls-royce", "https://www.linkedin.com/company/bmw-of-north-america-llc"], "stage": "Unknown", "name": "BMW", "patent_name": "bmw", "continent": "Europe", "local_logo": "bmw.png", "aliases": "Bayerische Motoren Werke", "permid_links": [{"text": 4295869227, "url": "https://permid.org/1-4295869227"}, {"text": 5033562382, "url": "https://permid.org/1-5033562382"}, {"text": 4297617574, "url": "https://permid.org/1-4297617574"}], "parent_info": null, "agg_child_info": "Rolls-Royce Holdings PLC, BMW of North America, LLC", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Bayerische Motoren Werke manufactures and sells luxury cars and motorcycles worldwide.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Advanced driver assistance systems", "field_count": 31}, {"field_name": "Driving simulator", "field_count": 21}, {"field_name": "Artificial neural network", "field_count": 15}, {"field_name": "Reinforcement learning", "field_count": 15}, {"field_name": "Robot", "field_count": 13}, {"field_name": "Robustness (computer science)", "field_count": 11}, {"field_name": "Sensor fusion", "field_count": 10}, {"field_name": "Cluster analysis", "field_count": 8}, {"field_name": "Pose", "field_count": 8}, {"field_name": "Segmentation", "field_count": 7}], "clusters": [{"cluster_id": 19977, "cluster_count": 26}, {"cluster_id": 2410, "cluster_count": 26}, {"cluster_id": 22331, "cluster_count": 24}, {"cluster_id": 16876, "cluster_count": 23}, {"cluster_id": 60338, "cluster_count": 14}, {"cluster_id": 56508, "cluster_count": 13}, {"cluster_id": 4429, "cluster_count": 13}, {"cluster_id": 29685, "cluster_count": 10}, {"cluster_id": 80096, "cluster_count": 9}, {"cluster_id": 88747, "cluster_count": 9}], "company_references": [{"ref_CSET_id": 783, "referenced_count": 654}, {"ref_CSET_id": 101, "referenced_count": 344}, {"ref_CSET_id": 163, "referenced_count": 230}, {"ref_CSET_id": 87, "referenced_count": 120}, {"ref_CSET_id": 800, "referenced_count": 80}, {"ref_CSET_id": 184, "referenced_count": 68}, {"ref_CSET_id": 127, "referenced_count": 49}, {"ref_CSET_id": 795, "referenced_count": 45}, {"ref_CSET_id": 1037, "referenced_count": 38}, {"ref_CSET_id": 115, "referenced_count": 31}], "tasks": [{"referent": "autonomous_driving", "task_count": 176}, {"referent": "autonomous_vehicles", "task_count": 86}, {"referent": "classification", "task_count": 70}, {"referent": "object_detection", "task_count": 26}, {"referent": "image_processing", "task_count": 23}, {"referent": "robots", "task_count": 22}, {"referent": "vehicle_detection", "task_count": 21}, {"referent": "environmental_sound_classification", "task_count": 19}, {"referent": "automl", "task_count": 19}, {"referent": "developmental_learning", "task_count": 18}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 47}, {"referent": "vqa_models", "method_count": 36}, {"referent": "mad_learning", "method_count": 29}, {"referent": "double_q_learning", "method_count": 27}, {"referent": "auto_classifier", "method_count": 24}, {"referent": "q_learning", "method_count": 21}, {"referent": "griffin_lim_algorithm", "method_count": 21}, {"referent": "reinforcement_learning", "method_count": 20}, {"referent": "optimization", "method_count": 20}, {"referent": "convolutional_neural_networks", "method_count": 20}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [390, 480, 448, 536, 564, 591, 614, 629, 580, 375, 8], "total": 5215, "isTopResearch": false, "rank": 66, "sp500_rank": 57}, "ai_publications": {"counts": [17, 29, 34, 43, 43, 79, 99, 97, 88, 36, 0], "total": 565, "isTopResearch": false, "rank": 35, "sp500_rank": 28}, "ai_publications_growth": {"counts": [], "total": -23.46315387552501, "isTopResearch": false, "rank": 1357, "sp500_rank": 364}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 2, 1, 0, 6, 3, 3, 0, 0], "total": 15, "isTopResearch": false, "rank": 95, "sp500_rank": 50}, "citation_counts": {"counts": [120, 142, 266, 307, 427, 662, 1198, 1586, 2056, 1773, 49], "total": 8586, "isTopResearch": false, "rank": 52, "sp500_rank": 34}, "cv_pubs": {"counts": [3, 7, 6, 6, 5, 10, 25, 30, 27, 10, 0], "total": 129, "isTopResearch": true, "rank": 44, "sp500_rank": 32}, "nlp_pubs": {"counts": [1, 0, 0, 1, 2, 1, 1, 0, 2, 0, 0], "total": 8, "isTopResearch": true, "rank": 110, "sp500_rank": 70}, "robotics_pubs": {"counts": [8, 13, 11, 17, 17, 36, 25, 33, 30, 14, 0], "total": 204, "isTopResearch": true, "rank": 10, "sp500_rank": 8}, "citations_per_article": {"counts": [7.0588235294117645, 4.896551724137931, 7.823529411764706, 7.1395348837209305, 9.930232558139535, 8.379746835443038, 12.1010101010101, 16.350515463917525, 23.363636363636363, 49.25, 0], "total": 15.19646017699115, "isTopResearch": false, "rank": 400, "sp500_rank": 133}}, "patents": {"ai_patents": {"counts": [3, 8, 9, 16, 29, 43, 76, 79, 28, 0, 0], "total": 291, "table": null, "rank": 81, "sp500_rank": 63}, "ai_patents_growth": {"counts": [], "total": 42.98913884550993, "table": null, "rank": 235, "sp500_rank": 106}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [30, 80, 90, 160, 290, 430, 760, 790, 280, 0, 0], "total": 2910, "table": null, "rank": 81, "sp500_rank": 63}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 1, 0, 3, 10, 1, 0, 0, 0], "total": 15, "table": null, "rank": 37, "sp500_rank": 31}, "Life_Sciences": {"counts": [0, 1, 2, 1, 0, 0, 1, 0, 5, 0, 0], "total": 10, "table": null, "rank": 85, "sp500_rank": 57}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 1, 2, 3, 0, 1, 0, 0, 0], "total": 8, "table": null, "rank": 103, "sp500_rank": 73}, "Transportation": {"counts": [2, 6, 6, 14, 22, 25, 36, 34, 14, 0, 0], "total": 159, "table": "industry", "rank": 18, "sp500_rank": 14}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 0, 0, 0, 2, 4, 0, 0, 0], "total": 7, "table": null, "rank": 86, "sp500_rank": 61}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 1, 0, 0, 2, 4, 10, 10, 6, 0, 0], "total": 34, "table": "industry", "rank": 143, "sp500_rank": 85}, "Banking_and_Finance": {"counts": [0, 0, 1, 1, 2, 5, 3, 4, 2, 0, 0], "total": 18, "table": "industry", "rank": 51, "sp500_rank": 41}, "Telecommunications": {"counts": [0, 0, 2, 4, 4, 4, 7, 11, 1, 0, 0], "total": 33, "table": "industry", "rank": 99, "sp500_rank": 67}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 2, 2, 9, 6, 8, 9, 0, 0, 0], "total": 36, "table": "industry", "rank": 69, "sp500_rank": 52}, "Energy_Management": {"counts": [0, 2, 0, 4, 3, 0, 3, 3, 1, 0, 0], "total": 16, "table": null, "rank": 35, "sp500_rank": 32}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 1, 0, 2, 1, 3, 0, 0, 0], "total": 7, "table": null, "rank": 96, "sp500_rank": 61}, "Knowledge_Representation": {"counts": [1, 0, 1, 0, 1, 3, 0, 0, 0, 0, 0], "total": 6, "table": null, "rank": 109, "sp500_rank": 68}, "Planning_and_Scheduling": {"counts": [0, 0, 2, 2, 8, 2, 7, 7, 0, 0, 0], "total": 28, "table": "application", "rank": 61, "sp500_rank": 50}, "Control": {"counts": [2, 7, 5, 12, 17, 7, 27, 8, 3, 0, 0], "total": 88, "table": "application", "rank": 36, "sp500_rank": 29}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": null, "rank": 23, "sp500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [1, 0, 3, 3, 9, 5, 10, 19, 3, 0, 0], "total": 53, "table": "application", "rank": 112, "sp500_rank": 73}, "Analytics_and_Algorithms": {"counts": [0, 1, 2, 0, 0, 2, 9, 2, 5, 0, 0], "total": 21, "table": "application", "rank": 62, "sp500_rank": 48}, "Measuring_and_Testing": {"counts": [0, 0, 1, 3, 11, 10, 18, 16, 3, 0, 0], "total": 62, "table": "application", "rank": 39, "sp500_rank": 29}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4514, "rank": 100, "sp500_rank": 63}, "ai_jobs": {"counts": null, "total": 431, "rank": 136, "sp500_rank": 89}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "Bayerische Motoren Werke AG, commonly referred to as BMW ), is a German multinational corporation which produces luxury vehicles and motorcycles. The company was founded in 1916 as a manufacturer of aircraft engines, which it produced from 1917 until 1918 and again from 1933 to 1945.", "wikipedia_link": "https://en.wikipedia.org/wiki/BMW", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2099, "country": "Canada", "website": "https://www.scotiabank.com/", "crunchbase": {"text": "45ce21a0-0d1b-1b56-6794-1c3e12f2afd6", "url": "https://www.crunchbase.com/organization/scotiabank"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/scotiabank"], "stage": "Mature", "name": "Bank Of Nova Scotia", "patent_name": "Bank of Nova Scotia", "continent": "North America", "local_logo": "bank_of_nova_scotia.png", "aliases": "Bank of Nova Scotia; Scotia Securities Inc; Scotiabank", "permid_links": [{"text": 4295860592, "url": "https://permid.org/1-4295860592"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BNS", "url": "https://www.google.com/finance/quote/BNS:NYSE"}], "market_full": [{"text": "MEX:BNS*", "url": "https://www.google.com/finance/quote/BNS*:MEX"}, {"text": "LSE:0UKI", "url": "https://www.google.com/finance/quote/0UKI:LSE"}, {"text": "NYSE:BNS", "url": "https://www.google.com/finance/quote/BNS:NYSE"}, {"text": "PKC:BNSPF", "url": "https://www.google.com/finance/quote/BNSPF:PKC"}, {"text": "DEU:BNS", "url": "https://www.google.com/finance/quote/BNS:DEU"}, {"text": "BER:BKN", "url": "https://www.google.com/finance/quote/BER:BKN"}, {"text": "TOR:BNS", "url": "https://www.google.com/finance/quote/BNS:TOR"}, {"text": "DUS:BKN", "url": "https://www.google.com/finance/quote/BKN:DUS"}, {"text": "MUN:BKN", "url": "https://www.google.com/finance/quote/BKN:MUN"}, {"text": "ASE:BNS", "url": "https://www.google.com/finance/quote/ASE:BNS"}, {"text": "NYQ:BNS", "url": "https://www.google.com/finance/quote/BNS:NYQ"}, {"text": "SAO:BNSB34", "url": "https://www.google.com/finance/quote/BNSB34:SAO"}, {"text": "FRA:BKN", "url": "https://www.google.com/finance/quote/BKN:FRA"}, {"text": "TOR:BNS.PR.I", "url": "https://www.google.com/finance/quote/BNS.PR.I:TOR"}, {"text": "STU:BKN", "url": "https://www.google.com/finance/quote/BKN:STU"}, {"text": "HAN:BKN", "url": "https://www.google.com/finance/quote/BKN:HAN"}], "crunchbase_description": "Scotiabank is a banking firm that provides banking and financial services.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 1}, {"field_name": "Intrusion detection system", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 7197, "cluster_count": 1}, {"cluster_id": 39965, "cluster_count": 1}, {"cluster_id": 67519, "cluster_count": 1}, {"cluster_id": 2381, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}, {"ref_CSET_id": 800, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "intrusion_detection", "task_count": 1}, {"referent": "stress_detection", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "adversarial", "task_count": 1}, {"referent": "semi_supervised_image_classification", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 2}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "base_boosting", "method_count": 1}, {"referent": "deep_ensembles", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [5, 7, 5, 6, 5, 6, 5, 5, 3, 1, 0], "total": 48, "isTopResearch": false, "rank": 622, "sp500_rank": 330}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "sp500_rank": 275}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [2, 5, 7, 6, 3, 4, 13, 15, 18, 9, 0], "total": 82, "isTopResearch": false, "rank": 533, "sp500_rank": 232}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 6.0, 0, 4.0, 0, 15.0, 18.0, 0, 0], "total": 20.5, "isTopResearch": false, "rank": 305, "sp500_rank": 89}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4489, "rank": 101, "sp500_rank": 64}, "ai_jobs": {"counts": null, "total": 746, "rank": 68, "sp500_rank": 46}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 1909, "country": "France", "website": "https://www.societegenerale.com/", "crunchbase": {"text": " 152b9184-5cc9-fd83-b532-807e78053c4a", "url": "https://www.crunchbase.com/organization/societe-generale"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/societe-generale"], "stage": "Unknown", "name": "Soci\u00e9t\u00e9 G\u00e9n\u00e9rale", "patent_name": "Soci\u00e9t\u00e9 G\u00e9n\u00e9rale", "continent": "Europe", "local_logo": null, "aliases": "Socgen; Societe Generale S.A; Soci\u00e9t\u00e9 G\u00e9n\u00e9rale", "permid_links": [{"text": 5000039357, "url": "https://permid.org/1-5000039357"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 3}, {"field_name": "Bayesian optimization", "field_count": 1}], "clusters": [{"cluster_id": 1338, "cluster_count": 1}, {"cluster_id": 58779, "cluster_count": 1}, {"cluster_id": 8795, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "snes_games", "task_count": 2}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}, {"referent": "go", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "time_series", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "global_optimization", "task_count": 1}], "methods": [{"referent": "reinforcement_learning", "method_count": 4}, {"referent": "optimization", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "adapter", "method_count": 1}, {"referent": "deepwalk", "method_count": 1}, {"referent": "maddpg", "method_count": 1}, {"referent": "mckernel", "method_count": 1}, {"referent": "counting_methods", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [3, 3, 7, 9, 4, 1, 10, 2, 4, 2, 0], "total": 45, "isTopResearch": false, "rank": 641, "sp500_rank": 338}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0], "total": 6, "isTopResearch": false, "rank": 514, "sp500_rank": 255}, "ai_publications_growth": {"counts": [], "total": 16.666666666666668, "isTopResearch": false, "rank": 124, "sp500_rank": 65}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 4, 7, 20, 4, 0], "total": 36, "isTopResearch": false, "rank": 633, "sp500_rank": 271}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 4.0, 3.5, 6.666666666666667, 0, 0], "total": 6.0, "isTopResearch": false, "rank": 682, "sp500_rank": 271}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4485, "rank": 102, "sp500_rank": 65}, "ai_jobs": {"counts": null, "total": 423, "rank": 137, "sp500_rank": 90}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2379, "country": "United States", "website": "https://www.juniper.net/", "crunchbase": {"text": "1640561b-1b78-c60f-d3e6-203511b47268", "url": "https://www.crunchbase.com/organization/juniper-networks"}, "child_crunchbase": [{"text": "aed62252-8ebb-4503-cb6b-62cb960048b4", "url": "https://www.crunchbase.com/organization/mist-systems"}], "linkedin": ["https://www.linkedin.com/company/juniper-networks", "https://www.linkedin.com/company/mist-systems"], "stage": "Mature", "name": "Juniper Networks", "patent_name": "juniper networks", "continent": "North America", "local_logo": "juniper_networks.png", "aliases": "Juniper; Juniper Networks, Inc", "permid_links": [{"text": 4295913981, "url": "https://permid.org/1-4295913981"}, {"text": 5044065541, "url": "https://permid.org/1-5044065541"}], "parent_info": null, "agg_child_info": "Mist Systems", "unagg_child_info": null, "market_filt": [{"text": "NYSE:JNPR", "url": "https://www.google.com/finance/quote/jnpr:nyse"}], "market_full": [{"text": "HAM:JNP", "url": "https://www.google.com/finance/quote/ham:jnp"}, {"text": "HAN:JNP", "url": "https://www.google.com/finance/quote/han:jnp"}, {"text": "DEU:JNPR", "url": "https://www.google.com/finance/quote/deu:jnpr"}, {"text": "GER:JNPX", "url": "https://www.google.com/finance/quote/ger:jnpx"}, {"text": "SAO:J1NP34", "url": "https://www.google.com/finance/quote/j1np34:sao"}, {"text": "NYSE:JNPR", "url": "https://www.google.com/finance/quote/jnpr:nyse"}, {"text": "NYQ:JNPR", "url": "https://www.google.com/finance/quote/jnpr:nyq"}, {"text": "FRA:JNP", "url": "https://www.google.com/finance/quote/fra:jnp"}, {"text": "BER:JNP", "url": "https://www.google.com/finance/quote/ber:jnp"}, {"text": "BRN:JNP", "url": "https://www.google.com/finance/quote/brn:jnp"}, {"text": "LSE:0JPH", "url": "https://www.google.com/finance/quote/0jph:lse"}, {"text": "ASE:JNPR", "url": "https://www.google.com/finance/quote/ase:jnpr"}, {"text": "MOEX:JNPR-RM", "url": "https://www.google.com/finance/quote/jnpr-rm:moex"}, {"text": "STU:JNP", "url": "https://www.google.com/finance/quote/jnp:stu"}, {"text": "MUN:JNP", "url": "https://www.google.com/finance/quote/jnp:mun"}, {"text": "DUS:JNP", "url": "https://www.google.com/finance/quote/dus:jnp"}], "crunchbase_description": "Juniper Networks is a networking company that markets and develops networking products for enterprise companies.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Outlier", "field_count": 2}, {"field_name": "Statistical classification", "field_count": 1}], "clusters": [{"cluster_id": 14307, "cluster_count": 2}, {"cluster_id": 20336, "cluster_count": 1}, {"cluster_id": 2894, "cluster_count": 1}, {"cluster_id": 3167, "cluster_count": 1}, {"cluster_id": 18494, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 2379, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}], "tasks": [{"referent": "traffic_prediction", "task_count": 1}, {"referent": "network_traffic_classification", "task_count": 1}, {"referent": "action_understanding", "task_count": 1}, {"referent": "text_summarization", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 2}, {"referent": "vqa_models", "method_count": 1}, {"referent": "dac", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}, {"referent": "bidirectional_recurrent_neural_networks", "method_count": 1}, {"referent": "sequence_to_sequence_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [20, 15, 20, 22, 18, 51, 31, 24, 11, 10, 0], "total": 222, "isTopResearch": false, "rank": 398, "fortune500_rank": 153}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 2, 0], "total": 5, "isTopResearch": false, "rank": 540, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [10, 6, 13, 9, 9, 11, 12, 14, 6, 6, 0], "total": 96, "isTopResearch": false, "rank": 511, "fortune500_rank": 139}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 9.0, 5.5, 0, 0, 0, 3.0, 0], "total": 19.2, "isTopResearch": false, "rank": 323, "fortune500_rank": 103}}, "patents": {"ai_patents": {"counts": [0, 2, 0, 6, 10, 14, 9, 11, 5, 0, 0], "total": 57, "table": null, "rank": 208, "fortune500_rank": 65}, "ai_patents_growth": {"counts": [], "total": 8.835978835978835, "table": null, "rank": 341, "fortune500_rank": 109}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 20, 0, 60, 100, 140, 90, 110, 50, 0, 0], "total": 570, "table": null, "rank": 208, "fortune500_rank": 65}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 0, 3, 0, 0, 1, 1, 0, 0], "total": 6, "table": "industry", "rank": 121, "fortune500_rank": 46}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 2, 0, 1, 6, 4, 2, 5, 3, 0, 0], "total": 23, "table": "industry", "rank": 178, "fortune500_rank": 67}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 1, 0, 5, 9, 13, 8, 11, 5, 0, 0], "total": 52, "table": "industry", "rank": 76, "fortune500_rank": 30}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 162, "fortune500_rank": 70}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 3, 2, 7, 5, 7, 4, 0, 0], "total": 28, "table": "application", "rank": 49, "fortune500_rank": 25}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4397, "rank": 103, "fortune500_rank": 61}, "ai_jobs": {"counts": null, "total": 68, "rank": 412, "fortune500_rank": 219}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Juniper Networks, Inc. is an American multinational corporation headquartered in Sunnyvale, California. The company develops and markets networking products, including routers, switches, network management software, network security products, and software-defined networking technology.", "wikipedia_link": "https://en.wikipedia.org/wiki/Juniper_Networks", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2236, "country": "United States", "website": "https://www.broadcom.com/", "crunchbase": {"text": "b2320770-5299-51be-ebda-1e4febcdba1f", "url": "https://www.crunchbase.com/organization/broadcom"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/broadcom"], "stage": "Mature", "name": "Broadcom Inc.", "patent_name": "broadcom inc.", "continent": "North America", "local_logo": "broadcom_inc.png", "aliases": "Avago Technologies; Broadcom", "permid_links": [{"text": 5060689053, "url": "https://permid.org/1-5060689053"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:AVGOP", "url": "https://www.google.com/finance/quote/avgop:nasdaq"}, {"text": "NASDAQ:AVGO", "url": "https://www.google.com/finance/quote/avgo:nasdaq"}], "market_full": [{"text": "NASDAQ:AVGOP", "url": "https://www.google.com/finance/quote/avgop:nasdaq"}, {"text": "MUN:1YD", "url": "https://www.google.com/finance/quote/1yd:mun"}, {"text": "MEX:AVGO*", "url": "https://www.google.com/finance/quote/avgo*:mex"}, {"text": "DUS:1YD", "url": "https://www.google.com/finance/quote/1yd:dus"}, {"text": "HAM:1YD", "url": "https://www.google.com/finance/quote/1yd:ham"}, {"text": "GER:1YDX", "url": "https://www.google.com/finance/quote/1ydx:ger"}, {"text": "DEU:1YD", "url": "https://www.google.com/finance/quote/1yd:deu"}, {"text": "BRN:1YD", "url": "https://www.google.com/finance/quote/1yd:brn"}, {"text": "BUE:AVGO", "url": "https://www.google.com/finance/quote/avgo:bue"}, {"text": "STU:1YD", "url": "https://www.google.com/finance/quote/1yd:stu"}, {"text": "VIE:BROA", "url": "https://www.google.com/finance/quote/broa:vie"}, {"text": "HAN:1YD", "url": "https://www.google.com/finance/quote/1yd:han"}, {"text": "LSE:0YXG", "url": "https://www.google.com/finance/quote/0yxg:lse"}, {"text": "FRA:1YD", "url": "https://www.google.com/finance/quote/1yd:fra"}, {"text": "NASDAQ:AVGO", "url": "https://www.google.com/finance/quote/avgo:nasdaq"}, {"text": "SAO:AVGO34", "url": "https://www.google.com/finance/quote/avgo34:sao"}, {"text": "MCX:AVGO-RM", "url": "https://www.google.com/finance/quote/avgo-rm:mcx"}, {"text": "BER:1YD", "url": "https://www.google.com/finance/quote/1yd:ber"}], "crunchbase_description": "Broadcom is a designer, developer, and global supplier of a broad range of analog and digital semiconductor connectivity solutions.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Multispectral image", "field_count": 1}, {"field_name": "Linear prediction", "field_count": 1}, {"field_name": "Perspective (graphical)", "field_count": 1}, {"field_name": "Standard illuminant", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}, {"field_name": "Hue", "field_count": 1}, {"field_name": "Conditional random field", "field_count": 1}, {"field_name": "White point", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 1052, "cluster_count": 3}, {"cluster_id": 13460, "cluster_count": 2}, {"cluster_id": 18217, "cluster_count": 2}, {"cluster_id": 27139, "cluster_count": 2}, {"cluster_id": 876, "cluster_count": 1}, {"cluster_id": 16998, "cluster_count": 1}, {"cluster_id": 10211, "cluster_count": 1}, {"cluster_id": 57497, "cluster_count": 1}, {"cluster_id": 5543, "cluster_count": 1}, {"cluster_id": 36657, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 2236, "referenced_count": 5}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 2079, "referenced_count": 1}, {"ref_CSET_id": 2074, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 110, "referenced_count": 1}, {"ref_CSET_id": 800, "referenced_count": 1}], "tasks": [{"referent": "image_processing", "task_count": 3}, {"referent": "classification", "task_count": 2}, {"referent": "image_analysis", "task_count": 2}, {"referent": "computer_vision", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "mobile_robot", "task_count": 1}, {"referent": "sensor_modeling", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "dr", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 5}, {"referent": "neural_architecture_search", "method_count": 3}, {"referent": "image_to_image_translation", "method_count": 2}, {"referent": "causal_inference", "method_count": 2}, {"referent": "optimization", "method_count": 2}, {"referent": "verse", "method_count": 1}, {"referent": "netmf", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "metrix", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [209, 243, 186, 210, 142, 89, 74, 50, 60, 51, 1], "total": 1315, "isTopResearch": false, "rank": 160, "fortune500_rank": 59}, "ai_publications": {"counts": [4, 2, 2, 1, 1, 2, 0, 2, 0, 1, 0], "total": 15, "isTopResearch": false, "rank": 346, "fortune500_rank": 105}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [40, 45, 44, 80, 86, 78, 123, 104, 156, 94, 7], "total": 857, "isTopResearch": false, "rank": 201, "fortune500_rank": 62}, "cv_pubs": {"counts": [1, 2, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "fortune500_rank": 78}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [10.0, 22.5, 22.0, 80.0, 86.0, 39.0, 0, 52.0, 0, 94.0, 0], "total": 57.13333333333333, "isTopResearch": false, "rank": 79, "fortune500_rank": 19}}, "patents": {"ai_patents": {"counts": [6, 10, 11, 34, 17, 40, 8, 0, 1, 1, 0], "total": 128, "table": null, "rank": 140, "fortune500_rank": 45}, "ai_patents_growth": {"counts": [], "total": -14.90196078431373, "table": null, "rank": 1448, "fortune500_rank": 419}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [60, 100, 110, 340, 170, 400, 80, 0, 10, 10, 0], "total": 1280, "table": null, "rank": 140, "fortune500_rank": 45}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [1, 2, 2, 11, 4, 10, 3, 0, 0, 0, 0], "total": 33, "table": "industry", "rank": 34, "fortune500_rank": 14}, "Transportation": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [3, 6, 7, 28, 13, 30, 5, 0, 0, 0, 0], "total": 92, "table": "industry", "rank": 81, "fortune500_rank": 34}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 141, "fortune500_rank": 50}, "Telecommunications": {"counts": [1, 8, 5, 16, 3, 12, 5, 0, 1, 1, 0], "total": 52, "table": "industry", "rank": 76, "fortune500_rank": 30}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0], "total": 2, "table": null, "rank": 55, "fortune500_rank": 26}, "Business": {"counts": [1, 0, 0, 4, 4, 3, 0, 0, 0, 0, 0], "total": 12, "table": "industry", "rank": 140, "fortune500_rank": 51}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 3, 2, 2, 0, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 45, "fortune500_rank": 25}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 160, "fortune500_rank": 48}, "Knowledge_Representation": {"counts": [3, 1, 4, 5, 4, 2, 0, 0, 0, 0, 0], "total": 19, "table": "application", "rank": 55, "fortune500_rank": 30}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 4, 2, 3, 0, 0, 0, 0, 0], "total": 10, "table": "application", "rank": 124, "fortune500_rank": 48}, "Control": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 1, 0, 5, 1, 11, 3, 0, 1, 0, 0], "total": 23, "table": "application", "rank": 177, "fortune500_rank": 50}, "Analytics_and_Algorithms": {"counts": [1, 1, 2, 2, 0, 2, 1, 0, 0, 0, 0], "total": 9, "table": "application", "rank": 122, "fortune500_rank": 51}, "Measuring_and_Testing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 2, "table": null, "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4389, "rank": 104, "fortune500_rank": 62}, "ai_jobs": {"counts": null, "total": 29, "rank": 607, "fortune500_rank": 311}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Broadcom Inc. is an American designer, developer, manufacturer and global supplier of a wide range of semiconductor and infrastructure software products. Broadcom's product offerings serve the data center, networking, software, broadband, wireless, and storage and industrial markets.", "wikipedia_link": "https://en.wikipedia.org/wiki/Broadcom_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 345, "country": "United States", "website": "http://www.autodesk.com", "crunchbase": {"text": "8c1cd4d3-f58d-84ba-b6b3-848ebb83297b", "url": "https://www.crunchbase.com/organization/autodesk"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/autodesk"], "stage": "Mature", "name": "Autodesk", "patent_name": "autodesk", "continent": "North America", "local_logo": "autodesk.png", "aliases": "Autodesk Inc; Autodesk, Inc", "permid_links": [{"text": 4295905642, "url": "https://permid.org/1-4295905642"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ADSK", "url": "https://www.google.com/finance/quote/adsk:nasdaq"}], "market_full": [{"text": "HAM:AUD", "url": "https://www.google.com/finance/quote/aud:ham"}, {"text": "HAN:AUD", "url": "https://www.google.com/finance/quote/aud:han"}, {"text": "MOEX:ADSK-RM", "url": "https://www.google.com/finance/quote/adsk-rm:moex"}, {"text": "NASDAQ:ADSK", "url": "https://www.google.com/finance/quote/adsk:nasdaq"}, {"text": "LON:0HJF", "url": "https://www.google.com/finance/quote/0hjf:lon"}, {"text": "BER:AUD", "url": "https://www.google.com/finance/quote/aud:ber"}, {"text": "FWB:AUD", "url": "https://www.google.com/finance/quote/aud:fwb"}, {"text": "VIE:ADSK", "url": "https://www.google.com/finance/quote/adsk:vie"}, {"text": "BMV:ADSK", "url": "https://www.google.com/finance/quote/adsk:bmv"}, {"text": "DUS:AUD", "url": "https://www.google.com/finance/quote/aud:dus"}, {"text": "XETR:AUD", "url": "https://www.google.com/finance/quote/aud:xetr"}, {"text": "MUN:AUD", "url": "https://www.google.com/finance/quote/aud:mun"}, {"text": "FRA:ADSK", "url": "https://www.google.com/finance/quote/adsk:fra"}], "crunchbase_description": "Autodesk develops 3D design software for use in the architecture, engineering, construction, and media industries.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Robot", "field_count": 5}, {"field_name": "Feature learning", "field_count": 3}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Haptic technology", "field_count": 2}, {"field_name": "Shadow mapping", "field_count": 2}, {"field_name": "WordNet", "field_count": 2}, {"field_name": "Unsupervised learning", "field_count": 1}, {"field_name": "Simulated annealing", "field_count": 1}, {"field_name": "Embedding", "field_count": 1}], "clusters": [{"cluster_id": 3446, "cluster_count": 11}, {"cluster_id": 2473, "cluster_count": 4}, {"cluster_id": 32264, "cluster_count": 4}, {"cluster_id": 21678, "cluster_count": 4}, {"cluster_id": 5551, "cluster_count": 4}, {"cluster_id": 52701, "cluster_count": 4}, {"cluster_id": 10827, "cluster_count": 3}, {"cluster_id": 1989, "cluster_count": 3}, {"cluster_id": 5345, "cluster_count": 2}, {"cluster_id": 6485, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 169}, {"ref_CSET_id": 6, "referenced_count": 83}, {"ref_CSET_id": 163, "referenced_count": 65}, {"ref_CSET_id": 87, "referenced_count": 58}, {"ref_CSET_id": 345, "referenced_count": 57}, {"ref_CSET_id": 184, "referenced_count": 21}, {"ref_CSET_id": 789, "referenced_count": 17}, {"ref_CSET_id": 127, "referenced_count": 17}, {"ref_CSET_id": 1383, "referenced_count": 13}, {"ref_CSET_id": 23, "referenced_count": 10}], "tasks": [{"referent": "robots", "task_count": 7}, {"referent": "classification", "task_count": 5}, {"referent": "image_restoration", "task_count": 5}, {"referent": "portfolio_optimization", "task_count": 5}, {"referent": "3d_shape_recognition", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "segmentation", "task_count": 4}, {"referent": "self_supervised_learning", "task_count": 3}, {"referent": "representation_learning", "task_count": 3}, {"referent": "building_extraction", "task_count": 3}], "methods": [{"referent": "vqa_models", "method_count": 13}, {"referent": "3d_representations", "method_count": 11}, {"referent": "mad_learning", "method_count": 8}, {"referent": "double_q_learning", "method_count": 7}, {"referent": "optimization", "method_count": 7}, {"referent": "recurrent_neural_networks", "method_count": 7}, {"referent": "representation_learning", "method_count": 5}, {"referent": "generative_models", "method_count": 5}, {"referent": "generative_adversarial_networks", "method_count": 4}, {"referent": "neural_architecture_search", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [57, 74, 63, 87, 91, 80, 71, 54, 85, 52, 3], "total": 717, "isTopResearch": false, "rank": 233, "fortune500_rank": 90}, "ai_publications": {"counts": [5, 7, 8, 10, 12, 8, 16, 18, 26, 10, 0], "total": 120, "isTopResearch": false, "rank": 110, "fortune500_rank": 33}, "ai_publications_growth": {"counts": [], "total": -1.5313390313390325, "isTopResearch": false, "rank": 1214, "fortune500_rank": 349}, "ai_pubs_top_conf": {"counts": [1, 1, 1, 1, 1, 0, 2, 6, 13, 3, 0], "total": 29, "isTopResearch": false, "rank": 60, "fortune500_rank": 21}, "citation_counts": {"counts": [57, 91, 111, 133, 220, 305, 409, 500, 661, 532, 24], "total": 3043, "isTopResearch": false, "rank": 98, "fortune500_rank": 32}, "cv_pubs": {"counts": [2, 1, 1, 1, 1, 3, 3, 6, 8, 2, 0], "total": 28, "isTopResearch": true, "rank": 118, "fortune500_rank": 35}, "nlp_pubs": {"counts": [0, 0, 1, 2, 1, 0, 1, 1, 0, 0, 0], "total": 6, "isTopResearch": true, "rank": 131, "fortune500_rank": 37}, "robotics_pubs": {"counts": [2, 2, 2, 3, 4, 1, 1, 2, 4, 2, 0], "total": 23, "isTopResearch": true, "rank": 75, "fortune500_rank": 22}, "citations_per_article": {"counts": [11.4, 13.0, 13.875, 13.3, 18.333333333333332, 38.125, 25.5625, 27.77777777777778, 25.423076923076923, 53.2, 0], "total": 25.358333333333334, "isTopResearch": false, "rank": 234, "fortune500_rank": 71}}, "patents": {"ai_patents": {"counts": [1, 1, 7, 1, 5, 10, 9, 24, 4, 0, 0], "total": 62, "table": null, "rank": 202, "fortune500_rank": 63}, "ai_patents_growth": {"counts": [], "total": 85.55555555555554, "table": null, "rank": 133, "fortune500_rank": 29}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 10, 70, 10, 50, 100, 90, 240, 40, 0, 0], "total": 620, "table": null, "rank": 202, "fortune500_rank": 63}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 0, 0, 2, 0, 0, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 88, "fortune500_rank": 28}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 2, 1, 5, 1, 0, 0], "total": 10, "table": "industry", "rank": 69, "fortune500_rank": 22}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 1, 5, 1, 4, 10, 8, 19, 4, 0, 0], "total": 53, "table": "industry", "rank": 111, "fortune500_rank": 44}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 196, "fortune500_rank": 65}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 2, 1, 0, 1, 1, 2, 0, 0, 0], "total": 7, "table": "application", "rank": 102, "fortune500_rank": 48}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 163, "fortune500_rank": 55}, "Control": {"counts": [0, 0, 0, 0, 2, 0, 1, 5, 1, 0, 0], "total": 9, "table": "application", "rank": 144, "fortune500_rank": 48}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 1, 0, 3, 5, 2, 6, 2, 0, 0], "total": 20, "table": "application", "rank": 186, "fortune500_rank": 53}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 7, 2, 16, 2, 0, 0], "total": 27, "table": "application", "rank": 52, "fortune500_rank": 27}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4354, "rank": 105, "fortune500_rank": 63}, "ai_jobs": {"counts": null, "total": 259, "rank": 204, "fortune500_rank": 111}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Autodesk, Inc. is an American multinational software corporation that makes software products and services for the architecture, engineering, construction, manufacturing, media, education, and entertainment industries. Autodesk is headquartered in San Rafael, California, and features a gallery of its customers' work in its San Francisco building. The company has offices worldwide. Its U.S. locations are California, Oregon, Colorado, Texas, Michigan, New Hampshire and Massachusetts. Its Canada offices are located in Ontario, Quebec, and Alberta.", "wikipedia_link": "https://en.wikipedia.org/wiki/Autodesk", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 842, "country": "United States", "website": "http://www.jnj.com", "crunchbase": {"text": "71213bcb-9569-a838-3d0b-e99ba6afe9cb", "url": "https://www.crunchbase.com/organization/johnson-johnson"}, "child_crunchbase": [{"text": "dd361240-0e75-81a8-b0d6-5b7f131fa0ef", "url": "https://www.crunchbase.com/organization/abiomed"}, {"text": "c56379ff-931d-4f6f-9192-86ba1ea03b29", "url": "https://www.crunchbase.com/organization/janssen"}], "linkedin": ["https://www.linkedin.com/company/johnson-&-johnson", "https://www.linkedin.com/company/abiomed", "https://www.linkedin.com/company/janssen-research-&-development-llc"], "stage": "Mature", "name": "Johnson & Johnson", "patent_name": "Johnson & Johnson", "continent": "North America", "local_logo": "johnson_&_johnson.png", "aliases": "Johnson & Johnson; Johnson & Johnson Services, Inc", "permid_links": [{"text": 4295904341, "url": "https://permid.org/1-4295904341"}, {"text": 4295905402, "url": "https://permid.org/1-4295905402"}, {"text": 4297914575, "url": "https://permid.org/1-4297914575"}], "parent_info": null, "agg_child_info": "ABIOMED Inc, Janssen Research & Development", "unagg_child_info": null, "market_filt": [{"text": "NYSE:JNJ", "url": "https://www.google.com/finance/quote/JNJ:NYSE"}], "market_full": [{"text": "HAM:JNJ", "url": "https://www.google.com/finance/quote/HAM:JNJ"}, {"text": "BUE:JNJ3", "url": "https://www.google.com/finance/quote/BUE:JNJ3"}, {"text": "BUE:DJNJ23", "url": "https://www.google.com/finance/quote/BUE:DJNJ23"}, {"text": "DEU:JNJ", "url": "https://www.google.com/finance/quote/DEU:JNJ"}, {"text": "NYSE:JNJ", "url": "https://www.google.com/finance/quote/JNJ:NYSE"}, {"text": "NYQ:JNJ", "url": "https://www.google.com/finance/quote/JNJ:NYQ"}, {"text": "MUN:JNJ", "url": "https://www.google.com/finance/quote/JNJ:MUN"}, {"text": "BER:JNJ", "url": "https://www.google.com/finance/quote/BER:JNJ"}, {"text": "VIE:JNJ", "url": "https://www.google.com/finance/quote/JNJ:VIE"}, {"text": "DUS:JNJ", "url": "https://www.google.com/finance/quote/DUS:JNJ"}, {"text": "BUE:DJNJ33", "url": "https://www.google.com/finance/quote/BUE:DJNJ33"}, {"text": "LSE:0R34", "url": "https://www.google.com/finance/quote/0R34:LSE"}, {"text": "ASE:JNJ", "url": "https://www.google.com/finance/quote/ASE:JNJ"}, {"text": "GER:JNJX", "url": "https://www.google.com/finance/quote/GER:JNJX"}, {"text": "FRA:JNJ", "url": "https://www.google.com/finance/quote/FRA:JNJ"}, {"text": "BRN:JNJ", "url": "https://www.google.com/finance/quote/BRN:JNJ"}, {"text": "SWX:JNJ", "url": "https://www.google.com/finance/quote/JNJ:SWX"}, {"text": "HAN:JNJ", "url": "https://www.google.com/finance/quote/HAN:JNJ"}, {"text": "STU:JNJ", "url": "https://www.google.com/finance/quote/JNJ:STU"}, {"text": "SGO:JNJ", "url": "https://www.google.com/finance/quote/JNJ:SGO"}, {"text": "MEX:JNJ*", "url": "https://www.google.com/finance/quote/JNJ*:MEX"}], "crunchbase_description": "Johnson & Johnson engages in the research and development, manufacture and sale of a range of products in the healthcare field", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Receiver operating characteristic", "field_count": 2}, {"field_name": "Natural language", "field_count": 2}, {"field_name": "Actuator", "field_count": 1}, {"field_name": "Point cloud", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}, {"field_name": "Missing data", "field_count": 1}, {"field_name": "Modality (human\u2013computer interaction)", "field_count": 1}, {"field_name": "Virtual reality", "field_count": 1}, {"field_name": "Statistical classification", "field_count": 1}], "clusters": [{"cluster_id": 13137, "cluster_count": 4}, {"cluster_id": 76022, "cluster_count": 2}, {"cluster_id": 25918, "cluster_count": 2}, {"cluster_id": 8786, "cluster_count": 2}, {"cluster_id": 47570, "cluster_count": 1}, {"cluster_id": 74276, "cluster_count": 1}, {"cluster_id": 798, "cluster_count": 1}, {"cluster_id": 1386, "cluster_count": 1}, {"cluster_id": 63108, "cluster_count": 1}, {"cluster_id": 16687, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 38}, {"ref_CSET_id": 842, "referenced_count": 15}, {"ref_CSET_id": 87, "referenced_count": 13}, {"ref_CSET_id": 184, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 2050, "referenced_count": 2}, {"ref_CSET_id": 219, "referenced_count": 2}, {"ref_CSET_id": 401, "referenced_count": 2}, {"ref_CSET_id": 1516, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 11}, {"referent": "developmental_learning", "task_count": 3}, {"referent": "robots", "task_count": 3}, {"referent": "medical_procedure", "task_count": 3}, {"referent": "image_alignment", "task_count": 3}, {"referent": "image_analysis", "task_count": 2}, {"referent": "cancer_detection", "task_count": 2}, {"referent": "topological_data_analysis", "task_count": 2}, {"referent": "steering_control", "task_count": 2}, {"referent": "cancer", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "logistic_regression", "method_count": 4}, {"referent": "vqa_models", "method_count": 4}, {"referent": "mad_learning", "method_count": 3}, {"referent": "auto_classifier", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "1d_cnn", "method_count": 3}, {"referent": "3d_representations", "method_count": 2}, {"referent": "cross_view_training", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [935, 904, 921, 985, 1059, 1082, 1459, 1171, 1065, 1111, 7], "total": 10699, "isTopResearch": false, "rank": 35, "sp500_rank": 31, "fortune500_rank": 11}, "ai_publications": {"counts": [1, 6, 4, 2, 3, 4, 6, 11, 8, 11, 0], "total": 56, "isTopResearch": false, "rank": 170, "sp500_rank": 108, "fortune500_rank": 54}, "ai_publications_growth": {"counts": [], "total": 31.18686868686869, "isTopResearch": false, "rank": 90, "sp500_rank": 46, "fortune500_rank": 29}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [17, 39, 51, 43, 63, 64, 76, 128, 148, 149, 9], "total": 787, "isTopResearch": false, "rank": 211, "sp500_rank": 119, "fortune500_rank": 66}, "cv_pubs": {"counts": [0, 3, 3, 1, 1, 0, 2, 1, 2, 3, 0], "total": 16, "isTopResearch": true, "rank": 158, "sp500_rank": 98, "fortune500_rank": 44}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115, "fortune500_rank": 61}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 3, 1, 4, 0], "total": 10, "isTopResearch": true, "rank": 114, "sp500_rank": 82, "fortune500_rank": 31}, "citations_per_article": {"counts": [17.0, 6.5, 12.75, 21.5, 21.0, 16.0, 12.666666666666666, 11.636363636363637, 18.5, 13.545454545454545, 0], "total": 14.053571428571429, "isTopResearch": false, "rank": 422, "sp500_rank": 141, "fortune500_rank": 129}}, "patents": {"ai_patents": {"counts": [3, 1, 0, 5, 8, 19, 24, 48, 9, 0, 0], "total": 117, "table": null, "rank": 147, "sp500_rank": 94, "fortune500_rank": 47}, "ai_patents_growth": {"counts": [], "total": 87.93859649122807, "table": null, "rank": 129, "sp500_rank": 62, "fortune500_rank": 27}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 10, 0, 50, 80, 190, 240, 480, 90, 0, 0], "total": 1170, "table": null, "rank": 147, "sp500_rank": 94, "fortune500_rank": 47}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [3, 1, 0, 5, 8, 16, 19, 43, 9, 0, 0], "total": 104, "table": "industry", "rank": 12, "sp500_rank": 10, "fortune500_rank": 5}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 131, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 131, "sp500_rank": 89, "fortune500_rank": 46}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 1, 0, 1, 2, 2, 2, 2, 1, 0, 0], "total": 12, "table": "industry", "rank": 240, "sp500_rank": 129, "fortune500_rank": 89}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "sp500_rank": 141, "fortune500_rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 252, "sp500_rank": 151, "fortune500_rank": 82}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "sp500_rank": 152, "fortune500_rank": 78}, "Control": {"counts": [1, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 166, "sp500_rank": 113, "fortune500_rank": 57}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 4, 6, 10, 2, 0, 0], "total": 24, "table": "application", "rank": 171, "sp500_rank": 101, "fortune500_rank": 48}, "Analytics_and_Algorithms": {"counts": [2, 1, 0, 4, 2, 10, 10, 31, 5, 0, 0], "total": 65, "table": "application", "rank": 23, "sp500_rank": 20, "fortune500_rank": 10}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 1, 1, 2, 2, 0, 0, 0], "total": 7, "table": "application", "rank": 147, "sp500_rank": 111, "fortune500_rank": 45}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4301, "rank": 106, "sp500_rank": 66, "fortune500_rank": 64}, "ai_jobs": {"counts": null, "total": 843, "rank": 54, "sp500_rank": 37, "fortune500_rank": 32}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research"}, {"cset_id": 1671, "country": "United States", "website": "http://www.ea.com", "crunchbase": {"text": "5a6207e2-b868-9f41-5178-8d51d2c40a93", "url": "https://www.crunchbase.com/organization/electronicarts"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/electronic-arts"], "stage": "Mature", "name": "Electronic Arts", "patent_name": "electronic arts", "continent": "North America", "local_logo": "electronic_arts.png", "aliases": "Electronic Arts Inc", "permid_links": [{"text": 4295901526, "url": "https://permid.org/1-4295901526"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:EA", "url": "https://www.google.com/finance/quote/ea:nasdaq"}], "market_full": [{"text": "GER:ERTX", "url": "https://www.google.com/finance/quote/ertx:ger"}, {"text": "MEX:EA*", "url": "https://www.google.com/finance/quote/ea*:mex"}, {"text": "HAM:ERT", "url": "https://www.google.com/finance/quote/ert:ham"}, {"text": "MUN:ERT", "url": "https://www.google.com/finance/quote/ert:mun"}, {"text": "FRA:ERT", "url": "https://www.google.com/finance/quote/ert:fra"}, {"text": "BER:ERT", "url": "https://www.google.com/finance/quote/ber:ert"}, {"text": "MCX:EA-RM", "url": "https://www.google.com/finance/quote/ea-rm:mcx"}, {"text": "BRN:ERT", "url": "https://www.google.com/finance/quote/brn:ert"}, {"text": "SAO:EAIN34", "url": "https://www.google.com/finance/quote/eain34:sao"}, {"text": "DEU:ERTS", "url": "https://www.google.com/finance/quote/deu:erts"}, {"text": "DUS:ERT", "url": "https://www.google.com/finance/quote/dus:ert"}, {"text": "VIE:EA", "url": "https://www.google.com/finance/quote/ea:vie"}, {"text": "STU:ERT", "url": "https://www.google.com/finance/quote/ert:stu"}, {"text": "LSE:0IFX", "url": "https://www.google.com/finance/quote/0ifx:lse"}, {"text": "HAN:ERT", "url": "https://www.google.com/finance/quote/ert:han"}, {"text": "NASDAQ:EA", "url": "https://www.google.com/finance/quote/ea:nasdaq"}], "crunchbase_description": "Electronic Arts delivers games, content, and online services for internet-connected consoles, PCs, mobile phones, and tablets.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Motion (physics)", "field_count": 1}, {"field_name": "Game mechanics", "field_count": 1}, {"field_name": "Heuristic", "field_count": 1}, {"field_name": "Gesture", "field_count": 1}, {"field_name": "Identifiability", "field_count": 1}, {"field_name": "Linear model", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Facial expression", "field_count": 1}], "clusters": [{"cluster_id": 17480, "cluster_count": 3}, {"cluster_id": 39257, "cluster_count": 2}, {"cluster_id": 1298, "cluster_count": 2}, {"cluster_id": 69428, "cluster_count": 1}, {"cluster_id": 4853, "cluster_count": 1}, {"cluster_id": 3322, "cluster_count": 1}, {"cluster_id": 2858, "cluster_count": 1}, {"cluster_id": 34006, "cluster_count": 1}, {"cluster_id": 10889, "cluster_count": 1}, {"cluster_id": 2259, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 22}, {"ref_CSET_id": 6, "referenced_count": 14}, {"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 1383, "referenced_count": 8}, {"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 184, "referenced_count": 4}, {"ref_CSET_id": 23, "referenced_count": 3}, {"ref_CSET_id": 671, "referenced_count": 3}, {"ref_CSET_id": 740, "referenced_count": 2}, {"ref_CSET_id": 694, "referenced_count": 1}], "tasks": [{"referent": "snes_games", "task_count": 3}, {"referent": "motion_capture", "task_count": 2}, {"referent": "unsupervised_person_re_identification", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "fraud_detection", "task_count": 1}, {"referent": "clustering", "task_count": 1}, {"referent": "3d_face_animation", "task_count": 1}, {"referent": "collision_detection", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "global_optimization", "task_count": 1}], "methods": [{"referent": "reinforcement_learning", "method_count": 3}, {"referent": "behaviour_policies", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "glow", "method_count": 1}, {"referent": "clusterfit", "method_count": 1}, {"referent": "momentum_rules", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "fa", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 2, 4, 5, 13, 9, 13, 4, 7, 15, 0], "total": 81, "isTopResearch": false, "rank": 544, "fortune500_rank": 203}, "ai_publications": {"counts": [1, 0, 2, 1, 2, 1, 3, 3, 4, 3, 0], "total": 20, "isTopResearch": false, "rank": 301, "fortune500_rank": 92}, "ai_publications_growth": {"counts": [], "total": 2.7777777777777786, "isTopResearch": false, "rank": 188, "fortune500_rank": 48}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "fortune500_rank": 59}, "citation_counts": {"counts": [0, 2, 3, 1, 9, 25, 41, 54, 61, 52, 2], "total": 250, "isTopResearch": false, "rank": 358, "fortune500_rank": 107}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 3, 2, 0], "total": 6, "isTopResearch": true, "rank": 267, "fortune500_rank": 73}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0.0, 0, 1.5, 1.0, 4.5, 25.0, 13.666666666666666, 18.0, 15.25, 17.333333333333332, 0], "total": 12.5, "isTopResearch": false, "rank": 461, "fortune500_rank": 139}}, "patents": {"ai_patents": {"counts": [1, 0, 1, 6, 8, 15, 20, 22, 3, 0, 0], "total": 76, "table": null, "rank": 178, "fortune500_rank": 56}, "ai_patents_growth": {"counts": [], "total": 43.611111111111114, "table": null, "rank": 232, "fortune500_rank": 72}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 10, 60, 80, 150, 200, 220, 30, 0, 0], "total": 760, "table": null, "rank": 178, "fortune500_rank": 56}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 6, 4, 3, 9, 1, 0, 0], "total": 25, "table": "industry", "rank": 169, "fortune500_rank": 62}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 172, "fortune500_rank": 60}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 3, 3, 0, 1, 0, 0], "total": 8, "table": "industry", "rank": 185, "fortune500_rank": 67}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 233, "fortune500_rank": 77}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [1, 0, 1, 4, 8, 10, 18, 15, 2, 0, 0], "total": 59, "table": "industry", "rank": 3, "fortune500_rank": 1}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 127, "fortune500_rank": 37}, "Knowledge_Representation": {"counts": [1, 0, 0, 1, 2, 1, 1, 2, 0, 0, 0], "total": 8, "table": "application", "rank": 88, "fortune500_rank": 46}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 9, 6, 8, 1, 0, 0], "total": 26, "table": "application", "rank": 165, "fortune500_rank": 47}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191, "fortune500_rank": 77}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4256, "rank": 107, "fortune500_rank": 65}, "ai_jobs": {"counts": null, "total": 331, "rank": 167, "fortune500_rank": 90}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Electronic Arts Inc. (EA) is an American video game company headquartered in Redwood City, California. It is the second-largest gaming company in the Americas and Europe by revenue and market capitalization after Activision Blizzard and ahead of Take-Two Interactive, CD Projekt, and Ubisoft as of May 2020.", "wikipedia_link": "https://en.wikipedia.org/wiki/Electronic_Arts", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2255, "country": "United States", "website": "https://www.schwab.com/", "crunchbase": {"text": "fb6fd6cb-adb7-c95b-88d5-fd7ccef7a92b", "url": "https://www.crunchbase.com/organization/charles-schwab"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/charles-schwab"], "stage": "Mature", "name": "Charles Schwab Corporation", "patent_name": "charles schwab corporation", "continent": "North America", "local_logo": "charles_schwab_corporation.png", "aliases": "Charles Schwab; Charles Schwab & Co; Charles Schwab Corp", "permid_links": [{"text": 8589934318, "url": "https://permid.org/1-8589934318"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SCHW", "url": "https://www.google.com/finance/quote/nyse:schw"}, {"text": "NYSE:SCHW.PRJ", "url": "https://www.google.com/finance/quote/nyse:schw.prj"}, {"text": "NYSE:SCHW.PRD", "url": "https://www.google.com/finance/quote/nyse:schw.prd"}], "market_full": [{"text": "NYQ:SCHW.PRJ", "url": "https://www.google.com/finance/quote/nyq:schw.prj"}, {"text": "MUN:SWG", "url": "https://www.google.com/finance/quote/mun:swg"}, {"text": "ASE:SCHW.PRJ", "url": "https://www.google.com/finance/quote/ase:schw.prj"}, {"text": "MCX:SCHW-RM", "url": "https://www.google.com/finance/quote/mcx:schw-rm"}, {"text": "NYSE:SCHW", "url": "https://www.google.com/finance/quote/nyse:schw"}, {"text": "ASE:SCHW.PRD", "url": "https://www.google.com/finance/quote/ase:schw.prd"}, {"text": "VIE:SCHW", "url": "https://www.google.com/finance/quote/schw:vie"}, {"text": "DUS:SWG", "url": "https://www.google.com/finance/quote/dus:swg"}, {"text": "HAN:SWG", "url": "https://www.google.com/finance/quote/han:swg"}, {"text": "NYQ:SCHW", "url": "https://www.google.com/finance/quote/nyq:schw"}, {"text": "STU:SWG", "url": "https://www.google.com/finance/quote/stu:swg"}, {"text": "GER:SWGX", "url": "https://www.google.com/finance/quote/ger:swgx"}, {"text": "DEU:SWG", "url": "https://www.google.com/finance/quote/deu:swg"}, {"text": "FRA:SWG", "url": "https://www.google.com/finance/quote/fra:swg"}, {"text": "SAO:SCHW34", "url": "https://www.google.com/finance/quote/sao:schw34"}, {"text": "NYQ:SCHW.PRD", "url": "https://www.google.com/finance/quote/nyq:schw.prd"}, {"text": "ASE:SCHW", "url": "https://www.google.com/finance/quote/ase:schw"}, {"text": "BRN:SWG", "url": "https://www.google.com/finance/quote/brn:swg"}, {"text": "NYSE:SCHW.PRJ", "url": "https://www.google.com/finance/quote/nyse:schw.prj"}, {"text": "NYSE:SCHW.PRD", "url": "https://www.google.com/finance/quote/nyse:schw.prd"}, {"text": "BER:SWG", "url": "https://www.google.com/finance/quote/ber:swg"}, {"text": "MEX:SCHW*", "url": "https://www.google.com/finance/quote/mex:schw*"}, {"text": "LSE:0L3I", "url": "https://www.google.com/finance/quote/0l3i:lse"}], "crunchbase_description": "Charles Schwab is a financial institution that provides brokerage and banking services.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Analytics", "field_count": 1}], "clusters": [{"cluster_id": 72158, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [], "methods": [{"referent": "meta_learning_algorithms", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 0, 0, 2, 1, 1, 3, 4, 6, 1, 0], "total": 20, "isTopResearch": false, "rank": 809, "fortune500_rank": 286}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 5, 12, 12, 6, 0], "total": 36, "isTopResearch": false, "rank": 633, "fortune500_rank": 172}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0, 0, 0, 0, 0, 0], "total": 36.0, "isTopResearch": false, "rank": 151, "fortune500_rank": 40}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4203, "rank": 108, "fortune500_rank": 66}, "ai_jobs": {"counts": null, "total": 278, "rank": 192, "fortune500_rank": 108}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "The Charles Schwab Corporation is an American multinational financial services company. It offers banking, commercial banking, an electronic trading platform, and wealth management advisory services to both retail and institutional clients. It has over 360 branches, primarily in financial centers in the United States and the United Kingdom. It is the 13th largest banking institution in the United States with over US$3.3 trillion in client assets. It is the third largest asset manager in the world, behind BlackRock and Vanguard. It had 29.0 million active brokerage accounts, 2.1 million corporate retirement plan participants, 1.5 million banking accounts, and $5.9 trillion in client assets as of October 31, 2020. It was founded in San Francisco, California and is headquartered in Westlake, Texas.", "wikipedia_link": "https://en.wikipedia.org/wiki/Charles_Schwab_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 21, "country": "China", "website": "http://alibabagroup.com", "crunchbase": {"text": "17d626a7-27a7-a51b-9337-3839f8ed055e", "url": "https://www.crunchbase.com/organization/alibaba"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/alibaba-group"], "stage": "Mature", "name": "Alibaba", "patent_name": "alibaba", "continent": "Asia", "local_logo": "alibaba.png", "aliases": "Alibaba Group; Alibaba Group Holding Limited; Alibaba Group Holding Ltd; \u963f\u91cc; \u963f\u91cc\u5df4\u5df4\u96c6\u56e2; \u963f\u91cc\u5df4\u5df4\u96c6\u56e2\u63a7\u80a1\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5000066483, "url": "https://permid.org/1-5000066483"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BABA", "url": "https://www.google.com/finance/quote/baba:nyse"}, {"text": "HKG:9988", "url": "https://www.google.com/finance/quote/9988:hkg"}], "market_full": [{"text": "BATS:AHLAD", "url": "https://www.google.com/finance/quote/ahlad:bats"}, {"text": "MOEX:BABA-RMDR", "url": "https://www.google.com/finance/quote/baba-rmdr:moex"}, {"text": "MEX:BABAN", "url": "https://www.google.com/finance/quote/baban:mex"}, {"text": "FRA:AHLAY", "url": "https://www.google.com/finance/quote/ahlay:fra"}, {"text": "FWB:2RR", "url": "https://www.google.com/finance/quote/2rr:fwb"}, {"text": "NYSE:BABA", "url": "https://www.google.com/finance/quote/baba:nyse"}, {"text": "XETR:AHLAY", "url": "https://www.google.com/finance/quote/ahlay:xetr"}, {"text": "OTC:BABAF", "url": "https://www.google.com/finance/quote/babaf:otc"}, {"text": "HKG:9988", "url": "https://www.google.com/finance/quote/9988:hkg"}], "crunchbase_description": "Alibaba Group enables businesses to transform the way they market, sell, operate, and improve their efficiencies.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 89}, {"field_name": "Recommender system", "field_count": 58}, {"field_name": "Machine translation", "field_count": 58}, {"field_name": "Reinforcement learning", "field_count": 55}, {"field_name": "Deep learning", "field_count": 53}, {"field_name": "Feature learning", "field_count": 49}, {"field_name": "Convolutional neural network", "field_count": 48}, {"field_name": "Language model", "field_count": 48}, {"field_name": "Segmentation", "field_count": 41}, {"field_name": "Question answering", "field_count": 41}], "clusters": [{"cluster_id": 1989, "cluster_count": 107}, {"cluster_id": 10485, "cluster_count": 93}, {"cluster_id": 148, "cluster_count": 75}, {"cluster_id": 1193, "cluster_count": 73}, {"cluster_id": 3527, "cluster_count": 59}, {"cluster_id": 1149, "cluster_count": 57}, {"cluster_id": 1436, "cluster_count": 40}, {"cluster_id": 13405, "cluster_count": 39}, {"cluster_id": 15731, "cluster_count": 29}, {"cluster_id": 14887, "cluster_count": 28}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 7710}, {"ref_CSET_id": 163, "referenced_count": 5769}, {"ref_CSET_id": 21, "referenced_count": 3044}, {"ref_CSET_id": 87, "referenced_count": 2979}, {"ref_CSET_id": 245, "referenced_count": 1244}, {"ref_CSET_id": 115, "referenced_count": 1236}, {"ref_CSET_id": 6, "referenced_count": 749}, {"ref_CSET_id": 37, "referenced_count": 740}, {"ref_CSET_id": 112, "referenced_count": 723}, {"ref_CSET_id": 184, "referenced_count": 624}], "tasks": [{"referent": "classification", "task_count": 298}, {"referent": "recommendation", "task_count": 143}, {"referent": "classification_tasks", "task_count": 119}, {"referent": "recommendation_systems", "task_count": 87}, {"referent": "multi_task_learning", "task_count": 76}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 70}, {"referent": "natural_language_processing", "task_count": 69}, {"referent": "image_recognition", "task_count": 64}, {"referent": "computer_vision", "task_count": 58}, {"referent": "inference_attack", "task_count": 58}], "methods": [{"referent": "3d_representations", "method_count": 305}, {"referent": "recurrent_neural_networks", "method_count": 249}, {"referent": "vqa_models", "method_count": 173}, {"referent": "q_learning", "method_count": 154}, {"referent": "convolutional_neural_networks", "method_count": 124}, {"referent": "reinforcement_learning", "method_count": 99}, {"referent": "double_q_learning", "method_count": 99}, {"referent": "attention_mechanisms", "method_count": 98}, {"referent": "optimization", "method_count": 94}, {"referent": "ggs_nns", "method_count": 94}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [33, 59, 118, 163, 207, 390, 771, 1053, 1274, 809, 6], "total": 4883, "isTopResearch": false, "rank": 68, "sp500_rank": 59}, "ai_publications": {"counts": [4, 10, 28, 38, 83, 205, 470, 710, 866, 352, 1], "total": 2767, "isTopResearch": false, "rank": 9, "sp500_rank": 8}, "ai_publications_growth": {"counts": [], "total": 4.560770681119128, "isTopResearch": false, "rank": 181, "sp500_rank": 92}, "ai_pubs_top_conf": {"counts": [0, 3, 13, 8, 39, 101, 226, 315, 383, 177, 0], "total": 1265, "isTopResearch": false, "rank": 6, "sp500_rank": 5}, "citation_counts": {"counts": [24, 50, 105, 199, 440, 1309, 4062, 8798, 14741, 12527, 504], "total": 42759, "isTopResearch": false, "rank": 17, "sp500_rank": 12}, "cv_pubs": {"counts": [2, 3, 7, 9, 32, 52, 130, 218, 339, 136, 1], "total": 929, "isTopResearch": true, "rank": 10, "sp500_rank": 8}, "nlp_pubs": {"counts": [0, 1, 2, 5, 17, 62, 135, 204, 218, 63, 0], "total": 707, "isTopResearch": true, "rank": 7, "sp500_rank": 6}, "robotics_pubs": {"counts": [0, 0, 0, 1, 2, 0, 13, 8, 11, 6, 0], "total": 41, "isTopResearch": true, "rank": 51, "sp500_rank": 43}, "citations_per_article": {"counts": [6.0, 5.0, 3.75, 5.2368421052631575, 5.301204819277109, 6.385365853658537, 8.642553191489363, 12.391549295774649, 17.021939953810623, 35.58806818181818, 504.0], "total": 15.453198409830142, "isTopResearch": false, "rank": 396, "sp500_rank": 130}}, "patents": {"ai_patents": {"counts": [8, 13, 49, 96, 174, 336, 440, 375, 105, 121, 0], "total": 1717, "table": null, "rank": 13, "sp500_rank": 11}, "ai_patents_growth": {"counts": [], "total": 36.427700651838585, "table": null, "rank": 254, "sp500_rank": 115}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [80, 130, 490, 960, 1740, 3360, 4400, 3750, 1050, 1210, 0], "total": 17170, "table": null, "rank": 13, "sp500_rank": 11}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0], "total": 3, "table": null, "rank": 105, "sp500_rank": 81}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 2, 7, 9, 2, 0, 0], "total": 20, "table": null, "rank": 54, "sp500_rank": 38}, "Security__eg_cybersecurity": {"counts": [1, 0, 3, 0, 18, 25, 29, 8, 1, 0, 0], "total": 85, "table": "industry", "rank": 15, "sp500_rank": 13}, "Transportation": {"counts": [0, 0, 0, 1, 0, 3, 1, 5, 0, 2, 0], "total": 12, "table": null, "rank": 91, "sp500_rank": 71}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 3, 2, 1, 3, 3, 2, 1, 0], "total": 15, "table": null, "rank": 54, "sp500_rank": 40}, "Education": {"counts": [0, 0, 0, 1, 1, 2, 0, 1, 0, 1, 0], "total": 6, "table": null, "rank": 22, "sp500_rank": 16}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 1, 0, 0, 1, 3, 0, 0, 0, 0], "total": 5, "table": null, "rank": 15, "sp500_rank": 12}, "Personal_Devices_and_Computing": {"counts": [5, 3, 24, 47, 80, 103, 179, 150, 44, 41, 0], "total": 676, "table": "industry", "rank": 13, "sp500_rank": 11}, "Banking_and_Finance": {"counts": [0, 0, 0, 8, 24, 55, 37, 2, 1, 0, 0], "total": 127, "table": "industry", "rank": 6, "sp500_rank": 6}, "Telecommunications": {"counts": [0, 0, 6, 16, 25, 36, 37, 32, 6, 11, 0], "total": 169, "table": "industry", "rank": 24, "sp500_rank": 21}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 2, 0, 2, 0, 3, 0, 1, 0, 0], "total": 8, "table": null, "rank": 21, "sp500_rank": 15}, "Business": {"counts": [3, 1, 7, 23, 44, 95, 95, 34, 17, 16, 0], "total": 335, "table": "industry", "rank": 6, "sp500_rank": 6}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 3, 3, 0, 0, 0], "total": 7, "table": null, "rank": 21, "sp500_rank": 14}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22}, "Language_Processing": {"counts": [0, 1, 6, 4, 8, 8, 2, 0, 0, 0, 0], "total": 29, "table": "application", "rank": 17, "sp500_rank": 13}, "Speech_Processing": {"counts": [0, 0, 4, 3, 7, 18, 14, 23, 3, 5, 0], "total": 77, "table": "application", "rank": 13, "sp500_rank": 10}, "Knowledge_Representation": {"counts": [0, 0, 2, 9, 12, 11, 6, 5, 1, 3, 0], "total": 49, "table": "application", "rank": 28, "sp500_rank": 23}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 10, 31, 50, 47, 13, 6, 8, 0], "total": 166, "table": "application", "rank": 9, "sp500_rank": 9}, "Control": {"counts": [0, 1, 0, 1, 4, 5, 5, 2, 0, 2, 0], "total": 20, "table": null, "rank": 92, "sp500_rank": 65}, "Distributed_AI": {"counts": [0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 23, "sp500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 12, 32, 49, 116, 140, 136, 50, 37, 0], "total": 573, "table": "application", "rank": 12, "sp500_rank": 9}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 2, 5, 1, 5, 1, 5, 0], "total": 20, "table": null, "rank": 65, "sp500_rank": 51}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 3, 8, 1, 8, 2, 2, 0], "total": 24, "table": null, "rank": 71, "sp500_rank": 54}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4174, "rank": 109, "sp500_rank": 67}, "ai_jobs": {"counts": null, "total": 1037, "rank": 40, "sp500_rank": 27}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Alibaba Group Holding Limited, also known as Alibaba Group and as Alibaba.com, is a Chinese multinational technology company specializing in e-commerce, retail, Internet, and technology. Founded on 28 June 1999 in Hangzhou, Zhejiang, the company provides consumer-to-consumer (C2C), business-to-consumer (B2C), and business-to-business (B2B) sales services via web portals, as well as electronic payment services, shopping search engines and cloud computing services. It owns and operates a diverse portfolio of companies around the world in numerous business sectors.", "wikipedia_link": "https://en.wikipedia.org/wiki/Alibaba_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 247, "country": "United States", "website": "https://www.tesla.com/", "crunchbase": {"text": "a367b036-5952-5435-7541-ad7ee8869e24", "url": "https://www.crunchbase.com/organization/tesla-motors"}, "child_crunchbase": [{"text": "2b1f834a-3d4e-4600-ac96-6b05614b1528", "url": "https://www.crunchbase.com/organization/deepscale"}], "linkedin": ["https://www.linkedin.com/company/tesla-motors"], "stage": "Mature", "name": "Tesla", "patent_name": "tesla", "continent": "North America", "local_logo": "tesla.png", "aliases": "Tesla Inc; Tesla Motors; Tesla, Inc", "permid_links": [{"text": 4297089638, "url": "https://permid.org/1-4297089638"}, {"text": 5063310381, "url": "https://permid.org/1-5063310381"}], "parent_info": null, "agg_child_info": "Deepscale", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:TSLA", "url": "https://www.google.com/finance/quote/nasdaq:tsla"}], "market_full": [{"text": "FWB:TS0", "url": "https://www.google.com/finance/quote/fwb:ts0"}, {"text": "XETR:TS0", "url": "https://www.google.com/finance/quote/ts0:xetr"}, {"text": "NASDAQ:TSLA", "url": "https://www.google.com/finance/quote/nasdaq:tsla"}, {"text": "BMV:TSLA", "url": "https://www.google.com/finance/quote/bmv:tsla"}, {"text": "MOEX:TSLA-RM", "url": "https://www.google.com/finance/quote/moex:tsla-rm"}, {"text": "MUN:TS0", "url": "https://www.google.com/finance/quote/mun:ts0"}, {"text": "DUS:TS0", "url": "https://www.google.com/finance/quote/dus:ts0"}, {"text": "HAM:TS0", "url": "https://www.google.com/finance/quote/ham:ts0"}, {"text": "MIL:TSLA", "url": "https://www.google.com/finance/quote/mil:tsla"}, {"text": "BER:TS0", "url": "https://www.google.com/finance/quote/ber:ts0"}, {"text": "HAN:TS0", "url": "https://www.google.com/finance/quote/han:ts0"}], "crunchbase_description": "Tesla Motors specializes in developing a full range of electric vehicles.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Time series", "field_count": 1}, {"field_name": "Expert system", "field_count": 1}, {"field_name": "Robotic arm", "field_count": 1}, {"field_name": "Missing data", "field_count": 1}, {"field_name": "Control (management)", "field_count": 1}, {"field_name": "Big data", "field_count": 1}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 19756, "cluster_count": 2}, {"cluster_id": 54202, "cluster_count": 1}, {"cluster_id": 6398, "cluster_count": 1}, {"cluster_id": 5732, "cluster_count": 1}, {"cluster_id": 23307, "cluster_count": 1}, {"cluster_id": 65496, "cluster_count": 1}, {"cluster_id": 58145, "cluster_count": 1}, {"cluster_id": 5438, "cluster_count": 1}, {"cluster_id": 80667, "cluster_count": 1}, {"cluster_id": 59198, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 55}, {"ref_CSET_id": 163, "referenced_count": 28}, {"ref_CSET_id": 87, "referenced_count": 18}, {"ref_CSET_id": 184, "referenced_count": 8}, {"ref_CSET_id": 23, "referenced_count": 4}, {"ref_CSET_id": 37, "referenced_count": 4}, {"ref_CSET_id": 671, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 247, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "system_identification", "task_count": 3}, {"referent": "image_processing", "task_count": 3}, {"referent": "precision_agriculture", "task_count": 3}, {"referent": "computer_vision", "task_count": 3}, {"referent": "image_analysis", "task_count": 2}, {"referent": "robots", "task_count": 2}, {"referent": "pattern_classification", "task_count": 2}, {"referent": "image_restoration", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "backbone_architectures", "method_count": 3}, {"referent": "vqa_models", "method_count": 2}, {"referent": "causal_inference", "method_count": 2}, {"referent": "generative_adversarial_networks", "method_count": 2}, {"referent": "generative_models", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "optimization", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [73, 72, 75, 102, 131, 109, 157, 153, 168, 141, 4], "total": 1185, "isTopResearch": false, "rank": 174, "sp500_rank": 130, "fortune500_rank": 66}, "ai_publications": {"counts": [2, 1, 2, 0, 2, 5, 12, 7, 4, 6, 0], "total": 41, "isTopResearch": false, "rank": 203, "sp500_rank": 124, "fortune500_rank": 65}, "ai_publications_growth": {"counts": [], "total": -11.507936507936506, "isTopResearch": false, "rank": 1278, "sp500_rank": 322, "fortune500_rank": 371}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 169, "sp500_rank": 82, "fortune500_rank": 47}, "citation_counts": {"counts": [3, 7, 5, 13, 39, 65, 103, 190, 236, 176, 4], "total": 841, "isTopResearch": false, "rank": 205, "sp500_rank": 114, "fortune500_rank": 63}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 3, 4, 0, 1, 2, 0], "total": 11, "isTopResearch": true, "rank": 196, "sp500_rank": 113, "fortune500_rank": 53}, "nlp_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114, "fortune500_rank": 49}, "citations_per_article": {"counts": [1.5, 7.0, 2.5, 0, 19.5, 13.0, 8.583333333333334, 27.142857142857142, 59.0, 29.333333333333332, 0], "total": 20.51219512195122, "isTopResearch": false, "rank": 304, "sp500_rank": 88, "fortune500_rank": 98}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 1, 10, 11, 5, 0, 0, 0, 0], "total": 28, "table": null, "rank": 282, "sp500_rank": 154, "fortune500_rank": 97}, "ai_patents_growth": {"counts": [], "total": -48.18181818181819, "table": null, "rank": 1507, "sp500_rank": 442, "fortune500_rank": 437}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 10, 100, 110, 50, 0, 0, 0, 0], "total": 280, "table": null, "rank": 282, "sp500_rank": 154, "fortune500_rank": 97}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "sp500_rank": 114, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 131, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 3, 4, 1, 0, 0, 0, 0], "total": 8, "table": "industry", "rank": 107, "sp500_rank": 79, "fortune500_rank": 30}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 8, 5, 1, 0, 0, 0, 0], "total": 15, "table": "industry", "rank": 218, "sp500_rank": 121, "fortune500_rank": 80}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 249, "sp500_rank": 129, "fortune500_rank": 95}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 1, 5, 5, 4, 0, 0, 0, 0], "total": 15, "table": "application", "rank": 111, "sp500_rank": 80, "fortune500_rank": 36}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 3, 7, 3, 0, 0, 0, 0], "total": 13, "table": "application", "rank": 224, "sp500_rank": 128, "fortune500_rank": 67}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "sp500_rank": 134, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 189, "sp500_rank": 129, "fortune500_rank": 62}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4173, "rank": 110, "sp500_rank": 68, "fortune500_rank": 67}, "ai_jobs": {"counts": null, "total": 521, "rank": 108, "sp500_rank": 67, "fortune500_rank": 60}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Tesla, Inc. is an American electric vehicle and clean energy company based in Palo Alto, California. Tesla's current products include electric cars, battery energy storage from home to grid scale, solar panels and solar roof tiles, as well as other related products and services. Tesla is ranked as the world's best-selling plug-in and battery electric passenger car manufacturer, with a market share of 16% of the plug-in segment and 23% of the battery electric segment 2020 sales. Through its subsidiary SolarCity, Tesla develops and is a major installer of solar photovoltaic systems in the United States. Tesla is also one of the largest global suppliers of battery energy storage systems, with 3 GWh of battery storage supplied in 2020.", "wikipedia_link": "https://en.wikipedia.org/wiki/Tesla,_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1856, "country": "United States", "website": "https://www.statefarm.com/", "crunchbase": {"text": " 907205e6-22d2-00a7-991d-c18ea683a8be", "url": "https://www.crunchbase.com/organization/state-farm-insurance"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/state_farm"], "stage": "Unknown", "name": "State Farm Insurance Cos.", "patent_name": "State Farm Insurance Cos.", "continent": "North America", "local_logo": null, "aliases": "State Farm; State Farm Insurance Cos.", "permid_links": [{"text": 5030826164, "url": "https://permid.org/1-5030826164"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Transfer of learning", "field_count": 2}, {"field_name": "Random forest", "field_count": 1}], "clusters": [{"cluster_id": 16876, "cluster_count": 3}, {"cluster_id": 19756, "cluster_count": 1}, {"cluster_id": 85133, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1767, "referenced_count": 2}, {"ref_CSET_id": 783, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 456, "referenced_count": 1}], "tasks": [{"referent": "autonomous_driving", "task_count": 3}, {"referent": "transfer_learning", "task_count": 2}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "steering_control", "task_count": 1}], "methods": [{"referent": "fine_tuning", "method_count": 2}, {"referent": "feature_extractors", "method_count": 2}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2, 6, 5, 3, 5, 4, 1, 8, 2, 2, 0], "total": 38, "isTopResearch": false, "rank": 676, "sp500_rank": 347}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 1, 0, 3, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "sp500_rank": 262}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 2, 0, 4, 30, 26, 0], "total": 62, "isTopResearch": false, "rank": 559, "sp500_rank": 243}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 2.0, 0, 1.3333333333333333, 0, 0, 0], "total": 12.4, "isTopResearch": false, "rank": 462, "sp500_rank": 159}}, "patents": {"ai_patents": {"counts": [1, 9, 13, 18, 31, 18, 12, 11, 1, 0, 0], "total": 114, "table": null, "rank": 149, "sp500_rank": 96}, "ai_patents_growth": {"counts": [], "total": -27.867383512544805, "table": null, "rank": 1481, "sp500_rank": 437}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 90, 130, 180, 310, 180, 120, 110, 10, 0, 0], "total": 1140, "table": null, "rank": 149, "sp500_rank": 96}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 125, "sp500_rank": 92}, "Life_Sciences": {"counts": [0, 1, 1, 0, 3, 1, 0, 2, 0, 0, 0], "total": 8, "table": null, "rank": 95, "sp500_rank": 62}, "Security__eg_cybersecurity": {"counts": [1, 2, 1, 3, 8, 2, 0, 0, 0, 0, 0], "total": 17, "table": null, "rank": 63, "sp500_rank": 47}, "Transportation": {"counts": [0, 6, 7, 14, 8, 4, 3, 0, 0, 0, 0], "total": 42, "table": "industry", "rank": 52, "sp500_rank": 40}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 34, "sp500_rank": 26}, "Personal_Devices_and_Computing": {"counts": [1, 2, 2, 8, 11, 2, 4, 6, 0, 0, 0], "total": 36, "table": "industry", "rank": 138, "sp500_rank": 83}, "Banking_and_Finance": {"counts": [0, 7, 10, 14, 20, 11, 7, 3, 0, 0, 0], "total": 72, "table": "industry", "rank": 19, "sp500_rank": 14}, "Telecommunications": {"counts": [1, 2, 9, 12, 12, 6, 7, 0, 0, 0, 0], "total": 49, "table": "industry", "rank": 78, "sp500_rank": 60}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 47, "sp500_rank": 34}, "Business": {"counts": [0, 4, 4, 5, 13, 9, 5, 4, 0, 0, 0], "total": 44, "table": "industry", "rank": 60, "sp500_rank": 47}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "sp500_rank": 57}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 139, "sp500_rank": 81}, "Knowledge_Representation": {"counts": [0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 162, "sp500_rank": 88}, "Planning_and_Scheduling": {"counts": [0, 1, 2, 4, 7, 5, 5, 2, 0, 0, 0], "total": 26, "table": "application", "rank": 66, "sp500_rank": 52}, "Control": {"counts": [0, 6, 7, 10, 8, 5, 3, 1, 0, 0, 0], "total": 40, "table": "application", "rank": 63, "sp500_rank": 49}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 5, 7, 12, 7, 1, 3, 1, 0, 0], "total": 36, "table": "application", "rank": 139, "sp500_rank": 85}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 223, "sp500_rank": 134}, "Measuring_and_Testing": {"counts": [0, 1, 6, 6, 0, 2, 2, 2, 0, 0, 0], "total": 19, "table": "application", "rank": 88, "sp500_rank": 65}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4158, "rank": 111, "sp500_rank": 69}, "ai_jobs": {"counts": null, "total": 488, "rank": 116, "sp500_rank": 74}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 676, "country": "United States", "website": "http://www.slb.com", "crunchbase": {"text": "014be8c3-43b1-83eb-32db-95bfd3bbc565", "url": "https://www.crunchbase.com/organization/schlumberger"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/schlumberger"], "stage": "Mature", "name": "Schlumberger", "patent_name": "schlumberger", "continent": "North America", "local_logo": "schlumberger.png", "aliases": "Schlumberger Limited; Schlumberger NV; Slb Global", "permid_links": [{"text": 4295904888, "url": "https://permid.org/1-4295904888"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SLB", "url": "https://www.google.com/finance/quote/nyse:slb"}], "market_full": [{"text": "EPA:SLB", "url": "https://www.google.com/finance/quote/epa:slb"}, {"text": "HAN:SCL", "url": "https://www.google.com/finance/quote/han:scl"}, {"text": "FWB:SCL", "url": "https://www.google.com/finance/quote/fwb:scl"}, {"text": "BCBA:SLB", "url": "https://www.google.com/finance/quote/bcba:slb"}, {"text": "BMV:SLBN", "url": "https://www.google.com/finance/quote/bmv:slbn"}, {"text": "NYSE:SLB", "url": "https://www.google.com/finance/quote/nyse:slb"}, {"text": "BER:SCL", "url": "https://www.google.com/finance/quote/ber:scl"}, {"text": "FRA:SLB", "url": "https://www.google.com/finance/quote/fra:slb"}, {"text": "MUN:SCL", "url": "https://www.google.com/finance/quote/mun:scl"}, {"text": "MEX:SLBN", "url": "https://www.google.com/finance/quote/mex:slbn"}, {"text": "HAM:SCL", "url": "https://www.google.com/finance/quote/ham:scl"}, {"text": "LSE:SCL", "url": "https://www.google.com/finance/quote/lse:scl"}, {"text": "DUS:SCL", "url": "https://www.google.com/finance/quote/dus:scl"}], "crunchbase_description": "Schlumberger Limited is an oilfield services company.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 9}, {"field_name": "Convolutional neural network", "field_count": 8}, {"field_name": "Cluster analysis", "field_count": 6}, {"field_name": "Feature (computer vision)", "field_count": 5}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Filter (signal processing)", "field_count": 4}, {"field_name": "Pattern recognition (psychology)", "field_count": 4}, {"field_name": "Data analysis", "field_count": 3}, {"field_name": "Segmentation", "field_count": 3}, {"field_name": "Reinforcement learning", "field_count": 3}], "clusters": [{"cluster_id": 7515, "cluster_count": 25}, {"cluster_id": 53446, "cluster_count": 10}, {"cluster_id": 86493, "cluster_count": 9}, {"cluster_id": 7816, "cluster_count": 8}, {"cluster_id": 25755, "cluster_count": 7}, {"cluster_id": 9045, "cluster_count": 6}, {"cluster_id": 33762, "cluster_count": 6}, {"cluster_id": 29455, "cluster_count": 5}, {"cluster_id": 49423, "cluster_count": 4}, {"cluster_id": 3916, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 676, "referenced_count": 109}, {"ref_CSET_id": 101, "referenced_count": 56}, {"ref_CSET_id": 163, "referenced_count": 30}, {"ref_CSET_id": 87, "referenced_count": 11}, {"ref_CSET_id": 2344, "referenced_count": 7}, {"ref_CSET_id": 1617, "referenced_count": 5}, {"ref_CSET_id": 682, "referenced_count": 5}, {"ref_CSET_id": 1495, "referenced_count": 5}, {"ref_CSET_id": 1797, "referenced_count": 4}, {"ref_CSET_id": 1930, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 46}, {"referent": "developmental_learning", "task_count": 28}, {"referent": "speech_production", "task_count": 26}, {"referent": "seismic_analysis", "task_count": 23}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 22}, {"referent": "image_interpretation", "task_count": 20}, {"referent": "motion_planning", "task_count": 20}, {"referent": "image_processing", "task_count": 20}, {"referent": "image_restoration", "task_count": 17}, {"referent": "image_analysis", "task_count": 16}], "methods": [{"referent": "mad_learning", "method_count": 31}, {"referent": "vqa_models", "method_count": 28}, {"referent": "convolutional_neural_networks", "method_count": 23}, {"referent": "meta_learning_algorithms", "method_count": 22}, {"referent": "double_q_learning", "method_count": 22}, {"referent": "recurrent_neural_networks", "method_count": 21}, {"referent": "atss", "method_count": 20}, {"referent": "semi_supervised_learning_methods", "method_count": 19}, {"referent": "self_supervised_learning", "method_count": 14}, {"referent": "optimization", "method_count": 13}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1246, 1416, 1461, 1364, 1126, 1167, 1034, 1106, 1346, 688, 6], "total": 11960, "isTopResearch": false, "rank": 34, "fortune500_rank": 10}, "ai_publications": {"counts": [12, 11, 18, 15, 20, 26, 48, 44, 70, 15, 0], "total": 279, "isTopResearch": false, "rank": 65, "fortune500_rank": 18}, "ai_publications_growth": {"counts": [], "total": -9.271284271284271, "isTopResearch": false, "rank": 1262, "fortune500_rank": 362}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [54, 45, 67, 83, 100, 134, 201, 248, 419, 433, 22], "total": 1806, "isTopResearch": false, "rank": 148, "fortune500_rank": 43}, "cv_pubs": {"counts": [1, 4, 0, 1, 3, 4, 6, 3, 7, 1, 0], "total": 30, "isTopResearch": true, "rank": 113, "fortune500_rank": 33}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 3, 1, 0], "total": 5, "isTopResearch": true, "rank": 141, "fortune500_rank": 42}, "robotics_pubs": {"counts": [3, 1, 3, 5, 5, 3, 3, 3, 5, 1, 0], "total": 32, "isTopResearch": true, "rank": 61, "fortune500_rank": 18}, "citations_per_article": {"counts": [4.5, 4.090909090909091, 3.7222222222222223, 5.533333333333333, 5.0, 5.153846153846154, 4.1875, 5.636363636363637, 5.985714285714286, 28.866666666666667, 0], "total": 6.473118279569892, "isTopResearch": false, "rank": 667, "fortune500_rank": 190}}, "patents": {"ai_patents": {"counts": [5, 3, 7, 17, 18, 26, 57, 44, 12, 0, 0], "total": 189, "table": null, "rank": 106, "fortune500_rank": 37}, "ai_patents_growth": {"counts": [], "total": 46.956065377118016, "table": null, "rank": 221, "fortune500_rank": 67}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [50, 30, 70, 170, 180, 260, 570, 440, 120, 0, 0], "total": 1890, "table": null, "rank": 106, "fortune500_rank": 37}, "Physical_Sciences_and_Engineering": {"counts": [2, 1, 7, 10, 11, 13, 36, 29, 5, 0, 0], "total": 114, "table": "industry", "rank": 3, "fortune500_rank": 2}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 3, 0, 0, 0], "total": 5, "table": "industry", "rank": 104, "fortune500_rank": 31}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 1, 0, 1, 3, 4, 1, 6, 1, 0, 0], "total": 17, "table": "industry", "rank": 12, "fortune500_rank": 5}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 1, 3, 7, 8, 10, 14, 12, 6, 0, 0], "total": 62, "table": "industry", "rank": 100, "fortune500_rank": 41}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 1, 0, 0, 1, 1, 2, 0, 0, 0, 0], "total": 5, "table": null, "rank": 225, "fortune500_rank": 86}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "fortune500_rank": 34}, "Business": {"counts": [0, 1, 1, 2, 2, 7, 4, 5, 0, 0, 0], "total": 22, "table": "industry", "rank": 94, "fortune500_rank": 38}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 2, 1, 5, 1, 0, 0, 0], "total": 9, "table": null, "rank": 78, "fortune500_rank": 40}, "Planning_and_Scheduling": {"counts": [0, 1, 1, 2, 2, 7, 3, 5, 0, 0, 0], "total": 21, "table": "application", "rank": 78, "fortune500_rank": 29}, "Control": {"counts": [2, 1, 3, 5, 2, 4, 4, 5, 1, 0, 0], "total": 27, "table": "application", "rank": 77, "fortune500_rank": 24}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 4, 4, 6, 18, 10, 2, 0, 0], "total": 45, "table": "application", "rank": 124, "fortune500_rank": 37}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 2, 2, 3, 5, 6, 1, 0, 0], "total": 19, "table": "application", "rank": 69, "fortune500_rank": 31}, "Measuring_and_Testing": {"counts": [4, 2, 3, 11, 14, 17, 22, 21, 6, 0, 0], "total": 100, "table": "application", "rank": 26, "fortune500_rank": 11}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4117, "rank": 112, "fortune500_rank": 68}, "ai_jobs": {"counts": null, "total": 587, "rank": 90, "fortune500_rank": 47}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "Schlumberger Limited is an oilfield services company. Schlumberger employees represent more than 140 nationalities working in more than 120 countries. Schlumberger has four principal executive offices located in Paris, Houston, London, and The Hague.", "wikipedia_link": "https://en.wikipedia.org/wiki/Schlumberger", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2427, "country": "United States", "website": "http://www.netapp.com/", "crunchbase": {"text": "bbd3ae58-58e2-d81c-42bf-97d4a07ac0d1", "url": "https://www.crunchbase.com/organization/netapp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/netapp"], "stage": "Mature", "name": "NetApp", "patent_name": "netapp", "continent": "North America", "local_logo": "netapp.png", "aliases": "Net App; Netapp, Inc", "permid_links": [{"text": 4295907376, "url": "https://permid.org/1-4295907376"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:NTAP", "url": "https://www.google.com/finance/quote/nasdaq:ntap"}], "market_full": [{"text": "DEU:NTAP", "url": "https://www.google.com/finance/quote/deu:ntap"}, {"text": "DUS:NTA", "url": "https://www.google.com/finance/quote/dus:nta"}, {"text": "LSE:0K6F", "url": "https://www.google.com/finance/quote/0k6f:lse"}, {"text": "MUN:NTA", "url": "https://www.google.com/finance/quote/mun:nta"}, {"text": "BER:NTA", "url": "https://www.google.com/finance/quote/ber:nta"}, {"text": "HAN:NTA", "url": "https://www.google.com/finance/quote/han:nta"}, {"text": "GER:NTAX", "url": "https://www.google.com/finance/quote/ger:ntax"}, {"text": "SAO:N1TA34", "url": "https://www.google.com/finance/quote/n1ta34:sao"}, {"text": "STU:NTA", "url": "https://www.google.com/finance/quote/nta:stu"}, {"text": "NASDAQ:NTAP", "url": "https://www.google.com/finance/quote/nasdaq:ntap"}, {"text": "MCX:NTAP", "url": "https://www.google.com/finance/quote/mcx:ntap"}, {"text": "FRA:NTA", "url": "https://www.google.com/finance/quote/fra:nta"}, {"text": "BRN:NTA", "url": "https://www.google.com/finance/quote/brn:nta"}, {"text": "HAM:NTA", "url": "https://www.google.com/finance/quote/ham:nta"}], "crunchbase_description": "NetApp is a hybrid cloud data services company .", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Curse of dimensionality", "field_count": 2}, {"field_name": "Search engine indexing", "field_count": 1}, {"field_name": "Artificial general intelligence", "field_count": 1}, {"field_name": "Constant false alarm rate", "field_count": 1}], "clusters": [{"cluster_id": 47583, "cluster_count": 2}, {"cluster_id": 3458, "cluster_count": 2}, {"cluster_id": 22315, "cluster_count": 1}, {"cluster_id": 30520, "cluster_count": 1}, {"cluster_id": 1149, "cluster_count": 1}, {"cluster_id": 184, "cluster_count": 1}, {"cluster_id": 41857, "cluster_count": 1}, {"cluster_id": 4816, "cluster_count": 1}, {"cluster_id": 458, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 15}, {"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 37, "referenced_count": 4}, {"ref_CSET_id": 21, "referenced_count": 2}, {"ref_CSET_id": 833, "referenced_count": 1}, {"ref_CSET_id": 219, "referenced_count": 1}, {"ref_CSET_id": 1423, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 50, "referenced_count": 1}], "tasks": [{"referent": "disambiguation", "task_count": 1}, {"referent": "image_annotation", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "character_recognition", "task_count": 1}, {"referent": "medical", "task_count": 1}, {"referent": "precision_agriculture", "task_count": 1}, {"referent": "building_extraction", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "trajectory_prediction", "task_count": 1}, {"referent": "machine_translation", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 3}, {"referent": "deep_ensembles", "method_count": 2}, {"referent": "ggs_nns", "method_count": 2}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "counting_methods", "method_count": 1}, {"referent": "hierarchical_vae", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "topic_embeddings", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [27, 18, 27, 37, 20, 31, 23, 11, 10, 11, 0], "total": 215, "isTopResearch": false, "rank": 402, "fortune500_rank": 155}, "ai_publications": {"counts": [2, 0, 1, 1, 0, 1, 0, 2, 1, 0, 0], "total": 8, "isTopResearch": false, "rank": 455, "fortune500_rank": 128}, "ai_publications_growth": {"counts": [], "total": -75.0, "isTopResearch": false, "rank": 1526, "fortune500_rank": 435}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 3, 7, 5, 7, 1, 11, 11, 20, 12, 0], "total": 77, "isTopResearch": false, "rank": 537, "fortune500_rank": 146}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0.0, 0, 7.0, 5.0, 0, 1.0, 0, 5.5, 20.0, 0, 0], "total": 9.625, "isTopResearch": false, "rank": 553, "fortune500_rank": 160}}, "patents": {"ai_patents": {"counts": [0, 1, 2, 1, 0, 6, 3, 16, 2, 0, 0], "total": 31, "table": null, "rank": 266, "fortune500_rank": 90}, "ai_patents_growth": {"counts": [], "total": 191.66666666666666, "table": null, "rank": 46, "fortune500_rank": 8}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 20, 10, 0, 60, 30, 160, 20, 0, 0], "total": 310, "table": null, "rank": 266, "fortune500_rank": 90}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 157, "fortune500_rank": 58}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 1, 2, 1, 0, 5, 2, 14, 2, 0, 0], "total": 27, "table": "industry", "rank": 160, "fortune500_rank": 57}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 2, 1, 0, 2, 2, 2, 1, 0, 0], "total": 10, "table": "industry", "rank": 165, "fortune500_rank": 62}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 87, "fortune500_rank": 43}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 1, 0, 0, 1, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 162, "fortune500_rank": 70}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 0, 5, 0, 0, 0], "total": 7, "table": "application", "rank": 288, "fortune500_rank": 88}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 1, 0, 0], "total": 4, "table": "application", "rank": 173, "fortune500_rank": 70}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4062, "rank": 113, "fortune500_rank": 69}, "ai_jobs": {"counts": null, "total": 131, "rank": 292, "fortune500_rank": 159}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "NetApp, Inc. is an American hybrid cloud data services and data management company headquartered in Sunnyvale, California. It has ranked in the Fortune 500 since 2012. Founded in 1992 with an IPO in 1995, NetApp offers hybrid cloud data services for management of applications and data across cloud and on-premises environments.", "wikipedia_link": "https://en.wikipedia.org/wiki/NetApp", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2742, "country": "United States", "website": "http://www.caci.com/", "crunchbase": {"text": "8ac45670-9daa-9327-36b6-d6ee5f7c32ed", "url": "https://www.crunchbase.com/organization/caci-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/caci-international-inc"], "stage": "Mature", "name": "Caci International Inc", "patent_name": "caci international inc", "continent": "North America", "local_logo": "caci_international_inc.png", "aliases": "CACI; Caci International", "permid_links": [{"text": 4295905828, "url": "https://permid.org/1-4295905828"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CACI", "url": "https://www.google.com/finance/quote/caci:nyse"}], "market_full": [{"text": "DEU:CACI", "url": "https://www.google.com/finance/quote/caci:deu"}, {"text": "FRA:CA8A", "url": "https://www.google.com/finance/quote/ca8a:fra"}, {"text": "NYQ:CACI", "url": "https://www.google.com/finance/quote/caci:nyq"}, {"text": "STU:CA8A", "url": "https://www.google.com/finance/quote/ca8a:stu"}, {"text": "ASE:CACI", "url": "https://www.google.com/finance/quote/ase:caci"}, {"text": "MUN:CA8A", "url": "https://www.google.com/finance/quote/ca8a:mun"}, {"text": "BRN:CA8A", "url": "https://www.google.com/finance/quote/brn:ca8a"}, {"text": "NYSE:CACI", "url": "https://www.google.com/finance/quote/caci:nyse"}, {"text": "DUS:CA8A", "url": "https://www.google.com/finance/quote/ca8a:dus"}, {"text": "MEX:CACI*", "url": "https://www.google.com/finance/quote/caci*:mex"}, {"text": "SAO:C2AC34", "url": "https://www.google.com/finance/quote/c2ac34:sao"}, {"text": "BER:CA8A", "url": "https://www.google.com/finance/quote/ber:ca8a"}], "crunchbase_description": "CACI International Inc provides information systems, and technology and professional services to the U.S.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Annotation", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}, {"field_name": "Document processing", "field_count": 1}, {"field_name": "Big data", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Visualization", "field_count": 1}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Adversarial system", "field_count": 1}, {"field_name": "Motion compensation", "field_count": 1}], "clusters": [{"cluster_id": 31911, "cluster_count": 3}, {"cluster_id": 8972, "cluster_count": 2}, {"cluster_id": 23506, "cluster_count": 1}, {"cluster_id": 7763, "cluster_count": 1}, {"cluster_id": 3843, "cluster_count": 1}, {"cluster_id": 18141, "cluster_count": 1}, {"cluster_id": 27297, "cluster_count": 1}, {"cluster_id": 13724, "cluster_count": 1}, {"cluster_id": 15869, "cluster_count": 1}, {"cluster_id": 2381, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 7}, {"ref_CSET_id": 87, "referenced_count": 7}, {"ref_CSET_id": 184, "referenced_count": 5}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 2742, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 33, "referenced_count": 1}, {"ref_CSET_id": 790, "referenced_count": 1}], "tasks": [{"referent": "image_analysis", "task_count": 4}, {"referent": "image_manipulation", "task_count": 2}, {"referent": "arabic_sentiment_analysis", "task_count": 2}, {"referent": "steering_control", "task_count": 2}, {"referent": "vehicle_detection", "task_count": 2}, {"referent": "image_similarity_search", "task_count": 1}, {"referent": "remote_sensing", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "target_recognition", "task_count": 1}], "methods": [{"referent": "normalization", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "maddpg", "method_count": 1}, {"referent": "rmsprop", "method_count": 1}, {"referent": "alphazero", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "sig", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [11, 9, 10, 51, 5, 13, 19, 15, 12, 11, 0], "total": 156, "isTopResearch": false, "rank": 449}, "ai_publications": {"counts": [4, 2, 1, 2, 1, 1, 3, 0, 1, 1, 0], "total": 16, "isTopResearch": false, "rank": 341}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [4, 2, 11, 16, 15, 13, 10, 14, 22, 16, 0], "total": 123, "isTopResearch": false, "rank": 475}, "cv_pubs": {"counts": [3, 0, 0, 1, 0, 0, 2, 0, 1, 1, 0], "total": 8, "isTopResearch": true, "rank": 229}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 214}, "citations_per_article": {"counts": [1.0, 1.0, 11.0, 8.0, 15.0, 13.0, 3.3333333333333335, 0, 22.0, 16.0, 0], "total": 7.6875, "isTopResearch": false, "rank": 616}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4031, "rank": 114}, "ai_jobs": {"counts": null, "total": 171, "rank": 248}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "CACI International Inc (originally California Analysis Center, Inc., then Consolidated Analysis Center, Incorporated) is an American multinational professional services and information technology company headquartered in Arlington, Virginia. CACI provides services to many branches of the US federal government including defense, homeland security, intelligence, and healthcare.", "wikipedia_link": "https://en.wikipedia.org/wiki/CACI", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1396, "country": "Canada", "website": "https://www.rbc.com/", "crunchbase": {"text": "9076754e-e6cb-6b3a-3a97-eec77a1b822e", "url": "https://www.crunchbase.com/organization/royal-bank-of-canada"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/rbc"], "stage": "Mature", "name": "Royal Bank Of Canada", "patent_name": "Royal Bank of Canada", "continent": "North America", "local_logo": "royal_bank_of_canada.png", "aliases": "Rbc Dominion Securities Inc; Royal Bank of Canada", "permid_links": [{"text": 8589934213, "url": "https://permid.org/1-8589934213"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:RY", "url": "https://www.google.com/finance/quote/NYSE:RY"}], "market_full": [{"text": "BER:RYC", "url": "https://www.google.com/finance/quote/BER:RYC"}, {"text": "MUN:RYC", "url": "https://www.google.com/finance/quote/MUN:RYC"}, {"text": "FRA:RYC", "url": "https://www.google.com/finance/quote/FRA:RYC"}, {"text": "TOR:RY", "url": "https://www.google.com/finance/quote/RY:TOR"}, {"text": "NYQ:RY", "url": "https://www.google.com/finance/quote/NYQ:RY"}, {"text": "MEX:RYN", "url": "https://www.google.com/finance/quote/MEX:RYN"}, {"text": "NYSE:RY", "url": "https://www.google.com/finance/quote/NYSE:RY"}, {"text": "SWX:RY", "url": "https://www.google.com/finance/quote/RY:SWX"}, {"text": "STU:RYC", "url": "https://www.google.com/finance/quote/RYC:STU"}, {"text": "DEU:RY", "url": "https://www.google.com/finance/quote/DEU:RY"}], "crunchbase_description": "Royal Bank of Canada is a financial services company that focuses on banking, wealth management, insurance, investment, and capital markets.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Discriminative model", "field_count": 1}, {"field_name": "Ontology (information science)", "field_count": 1}, {"field_name": "Random forest", "field_count": 1}, {"field_name": "Mutual information", "field_count": 1}, {"field_name": "Data pre-processing", "field_count": 1}, {"field_name": "Entropy (information theory)", "field_count": 1}, {"field_name": "Fingerprint (computing)", "field_count": 1}, {"field_name": "Parsing", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 34162, "cluster_count": 2}, {"cluster_id": 13252, "cluster_count": 2}, {"cluster_id": 16537, "cluster_count": 2}, {"cluster_id": 884, "cluster_count": 1}, {"cluster_id": 11991, "cluster_count": 1}, {"cluster_id": 32461, "cluster_count": 1}, {"cluster_id": 40737, "cluster_count": 1}, {"cluster_id": 2381, "cluster_count": 1}, {"cluster_id": 12214, "cluster_count": 1}, {"cluster_id": 61720, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 50}, {"ref_CSET_id": 87, "referenced_count": 20}, {"ref_CSET_id": 163, "referenced_count": 15}, {"ref_CSET_id": 37, "referenced_count": 4}, {"ref_CSET_id": 1396, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 1125, "referenced_count": 2}, {"ref_CSET_id": 219, "referenced_count": 2}, {"ref_CSET_id": 27, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "domain_generalization", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "transfer_learning", "task_count": 1}, {"referent": "traffic_prediction", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}, {"referent": "deepfake_detection", "task_count": 1}, {"referent": "biometric_authentication", "task_count": 1}, {"referent": "fact_verification", "task_count": 1}, {"referent": "causal_inference", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "causal_inference", "method_count": 2}, {"referent": "discriminators", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "generative_adversarial_networks", "method_count": 2}, {"referent": "l1_regularization", "method_count": 2}, {"referent": "generative_models", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [6, 7, 4, 2, 4, 14, 24, 27, 7, 5, 0], "total": 100, "isTopResearch": false, "rank": 513, "sp500_rank": 295}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 3, 5, 5, 3, 0, 0], "total": 17, "isTopResearch": false, "rank": 330, "sp500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -46.666666666666664, "isTopResearch": false, "rank": 1439, "sp500_rank": 399}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0], "total": 6, "isTopResearch": false, "rank": 140, "sp500_rank": 69}, "citation_counts": {"counts": [4, 12, 8, 13, 17, 35, 55, 99, 116, 82, 3], "total": 444, "isTopResearch": false, "rank": 283, "sp500_rank": 144}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 2, 1, 1, 0, 0], "total": 5, "isTopResearch": true, "rank": 141, "sp500_rank": 83}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 8.0, 0, 0, 11.666666666666666, 11.0, 19.8, 38.666666666666664, 0, 0], "total": 26.11764705882353, "isTopResearch": false, "rank": 221, "sp500_rank": 62}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 14, 35, 32, 18, 10, 0, 0], "total": 110, "table": null, "rank": 152, "sp500_rank": 98}, "ai_patents_growth": {"counts": [], "total": 32.5595238095238, "table": null, "rank": 269, "sp500_rank": 123}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 140, 350, 320, 180, 100, 0, 0], "total": 1100, "table": null, "rank": 152, "sp500_rank": 98}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 2, 9, 1, 1, 0, 0, 0], "total": 13, "table": "industry", "rank": 79, "sp500_rank": 58}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 11, 23, 16, 8, 1, 0, 0], "total": 59, "table": "industry", "rank": 102, "sp500_rank": 71}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 8, 8, 2, 1, 0, 0], "total": 19, "table": "industry", "rank": 50, "sp500_rank": 40}, "Telecommunications": {"counts": [0, 0, 0, 0, 3, 8, 5, 1, 0, 0, 0], "total": 17, "table": "industry", "rank": 140, "sp500_rank": 88}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [0, 0, 0, 0, 2, 4, 3, 2, 1, 0, 0], "total": 12, "table": "industry", "rank": 140, "sp500_rank": 96}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 5, 7, 0, 0, 0, 0, 0], "total": 12, "table": "application", "rank": 34, "sp500_rank": 24}, "Speech_Processing": {"counts": [0, 0, 0, 1, 1, 2, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 127, "sp500_rank": 76}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 2, 7, 2, 2, 0, 0, 0], "total": 13, "table": "application", "rank": 64, "sp500_rank": 47}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 2, 1, 2, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 183, "sp500_rank": 120}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], "total": 3, "table": null, "rank": 23, "sp500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 7, 10, 8, 6, 0, 0, 0], "total": 31, "table": "application", "rank": 150, "sp500_rank": 92}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 4024, "rank": 115, "sp500_rank": 70}, "ai_jobs": {"counts": null, "total": 713, "rank": 73, "sp500_rank": 49}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 313, "country": "United States", "website": "http://www.agilent.com", "crunchbase": {"text": "743ccb60-78a8-45cd-35bb-f6f1797f38f5", "url": "https://www.crunchbase.com/organization/agilent"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/agilent-technologies"], "stage": "Mature", "name": "Agilent Technologies", "patent_name": "agilent technologies", "continent": "North America", "local_logo": "agilent_technologies.png", "aliases": "Agilent; Agilent Technologies Inc; Agilent Technologies, Inc", "permid_links": [{"text": 4295908720, "url": "https://permid.org/1-4295908720"}], "parent_info": "Philips (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:A", "url": "https://www.google.com/finance/quote/a:nyse"}], "market_full": [{"text": "BMV:A", "url": "https://www.google.com/finance/quote/a:bmv"}, {"text": "HAM:AG8", "url": "https://www.google.com/finance/quote/ag8:ham"}, {"text": "MCX:A-RM", "url": "https://www.google.com/finance/quote/a-rm:mcx"}, {"text": "BER:AG8", "url": "https://www.google.com/finance/quote/ag8:ber"}, {"text": "HAN:AG8", "url": "https://www.google.com/finance/quote/ag8:han"}, {"text": "FWB:AG8", "url": "https://www.google.com/finance/quote/ag8:fwb"}, {"text": "DUS:AG8", "url": "https://www.google.com/finance/quote/ag8:dus"}, {"text": "NYSE:A", "url": "https://www.google.com/finance/quote/a:nyse"}, {"text": "MUN:AG8", "url": "https://www.google.com/finance/quote/ag8:mun"}], "crunchbase_description": "Agilent Technologies addresses the scientific and laboratory management needs of analytical scientists and clinical researchers.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Segmentation", "field_count": 3}, {"field_name": "Independent component analysis", "field_count": 1}, {"field_name": "Principal component analysis", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Classifier (UML)", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}], "clusters": [{"cluster_id": 1683, "cluster_count": 3}, {"cluster_id": 1781, "cluster_count": 2}, {"cluster_id": 37304, "cluster_count": 1}, {"cluster_id": 15179, "cluster_count": 1}, {"cluster_id": 214, "cluster_count": 1}, {"cluster_id": 32850, "cluster_count": 1}, {"cluster_id": 40316, "cluster_count": 1}, {"cluster_id": 24597, "cluster_count": 1}, {"cluster_id": 10558, "cluster_count": 1}, {"cluster_id": 6943, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 87, "referenced_count": 10}, {"ref_CSET_id": 223, "referenced_count": 5}, {"ref_CSET_id": 245, "referenced_count": 3}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 789, "referenced_count": 1}, {"ref_CSET_id": 258, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "segmentation", "task_count": 3}, {"referent": "cancer_diagnosis", "task_count": 2}, {"referent": "interactive_segmentation", "task_count": 2}, {"referent": "semantic_segmentation", "task_count": 2}, {"referent": "histopathological_image_classification", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "image_classification_tasks", "task_count": 1}, {"referent": "3d_medical_imaging_segmentation", "task_count": 1}], "methods": [{"referent": "metrix", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "backbone_architectures", "method_count": 2}, {"referent": "ica", "method_count": 1}, {"referent": "polya_gamma_augmentation", "method_count": 1}, {"referent": "negative_sampling", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "gradient_clipping", "method_count": 1}, {"referent": "wgan_gp", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [457, 340, 312, 301, 353, 340, 295, 238, 228, 170, 5], "total": 3039, "isTopResearch": false, "rank": 93, "fortune500_rank": 35}, "ai_publications": {"counts": [0, 4, 1, 1, 1, 3, 1, 1, 4, 2, 0], "total": 18, "isTopResearch": false, "rank": 321, "fortune500_rank": 98}, "ai_publications_growth": {"counts": [], "total": 83.33333333333333, "isTopResearch": false, "rank": 28, "fortune500_rank": 7}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [2, 4, 14, 12, 21, 18, 34, 66, 104, 114, 2], "total": 391, "isTopResearch": false, "rank": 297, "fortune500_rank": 87}, "cv_pubs": {"counts": [0, 1, 1, 0, 1, 2, 1, 0, 2, 0, 0], "total": 8, "isTopResearch": true, "rank": 229, "fortune500_rank": 67}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 1.0, 14.0, 12.0, 21.0, 6.0, 34.0, 66.0, 26.0, 57.0, 0], "total": 21.72222222222222, "isTopResearch": false, "rank": 283, "fortune500_rank": 90}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 1, 0, 3, 4, 1, 0, 0], "total": 10, "table": null, "rank": 413, "fortune500_rank": 130}, "ai_patents_growth": {"counts": [], "total": -33.33333333333333, "table": null, "rank": 1488, "fortune500_rank": 429}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 10, 0, 30, 40, 10, 0, 0], "total": 100, "table": null, "rank": 413, "fortune500_rank": 130}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": "application", "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3983, "rank": 116, "fortune500_rank": 70}, "ai_jobs": {"counts": null, "total": 141, "rank": 282, "fortune500_rank": 152}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Agilent Technologies, Inc. is an American analytical instrumentation development and manufacturing company that offers its products and services to markets worldwide. Its global headquarters is located in Santa Clara, California. Agilent was established in 1999 as a spin-off from Hewlett-Packard. The resulting IPO of Agilent stock was the largest in the history of Silicon Valley at the time.[", "wikipedia_link": "https://en.wikipedia.org/wiki/Agilent_Technologies", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 674, "country": "United States", "website": "www.sas.com", "crunchbase": {"text": "ab35b82f-7bbc-2a31-7394-66af5ca94051", "url": "https://www.crunchbase.com/organization/sas"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sas"], "stage": "Mature", "name": "SAS Ins.", "patent_name": "sas ins.", "continent": "North America", "local_logo": "sas_ins.png", "aliases": "SAS Institute; Sas; Sas Institute Inc; Statistical Analysis System Institute", "permid_links": [{"text": 4296300285, "url": "https://permid.org/1-4296300285"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "SAS provides advanced business analytics and business intelligent software and services to enable companies to optimize their operations.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Support vector machine", "field_count": 5}, {"field_name": "Sentiment analysis", "field_count": 5}, {"field_name": "Feature selection", "field_count": 4}, {"field_name": "Interpretability", "field_count": 3}, {"field_name": "Logistic regression", "field_count": 3}, {"field_name": "Cluster analysis", "field_count": 3}, {"field_name": "Anomaly detection", "field_count": 3}, {"field_name": "Model selection", "field_count": 3}, {"field_name": "Kernel (statistics)", "field_count": 3}, {"field_name": "Active learning (machine learning)", "field_count": 2}], "clusters": [{"cluster_id": 15048, "cluster_count": 7}, {"cluster_id": 76560, "cluster_count": 7}, {"cluster_id": 22562, "cluster_count": 5}, {"cluster_id": 22056, "cluster_count": 5}, {"cluster_id": 22491, "cluster_count": 3}, {"cluster_id": 33, "cluster_count": 3}, {"cluster_id": 41857, "cluster_count": 3}, {"cluster_id": 42543, "cluster_count": 3}, {"cluster_id": 1168, "cluster_count": 2}, {"cluster_id": 5109, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 73}, {"ref_CSET_id": 674, "referenced_count": 43}, {"ref_CSET_id": 163, "referenced_count": 39}, {"ref_CSET_id": 87, "referenced_count": 28}, {"ref_CSET_id": 115, "referenced_count": 21}, {"ref_CSET_id": 792, "referenced_count": 7}, {"ref_CSET_id": 23, "referenced_count": 5}, {"ref_CSET_id": 383, "referenced_count": 3}, {"ref_CSET_id": 21, "referenced_count": 3}, {"ref_CSET_id": 800, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 16}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 10}, {"referent": "feature_selection", "task_count": 8}, {"referent": "anomaly_detection", "task_count": 8}, {"referent": "image_processing", "task_count": 6}, {"referent": "system_identification", "task_count": 4}, {"referent": "sentiment_detection", "task_count": 4}, {"referent": "data_mining", "task_count": 4}, {"referent": "semi_supervised_image_classification", "task_count": 3}, {"referent": "variable_selection", "task_count": 3}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 12}, {"referent": "vqa_models", "method_count": 12}, {"referent": "recurrent_neural_networks", "method_count": 9}, {"referent": "optimization", "method_count": 8}, {"referent": "3d_representations", "method_count": 7}, {"referent": "mad_learning", "method_count": 7}, {"referent": "logistic_regression", "method_count": 7}, {"referent": "l1_regularization", "method_count": 7}, {"referent": "auto_classifier", "method_count": 5}, {"referent": "mckernel", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [83, 64, 82, 82, 110, 92, 88, 63, 83, 59, 1], "total": 807, "isTopResearch": false, "rank": 212}, "ai_publications": {"counts": [11, 7, 8, 18, 12, 15, 17, 8, 13, 3, 0], "total": 112, "isTopResearch": false, "rank": 114}, "ai_publications_growth": {"counts": [], "total": -22.454751131221716, "isTopResearch": false, "rank": 1349}, "ai_pubs_top_conf": {"counts": [1, 2, 0, 1, 2, 2, 2, 2, 3, 1, 0], "total": 16, "isTopResearch": false, "rank": 91}, "citation_counts": {"counts": [41, 71, 119, 167, 223, 243, 368, 499, 549, 420, 23], "total": 2723, "isTopResearch": false, "rank": 109}, "cv_pubs": {"counts": [0, 1, 1, 0, 0, 0, 3, 1, 2, 0, 0], "total": 8, "isTopResearch": true, "rank": 229}, "nlp_pubs": {"counts": [1, 1, 0, 2, 2, 4, 3, 0, 1, 0, 0], "total": 14, "isTopResearch": true, "rank": 78}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [3.727272727272727, 10.142857142857142, 14.875, 9.277777777777779, 18.583333333333332, 16.2, 21.647058823529413, 62.375, 42.23076923076923, 140.0, 0], "total": 24.3125, "isTopResearch": false, "rank": 251}}, "patents": {"ai_patents": {"counts": [13, 7, 18, 26, 19, 33, 20, 38, 14, 1, 0], "total": 189, "table": null, "rank": 106}, "ai_patents_growth": {"counts": [], "total": 41.430090377458804, "table": null, "rank": 240}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [130, 70, 180, 260, 190, 330, 200, 380, 140, 10, 0], "total": 1890, "table": null, "rank": 106}, "Physical_Sciences_and_Engineering": {"counts": [1, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 3, "table": null, "rank": 105}, "Life_Sciences": {"counts": [0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 139}, "Security__eg_cybersecurity": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 193}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 38}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [10, 5, 15, 19, 15, 28, 11, 24, 8, 1, 0], "total": 136, "table": "industry", "rank": 59}, "Banking_and_Finance": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 172}, "Telecommunications": {"counts": [1, 1, 6, 10, 4, 6, 0, 3, 1, 0, 0], "total": 32, "table": "industry", "rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [1, 2, 1, 3, 0, 0, 0, 2, 0, 0, 0], "total": 9, "table": "industry", "rank": 162}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0], "total": 4, "table": "industry", "rank": 86}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55}, "Language_Processing": {"counts": [0, 0, 4, 1, 1, 1, 0, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 45}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 4, 1, 0, 0], "total": 6, "table": "application", "rank": 105}, "Knowledge_Representation": {"counts": [1, 3, 3, 3, 3, 5, 2, 3, 1, 0, 0], "total": 24, "table": "application", "rank": 45}, "Planning_and_Scheduling": {"counts": [0, 2, 1, 2, 0, 0, 0, 1, 0, 0, 0], "total": 6, "table": null, "rank": 163}, "Control": {"counts": [0, 1, 1, 1, 1, 0, 3, 2, 0, 0, 0], "total": 9, "table": "application", "rank": 144}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 1, 1, 8, 7, 12, 4, 10, 5, 0, 0], "total": 48, "table": "application", "rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 3, 0, 1, 1, 0, 0], "total": 6, "table": null, "rank": 147}, "Measuring_and_Testing": {"counts": [1, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0], "total": 5, "table": null, "rank": 170}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3982, "rank": 117}, "ai_jobs": {"counts": null, "total": 901, "rank": 46}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Curiosity is our code. SAS analytics solutions transform data into intelligence, inspiring customers around the world to make bold new discoveries that drive progress.", "company_site_link": "https://www.sas.com", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 518, "country": "United States", "website": "https://www.jpmorgan.com/", "crunchbase": {"text": "c4bdc9f3-5a75-3393-8d54-fec662761ec8", "url": "https://www.crunchbase.com/organization/jp-morgan-chase"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/jpmorgan"], "stage": "Unknown", "name": "J.P. Morgan", "patent_name": "j.p. morgan", "continent": "North America", "local_logo": "jp_morgan.png", "aliases": "Constellation Venture Partners; J.P. Morgan; Jp Morgan; Jpmorgan; Jpmorgan Chase & Co", "permid_links": [{"text": 5000021791, "url": "https://permid.org/1-5000021791"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "JP Morgan offers financial services, serving large multinationals, emerging companies, institutional investor, and individuals.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Reinforcement learning", "field_count": 6}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Synthetic data", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Topic model", "field_count": 2}, {"field_name": "Feature vector", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Categorical variable", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "Differential privacy", "field_count": 1}], "clusters": [{"cluster_id": 4358, "cluster_count": 3}, {"cluster_id": 2503, "cluster_count": 2}, {"cluster_id": 28660, "cluster_count": 2}, {"cluster_id": 27896, "cluster_count": 2}, {"cluster_id": 484, "cluster_count": 2}, {"cluster_id": 84290, "cluster_count": 2}, {"cluster_id": 81133, "cluster_count": 1}, {"cluster_id": 9390, "cluster_count": 1}, {"cluster_id": 916, "cluster_count": 1}, {"cluster_id": 45769, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 77}, {"ref_CSET_id": 163, "referenced_count": 59}, {"ref_CSET_id": 115, "referenced_count": 22}, {"ref_CSET_id": 87, "referenced_count": 21}, {"ref_CSET_id": 518, "referenced_count": 9}, {"ref_CSET_id": 23, "referenced_count": 8}, {"ref_CSET_id": 6, "referenced_count": 8}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 792, "referenced_count": 6}, {"ref_CSET_id": 245, "referenced_count": 5}], "tasks": [{"referent": "classification", "task_count": 7}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 7}, {"referent": "time_series", "task_count": 4}, {"referent": "classification_tasks", "task_count": 3}, {"referent": "super_resolution", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "text_classification", "task_count": 2}, {"referent": "synthetic_data_generation", "task_count": 2}, {"referent": "action_understanding", "task_count": 2}], "methods": [{"referent": "auto_classifier", "method_count": 6}, {"referent": "double_q_learning", "method_count": 6}, {"referent": "reinforcement_learning", "method_count": 6}, {"referent": "logistic_regression", "method_count": 5}, {"referent": "3d_representations", "method_count": 5}, {"referent": "vqa_models", "method_count": 5}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "awd_lstm", "method_count": 4}, {"referent": "neural_probabilistic_language_model", "method_count": 4}, {"referent": "q_learning", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [62, 67, 51, 112, 104, 111, 102, 90, 83, 85, 0], "total": 867, "isTopResearch": false, "rank": 205, "sp500_rank": 150, "fortune500_rank": 75}, "ai_publications": {"counts": [1, 1, 1, 0, 3, 4, 9, 24, 20, 14, 0], "total": 77, "isTopResearch": false, "rank": 142, "sp500_rank": 94, "fortune500_rank": 45}, "ai_publications_growth": {"counts": [], "total": 40.0, "isTopResearch": false, "rank": 76, "sp500_rank": 37, "fortune500_rank": 24}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 4, 2, 0], "total": 10, "isTopResearch": false, "rank": 114, "sp500_rank": 57, "fortune500_rank": 39}, "citation_counts": {"counts": [8, 12, 22, 19, 51, 80, 129, 166, 284, 226, 13], "total": 1010, "isTopResearch": false, "rank": 192, "sp500_rank": 107, "fortune500_rank": 58}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 2, 4, 2, 3, 0], "total": 12, "isTopResearch": true, "rank": 188, "sp500_rank": 109, "fortune500_rank": 49}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 5, 0, 0], "total": 8, "isTopResearch": true, "rank": 110, "sp500_rank": 70, "fortune500_rank": 31}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [8.0, 12.0, 22.0, 0, 17.0, 20.0, 14.333333333333334, 6.916666666666667, 14.2, 16.142857142857142, 0], "total": 13.116883116883116, "isTopResearch": false, "rank": 444, "sp500_rank": 151, "fortune500_rank": 137}}, "patents": {"ai_patents": {"counts": [1, 0, 2, 12, 15, 27, 41, 58, 23, 0, 0], "total": 179, "table": null, "rank": 111, "sp500_rank": 76, "fortune500_rank": 39}, "ai_patents_growth": {"counts": [], "total": 57.771755495332734, "table": null, "rank": 181, "sp500_rank": 86, "fortune500_rank": 46}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 20, 120, 150, 270, 410, 580, 230, 0, 0], "total": 1790, "table": null, "rank": 111, "sp500_rank": 76, "fortune500_rank": 39}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "sp500_rank": 136, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 2, 5, 9, 7, 2, 0, 0], "total": 26, "table": "industry", "rank": 46, "sp500_rank": 35, "fortune500_rank": 22}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 1, 7, 12, 20, 26, 38, 10, 0, 0], "total": 115, "table": "industry", "rank": 67, "sp500_rank": 49, "fortune500_rank": 29}, "Banking_and_Finance": {"counts": [0, 0, 1, 3, 4, 7, 15, 15, 3, 0, 0], "total": 48, "table": "industry", "rank": 22, "sp500_rank": 17, "fortune500_rank": 11}, "Telecommunications": {"counts": [0, 0, 0, 4, 2, 5, 12, 12, 12, 0, 0], "total": 47, "table": "industry", "rank": 82, "sp500_rank": 62, "fortune500_rank": 35}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 5, 4, 10, 12, 20, 6, 0, 0], "total": 57, "table": "industry", "rank": 49, "sp500_rank": 38, "fortune500_rank": 21}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [1, 0, 0, 0, 2, 6, 2, 0, 0, 0, 0], "total": 11, "table": "application", "rank": 37, "sp500_rank": 26, "fortune500_rank": 21}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": null, "rank": 160, "sp500_rank": 91, "fortune500_rank": 48}, "Knowledge_Representation": {"counts": [0, 0, 0, 4, 2, 6, 5, 10, 2, 0, 0], "total": 29, "table": "application", "rank": 34, "sp500_rank": 27, "fortune500_rank": 19}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 3, 2, 3, 8, 15, 3, 0, 0], "total": 34, "table": "application", "rank": 49, "sp500_rank": 41, "fortune500_rank": 19}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290, "sp500_rank": 156, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 3, 8, 5, 1, 0, 0], "total": 18, "table": "application", "rank": 198, "sp500_rank": 115, "fortune500_rank": 55}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 1, 3, 5, 0, 0], "total": 10, "table": "application", "rank": 114, "sp500_rank": 84, "fortune500_rank": 47}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 165, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3964, "rank": 118, "sp500_rank": 71, "fortune500_rank": 71}, "ai_jobs": {"counts": null, "total": 435, "rank": 133, "sp500_rank": 86, "fortune500_rank": 75}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "J.P. Morgan is a global leader in financial services, offering solutions to the world's most important corporations, governments and institutions in more than 100 countries. As announced in early 2018, JPMorgan Chase will deploy $1.75 billion in philanthropic capital around the world by 2023. We also lead volunteer service activities for employees in local communities by utilizing our many resources, including those that stem from access to capital, economies of scale, global reach and expertise.", "company_site_link": "https://www.jpmorgan.com/about", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 623, "country": "United States", "website": "http://www.paloaltonetworks.com", "crunchbase": {"text": "af364c3b-ad3b-82e0-a89d-cda1f3ebf728", "url": "https://www.crunchbase.com/organization/palo-alto-networks"}, "child_crunchbase": [{"text": "8bbce6f6-ea68-0340-6948-ac885c1b84d8", "url": "https://www.crunchbase.com/organization/demisto"}], "linkedin": ["https://www.linkedin.com/company/palo-alto-networks"], "stage": "Mature", "name": "Palo Alto Networks", "patent_name": "palo alto networks", "continent": "North America", "local_logo": "palo_alto_networks.png", "aliases": "Palo Alto Networks, Inc; Paloalto", "permid_links": [{"text": 5051386946, "url": "https://permid.org/1-5051386946"}, {"text": 4296000356, "url": "https://permid.org/1-4296000356"}], "parent_info": null, "agg_child_info": "Demisto", "unagg_child_info": null, "market_filt": [{"text": "NYSE:PANW", "url": "https://www.google.com/finance/quote/nyse:panw"}], "market_full": [{"text": "FWB:5AP", "url": "https://www.google.com/finance/quote/5ap:fwb"}, {"text": "LSE:0KF5", "url": "https://www.google.com/finance/quote/0kf5:lse"}, {"text": "FRA:5AP", "url": "https://www.google.com/finance/quote/5ap:fra"}, {"text": "MUN:5AP", "url": "https://www.google.com/finance/quote/5ap:mun"}, {"text": "DUS:5AP", "url": "https://www.google.com/finance/quote/5ap:dus"}, {"text": "BMV:PANW", "url": "https://www.google.com/finance/quote/bmv:panw"}, {"text": "NYSE:PANW", "url": "https://www.google.com/finance/quote/nyse:panw"}, {"text": "XETR:5AP", "url": "https://www.google.com/finance/quote/5ap:xetr"}, {"text": "BER:5AP", "url": "https://www.google.com/finance/quote/5ap:ber"}], "crunchbase_description": "Palo Alto Networks is a multinational cybersecurity company that offers cybersecurity solutions for organizations.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Semantics", "field_count": 1}, {"field_name": "Hybrid system", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Categorical variable", "field_count": 1}, {"field_name": "Quantization (signal processing)", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 180, "cluster_count": 4}, {"cluster_id": 1621, "cluster_count": 2}, {"cluster_id": 26042, "cluster_count": 1}, {"cluster_id": 119695, "cluster_count": 1}, {"cluster_id": 23378, "cluster_count": 1}, {"cluster_id": 206, "cluster_count": 1}, {"cluster_id": 7570, "cluster_count": 1}, {"cluster_id": 4184, "cluster_count": 1}, {"cluster_id": 18693, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 23}, {"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 127, "referenced_count": 6}, {"ref_CSET_id": 115, "referenced_count": 5}, {"ref_CSET_id": 327, "referenced_count": 5}, {"ref_CSET_id": 37, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 4}, {"ref_CSET_id": 184, "referenced_count": 3}, {"ref_CSET_id": 623, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 3}], "tasks": [{"referent": "malware_classification", "task_count": 4}, {"referent": "classification", "task_count": 3}, {"referent": "android_malware_detection", "task_count": 1}, {"referent": "quantization", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}, {"referent": "community_detection", "task_count": 1}, {"referent": "adversarial", "task_count": 1}, {"referent": "social_network_analysis", "task_count": 1}, {"referent": "portfolio_optimization", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}], "methods": [{"referent": "deep_belief_network", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "sequence_to_sequence_models", "method_count": 1}, {"referent": "bert", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "taypo", "method_count": 1}, {"referent": "cgnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 1, 3, 3, 3, 15, 9, 10, 12, 7, 0], "total": 64, "isTopResearch": false, "rank": 582}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 2, 2, 2, 5, 2, 0], "total": 14, "isTopResearch": false, "rank": 359}, "ai_publications_growth": {"counts": [], "total": 30.0, "isTopResearch": false, "rank": 93}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 7, 17, 55, 62, 0], "total": 141, "isTopResearch": false, "rank": 450}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0.0, 3.5, 8.5, 11.0, 31.0, 0], "total": 10.071428571428571, "isTopResearch": false, "rank": 534}}, "patents": {"ai_patents": {"counts": [0, 2, 2, 5, 6, 7, 10, 7, 3, 0, 0], "total": 42, "table": null, "rank": 236}, "ai_patents_growth": {"counts": [], "total": 9.84126984126984, "table": null, "rank": 336}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 20, 20, 50, 60, 70, 100, 70, 30, 0, 0], "total": 420, "table": null, "rank": 236}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 2, 1, 4, 5, 3, 6, 5, 3, 0, 0], "total": 29, "table": "industry", "rank": 39}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 2, 1, 4, 6, 4, 8, 6, 3, 0, 0], "total": 34, "table": "industry", "rank": 143}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 2, 0, 5, 5, 6, 5, 4, 1, 0, 0], "total": 28, "table": "industry", "rank": 116}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 233}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 2, 0, 0, 2, 1, 1, 0, 0], "total": 6, "table": "application", "rank": 109}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3963, "rank": 119}, "ai_jobs": {"counts": null, "total": 151, "rank": 272}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services", "wikipedia_description": "Palo Alto Networks, Inc. (NYSE: PANW) is an American multinational cybersecurity company with headquarters in Santa Clara, California. Its core products are a platform that includes advanced firewalls and cloud-based offerings that extend those firewalls to cover other aspects of security. The company serves over 70,000 organizations in over 150 countries, including 85 of the Fortune 100. It is home to the Unit 42 threat research team and hosts the Ignite cybersecurity conference.", "wikipedia_link": "https://en.wikipedia.org/wiki/Palo_Alto_Networks", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1997, "country": "United States", "website": "https://www.libertymutualgroup.com/about-lm/corporate-information/overview", "crunchbase": {"text": " bce57147-c61a-670f-eefc-1b4409028464", "url": " https://www.crunchbase.com/organization/liberty-mutual-insurance-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/liberty-mutual-insurance"], "stage": "Unknown", "name": "Liberty Mutual Insurance Group", "patent_name": "Liberty Mutual Insurance Group", "continent": "North America", "local_logo": null, "aliases": "Liberty Insurance; Liberty Mutual Insurance Group", "permid_links": [{"text": 4298009155, "url": "https://permid.org/1-4298009155"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Virtual reality", "field_count": 1}, {"field_name": "Correlation coefficient", "field_count": 1}, {"field_name": "Blind spot", "field_count": 1}, {"field_name": "Model selection", "field_count": 1}, {"field_name": "Video camera", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Inertial measurement unit", "field_count": 1}, {"field_name": "Driving simulator", "field_count": 1}, {"field_name": "Bayesian probability", "field_count": 1}, {"field_name": "Bayesian network", "field_count": 1}], "clusters": [{"cluster_id": 23453, "cluster_count": 4}, {"cluster_id": 77384, "cluster_count": 3}, {"cluster_id": 9157, "cluster_count": 3}, {"cluster_id": 3727, "cluster_count": 3}, {"cluster_id": 27643, "cluster_count": 3}, {"cluster_id": 3357, "cluster_count": 2}, {"cluster_id": 21777, "cluster_count": 2}, {"cluster_id": 311, "cluster_count": 2}, {"cluster_id": 16120, "cluster_count": 1}, {"cluster_id": 2888, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1997, "referenced_count": 7}, {"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 1797, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "autonomous_driving", "task_count": 3}, {"referent": "manual_segmentation", "task_count": 2}, {"referent": "video_surveillance", "task_count": 2}, {"referent": "injury_prediction", "task_count": 2}, {"referent": "transfer_learning", "task_count": 2}, {"referent": "model_selection", "task_count": 1}, {"referent": "active_learning", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "trajectory_prediction", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 6}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "impala", "method_count": 2}, {"referent": "gru", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "ca", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "dmage", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [83, 71, 86, 75, 71, 23, 14, 1, 6, 3, 0], "total": 433, "isTopResearch": false, "rank": 297, "sp500_rank": 196}, "ai_publications": {"counts": [4, 2, 12, 2, 2, 1, 1, 0, 0, 0, 0], "total": 24, "isTopResearch": false, "rank": 273, "sp500_rank": 160}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [20, 13, 34, 74, 84, 97, 119, 127, 123, 92, 3], "total": 786, "isTopResearch": false, "rank": 212, "sp500_rank": 120}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [2, 2, 6, 0, 1, 0, 0, 0, 0, 0, 0], "total": 11, "isTopResearch": true, "rank": 106, "sp500_rank": 77}, "citations_per_article": {"counts": [5.0, 6.5, 2.8333333333333335, 37.0, 42.0, 97.0, 119.0, 0, 0, 0, 0], "total": 32.75, "isTopResearch": false, "rank": 171, "sp500_rank": 39}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525, "sp500_rank": 225}, "ai_patents_growth": {"counts": [], "total": -83.33333333333334, "table": null, "rank": 1575, "sp500_rank": 466}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 30, 10, 0, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525, "sp500_rank": 225}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 141, "sp500_rank": 91}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3949, "rank": 120, "sp500_rank": 72}, "ai_jobs": {"counts": null, "total": 784, "rank": 61, "sp500_rank": 42}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 1875, "country": "United States", "website": "https://www.ups.com/us/en/Home.page?", "crunchbase": {"text": "99931bff-be41-3c3b-3b76-4fede79cc5a0", "url": "https://www.crunchbase.com/organization/united-parcel-service"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ups"], "stage": "Mature", "name": "United Parcel Service Inc", "patent_name": "united parcel service inc", "continent": "North America", "local_logo": "united_parcel_service_inc.png", "aliases": "United Parcel Service; United Parcel Service Of America, Inc; United Parcel Service, Inc; Ups", "permid_links": [{"text": 4295912318, "url": "https://permid.org/1-4295912318"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:UPS", "url": "https://www.google.com/finance/quote/nyse:ups"}], "market_full": [{"text": "HAN:UPAB", "url": "https://www.google.com/finance/quote/han:upab"}, {"text": "UAX:UPS", "url": "https://www.google.com/finance/quote/uax:ups"}, {"text": "SGO:UPSCL", "url": "https://www.google.com/finance/quote/sgo:upscl"}, {"text": "VIE:UPSI", "url": "https://www.google.com/finance/quote/upsi:vie"}, {"text": "MCX:UPS-RM", "url": "https://www.google.com/finance/quote/mcx:ups-rm"}, {"text": "GER:UPABX", "url": "https://www.google.com/finance/quote/ger:upabx"}, {"text": "LSE:0R08", "url": "https://www.google.com/finance/quote/0r08:lse"}, {"text": "STU:UPAB", "url": "https://www.google.com/finance/quote/stu:upab"}, {"text": "DEU:UPS", "url": "https://www.google.com/finance/quote/deu:ups"}, {"text": "DUS:UPAB", "url": "https://www.google.com/finance/quote/dus:upab"}, {"text": "BER:UPAB", "url": "https://www.google.com/finance/quote/ber:upab"}, {"text": "NYQ:UPS", "url": "https://www.google.com/finance/quote/nyq:ups"}, {"text": "SAO:UPSS34", "url": "https://www.google.com/finance/quote/sao:upss34"}, {"text": "NYSE:UPS", "url": "https://www.google.com/finance/quote/nyse:ups"}, {"text": "BRN:UPAB", "url": "https://www.google.com/finance/quote/brn:upab"}, {"text": "MUN:UPAB", "url": "https://www.google.com/finance/quote/mun:upab"}, {"text": "SGO:UPS", "url": "https://www.google.com/finance/quote/sgo:ups"}, {"text": "HAM:UPAB", "url": "https://www.google.com/finance/quote/ham:upab"}, {"text": "MEX:UPS*", "url": "https://www.google.com/finance/quote/mex:ups*"}, {"text": "ASE:UPS", "url": "https://www.google.com/finance/quote/ase:ups"}, {"text": "FRA:UPAB", "url": "https://www.google.com/finance/quote/fra:upab"}], "crunchbase_description": "UPS is a package delivery company that offers the transportation of packages and freight and the facilitation of international trade.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Tracking (particle physics)", "field_count": 1}, {"field_name": "Robotic arm", "field_count": 1}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Human behavior", "field_count": 1}], "clusters": [{"cluster_id": 28578, "cluster_count": 3}, {"cluster_id": 21449, "cluster_count": 1}, {"cluster_id": 80225, "cluster_count": 1}, {"cluster_id": 37197, "cluster_count": 1}, {"cluster_id": 8919, "cluster_count": 1}, {"cluster_id": 88989, "cluster_count": 1}, {"cluster_id": 1628, "cluster_count": 1}, {"cluster_id": 72275, "cluster_count": 1}, {"cluster_id": 16817, "cluster_count": 1}, {"cluster_id": 53363, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 785, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "robots", "task_count": 2}, {"referent": "pedestrian_detection", "task_count": 1}, {"referent": "multimodal_deep_learning", "task_count": 1}, {"referent": "portfolio_optimization", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "sensor_fusion", "task_count": 1}, {"referent": "recommendation_systems", "task_count": 1}, {"referent": "automatic_writing", "task_count": 1}], "methods": [{"referent": "adashift", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "lime", "method_count": 1}, {"referent": "large_batch_optimization", "method_count": 1}, {"referent": "adam", "method_count": 1}, {"referent": "adagrad", "method_count": 1}, {"referent": "stochastic_gradient_variational_bayes", "method_count": 1}, {"referent": "ian", "method_count": 1}, {"referent": "loss_functions", "method_count": 1}, {"referent": "gradient_clipping", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [19, 13, 25, 19, 41, 44, 44, 32, 26, 8, 0], "total": 271, "isTopResearch": false, "rank": 369, "sp500_rank": 236, "fortune500_rank": 142}, "ai_publications": {"counts": [0, 1, 2, 0, 1, 0, 3, 0, 1, 1, 0], "total": 9, "isTopResearch": false, "rank": 437, "sp500_rank": 224, "fortune500_rank": 124}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400, "fortune500_rank": 419}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [4, 4, 5, 2, 5, 17, 40, 44, 45, 29, 0], "total": 195, "isTopResearch": false, "rank": 390, "sp500_rank": 176, "fortune500_rank": 116}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140, "fortune500_rank": 67}, "citations_per_article": {"counts": [0, 4.0, 2.5, 0, 5.0, 0, 13.333333333333334, 0, 45.0, 29.0, 0], "total": 21.666666666666668, "isTopResearch": false, "rank": 285, "sp500_rank": 81, "fortune500_rank": 91}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 5, 1, 3, 3, 0, 0, 0], "total": 13, "table": null, "rank": 372, "sp500_rank": 179, "fortune500_rank": 123}, "ai_patents_growth": {"counts": [], "total": 40.0, "table": null, "rank": 243, "sp500_rank": 111, "fortune500_rank": 73}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 50, 10, 30, 30, 0, 0, 0], "total": 130, "table": null, "rank": 372, "sp500_rank": 179, "fortune500_rank": 123}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 147, "sp500_rank": 103, "fortune500_rank": 45}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 116, "sp500_rank": 80, "fortune500_rank": 38}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 34, "sp500_rank": 26, "fortune500_rank": 8}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 2, 0, 2, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 336, "sp500_rank": 166, "fortune500_rank": 117}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 381, "sp500_rank": 174, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 5, 1, 3, 2, 0, 0, 0], "total": 12, "table": "industry", "rank": 140, "sp500_rank": 96, "fortune500_rank": 51}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "sp500_rank": 79, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 5, 1, 3, 2, 0, 0, 0], "total": 12, "table": "application", "rank": 113, "sp500_rank": 80, "fortune500_rank": 42}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "sp500_rank": 140, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3890, "rank": 121, "sp500_rank": 73, "fortune500_rank": 72}, "ai_jobs": {"counts": null, "total": 290, "rank": 186, "sp500_rank": 121, "fortune500_rank": 104}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "United Parcel Service (stylized as ups) is an American multinational package delivery and supply chain management company.", "wikipedia_link": "https://en.wikipedia.org/wiki/United_Parcel_Service", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1765, "country": "United States", "website": "http://www.akamai.com", "crunchbase": {"text": "6827f18b-09a0-58e4-ab12-0c26b8d2bda5", "url": "https://www.crunchbase.com/organization/akamai-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/akamai-technologies"], "stage": "Mature", "name": "Akamai Technologies", "patent_name": "akamai technologies", "continent": "North America", "local_logo": "akamai_technologies.png", "aliases": "Akamai Technologies, Inc., Akamai", "permid_links": [{"text": 4295912422, "url": "https://permid.org/1-4295912422"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:AKAM", "url": "https://www.google.com/finance/quote/akam:nasdaq"}], "market_full": [{"text": "FRA:AK3", "url": "https://www.google.com/finance/quote/ak3:fra"}, {"text": "VIE:AKAM", "url": "https://www.google.com/finance/quote/akam:vie"}, {"text": "HAN:AK3", "url": "https://www.google.com/finance/quote/ak3:han"}, {"text": "GER:AK3X", "url": "https://www.google.com/finance/quote/ak3x:ger"}, {"text": "STU:AK3", "url": "https://www.google.com/finance/quote/ak3:stu"}, {"text": "SAO:A1KA34", "url": "https://www.google.com/finance/quote/a1ka34:sao"}, {"text": "DEU:AKAM", "url": "https://www.google.com/finance/quote/akam:deu"}, {"text": "HAM:AK3", "url": "https://www.google.com/finance/quote/ak3:ham"}, {"text": "MEX:AKAM*", "url": "https://www.google.com/finance/quote/akam*:mex"}, {"text": "BER:AK3", "url": "https://www.google.com/finance/quote/ak3:ber"}, {"text": "MCX:AKAM-RM", "url": "https://www.google.com/finance/quote/akam-rm:mcx"}, {"text": "LSE:0HBQ", "url": "https://www.google.com/finance/quote/0hbq:lse"}, {"text": "MUN:AK3", "url": "https://www.google.com/finance/quote/ak3:mun"}, {"text": "DUS:AK3", "url": "https://www.google.com/finance/quote/ak3:dus"}, {"text": "NASDAQ:AKAM", "url": "https://www.google.com/finance/quote/akam:nasdaq"}], "crunchbase_description": "Akamai is a provider of cloud services that help enterprises provide secure, high-performing user experiences on any device.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Similitude", "field_count": 1}, {"field_name": "Smoothing", "field_count": 1}], "clusters": [{"cluster_id": 49734, "cluster_count": 1}, {"cluster_id": 17368, "cluster_count": 1}, {"cluster_id": 86960, "cluster_count": 1}, {"cluster_id": 12542, "cluster_count": 1}, {"cluster_id": 14994, "cluster_count": 1}, {"cluster_id": 22265, "cluster_count": 1}, {"cluster_id": 5555, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1765, "referenced_count": 1}], "tasks": [{"referent": "efficient_exploration", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "readmission_prediction", "task_count": 1}, {"referent": "binary_classification", "task_count": 1}, {"referent": "automated_writing_evaluation", "task_count": 1}, {"referent": "video_surveillance", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "face_recognition", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "video_similarity", "task_count": 1}], "methods": [{"referent": "random_erasing", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "triplet_entropy_loss", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 5, 10, 13, 14, 11, 11, 5, 8, 4, 0], "total": 90, "isTopResearch": false, "rank": 525, "fortune500_rank": 196}, "ai_publications": {"counts": [2, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [3, 3, 5, 3, 14, 16, 16, 19, 15, 10, 0], "total": 104, "isTopResearch": false, "rank": 499, "fortune500_rank": 135}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [1.5, 0, 0, 3.0, 14.0, 0, 16.0, 0, 0, 0, 0], "total": 20.8, "isTopResearch": false, "rank": 300, "fortune500_rank": 97}}, "patents": {"ai_patents": {"counts": [3, 1, 0, 2, 1, 5, 3, 3, 0, 0, 0], "total": 18, "table": null, "rank": 337, "fortune500_rank": 112}, "ai_patents_growth": {"counts": [], "total": 120.0, "table": null, "rank": 93, "fortune500_rank": 19}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 10, 0, 20, 10, 50, 30, 30, 0, 0, 0], "total": 180, "table": null, "rank": 337, "fortune500_rank": 112}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 1, 0, 1, 2, 2, 0, 0, 0], "total": 7, "table": "industry", "rank": 287, "fortune500_rank": 104}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [3, 1, 0, 2, 1, 5, 1, 2, 0, 0, 0], "total": 15, "table": "industry", "rank": 143, "fortune500_rank": 56}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 47, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3881, "rank": 122, "fortune500_rank": 73}, "ai_jobs": {"counts": null, "total": 97, "rank": 341, "fortune500_rank": 182}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Akamai Technologies, Inc. is a global content delivery network (CDN), cybersecurity, and cloud service company, providing web and Internet security services. Akamai's Intelligent Edge Platform is one of the world's largest distributed computing platforms. The company operates a network of servers around the world and rents out capacity on these servers to customers who want their websites to work faster by distributing content from locations near the user. When a user navigates to the URL of an Akamai customer, their browser is directed by Akamai's domain name system to a proximal edge server that can serve the requested content. Akamai's mapping system assigns each user to a proximal edge server using sophisticated algorithms such as stable matching and consistent hashing, enabling more reliable and faster web downloads. Further, Akamai implements DDoS mitigation and other security services in its edge server platform.", "wikipedia_link": "https://en.wikipedia.org/wiki/Akamai_Technologies", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2459, "country": "United States", "website": "https://www.pnc.com/", "crunchbase": {"text": "78859d50-15ff-fc2c-b2b5-90c2294ce766", "url": "https://www.crunchbase.com/organization/pnc-financial-services-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pnc-bank"], "stage": "Mature", "name": "PNC Financial Services", "patent_name": "pnc financial services", "continent": "North America", "local_logo": "pnc_financial_services.png", "aliases": "Natcity Investments, Inc; PNC; Pnc Financial Services Group; Pnc Financial Services Group Inc; Pnc Financial Services Group, Inc; The PNC Financial Services Group, Inc", "permid_links": [{"text": 4295904676, "url": "https://permid.org/1-4295904676"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PNC.PRP", "url": "https://www.google.com/finance/quote/nyse:pnc.prp"}, {"text": "NYSE:PNC", "url": "https://www.google.com/finance/quote/nyse:pnc"}], "market_full": [{"text": "DUS:PNP", "url": "https://www.google.com/finance/quote/dus:pnp"}, {"text": "FRA:PNP", "url": "https://www.google.com/finance/quote/fra:pnp"}, {"text": "HAN:PNP", "url": "https://www.google.com/finance/quote/han:pnp"}, {"text": "VIE:PNCF", "url": "https://www.google.com/finance/quote/pncf:vie"}, {"text": "NYQ:PNC", "url": "https://www.google.com/finance/quote/nyq:pnc"}, {"text": "DEU:PNC", "url": "https://www.google.com/finance/quote/deu:pnc"}, {"text": "NYSE:PNC.PRP", "url": "https://www.google.com/finance/quote/nyse:pnc.prp"}, {"text": "STU:PNP", "url": "https://www.google.com/finance/quote/pnp:stu"}, {"text": "GER:PNPX", "url": "https://www.google.com/finance/quote/ger:pnpx"}, {"text": "MCX:PNC-RM", "url": "https://www.google.com/finance/quote/mcx:pnc-rm"}, {"text": "SAO:PNCS34", "url": "https://www.google.com/finance/quote/pncs34:sao"}, {"text": "BRN:PNP", "url": "https://www.google.com/finance/quote/brn:pnp"}, {"text": "NYSE:PNC", "url": "https://www.google.com/finance/quote/nyse:pnc"}, {"text": "BER:PNP", "url": "https://www.google.com/finance/quote/ber:pnp"}, {"text": "MUN:PNP", "url": "https://www.google.com/finance/quote/mun:pnp"}, {"text": "LSE:0KEF", "url": "https://www.google.com/finance/quote/0kef:lse"}, {"text": "NYQ:PNC.PRP", "url": "https://www.google.com/finance/quote/nyq:pnc.prp"}, {"text": "PKC:PNCFO", "url": "https://www.google.com/finance/quote/pkc:pncfo"}, {"text": "ASE:PNC.PRP", "url": "https://www.google.com/finance/quote/ase:pnc.prp"}, {"text": "ASE:PNC", "url": "https://www.google.com/finance/quote/ase:pnc"}, {"text": "MEX:PNC*", "url": "https://www.google.com/finance/quote/mex:pnc*"}], "crunchbase_description": "PNC is a financial service company providing bank deposits products and services to its community.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 49127, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 553, "referenced_count": 1}], "tasks": [{"referent": "image_processing", "task_count": 1}], "methods": [{"referent": "graphs", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "value_function_estimation", "method_count": 1}, {"referent": "wgan_gp", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 3, 0, 0, 0, 1, 1, 2, 1, 2, 1], "total": 13, "isTopResearch": false, "rank": 888, "fortune500_rank": 314}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 901, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1.0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "fortune500_rank": 237}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3871, "rank": 123, "fortune500_rank": 74}, "ai_jobs": {"counts": null, "total": 582, "rank": 92, "fortune500_rank": 49}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "PNC Financial Services Group, Inc. (stylized as PNC) is a bank holding company and financial services corporation based in Pittsburgh, Pennsylvania. Its banking subsidiary, PNC Bank, operates in 21 states and the District of Columbia with 2,296 branches and 9,051 ATMs. The company also provides financial services such as asset management, wealth management, estate planning, loan servicing, and information processing.", "wikipedia_link": "https://en.wikipedia.org/wiki/PNC_Financial_Services", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 743, "country": "United States", "website": "http://www.vanguard.com", "crunchbase": {"text": "af757fc7-e344-6edc-6072-dba263e08bbc", "url": "https://www.crunchbase.com/organization/vanguard"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vanguard"], "stage": "Mature", "name": "Vanguard", "patent_name": "vanguard", "continent": "North America", "local_logo": "vanguard.png", "aliases": "The Vanguard Group; The Vanguard Group, Inc; Vanguard Group Inc", "permid_links": [{"text": 4297651992, "url": "https://permid.org/1-4297651992"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Check is a client-owned investment company that offers low-cost mutual funds, ETFs, advice, and related services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Discriminant", "field_count": 1}], "clusters": [{"cluster_id": 57852, "cluster_count": 1}, {"cluster_id": 86341, "cluster_count": 1}, {"cluster_id": 72871, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 815, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 2077, "referenced_count": 1}], "tasks": [{"referent": "categorization", "task_count": 1}, {"referent": "mobile_security", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "privacy_preserving_deep_learning", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [5, 4, 7, 3, 3, 3, 4, 8, 6, 3, 0], "total": 46, "isTopResearch": false, "rank": 633}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": -75.0, "isTopResearch": false, "rank": 1526}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 3, 3, 0], "total": 10, "isTopResearch": false, "rank": 760}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0, 0, 1.5, 3.0, 0, 0], "total": 2.5, "isTopResearch": false, "rank": 809}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3856, "rank": 124}, "ai_jobs": {"counts": null, "total": 436, "rank": 132}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2601, "country": "United Kingdom", "website": "http://www.baesystems.com/", "crunchbase": {"text": "d53020f6-8a56-9b9a-764d-bf209256b5b3", "url": "https://www.crunchbase.com/organization/bae-systems"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bae-systems"], "stage": "Mature", "name": "BAE Systems PLC", "patent_name": "bae systems plc", "continent": "Europe", "local_logo": "bae_systems_plc.png", "aliases": "BAE Systems; Bae Systems North America Inc", "permid_links": [{"text": 5000001291, "url": "https://permid.org/1-5000001291"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "STU:BSPA", "url": "https://www.google.com/finance/quote/bspa:stu"}, {"text": "BER:BSPA", "url": "https://www.google.com/finance/quote/ber:bspa"}, {"text": "BER:BSP", "url": "https://www.google.com/finance/quote/ber:bsp"}, {"text": "GER:BSPX", "url": "https://www.google.com/finance/quote/bspx:ger"}, {"text": "BRN:BSP", "url": "https://www.google.com/finance/quote/brn:bsp"}, {"text": "MEX:BA1N", "url": "https://www.google.com/finance/quote/ba1n:mex"}, {"text": "DEU:BAES", "url": "https://www.google.com/finance/quote/baes:deu"}, {"text": "MUN:BSP", "url": "https://www.google.com/finance/quote/bsp:mun"}, {"text": "PKC:BAESY", "url": "https://www.google.com/finance/quote/baesy:pkc"}, {"text": "PKC:BAESF", "url": "https://www.google.com/finance/quote/baesf:pkc"}, {"text": "FRA:BSP", "url": "https://www.google.com/finance/quote/bsp:fra"}, {"text": "LSE:BA", "url": "https://www.google.com/finance/quote/ba:lse"}, {"text": "FRA:BSPA", "url": "https://www.google.com/finance/quote/bspa:fra"}, {"text": "STU:BSP", "url": "https://www.google.com/finance/quote/bsp:stu"}, {"text": "DEU:BSPA", "url": "https://www.google.com/finance/quote/bspa:deu"}], "crunchbase_description": "BAE Systems designs, develops, and supports defense and aerospace systems used in the air, on land, at sea, and in space.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Sensor fusion", "field_count": 9}, {"field_name": "Feature (computer vision)", "field_count": 8}, {"field_name": "Cluster analysis", "field_count": 7}, {"field_name": "Anomaly detection", "field_count": 6}, {"field_name": "Robot", "field_count": 5}, {"field_name": "Analytics", "field_count": 4}, {"field_name": "Hyperspectral imaging", "field_count": 4}, {"field_name": "Task (computing)", "field_count": 4}, {"field_name": "Deep learning", "field_count": 4}, {"field_name": "Convolutional neural network", "field_count": 4}], "clusters": [{"cluster_id": 21854, "cluster_count": 12}, {"cluster_id": 16633, "cluster_count": 11}, {"cluster_id": 39142, "cluster_count": 6}, {"cluster_id": 31053, "cluster_count": 6}, {"cluster_id": 5011, "cluster_count": 5}, {"cluster_id": 88316, "cluster_count": 5}, {"cluster_id": 5109, "cluster_count": 4}, {"cluster_id": 7532, "cluster_count": 4}, {"cluster_id": 27714, "cluster_count": 4}, {"cluster_id": 75030, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 2601, "referenced_count": 144}, {"ref_CSET_id": 101, "referenced_count": 60}, {"ref_CSET_id": 163, "referenced_count": 41}, {"ref_CSET_id": 87, "referenced_count": 29}, {"ref_CSET_id": 115, "referenced_count": 17}, {"ref_CSET_id": 127, "referenced_count": 10}, {"ref_CSET_id": 708, "referenced_count": 8}, {"ref_CSET_id": 815, "referenced_count": 7}, {"ref_CSET_id": 553, "referenced_count": 6}, {"ref_CSET_id": 383, "referenced_count": 5}], "tasks": [{"referent": "classification", "task_count": 44}, {"referent": "target_recognition", "task_count": 21}, {"referent": "image_processing", "task_count": 15}, {"referent": "autonomous_vehicles", "task_count": 15}, {"referent": "video_surveillance", "task_count": 15}, {"referent": "object_detection", "task_count": 13}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 13}, {"referent": "robots", "task_count": 13}, {"referent": "information_extraction", "task_count": 12}, {"referent": "image_registration", "task_count": 11}], "methods": [{"referent": "vqa_models", "method_count": 21}, {"referent": "mad_learning", "method_count": 17}, {"referent": "double_q_learning", "method_count": 11}, {"referent": "recurrent_neural_networks", "method_count": 10}, {"referent": "q_learning", "method_count": 10}, {"referent": "convolutional_neural_networks", "method_count": 9}, {"referent": "3d_representations", "method_count": 9}, {"referent": "image_to_image_translation", "method_count": 8}, {"referent": "auto_classifier", "method_count": 8}, {"referent": "griffin_lim_algorithm", "method_count": 7}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [191, 160, 148, 140, 148, 183, 182, 125, 103, 65, 1], "total": 1446, "isTopResearch": false, "rank": 148, "sp500_rank": 115}, "ai_publications": {"counts": [20, 23, 21, 11, 13, 16, 27, 17, 25, 9, 0], "total": 182, "isTopResearch": false, "rank": 83, "sp500_rank": 65}, "ai_publications_growth": {"counts": [], "total": -17.99273783587509, "isTopResearch": false, "rank": 1313, "sp500_rank": 343}, "ai_pubs_top_conf": {"counts": [2, 3, 1, 2, 1, 1, 0, 0, 0, 0, 0], "total": 10, "isTopResearch": false, "rank": 114, "sp500_rank": 57}, "citation_counts": {"counts": [95, 132, 160, 183, 205, 261, 300, 365, 400, 301, 6], "total": 2408, "isTopResearch": false, "rank": 119, "sp500_rank": 75}, "cv_pubs": {"counts": [5, 9, 7, 5, 0, 5, 12, 8, 9, 3, 0], "total": 63, "isTopResearch": true, "rank": 75, "sp500_rank": 53}, "nlp_pubs": {"counts": [2, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 141, "sp500_rank": 83}, "robotics_pubs": {"counts": [2, 5, 5, 0, 2, 1, 5, 1, 4, 2, 0], "total": 27, "isTopResearch": true, "rank": 68, "sp500_rank": 52}, "citations_per_article": {"counts": [4.75, 5.739130434782608, 7.619047619047619, 16.636363636363637, 15.76923076923077, 16.3125, 11.11111111111111, 21.470588235294116, 16.0, 33.44444444444444, 0], "total": 13.23076923076923, "isTopResearch": false, "rank": 442, "sp500_rank": 149}}, "patents": {"ai_patents": {"counts": [8, 5, 8, 2, 10, 2, 14, 8, 3, 0, 0], "total": 60, "table": null, "rank": 207, "sp500_rank": 127}, "ai_patents_growth": {"counts": [], "total": 159.04761904761907, "table": null, "rank": 65, "sp500_rank": 28}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [80, 50, 80, 20, 100, 20, 140, 80, 30, 0, 0], "total": 600, "table": null, "rank": 207, "sp500_rank": 127}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 193, "sp500_rank": 115}, "Transportation": {"counts": [3, 0, 5, 2, 4, 0, 1, 3, 0, 0, 0], "total": 18, "table": "industry", "rank": 76, "sp500_rank": 59}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 131, "sp500_rank": 89}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 3, "table": null, "rank": 3, "sp500_rank": 3}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [0, 2, 0, 0, 4, 0, 5, 2, 0, 0, 0], "total": 13, "table": "industry", "rank": 233, "sp500_rank": 126}, "Banking_and_Finance": {"counts": [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 141, "sp500_rank": 91}, "Telecommunications": {"counts": [4, 1, 3, 0, 1, 1, 5, 1, 2, 0, 0], "total": 18, "table": "industry", "rank": 138, "sp500_rank": 87}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [3, 0, 1, 1, 3, 0, 2, 0, 0, 0, 0], "total": 10, "table": "industry", "rank": 149, "sp500_rank": 101}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22}, "Language_Processing": {"counts": [0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 75, "sp500_rank": 50}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 0, 1, 3, 0, 0, 0, 0], "total": 5, "table": null, "rank": 126, "sp500_rank": 77}, "Planning_and_Scheduling": {"counts": [3, 0, 1, 1, 3, 0, 2, 0, 0, 0, 0], "total": 10, "table": "application", "rank": 124, "sp500_rank": 89}, "Control": {"counts": [3, 0, 5, 2, 4, 1, 2, 4, 1, 0, 0], "total": 22, "table": "application", "rank": 85, "sp500_rank": 61}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 1, 0, 2, 0, 2, 2, 0, 0, 0], "total": 8, "table": "application", "rank": 269, "sp500_rank": 143}, "Analytics_and_Algorithms": {"counts": [4, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0], "total": 9, "table": "application", "rank": 122, "sp500_rank": 88}, "Measuring_and_Testing": {"counts": [1, 1, 0, 0, 1, 0, 4, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 147, "sp500_rank": 111}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3853, "rank": 125, "sp500_rank": 74}, "ai_jobs": {"counts": null, "total": 123, "rank": 305, "sp500_rank": 171}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "BAE Systems plc (BAE) is a British multinational arms, security, and aerospace company. Its headquarters are in London and Farnborough in the United Kingdom with operations worldwide. The company is the largest defence contractor in Europe and among the world's largest defence companies; it was ranked as the third-largest based on applicable 2017 revenues. Its largest operations are in the United Kingdom and United States, where its BAE Systems Inc. subsidiary is one of the six largest suppliers to the US Department of Defense. Other major markets include Australia, India, and Saudi Arabia, which account for about 20% of BAE's overall sales. It is the biggest manufacturer in Britain. The company was formed on 30 November 1999 by the \u00a37.7 billion purchase and merger of Marconi Electronic Systems (MES)\u2014the defence electronics and naval shipbuilding subsidiary of the General Electric Company plc (GEC)\u2014by British Aerospace, an aircraft, munitions and naval systems manufacturer.", "wikipedia_link": "https://en.wikipedia.org/wiki/BAE_Systems", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 566, "country": "United States", "website": "http://www.mckinsey.com", "crunchbase": {"text": "568b48b2-3f1e-4bd9-6921-b6d2e712fd20", "url": "https://www.crunchbase.com/organization/mckinsey-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mckinsey"], "stage": "Unknown", "name": "McKinsey & Company", "patent_name": "mckinsey & company", "continent": "North America", "local_logo": "mckinsey_&_company.png", "aliases": "Mckinsey; Mckinsey & Company Inc; Mckinsey & Company, Inc", "permid_links": [{"text": 4298538029, "url": "https://permid.org/1-4298538029"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "McKinsey & Company is a global management consulting firm and trusted advisor by businesses, governments, and institutions.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Pixel", "field_count": 1}, {"field_name": "Medical imaging", "field_count": 1}, {"field_name": "Ranking", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Subspace topology", "field_count": 1}, {"field_name": "Categorical variable", "field_count": 1}, {"field_name": "Learning analytics", "field_count": 1}], "clusters": [{"cluster_id": 20921, "cluster_count": 1}, {"cluster_id": 26637, "cluster_count": 1}, {"cluster_id": 13842, "cluster_count": 1}, {"cluster_id": 1895, "cluster_count": 1}, {"cluster_id": 37381, "cluster_count": 1}, {"cluster_id": 23266, "cluster_count": 1}, {"cluster_id": 303, "cluster_count": 1}, {"cluster_id": 36736, "cluster_count": 1}, {"cluster_id": 1117, "cluster_count": 1}, {"cluster_id": 43933, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 341, "referenced_count": 2}, {"ref_CSET_id": 566, "referenced_count": 2}, {"ref_CSET_id": 456, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 1952, "referenced_count": 1}, {"ref_CSET_id": 789, "referenced_count": 1}, {"ref_CSET_id": 663, "referenced_count": 1}, {"ref_CSET_id": 1934, "referenced_count": 1}, {"ref_CSET_id": 1633, "referenced_count": 1}], "tasks": [{"referent": "system_identification", "task_count": 3}, {"referent": "classification", "task_count": 2}, {"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "3d_medical_imaging_segmentation", "task_count": 2}, {"referent": "retrieval", "task_count": 2}, {"referent": "content_based_image_retrieval", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "knowledge_base", "task_count": 2}, {"referent": "image_retrieval", "task_count": 1}], "methods": [{"referent": "dac", "method_count": 1}, {"referent": "counting_methods", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "attention_mechanisms", "method_count": 1}, {"referent": "metrix", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "gaussian_process", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "autoencoder", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [98, 128, 67, 57, 116, 88, 52, 75, 56, 49, 0], "total": 786, "isTopResearch": false, "rank": 220}, "ai_publications": {"counts": [2, 2, 3, 0, 3, 1, 2, 2, 1, 0, 0], "total": 16, "isTopResearch": false, "rank": 341}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [42, 39, 57, 79, 94, 106, 114, 140, 115, 85, 0], "total": 871, "isTopResearch": false, "rank": 200}, "cv_pubs": {"counts": [0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [21.0, 19.5, 19.0, 0, 31.333333333333332, 106.0, 57.0, 70.0, 115.0, 0, 0], "total": 54.4375, "isTopResearch": false, "rank": 85}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 20, 10, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3851, "rank": 126}, "ai_jobs": {"counts": null, "total": 1735, "rank": 20}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "McKinsey & Company is an American worldwide management consulting firm, founded in 1926 by University of Chicago professor James O. McKinsey, that advises on strategic management to corporations, governments, and other organizations. Under the leadership of Marvin Bower, McKinsey expanded into Europe during the 1940s and 1950s. In the 1960s, McKinsey's Fred Gluck\u2014along with Boston Consulting Group's Bruce Henderson, Bill Bain at Bain & Company, and Harvard Business School's Michael Porter\u2014transformed corporate culture. A 1975 publication by McKinsey's John L. Neuman introduced the business practice of \"overhead value analysis\" that contributed to a downsizing trend that eliminated many jobs in middle management.McKinsey is the oldest and biggest of the \"Big Three\" management consultancies (MBB), it is seen as one of the most prestigious employers in the industry and has been recognized by Vault as the most prestigious consulting firm in the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/McKinsey_%26_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 639, "country": "United States", "website": "https://us.pg.com/", "crunchbase": {"text": "5d910027-649d-c49c-2aa0-863ddc47183f", "url": "https://www.crunchbase.com/organization/procter-and-gamble"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/procter-and-gamble"], "stage": "Mature", "name": "Procter & Gamble", "patent_name": "procter & gamble", "continent": "North America", "local_logo": "procter_&_gamble.png", "aliases": "P&G; Procter & Gamble Co; Procter & Gamble Company", "permid_links": [{"text": 4295903247, "url": "https://permid.org/1-4295903247"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PG", "url": "https://www.google.com/finance/quote/nyse:pg"}], "market_full": [{"text": "BER:PRG", "url": "https://www.google.com/finance/quote/ber:prg"}, {"text": "LON:0NOF", "url": "https://www.google.com/finance/quote/0nof:lon"}, {"text": "MUN:PRG", "url": "https://www.google.com/finance/quote/mun:prg"}, {"text": "FWB:PRG", "url": "https://www.google.com/finance/quote/fwb:prg"}, {"text": "NYSE:PG", "url": "https://www.google.com/finance/quote/nyse:pg"}, {"text": "XETR:PRG", "url": "https://www.google.com/finance/quote/prg:xetr"}, {"text": "DUS:PRG", "url": "https://www.google.com/finance/quote/dus:prg"}], "crunchbase_description": "Procter & Gamble Company offers a variety of consumer goods products.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Synthetic data", "field_count": 1}, {"field_name": "Interpretability", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Luminance", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Monocular vision", "field_count": 1}, {"field_name": "Robot", "field_count": 1}], "clusters": [{"cluster_id": 16721, "cluster_count": 2}, {"cluster_id": 55316, "cluster_count": 1}, {"cluster_id": 46053, "cluster_count": 1}, {"cluster_id": 21109, "cluster_count": 1}, {"cluster_id": 61387, "cluster_count": 1}, {"cluster_id": 23733, "cluster_count": 1}, {"cluster_id": 4310, "cluster_count": 1}, {"cluster_id": 6991, "cluster_count": 1}, {"cluster_id": 1839, "cluster_count": 1}, {"cluster_id": 46917, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 796, "referenced_count": 1}, {"ref_CSET_id": 3116, "referenced_count": 1}, {"ref_CSET_id": 820, "referenced_count": 1}, {"ref_CSET_id": 639, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}, {"ref_CSET_id": 201, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 1383, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "image_analysis", "task_count": 2}, {"referent": "skills_assessment", "task_count": 2}, {"referent": "methodology", "task_count": 1}, {"referent": "camera_shot_segmentation", "task_count": 1}, {"referent": "image_classification_tasks", "task_count": 1}, {"referent": "fine_grained_action_detection", "task_count": 1}, {"referent": "activeness_detection", "task_count": 1}, {"referent": "automated_essay_scoring", "task_count": 1}, {"referent": "automated_writing_evaluation", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "mad_learning", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "cgnn", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "wfst", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "feedforward_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [283, 276, 282, 281, 233, 286, 263, 247, 223, 177, 2], "total": 2553, "isTopResearch": false, "rank": 107, "sp500_rank": 85, "fortune500_rank": 41}, "ai_publications": {"counts": [2, 0, 0, 1, 1, 1, 2, 4, 7, 2, 0], "total": 20, "isTopResearch": false, "rank": 301, "sp500_rank": 172, "fortune500_rank": 92}, "ai_publications_growth": {"counts": [], "total": 34.523809523809526, "isTopResearch": false, "rank": 84, "sp500_rank": 42, "fortune500_rank": 26}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [32, 37, 37, 35, 41, 34, 43, 54, 111, 135, 14], "total": 573, "isTopResearch": false, "rank": 252, "sp500_rank": 135, "fortune500_rank": 74}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], "total": 4, "isTopResearch": true, "rank": 313, "sp500_rank": 158, "fortune500_rank": 84}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140, "fortune500_rank": 67}, "citations_per_article": {"counts": [16.0, 0, 0, 35.0, 41.0, 34.0, 21.5, 13.5, 15.857142857142858, 67.5, 0], "total": 28.65, "isTopResearch": false, "rank": 205, "sp500_rank": 52, "fortune500_rank": 63}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 3, 6, 10, 8, 11, 4, 0, 0], "total": 44, "table": null, "rank": 231, "sp500_rank": 134, "fortune500_rank": 75}, "ai_patents_growth": {"counts": [], "total": 28.055555555555557, "table": null, "rank": 279, "sp500_rank": 130, "fortune500_rank": 83}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [20, 0, 0, 30, 60, 100, 80, 110, 40, 0, 0], "total": 440, "table": null, "rank": 231, "sp500_rank": 134, "fortune500_rank": 75}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [2, 0, 0, 0, 2, 6, 3, 7, 2, 0, 0], "total": 22, "table": "industry", "rank": 49, "sp500_rank": 34, "fortune500_rank": 19}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 193, "sp500_rank": 115, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 4, 4, 2, 5, 0, 0, 0], "total": 16, "table": "industry", "rank": 51, "sp500_rank": 39, "fortune500_rank": 15}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 1, 2, 2, 3, 1, 2, 0, 0], "total": 12, "table": "industry", "rank": 240, "sp500_rank": 129, "fortune500_rank": 89}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0], "total": 4, "table": "industry", "rank": 249, "sp500_rank": 129, "fortune500_rank": 95}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 1, 2, 4, 6, 7, 1, 0, 0], "total": 21, "table": "industry", "rank": 99, "sp500_rank": 70, "fortune500_rank": 40}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191, "sp500_rank": 104, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "sp500_rank": 101, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0], "total": 5, "table": "application", "rank": 183, "sp500_rank": 120, "fortune500_rank": 63}, "Control": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 239, "sp500_rank": 140, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 2, 4, 8, 6, 9, 3, 0, 0], "total": 32, "table": "application", "rank": 148, "sp500_rank": 90, "fortune500_rank": 46}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 2, 1, 0, 1, 0, 0], "total": 5, "table": "application", "rank": 160, "sp500_rank": 107, "fortune500_rank": 66}, "Measuring_and_Testing": {"counts": [1, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0], "total": 5, "table": "application", "rank": 170, "sp500_rank": 121, "fortune500_rank": 59}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3814, "rank": 127, "sp500_rank": 75, "fortune500_rank": 75}, "ai_jobs": {"counts": null, "total": 785, "rank": 60, "sp500_rank": 41, "fortune500_rank": 33}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services", "wikipedia_description": "The Procter & Gamble Company (P&G) is an American multinational consumer goods corporation headquartered in Cincinnati, Ohio, founded in 1837 by William Procter and James Gamble. It specializes in a wide range of personal health/consumer health, and personal care and hygiene products; these products are organized into several segments including Beauty; Grooming; Health Care; Fabric & Home Care; and Baby, Feminine, & Family Care. Before the sale of Pringles to Kellogg's, its product portfolio also included food, snacks, and beverages. P&G is incorporated in Ohio.", "wikipedia_link": "https://en.wikipedia.org/wiki/Procter_%26_Gamble", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 798, "country": "Switzerland", "website": "http://www.abb.com", "crunchbase": {"text": "1a8d429b-c1a2-4788-fe84-1eb0975dbc60", "url": "https://www.crunchbase.com/organization/abb"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/abb"], "stage": "Mature", "name": "Abb", "patent_name": "abb", "continent": "Europe", "local_logo": "abb.png", "aliases": "Abb Group, Abb Ltd", "permid_links": [{"text": 4295890743, "url": "https://permid.org/1-4295890743"}], "parent_info": null, "agg_child_info": "ABB's Enterprise Software Product Group", "unagg_child_info": null, "market_filt": [{"text": "NYSE:ABB", "url": "https://www.google.com/finance/quote/abb:nyse"}], "market_full": [{"text": "SWX:ABBN", "url": "https://www.google.com/finance/quote/abbn:swx"}, {"text": "BMV:ABB/N", "url": "https://www.google.com/finance/quote/abb/n:bmv"}, {"text": "NYSE:ABB", "url": "https://www.google.com/finance/quote/abb:nyse"}, {"text": "NSE:ABB", "url": "https://www.google.com/finance/quote/abb:nse"}, {"text": "FRA:ABJA", "url": "https://www.google.com/finance/quote/abja:fra"}, {"text": "FWB:ABJA", "url": "https://www.google.com/finance/quote/abja:fwb"}, {"text": "OTC:ABLZF", "url": "https://www.google.com/finance/quote/ablzf:otc"}, {"text": "LON:0A6W", "url": "https://www.google.com/finance/quote/0a6w:lon"}, {"text": "STO:ABB", "url": "https://www.google.com/finance/quote/abb:sto"}], "crunchbase_description": "ABB provides power and automation technologies for smart grids, robotics, electric cars, renewable energy and motors.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 55}, {"field_name": "Anomaly detection", "field_count": 9}, {"field_name": "Reinforcement learning", "field_count": 8}, {"field_name": "Analytics", "field_count": 6}, {"field_name": "Calibration (statistics)", "field_count": 5}, {"field_name": "Deep learning", "field_count": 4}, {"field_name": "Support vector machine", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Augmented reality", "field_count": 4}, {"field_name": "Artificial neural network", "field_count": 3}], "clusters": [{"cluster_id": 4310, "cluster_count": 20}, {"cluster_id": 24449, "cluster_count": 9}, {"cluster_id": 4573, "cluster_count": 9}, {"cluster_id": 15853, "cluster_count": 8}, {"cluster_id": 84758, "cluster_count": 7}, {"cluster_id": 18847, "cluster_count": 6}, {"cluster_id": 631, "cluster_count": 6}, {"cluster_id": 38087, "cluster_count": 6}, {"cluster_id": 5125, "cluster_count": 5}, {"cluster_id": 75424, "cluster_count": 5}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 192}, {"ref_CSET_id": 798, "referenced_count": 166}, {"ref_CSET_id": 163, "referenced_count": 86}, {"ref_CSET_id": 87, "referenced_count": 49}, {"ref_CSET_id": 115, "referenced_count": 22}, {"ref_CSET_id": 23, "referenced_count": 16}, {"ref_CSET_id": 789, "referenced_count": 15}, {"ref_CSET_id": 800, "referenced_count": 15}, {"ref_CSET_id": 37, "referenced_count": 14}, {"ref_CSET_id": 792, "referenced_count": 12}], "tasks": [{"referent": "industrial_robots", "task_count": 85}, {"referent": "robots", "task_count": 71}, {"referent": "classification", "task_count": 32}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 22}, {"referent": "steering_control", "task_count": 21}, {"referent": "image_processing", "task_count": 11}, {"referent": "system_identification", "task_count": 10}, {"referent": "anomaly_detection", "task_count": 9}, {"referent": "speech_production", "task_count": 9}, {"referent": "data_mining", "task_count": 8}], "methods": [{"referent": "vqa_models", "method_count": 25}, {"referent": "recurrent_neural_networks", "method_count": 20}, {"referent": "optimization", "method_count": 19}, {"referent": "mad_learning", "method_count": 18}, {"referent": "root", "method_count": 16}, {"referent": "auto_classifier", "method_count": 13}, {"referent": "double_q_learning", "method_count": 13}, {"referent": "q_learning", "method_count": 12}, {"referent": "meta_learning_algorithms", "method_count": 11}, {"referent": "griffin_lim_algorithm", "method_count": 9}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [488, 575, 537, 544, 509, 525, 469, 279, 339, 171, 4], "total": 4440, "isTopResearch": false, "rank": 75, "sp500_rank": 65}, "ai_publications": {"counts": [22, 34, 24, 36, 36, 35, 45, 34, 45, 14, 0], "total": 325, "isTopResearch": false, "rank": 56, "sp500_rank": 45}, "ai_publications_growth": {"counts": [], "total": -20.326797385620914, "isTopResearch": false, "rank": 1328, "sp500_rank": 351}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 1, 1, 2, 0, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 157, "sp500_rank": 75}, "citation_counts": {"counts": [107, 167, 211, 252, 371, 411, 595, 735, 920, 750, 30], "total": 4549, "isTopResearch": false, "rank": 75, "sp500_rank": 51}, "cv_pubs": {"counts": [0, 2, 1, 0, 1, 1, 1, 4, 10, 2, 0], "total": 22, "isTopResearch": true, "rank": 130, "sp500_rank": 81}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102}, "robotics_pubs": {"counts": [19, 19, 15, 23, 23, 13, 22, 12, 10, 6, 0], "total": 162, "isTopResearch": true, "rank": 15, "sp500_rank": 13}, "citations_per_article": {"counts": [4.863636363636363, 4.911764705882353, 8.791666666666666, 7.0, 10.305555555555555, 11.742857142857142, 13.222222222222221, 21.61764705882353, 20.444444444444443, 53.57142857142857, 0], "total": 13.996923076923077, "isTopResearch": false, "rank": 430, "sp500_rank": 144}}, "patents": {"ai_patents": {"counts": [5, 6, 3, 10, 7, 23, 34, 44, 13, 0, 0], "total": 145, "table": null, "rank": 129, "sp500_rank": 84}, "ai_patents_growth": {"counts": [], "total": 101.9364267446109, "table": null, "rank": 113, "sp500_rank": 54}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [50, 60, 30, 100, 70, 230, 340, 440, 130, 0, 0], "total": 1450, "table": null, "rank": 129, "sp500_rank": 84}, "Physical_Sciences_and_Engineering": {"counts": [1, 1, 1, 1, 0, 0, 2, 6, 2, 0, 0], "total": 14, "table": null, "rank": 38, "sp500_rank": 32}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 193, "sp500_rank": 115}, "Transportation": {"counts": [0, 1, 1, 0, 0, 0, 0, 2, 2, 0, 0], "total": 6, "table": null, "rank": 123, "sp500_rank": 89}, "Industrial_and_Manufacturing": {"counts": [0, 0, 2, 0, 2, 10, 4, 11, 3, 0, 0], "total": 32, "table": "industry", "rank": 24, "sp500_rank": 21}, "Education": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 1, 4, 1, 3, 9, 11, 1, 0, 0], "total": 31, "table": "industry", "rank": 150, "sp500_rank": 86}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], "total": 3, "table": null, "rank": 141, "sp500_rank": 91}, "Telecommunications": {"counts": [0, 0, 2, 3, 1, 2, 8, 1, 3, 0, 0], "total": 20, "table": "industry", "rank": 135, "sp500_rank": 85}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [1, 2, 0, 0, 0, 2, 4, 5, 2, 0, 0], "total": 16, "table": "industry", "rank": 119, "sp500_rank": 84}, "Energy_Management": {"counts": [1, 2, 0, 3, 1, 3, 7, 10, 1, 0, 0], "total": 28, "table": "industry", "rank": 21, "sp500_rank": 19}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "sp500_rank": 67}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [2, 0, 0, 1, 0, 2, 6, 4, 0, 0, 0], "total": 15, "table": "application", "rank": 62, "sp500_rank": 45}, "Planning_and_Scheduling": {"counts": [1, 2, 0, 0, 0, 2, 4, 5, 2, 0, 0], "total": 16, "table": "application", "rank": 93, "sp500_rank": 67}, "Control": {"counts": [1, 1, 3, 6, 6, 14, 14, 25, 8, 0, 0], "total": 78, "table": "application", "rank": 38, "sp500_rank": 31}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 5, 14, 5, 2, 0, 0], "total": 27, "table": "application", "rank": 160, "sp500_rank": 96}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0], "total": 6, "table": null, "rank": 147, "sp500_rank": 103}, "Measuring_and_Testing": {"counts": [0, 1, 1, 0, 0, 4, 6, 6, 3, 0, 0], "total": 21, "table": "application", "rank": 80, "sp500_rank": 61}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3799, "rank": 128, "sp500_rank": 76}, "ai_jobs": {"counts": null, "total": 184, "rank": 237, "sp500_rank": 149}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "ABB Ltd (German: ABB AG, French, Italian, Romansh: ABB SA), formerly ASEA Brown Boveri, is a Swedish-Swiss multinational corporation headquartered in Z\u00fcrich, Switzerland, operating mainly in robotics, power, heavy electrical equipment, and automation technology areas. It is ranked 341st in the Fortune Global 500 list of 2018 and has been a global Fortune 500 company for 24 years. Until the sale of its electricity division in 2020, ABB was Switzerland's largest industrial employer. ABB is traded on the SIX Swiss Exchange in Z\u00fcrich, Nasdaq Stockholm and the New York Stock Exchange in the United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/ABB", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2037, "country": "United States", "website": "https://www.deere.com/en/index.html", "crunchbase": {"text": " d4ba41b4-077c-e292-5387-ed55aa4b597f", "url": " https://www.crunchbase.com/organization/john-deere"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/john-deere"], "stage": "Mature", "name": "Deere", "patent_name": "Deere", "continent": "North America", "local_logo": null, "aliases": "Deere; Deere & Company; John Deere; John Deere Gmbh & Co. Kg", "permid_links": [{"text": 4295903104, "url": "https://permid.org/1-4295903104"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DE", "url": "https://www.google.com/finance/quote/DE:NYSE"}], "market_full": [{"text": "BER:DCO", "url": "https://www.google.com/finance/quote/BER:DCO"}, {"text": "HAN:DCO", "url": "https://www.google.com/finance/quote/DCO:HAN"}, {"text": "MEX:DE", "url": "https://www.google.com/finance/quote/DE:MEX"}, {"text": "HAM:DCO", "url": "https://www.google.com/finance/quote/DCO:HAM"}, {"text": "NYSE:DE", "url": "https://www.google.com/finance/quote/DE:NYSE"}, {"text": "SWX:DE", "url": "https://www.google.com/finance/quote/DE:SWX"}, {"text": "FRA:DCO", "url": "https://www.google.com/finance/quote/DCO:FRA"}, {"text": "DUS:DCO", "url": "https://www.google.com/finance/quote/DCO:DUS"}, {"text": "ASE:DE", "url": "https://www.google.com/finance/quote/ASE:DE"}, {"text": "SAO:DEEC34", "url": "https://www.google.com/finance/quote/DEEC34:SAO"}, {"text": "VIE:DEER", "url": "https://www.google.com/finance/quote/DEER:VIE"}, {"text": "BRN:DCO", "url": "https://www.google.com/finance/quote/BRN:DCO"}, {"text": "STU:DCO", "url": "https://www.google.com/finance/quote/DCO:STU"}, {"text": "GER:DCOX", "url": "https://www.google.com/finance/quote/DCOX:GER"}, {"text": "BUE:DE3", "url": "https://www.google.com/finance/quote/BUE:DE3"}, {"text": "UAX:DE", "url": "https://www.google.com/finance/quote/DE:UAX"}, {"text": "LSE:0R2P", "url": "https://www.google.com/finance/quote/0R2P:LSE"}, {"text": "MUN:DCO", "url": "https://www.google.com/finance/quote/DCO:MUN"}, {"text": "DEU:DE", "url": "https://www.google.com/finance/quote/DE:DEU"}, {"text": "MCX:DE-RM", "url": "https://www.google.com/finance/quote/DE-RM:MCX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Advanced driver assistance systems", "field_count": 1}, {"field_name": "Ground truth", "field_count": 1}, {"field_name": "Agent-based model", "field_count": 1}, {"field_name": "Sensor fusion", "field_count": 1}, {"field_name": "Autonomous system (mathematics)", "field_count": 1}, {"field_name": "Unmanned ground vehicle", "field_count": 1}, {"field_name": "Robotic arm", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}, {"field_name": "Robot", "field_count": 1}], "clusters": [{"cluster_id": 6953, "cluster_count": 5}, {"cluster_id": 13210, "cluster_count": 4}, {"cluster_id": 60265, "cluster_count": 2}, {"cluster_id": 71837, "cluster_count": 2}, {"cluster_id": 32211, "cluster_count": 2}, {"cluster_id": 23319, "cluster_count": 1}, {"cluster_id": 148, "cluster_count": 1}, {"cluster_id": 65, "cluster_count": 1}, {"cluster_id": 31359, "cluster_count": 1}, {"cluster_id": 46005, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 2037, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 949, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}], "tasks": [{"referent": "autonomous_driving", "task_count": 4}, {"referent": "mobile_robot", "task_count": 3}, {"referent": "robots", "task_count": 3}, {"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "autonomous_navigation", "task_count": 3}, {"referent": "developmental_learning", "task_count": 3}, {"referent": "precision_agriculture", "task_count": 3}, {"referent": "active_object_localization", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "steering_control", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 4}, {"referent": "q_learning", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "atss", "method_count": 2}, {"referent": "automl", "method_count": 2}, {"referent": "gts", "method_count": 2}, {"referent": "momentum_rules", "method_count": 1}, {"referent": "rule_based_systems", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [75, 33, 44, 57, 64, 34, 61, 63, 56, 32, 0], "total": 519, "isTopResearch": false, "rank": 273, "sp500_rank": 183, "fortune500_rank": 105}, "ai_publications": {"counts": [6, 4, 4, 4, 1, 5, 4, 2, 3, 2, 0], "total": 35, "isTopResearch": false, "rank": 216, "sp500_rank": 132, "fortune500_rank": 67}, "ai_publications_growth": {"counts": [], "total": -11.111111111111112, "isTopResearch": false, "rank": 1273, "sp500_rank": 318, "fortune500_rank": 368}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [18, 18, 29, 34, 42, 40, 52, 86, 79, 83, 8], "total": 489, "isTopResearch": false, "rank": 273, "sp500_rank": 142, "fortune500_rank": 82}, "cv_pubs": {"counts": [0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [5, 1, 4, 2, 1, 0, 0, 0, 1, 0, 0], "total": 14, "isTopResearch": true, "rank": 94, "sp500_rank": 71, "fortune500_rank": 26}, "citations_per_article": {"counts": [3.0, 4.5, 7.25, 8.5, 42.0, 8.0, 13.0, 43.0, 26.333333333333332, 41.5, 0], "total": 13.971428571428572, "isTopResearch": false, "rank": 432, "sp500_rank": 145, "fortune500_rank": 133}}, "patents": {"ai_patents": {"counts": [3, 4, 2, 8, 13, 11, 22, 43, 4, 0, 0], "total": 110, "table": null, "rank": 152, "sp500_rank": 98, "fortune500_rank": 48}, "ai_patents_growth": {"counts": [], "total": 60.023310023310025, "table": null, "rank": 176, "sp500_rank": 84, "fortune500_rank": 45}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 40, 20, 80, 130, 110, 220, 430, 40, 0, 0], "total": 1100, "table": null, "rank": 152, "sp500_rank": 98, "fortune500_rank": 48}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 0, 1, 0, 0, 4, 9, 2, 0, 0], "total": 17, "table": "industry", "rank": 36, "sp500_rank": 30, "fortune500_rank": 14}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 2, 1, 4, 6, 4, 7, 17, 3, 0, 0], "total": 44, "table": "industry", "rank": 49, "sp500_rank": 38, "fortune500_rank": 17}, "Industrial_and_Manufacturing": {"counts": [0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 131, "sp500_rank": 89, "fortune500_rank": 46}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [3, 3, 1, 4, 9, 11, 14, 29, 1, 0, 0], "total": 75, "table": "industry", "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 1, 1, 2, 2, 4, 5, 1, 0, 0], "total": 17, "table": "industry", "rank": 207, "sp500_rank": 115, "fortune500_rank": 78}, "Banking_and_Finance": {"counts": [0, 0, 1, 0, 1, 0, 1, 1, 1, 0, 0], "total": 5, "table": null, "rank": 103, "sp500_rank": 71, "fortune500_rank": 36}, "Telecommunications": {"counts": [0, 0, 0, 3, 4, 2, 2, 12, 0, 0, 0], "total": 23, "table": "industry", "rank": 128, "sp500_rank": 80, "fortune500_rank": 51}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 1, 0, 2, 2, 1, 2, 0, 0, 0], "total": 8, "table": null, "rank": 168, "sp500_rank": 113, "fortune500_rank": 57}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 0, 2, 2, 1, 2, 0, 0, 0], "total": 8, "table": "application", "rank": 143, "sp500_rank": 100, "fortune500_rank": 51}, "Control": {"counts": [2, 2, 2, 5, 8, 5, 8, 18, 3, 0, 0], "total": 53, "table": "application", "rank": 49, "sp500_rank": 39, "fortune500_rank": 18}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 1, 4, 3, 11, 15, 0, 0, 0], "total": 35, "table": "application", "rank": 140, "sp500_rank": 86, "fortune500_rank": 43}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 2, 1, 0, 4, 6, 2, 15, 1, 0, 0], "total": 31, "table": "application", "rank": 60, "sp500_rank": 46, "fortune500_rank": 22}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3785, "rank": 129, "sp500_rank": 77, "fortune500_rank": 76}, "ai_jobs": {"counts": null, "total": 358, "rank": 155, "sp500_rank": 101, "fortune500_rank": 84}}, "sector": "Industrials", "business_sector": "Industrial Goods"}, {"cset_id": 836, "country": "United States", "website": "https://www.homedepot.com/", "crunchbase": {"text": "ca0dc3f8-5f97-fded-6e0e-14c53d5302d6", "url": "https://www.crunchbase.com/organization/the-home-depot-corporate"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-home-depot"], "stage": "Mature", "name": "The Home Depot", "patent_name": "The Home Depot", "continent": "North America", "local_logo": "the_home_depot.png", "aliases": "Home Depot Product Authority, Llc; The Home Depot", "permid_links": [{"text": 4295903148, "url": "https://permid.org/1-4295903148"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "The Home Depot provides customers with innovative home improvement products at a great value.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Recommender system", "field_count": 5}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "Categorization", "field_count": 2}, {"field_name": "Decision tree", "field_count": 1}, {"field_name": "Active learning (machine learning)", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}, {"field_name": "Precision and recall", "field_count": 1}, {"field_name": "Pattern recognition (psychology)", "field_count": 1}, {"field_name": "Sparse approximation", "field_count": 1}], "clusters": [{"cluster_id": 25062, "cluster_count": 3}, {"cluster_id": 148, "cluster_count": 2}, {"cluster_id": 2688, "cluster_count": 2}, {"cluster_id": 16136, "cluster_count": 1}, {"cluster_id": 64916, "cluster_count": 1}, {"cluster_id": 2505, "cluster_count": 1}, {"cluster_id": 32830, "cluster_count": 1}, {"cluster_id": 20825, "cluster_count": 1}, {"cluster_id": 7227, "cluster_count": 1}, {"cluster_id": 58403, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 37}, {"ref_CSET_id": 163, "referenced_count": 36}, {"ref_CSET_id": 87, "referenced_count": 36}, {"ref_CSET_id": 245, "referenced_count": 9}, {"ref_CSET_id": 21, "referenced_count": 9}, {"ref_CSET_id": 223, "referenced_count": 9}, {"ref_CSET_id": 184, "referenced_count": 8}, {"ref_CSET_id": 133, "referenced_count": 8}, {"ref_CSET_id": 127, "referenced_count": 7}, {"ref_CSET_id": 161, "referenced_count": 6}], "tasks": [{"referent": "recommendation", "task_count": 5}, {"referent": "action_understanding", "task_count": 3}, {"referent": "recommendation_systems", "task_count": 2}, {"referent": "information_retrieval", "task_count": 2}, {"referent": "multi_modal_person_identification", "task_count": 2}, {"referent": "human_activity_recognition", "task_count": 2}, {"referent": "computer_vision", "task_count": 2}, {"referent": "taxonomy_learning", "task_count": 1}, {"referent": "building_extraction", "task_count": 1}, {"referent": "code_search", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "3d_reconstruction", "method_count": 2}, {"referent": "3d_representations", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "cdcc_net", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "l1_regularization", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 4, 3, 5, 3, 5, 12, 4, 10, 0], "total": 47, "isTopResearch": false, "rank": 625, "sp500_rank": 332, "fortune500_rank": 232}, "ai_publications": {"counts": [0, 0, 0, 1, 4, 0, 2, 11, 2, 3, 0], "total": 23, "isTopResearch": false, "rank": 280, "sp500_rank": 163, "fortune500_rank": 85}, "ai_publications_growth": {"counts": [], "total": 139.3939393939394, "isTopResearch": false, "rank": 11, "sp500_rank": 6, "fortune500_rank": 3}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 5, 3, 3, 0], "total": 12, "isTopResearch": false, "rank": 104, "sp500_rank": 53, "fortune500_rank": 36}, "citation_counts": {"counts": [0, 0, 0, 1, 10, 22, 18, 28, 41, 24, 0], "total": 144, "isTopResearch": false, "rank": 448, "sp500_rank": 202, "fortune500_rank": 131}, "cv_pubs": {"counts": [0, 0, 0, 0, 3, 0, 0, 1, 1, 1, 0], "total": 6, "isTopResearch": true, "rank": 267, "sp500_rank": 137, "fortune500_rank": 73}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0], "total": 4, "isTopResearch": true, "rank": 161, "sp500_rank": 94, "fortune500_rank": 50}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 1.0, 2.5, 0, 9.0, 2.5454545454545454, 20.5, 8.0, 0], "total": 6.260869565217392, "isTopResearch": false, "rank": 676, "sp500_rank": 269, "fortune500_rank": 194}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 2, 3, 7, 1, 0, 0], "total": 15, "table": null, "rank": 355, "sp500_rank": 175, "fortune500_rank": 120}, "ai_patents_growth": {"counts": [], "total": 61.111111111111114, "table": null, "rank": 170, "sp500_rank": 80, "fortune500_rank": 41}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 20, 30, 70, 10, 0, 0], "total": 150, "table": null, "rank": 355, "sp500_rank": 175, "fortune500_rank": 120}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 2, 2, 2, 5, 1, 0, 0], "total": 12, "table": "industry", "rank": 240, "sp500_rank": 129, "fortune500_rank": 89}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 1, 3, 0, 0, 0], "total": 5, "table": "industry", "rank": 213, "sp500_rank": 136, "fortune500_rank": 72}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0], "total": 5, "table": "application", "rank": 318, "sp500_rank": 158, "fortune500_rank": 96}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3755, "rank": 130, "sp500_rank": 78, "fortune500_rank": 77}, "ai_jobs": {"counts": null, "total": 475, "rank": 119, "sp500_rank": 77, "fortune500_rank": 66}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers"}, {"cset_id": 411, "country": "Singapore", "website": "https://www.dbs.com", "crunchbase": {"text": "a2dfa88f-deca-00e2-2f53-df4f1ec192f5", "url": "https://www.crunchbase.com/organization/dbs-bank-ltd"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dbs-bank"], "stage": "Unknown", "name": "Dbs Bank", "patent_name": "dbs bank", "continent": "Asia", "local_logo": "dbs_bank.png", "aliases": "Dbs; Dbs Bank Ltd", "permid_links": [{"text": 4296823812, "url": "https://permid.org/1-4296823812"}], "parent_info": "Dbs Group Holdings Ltd", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "DBS Bank provides services in consumer, SME, and corporate banking activities.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Sentiment analysis", "field_count": 1}], "clusters": [{"cluster_id": 7496, "cluster_count": 1}, {"cluster_id": 24664, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 789, "referenced_count": 2}, {"ref_CSET_id": 787, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}], "tasks": [{"referent": "sentiment_detection", "task_count": 1}, {"referent": "action_understanding", "task_count": 1}, {"referent": "fine_grained_action_detection", "task_count": 1}, {"referent": "entity_embeddings", "task_count": 1}, {"referent": "link_prediction", "task_count": 1}, {"referent": "recommendation", "task_count": 1}, {"referent": "knowledge_graph_completion", "task_count": 1}, {"referent": "knowledge_graphs", "task_count": 1}], "methods": [{"referent": "multi_attention_network", "method_count": 1}, {"referent": "topic_embeddings", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 1, 0, 1, 2, 0, 5, 4, 2, 2, 0], "total": 19, "isTopResearch": false, "rank": 818}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 901}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0.0, 0, 0], "total": 0.5, "isTopResearch": false, "rank": 905}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3729, "rank": 131}, "ai_jobs": {"counts": null, "total": 569, "rank": 98}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "DBS Bank Ltd is a Singaporean multinational banking and financial services corporation headquartered in Marina Bay, Singapore. The company was known as The Development Bank of Singapore Limited, before the present name was adopted on 21 July 2003 to reflect its changing role as a global bank.", "wikipedia_link": "https://en.wikipedia.org/wiki/DBS_Bank", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 480, "country": "United States", "website": "https://www.l3harris.com/", "crunchbase": {"text": "d6a1a2c3-0c6d-f901-13f6-0a4cd56372a8", "url": "https://www.crunchbase.com/organization/harris"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/l3harris-technologies"], "stage": "Mature", "name": "L3Harris Technologies Inc", "patent_name": "l3harris technologies inc", "continent": "North America", "local_logo": "l3harris_technologies_inc.png", "aliases": "L3 Harris; L3 Harris Technologies; L3 Harris Technologies, Inc; L3Harris; L3Harris Technologies; L3Harris Technologies Inc; L3Harris Technologies, Inc", "permid_links": [{"text": 5000100407, "url": "https://permid.org/1-5000100407"}], "parent_info": "Renk AG (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LHX", "url": "https://www.google.com/finance/quote/lhx:nyse"}], "market_full": [{"text": "MOEX:LHX-RM", "url": "https://www.google.com/finance/quote/lhx-rm:moex"}, {"text": "LSE:0L3H", "url": "https://www.google.com/finance/quote/0l3h:lse"}, {"text": "NYSE:LHX", "url": "https://www.google.com/finance/quote/lhx:nyse"}, {"text": "NYQ:LHX", "url": "https://www.google.com/finance/quote/lhx:nyq"}, {"text": "FRA:HRS", "url": "https://www.google.com/finance/quote/fra:hrs"}], "crunchbase_description": "L3 Harris is a proven leader in tactical communications, geospatial systems, air traffic management, avionics, and space and intelligence.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Orientation (computer vision)", "field_count": 2}, {"field_name": "Probabilistic logic", "field_count": 2}, {"field_name": "3D reconstruction", "field_count": 1}, {"field_name": "Sensor fusion", "field_count": 1}, {"field_name": "Automated reasoning", "field_count": 1}, {"field_name": "Mutual information", "field_count": 1}, {"field_name": "Change detection", "field_count": 1}, {"field_name": "Independent component analysis", "field_count": 1}], "clusters": [{"cluster_id": 12680, "cluster_count": 4}, {"cluster_id": 69619, "cluster_count": 3}, {"cluster_id": 16633, "cluster_count": 3}, {"cluster_id": 86504, "cluster_count": 3}, {"cluster_id": 970, "cluster_count": 2}, {"cluster_id": 66497, "cluster_count": 2}, {"cluster_id": 69182, "cluster_count": 2}, {"cluster_id": 38508, "cluster_count": 2}, {"cluster_id": 48728, "cluster_count": 1}, {"cluster_id": 34736, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 480, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 9}, {"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 815, "referenced_count": 2}, {"ref_CSET_id": 1383, "referenced_count": 1}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 11}, {"referent": "decision_making", "task_count": 7}, {"referent": "data_mining", "task_count": 6}, {"referent": "image_registration", "task_count": 5}, {"referent": "change_detection", "task_count": 4}, {"referent": "image_processing", "task_count": 4}, {"referent": "remote_sensing", "task_count": 4}, {"referent": "data_classification", "task_count": 3}, {"referent": "probabilistic_deep_learning", "task_count": 3}, {"referent": "hypernym_discovery", "task_count": 3}], "methods": [{"referent": "auto_classifier", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "neural_probabilistic_language_model", "method_count": 3}, {"referent": "image_to_image_translation", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "sabn", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [68, 54, 63, 89, 63, 100, 54, 44, 37, 33, 0], "total": 605, "isTopResearch": false, "rank": 250, "fortune500_rank": 97}, "ai_publications": {"counts": [5, 10, 7, 5, 3, 5, 1, 0, 5, 3, 0], "total": 44, "isTopResearch": false, "rank": 193, "fortune500_rank": 60}, "ai_publications_growth": {"counts": [], "total": -70.0, "isTopResearch": false, "rank": 1523, "fortune500_rank": 434}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [19, 20, 29, 21, 20, 25, 28, 30, 30, 41, 2], "total": 265, "isTopResearch": false, "rank": 346, "fortune500_rank": 102}, "cv_pubs": {"counts": [3, 4, 3, 2, 2, 2, 1, 0, 2, 2, 0], "total": 21, "isTopResearch": true, "rank": 135, "fortune500_rank": 39}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 2, 1, 1, 0, 0, 0, 0, 1, 0, 0], "total": 5, "isTopResearch": true, "rank": 171, "fortune500_rank": 44}, "citations_per_article": {"counts": [3.8, 2.0, 4.142857142857143, 4.2, 6.666666666666667, 5.0, 28.0, 0, 6.0, 13.666666666666666, 0], "total": 6.0227272727272725, "isTopResearch": false, "rank": 681, "fortune500_rank": 197}}, "patents": {"ai_patents": {"counts": [3, 0, 1, 0, 1, 1, 7, 6, 5, 0, 0], "total": 24, "table": null, "rank": 295, "fortune500_rank": 100}, "ai_patents_growth": {"counts": [], "total": 195.2380952380952, "table": null, "rank": 44, "fortune500_rank": 7}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 0, 10, 0, 10, 10, 70, 60, 50, 0, 0], "total": 240, "table": null, "rank": 295, "fortune500_rank": 100}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 48, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], "total": 4, "table": "industry", "rank": 363, "fortune500_rank": 124}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 4, 1, 2, 0, 0], "total": 7, "table": "industry", "rank": 194, "fortune500_rank": 72}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [3, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 109, "fortune500_rank": 50}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "application", "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [3, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 19, "fortune500_rank": 12}, "Robotics": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "fortune500_rank": 8}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 1, 2, 4, 2, 0, 0], "total": 10, "table": "application", "rank": 241, "fortune500_rank": 73}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3679, "rank": 132, "fortune500_rank": 78}, "ai_jobs": {"counts": null, "total": 37, "rank": 544, "fortune500_rank": 280}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "L3Harris Technologies (L3Harris) is an American technology company, defense contractor and information technology services provider that produces C6ISR systems and products, wireless equipment, tactical radios, avionics and electronic systems, night vision equipment, and both terrestrial and spaceborne antennas for use in the government, defense, and commercial sectors. They specialize in surveillance solutions, microwave weaponry, and electronic warfare. It was formed from the merger of L3 Technologies (formerly L-3 Communications) and Harris Corporation on June 29, 2019, and is expected to be the sixth-largest defense contractor in the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/L3Harris_Technologies", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2253, "country": "United States", "website": "http://www.centurylink.com/", "crunchbase": {"text": "1c749f29-de15-bc2a-6cef-73643a25ece0", "url": "https://www.crunchbase.com/organization/centurylink"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lumentechnologies"], "stage": "Mature", "name": "Lumen Technologies", "patent_name": "lumen technologies", "continent": "North America", "local_logo": "lumen_technologies.png", "aliases": "CenturyLink; Centurytel; Lumen; Lumen Technologies, Inc", "permid_links": [{"text": 4295912040, "url": "https://permid.org/1-4295912040"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LUMN", "url": "https://www.google.com/finance/quote/lumn:nyse"}], "market_full": [{"text": "NYSE:LUMN", "url": "https://www.google.com/finance/quote/lumn:nyse"}, {"text": "STU:CYTH", "url": "https://www.google.com/finance/quote/cyth:stu"}, {"text": "MCX:LUMN-RM", "url": "https://www.google.com/finance/quote/lumn-rm:mcx"}, {"text": "MUN:CYTH", "url": "https://www.google.com/finance/quote/cyth:mun"}, {"text": "GER:CYTHX", "url": "https://www.google.com/finance/quote/cythx:ger"}, {"text": "DUS:CYTH", "url": "https://www.google.com/finance/quote/cyth:dus"}, {"text": "SAO:L1MN34", "url": "https://www.google.com/finance/quote/l1mn34:sao"}, {"text": "ASE:LUMN", "url": "https://www.google.com/finance/quote/ase:lumn"}, {"text": "DEU:CYTH", "url": "https://www.google.com/finance/quote/cyth:deu"}, {"text": "BRN:CYTH", "url": "https://www.google.com/finance/quote/brn:cyth"}, {"text": "MEX:LUMN*", "url": "https://www.google.com/finance/quote/lumn*:mex"}, {"text": "FRA:CYTH", "url": "https://www.google.com/finance/quote/cyth:fra"}, {"text": "LSE:0HVP", "url": "https://www.google.com/finance/quote/0hvp:lse"}, {"text": "NYQ:LUMN", "url": "https://www.google.com/finance/quote/lumn:nyq"}, {"text": "BER:CYTH", "url": "https://www.google.com/finance/quote/ber:cyth"}], "crunchbase_description": "Lumen delivers the most secure platform for applications and data to help businesses, government and communities deliver amazing experiences", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 1, 0, 0, 1, 1, 0, 1, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063, "fortune500_rank": 359}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 2, 7, 5, 6, 6, 2, 0, 0], "total": 29, "table": null, "rank": 273, "fortune500_rank": 95}, "ai_patents_growth": {"counts": [], "total": -2.8571428571428577, "table": null, "rank": 1429, "fortune500_rank": 407}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 20, 70, 50, 60, 60, 20, 0, 0], "total": 290, "table": null, "rank": 273, "fortune500_rank": 95}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 3, 3, 3, 4, 0, 0, 0], "total": 13, "table": "industry", "rank": 233, "fortune500_rank": 86}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 1, 2, 6, 4, 5, 4, 2, 0, 0], "total": 24, "table": "industry", "rank": 124, "fortune500_rank": 50}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 4, 2, 0, 0, 0], "total": 8, "table": "industry", "rank": 168, "fortune500_rank": 57}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 3, 2, 0, 0, 0], "total": 6, "table": "application", "rank": 163, "fortune500_rank": 55}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 47, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 2, 2, 1, 0, 0], "total": 6, "table": "application", "rank": 300, "fortune500_rank": 91}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 2, 3, 3, 3, 2, 1, 0, 0], "total": 15, "table": "application", "rank": 84, "fortune500_rank": 36}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3678, "rank": 133, "fortune500_rank": 79}, "ai_jobs": {"counts": null, "total": 170, "rank": 250, "fortune500_rank": 133}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1953, "country": "United States", "website": "http://www.cigna.com/", "crunchbase": {"text": "7c0fde81-158b-e8a8-36bd-6dd64bb7de64", "url": "https://www.crunchbase.com/organization/cigna"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cigna"], "stage": "Mature", "name": "Cigna Corp", "patent_name": "cigna corp", "continent": "North America", "local_logo": "cigna_corp.png", "aliases": "Cigna; Cigna Corporation", "permid_links": [{"text": 5063766000, "url": "https://permid.org/1-5063766000"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CI", "url": "https://www.google.com/finance/quote/ci:nyse"}], "market_full": [{"text": "LSE:0A77", "url": "https://www.google.com/finance/quote/0a77:lse"}, {"text": "NYSE:CI", "url": "https://www.google.com/finance/quote/ci:nyse"}, {"text": "MCX:CI-RM", "url": "https://www.google.com/finance/quote/ci-rm:mcx"}, {"text": "BRN:CGN", "url": "https://www.google.com/finance/quote/brn:cgn"}, {"text": "STU:CGN", "url": "https://www.google.com/finance/quote/cgn:stu"}, {"text": "SAO:C1IC34", "url": "https://www.google.com/finance/quote/c1ic34:sao"}, {"text": "BER:CGN", "url": "https://www.google.com/finance/quote/ber:cgn"}, {"text": "VIE:CIGN", "url": "https://www.google.com/finance/quote/cign:vie"}, {"text": "HAM:CGN", "url": "https://www.google.com/finance/quote/cgn:ham"}, {"text": "MUN:CGN", "url": "https://www.google.com/finance/quote/cgn:mun"}, {"text": "DEU:CI", "url": "https://www.google.com/finance/quote/ci:deu"}, {"text": "NYQ:CI", "url": "https://www.google.com/finance/quote/ci:nyq"}, {"text": "ASE:CI", "url": "https://www.google.com/finance/quote/ase:ci"}, {"text": "DUS:CGN", "url": "https://www.google.com/finance/quote/cgn:dus"}, {"text": "GER:CGNX", "url": "https://www.google.com/finance/quote/cgnx:ger"}, {"text": "MEX:CI*", "url": "https://www.google.com/finance/quote/ci*:mex"}, {"text": "FRA:CGN", "url": "https://www.google.com/finance/quote/cgn:fra"}, {"text": "HAN:CGN", "url": "https://www.google.com/finance/quote/cgn:han"}], "crunchbase_description": "CIGNA Corporation operates as a health service company that helps people to improve the health, well-being, and peace of mind.", "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 3, 9, 1, 3, 4, 6, 4, 6, 5, 0], "total": 46, "isTopResearch": false, "rank": 633, "sp500_rank": 334, "fortune500_rank": 237}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [1, 2, 0, 1, 2, 4, 11, 8, 4, 0, 0], "total": 33, "table": null, "rank": 262, "sp500_rank": 148, "fortune500_rank": 87}, "ai_patents_growth": {"counts": [], "total": 82.57575757575758, "table": null, "rank": 141, "sp500_rank": 65, "fortune500_rank": 30}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 20, 0, 10, 20, 40, 110, 80, 40, 0, 0], "total": 330, "table": null, "rank": 262, "sp500_rank": 148, "fortune500_rank": 87}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 1, 0, 1, 2, 2, 5, 4, 2, 0, 0], "total": 17, "table": "industry", "rank": 59, "sp500_rank": 40, "fortune500_rank": 25}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 2, 0, 0, 1, 3, 7, 4, 3, 0, 0], "total": 20, "table": "industry", "rank": 188, "sp500_rank": 106, "fortune500_rank": 70}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0], "total": 3, "table": "industry", "rank": 141, "sp500_rank": 91, "fortune500_rank": 50}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0], "total": 7, "table": "industry", "rank": 194, "sp500_rank": 108, "fortune500_rank": 72}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 1, 0, 0, 0, 2, 4, 3, 0, 0, 0], "total": 10, "table": "industry", "rank": 149, "sp500_rank": 101, "fortune500_rank": 54}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 5, 2, 1, 0, 0], "total": 8, "table": "application", "rank": 90, "sp500_rank": 59, "fortune500_rank": 26}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 0, 0, 2, 2, 2, 0, 0, 0], "total": 7, "table": "application", "rank": 153, "sp500_rank": 105, "fortune500_rank": 53}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0], "total": 3, "table": "application", "rank": 390, "sp500_rank": 183, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3669, "rank": 134, "sp500_rank": 79, "fortune500_rank": 80}, "ai_jobs": {"counts": null, "total": 560, "rank": 101, "sp500_rank": 64, "fortune500_rank": 55}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2107, "country": "United States", "website": "https://www.micron.com/", "crunchbase": {"text": " f2228766-a19f-97d4-64e8-f197718c86df", "url": " https://www.crunchbase.com/organization/micron-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/micron-technology"], "stage": "Mature", "name": "Micron Technology", "patent_name": "Micron Technology", "continent": "North America", "local_logo": null, "aliases": "Micron Technology; Micron Technology, Inc", "permid_links": [{"text": 4295903176, "url": "https://permid.org/1-4295903176"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:MU", "url": "https://www.google.com/finance/quote/MU:NASDAQ"}], "market_full": [{"text": "SAO:MUTC34", "url": "https://www.google.com/finance/quote/MUTC34:SAO"}, {"text": "HAN:MTE", "url": "https://www.google.com/finance/quote/HAN:MTE"}, {"text": "MEX:MU*", "url": "https://www.google.com/finance/quote/MEX:MU*"}, {"text": "MUN:MTE", "url": "https://www.google.com/finance/quote/MTE:MUN"}, {"text": "NASDAQ:MU", "url": "https://www.google.com/finance/quote/MU:NASDAQ"}, {"text": "MIL:MU", "url": "https://www.google.com/finance/quote/MIL:MU"}, {"text": "DEU:MU", "url": "https://www.google.com/finance/quote/DEU:MU"}, {"text": "GER:MTEX", "url": "https://www.google.com/finance/quote/GER:MTEX"}, {"text": "VIE:MU", "url": "https://www.google.com/finance/quote/MU:VIE"}, {"text": "SWX:MU", "url": "https://www.google.com/finance/quote/MU:SWX"}, {"text": "FRA:MTE", "url": "https://www.google.com/finance/quote/FRA:MTE"}, {"text": "BER:MTE", "url": "https://www.google.com/finance/quote/BER:MTE"}, {"text": "STU:MTE", "url": "https://www.google.com/finance/quote/MTE:STU"}, {"text": "LSE:0R2T", "url": "https://www.google.com/finance/quote/0R2T:LSE"}, {"text": "HAM:MTE", "url": "https://www.google.com/finance/quote/HAM:MTE"}, {"text": "MCX:MU-RM", "url": "https://www.google.com/finance/quote/MCX:MU-RM"}, {"text": "BRN:MTE", "url": "https://www.google.com/finance/quote/BRN:MTE"}, {"text": "DUS:MTE", "url": "https://www.google.com/finance/quote/DUS:MTE"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [6, 7, 5, 11, 3, 3, 3, 7, 11, 10, 0], "total": 66, "isTopResearch": false, "rank": 574, "fortune500_rank": 213}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3665, "rank": 135, "fortune500_rank": 81}, "ai_jobs": {"counts": null, "total": 611, "rank": 88, "fortune500_rank": 46}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 837, "country": "United States", "website": "http://www.nielsen.com/", "crunchbase": {"text": "0e1e9d57-5c31-23ed-1d3f-052276d7dea8", "url": "https://www.crunchbase.com/organization/nielsen"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nielsen"], "stage": "Mature", "name": "Nielsen", "patent_name": "Nielsen", "continent": "North America", "local_logo": "nielsen.png", "aliases": "Nielsen; Nielsen Holdings; The Nielsen Company", "permid_links": [{"text": 5045849000, "url": "https://permid.org/1-5045849000"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NLSN", "url": "https://www.google.com/finance/quote/NLSN:NYSE"}], "market_full": [{"text": "DEU:NHLG", "url": "https://www.google.com/finance/quote/DEU:NHLG"}, {"text": "BER:NHL", "url": "https://www.google.com/finance/quote/BER:NHL"}, {"text": "NYSE:NLSN", "url": "https://www.google.com/finance/quote/NLSN:NYSE"}, {"text": "MUN:NHL", "url": "https://www.google.com/finance/quote/MUN:NHL"}, {"text": "LSE:0XI7", "url": "https://www.google.com/finance/quote/0XI7:LSE"}, {"text": "STU:NHL", "url": "https://www.google.com/finance/quote/NHL:STU"}, {"text": "ASE:NHLN", "url": "https://www.google.com/finance/quote/ASE:NHLN"}, {"text": "NYQ:NLSN", "url": "https://www.google.com/finance/quote/NLSN:NYQ"}, {"text": "FRA:NHL", "url": "https://www.google.com/finance/quote/FRA:NHL"}], "crunchbase_description": "Nielsen provides a comprehensive understanding of what consumers watch and buy.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Knowledge extraction", "field_count": 1}, {"field_name": "Unsupervised learning", "field_count": 1}], "clusters": [{"cluster_id": 68368, "cluster_count": 1}, {"cluster_id": 33, "cluster_count": 1}, {"cluster_id": 44101, "cluster_count": 1}, {"cluster_id": 17100, "cluster_count": 1}, {"cluster_id": 45750, "cluster_count": 1}, {"cluster_id": 5895, "cluster_count": 1}, {"cluster_id": 1623, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 837, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "classification_tasks", "task_count": 1}, {"referent": "language_identification", "task_count": 1}, {"referent": "active_learning", "task_count": 1}, {"referent": "document_classification", "task_count": 1}, {"referent": "translation", "task_count": 1}, {"referent": "review_generation", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}, {"referent": "sentiment_detection", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "knowledge_base", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 1}, {"referent": "context2vec", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "k_means_clustering", "method_count": 1}, {"referent": "spp_net", "method_count": 1}, {"referent": "crossvit", "method_count": 1}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [15, 14, 14, 20, 18, 9, 11, 8, 8, 2, 0], "total": 119, "isTopResearch": false, "rank": 483}, "ai_publications": {"counts": [0, 0, 1, 1, 1, 1, 1, 2, 0, 0, 0], "total": 7, "isTopResearch": false, "rank": 481}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 2, 6, 4, 18, 13, 0], "total": 44, "isTopResearch": false, "rank": 602}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0.0, 0.0, 1.0, 2.0, 6.0, 2.0, 0, 0, 0], "total": 6.285714285714286, "isTopResearch": false, "rank": 673}}, "patents": {"ai_patents": {"counts": [5, 4, 16, 14, 3, 15, 11, 18, 4, 0, 0], "total": 90, "table": null, "rank": 168}, "ai_patents_growth": {"counts": [], "total": 145.65656565656565, "table": null, "rank": 77}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [50, 40, 160, 140, 30, 150, 110, 180, 40, 0, 0], "total": 900, "table": null, "rank": 168}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 2, 3, 6, 1, 8, 5, 7, 1, 0, 0], "total": 33, "table": "industry", "rank": 148}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 4, 6, 5, 2, 8, 7, 7, 3, 0, 0], "total": 42, "table": "industry", "rank": 89}, "Networks__eg_social_IOT_etc": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 55}, "Business": {"counts": [3, 3, 8, 8, 2, 4, 4, 6, 0, 0, 0], "total": 38, "table": "industry", "rank": 67}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 37}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 4, 1, 2, 1, 0, 0], "total": 8, "table": "application", "rank": 90}, "Knowledge_Representation": {"counts": [1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 162}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 3, 3, 0, 3, 3, 8, 0, 0, 0], "total": 20, "table": "application", "rank": 186}, "Analytics_and_Algorithms": {"counts": [0, 3, 6, 1, 1, 4, 2, 2, 1, 0, 0], "total": 20, "table": "application", "rank": 65}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3575, "rank": 136}, "ai_jobs": {"counts": null, "total": 2020, "rank": 18}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services"}, {"cset_id": 1962, "country": null, "website": "https://www.bayer.com/", "crunchbase": {"text": " 95acbd57-b0f8-eeb6-c8f4-c71224afbe4f", "url": " https://www.crunchbase.com/organization/bayer-ag-germany"}, "child_crunchbase": [{"text": "db4131b9-e838-0577-2326-e72a959dbbb3", "url": "https://www.crunchbase.com/organization/monsanto"}, {"text": "3914e73c-d3e1-3b82-f482-b40e0e6bf946", "url": "https://www.crunchbase.com/organization/the-climate-corporation"}], "linkedin": ["https://www.linkedin.com/company/monsanto", "https://www.linkedin.com/company/bayer", "https://www.linkedin.com/company/climate-llc"], "stage": "Mature", "name": "Bayer", "patent_name": "bayer", "continent": null, "local_logo": null, "aliases": "Bayer Ag; Bayer Aktiengesellschaft", "permid_links": [{"text": 4295901599, "url": "https://permid.org/1-4295901599"}, {"text": 4295869217, "url": "https://permid.org/1-4295869217"}, {"text": 4297602987, "url": "https://permid.org/1-4297602987"}], "parent_info": null, "agg_child_info": "Monsanto, The Climate Corporation", "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "BER:BAYN", "url": "https://www.google.com/finance/quote/BAYN:BER"}, {"text": "VIE:BAYN", "url": "https://www.google.com/finance/quote/BAYN:VIE"}, {"text": "DEU:BAYA", "url": "https://www.google.com/finance/quote/BAYA:DEU"}, {"text": "BER:BAYA", "url": "https://www.google.com/finance/quote/BAYA:BER"}, {"text": "FRA:BAYN", "url": "https://www.google.com/finance/quote/BAYN:FRA"}, {"text": "STU:BAYN", "url": "https://www.google.com/finance/quote/BAYN:STU"}, {"text": "BRN:BAYN", "url": "https://www.google.com/finance/quote/BAYN:BRN"}, {"text": "LSE:0P6S", "url": "https://www.google.com/finance/quote/0P6S:LSE"}, {"text": "BUE:BAYN3", "url": "https://www.google.com/finance/quote/BAYN3:BUE"}, {"text": "HAN:BAYN", "url": "https://www.google.com/finance/quote/BAYN:HAN"}, {"text": "DUS:BAYN", "url": "https://www.google.com/finance/quote/BAYN:DUS"}, {"text": "STU:BAYA", "url": "https://www.google.com/finance/quote/BAYA:STU"}, {"text": "SWX:BAYN", "url": "https://www.google.com/finance/quote/BAYN:SWX"}, {"text": "EBT:BAYND", "url": "https://www.google.com/finance/quote/BAYNd:EBT"}, {"text": "GER:BAYX.N", "url": "https://www.google.com/finance/quote/BAYX.N:GER"}, {"text": "PKC:BAYRY", "url": "https://www.google.com/finance/quote/BAYRY:PKC"}, {"text": "MIL:BAY", "url": "https://www.google.com/finance/quote/BAY:MIL"}, {"text": "FRA:BAYA", "url": "https://www.google.com/finance/quote/BAYA:FRA"}, {"text": "BUD:BAYER", "url": "https://www.google.com/finance/quote/BAYER:BUD"}, {"text": "MEX:BAYNN", "url": "https://www.google.com/finance/quote/BAYNN:MEX"}, {"text": "MUN:BAYA", "url": "https://www.google.com/finance/quote/BAYA:MUN"}, {"text": "DEU:BAYGN", "url": "https://www.google.com/finance/quote/BAYGn:DEU"}, {"text": "HAM:BAYN", "url": "https://www.google.com/finance/quote/BAYN:HAM"}, {"text": "MUN:BAYN", "url": "https://www.google.com/finance/quote/BAYN:MUN"}, {"text": "PKC:BAYZF", "url": "https://www.google.com/finance/quote/BAYZF:PKC"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robustness (computer science)", "field_count": 3}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Voxel", "field_count": 2}, {"field_name": "Quantitative structure\u2013activity relationship", "field_count": 2}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Fingerprint (computing)", "field_count": 2}, {"field_name": "Classifier (UML)", "field_count": 2}, {"field_name": "Hyperspectral imaging", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}], "clusters": [{"cluster_id": 23169, "cluster_count": 9}, {"cluster_id": 12231, "cluster_count": 3}, {"cluster_id": 298, "cluster_count": 3}, {"cluster_id": 8513, "cluster_count": 2}, {"cluster_id": 1168, "cluster_count": 2}, {"cluster_id": 18418, "cluster_count": 2}, {"cluster_id": 28256, "cluster_count": 2}, {"cluster_id": 30192, "cluster_count": 2}, {"cluster_id": 9014, "cluster_count": 2}, {"cluster_id": 29223, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 133}, {"ref_CSET_id": 87, "referenced_count": 50}, {"ref_CSET_id": 163, "referenced_count": 47}, {"ref_CSET_id": 1962, "referenced_count": 22}, {"ref_CSET_id": 341, "referenced_count": 15}, {"ref_CSET_id": 319, "referenced_count": 8}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 1633, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 7}, {"ref_CSET_id": 127, "referenced_count": 6}], "tasks": [{"referent": "classification", "task_count": 13}, {"referent": "drug_discovery", "task_count": 12}, {"referent": "disease_detection", "task_count": 8}, {"referent": "image_analysis", "task_count": 7}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "developmental_learning", "task_count": 5}, {"referent": "classification_tasks", "task_count": 5}, {"referent": "segmentation", "task_count": 5}, {"referent": "image_processing", "task_count": 4}, {"referent": "natural_language_processing", "task_count": 4}], "methods": [{"referent": "vqa_models", "method_count": 13}, {"referent": "3d_representations", "method_count": 9}, {"referent": "recurrent_neural_networks", "method_count": 9}, {"referent": "mad_learning", "method_count": 8}, {"referent": "self_supervised_learning", "method_count": 6}, {"referent": "generative_models", "method_count": 5}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "q_learning", "method_count": 4}, {"referent": "l1_regularization", "method_count": 4}, {"referent": "ggs_nns", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1352, 1389, 1442, 1460, 1190, 1289, 1416, 1256, 1251, 1105, 9], "total": 13159, "isTopResearch": false, "rank": 29, "sp500_rank": 26}, "ai_publications": {"counts": [2, 3, 6, 1, 9, 10, 11, 23, 25, 6, 0], "total": 96, "isTopResearch": false, "rank": 123, "sp500_rank": 86}, "ai_publications_growth": {"counts": [], "total": 13.928853754940713, "isTopResearch": false, "rank": 138, "sp500_rank": 71}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 5, 1, 0], "total": 8, "isTopResearch": false, "rank": 127, "sp500_rank": 63}, "citation_counts": {"counts": [39, 57, 85, 112, 145, 199, 372, 562, 784, 781, 21], "total": 3157, "isTopResearch": false, "rank": 96, "sp500_rank": 63}, "cv_pubs": {"counts": [0, 2, 0, 0, 2, 3, 3, 4, 3, 0, 0], "total": 17, "isTopResearch": true, "rank": 154, "sp500_rank": 96}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 5, 7, 1, 0], "total": 13, "isTopResearch": true, "rank": 81, "sp500_rank": 53}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [19.5, 19.0, 14.166666666666666, 112.0, 16.11111111111111, 19.9, 33.81818181818182, 24.434782608695652, 31.36, 130.16666666666666, 0], "total": 32.885416666666664, "isTopResearch": false, "rank": 169, "sp500_rank": 37}}, "patents": {"ai_patents": {"counts": [1, 3, 6, 10, 11, 28, 29, 16, 8, 0, 0], "total": 112, "table": null, "rank": 151, "sp500_rank": 97}, "ai_patents_growth": {"counts": [], "total": 37.76309896999552, "table": null, "rank": 249, "sp500_rank": 113}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 30, 60, 100, 110, 280, 290, 160, 80, 0, 0], "total": 1120, "table": null, "rank": 151, "sp500_rank": 97}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 1, 1, 2, 3, 2, 1, 0, 0, 0], "total": 11, "table": "industry", "rank": 49, "sp500_rank": 42}, "Life_Sciences": {"counts": [0, 1, 1, 1, 2, 3, 12, 5, 0, 0, 0], "total": 25, "table": "industry", "rank": 42, "sp500_rank": 30}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 193, "sp500_rank": 115}, "Transportation": {"counts": [0, 0, 0, 0, 1, 4, 2, 0, 0, 0, 0], "total": 7, "table": null, "rank": 112, "sp500_rank": 83}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 3, 5, 8, 10, 21, 10, 6, 0, 0, 0], "total": 63, "table": "industry", "rank": 2, "sp500_rank": 2}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 2, 1, 5, 1, 8, 1, 3, 0, 0, 0], "total": 21, "table": "industry", "rank": 186, "sp500_rank": 104}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 0, 0, 1, 1, 1, 3, 0, 0, 0, 0], "total": 6, "table": null, "rank": 204, "sp500_rank": 111}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 1, 2, 5, 6, 10, 5, 3, 1, 0, 0], "total": 33, "table": "industry", "rank": 75, "sp500_rank": 54}, "Energy_Management": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 0, 1, 4, 0, 0, 0, 0], "total": 6, "table": null, "rank": 109, "sp500_rank": 68}, "Planning_and_Scheduling": {"counts": [0, 1, 2, 5, 6, 9, 4, 3, 1, 0, 0], "total": 31, "table": "application", "rank": 53, "sp500_rank": 44}, "Control": {"counts": [1, 0, 1, 0, 1, 5, 3, 0, 0, 0, 0], "total": 11, "table": "application", "rank": 126, "sp500_rank": 89}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 11, 8, 1, 5, 0, 0], "total": 25, "table": "application", "rank": 168, "sp500_rank": 100}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 1, 1, 2, 3, 2, 0, 0, 0], "total": 10, "table": "application", "rank": 114, "sp500_rank": 84}, "Measuring_and_Testing": {"counts": [0, 2, 1, 6, 3, 3, 11, 2, 0, 0, 0], "total": 28, "table": "application", "rank": 63, "sp500_rank": 48}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3561, "rank": 137, "sp500_rank": 80}, "ai_jobs": {"counts": null, "total": 1059, "rank": 39, "sp500_rank": 26}}, "sector": "Basic Materials", "business_sector": "Chemicals"}, {"cset_id": 1867, "country": "Belgium", "website": "http://www.airbus.com/", "crunchbase": {"text": "0d2b82ad-bd6f-9f54-c76a-448a455af317", "url": "https://www.crunchbase.com/organization/airbus-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/airbusgroup"], "stage": "Mature", "name": "Airbus SE", "patent_name": "airbus se", "continent": "Europe", "local_logo": "airbus_se.png", "aliases": "Airbus; Airbus Aircraft; Airbus Group; Airbus S.A.S; Airbus Sas", "permid_links": [{"text": 4295884955, "url": "https://permid.org/1-4295884955"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "VIE:AIR", "url": "https://www.google.com/finance/quote/air:vie"}, {"text": "MUN:AIR", "url": "https://www.google.com/finance/quote/air:mun"}, {"text": "DEU:AIRG", "url": "https://www.google.com/finance/quote/airg:deu"}, {"text": "MUN:AIRA", "url": "https://www.google.com/finance/quote/aira:mun"}, {"text": "FRA:AIR", "url": "https://www.google.com/finance/quote/air:fra"}, {"text": "STU:AIRA", "url": "https://www.google.com/finance/quote/aira:stu"}, {"text": "PAR:AIR", "url": "https://www.google.com/finance/quote/air:par"}, {"text": "DUS:AIR", "url": "https://www.google.com/finance/quote/air:dus"}, {"text": "HAM:AIR", "url": "https://www.google.com/finance/quote/air:ham"}, {"text": "HAN:AIR", "url": "https://www.google.com/finance/quote/air:han"}, {"text": "FRA:AIRA", "url": "https://www.google.com/finance/quote/aira:fra"}, {"text": "BER:AIR", "url": "https://www.google.com/finance/quote/air:ber"}, {"text": "PKL:EADSF", "url": "https://www.google.com/finance/quote/eadsf:pkl"}, {"text": "STU:AIR", "url": "https://www.google.com/finance/quote/air:stu"}, {"text": "MEX:AIRN", "url": "https://www.google.com/finance/quote/airn:mex"}, {"text": "EBT:AIRD", "url": "https://www.google.com/finance/quote/aird:ebt"}, {"text": "PNK:EADSY", "url": "https://www.google.com/finance/quote/eadsy:pnk"}, {"text": "BER:AIRA", "url": "https://www.google.com/finance/quote/aira:ber"}, {"text": "SWX:AIR", "url": "https://www.google.com/finance/quote/air:swx"}, {"text": "GER:AIRX", "url": "https://www.google.com/finance/quote/airx:ger"}, {"text": "BRN:AIR", "url": "https://www.google.com/finance/quote/air:brn"}, {"text": "MIL:AIR", "url": "https://www.google.com/finance/quote/air:mil"}, {"text": "DEU:AIRA", "url": "https://www.google.com/finance/quote/aira:deu"}, {"text": "LSE:0KVV", "url": "https://www.google.com/finance/quote/0kvv:lse"}, {"text": "MCE:AIR", "url": "https://www.google.com/finance/quote/air:mce"}], "crunchbase_description": "Airbus is an aircraft manufacturer whose customer focus, commercial know-how, technological leadership, and manufacturing efficiency.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 13}, {"field_name": "Anomaly detection", "field_count": 12}, {"field_name": "Pose", "field_count": 9}, {"field_name": "Robotic arm", "field_count": 7}, {"field_name": "Change detection", "field_count": 5}, {"field_name": "Reinforcement learning", "field_count": 5}, {"field_name": "Intrusion detection system", "field_count": 5}, {"field_name": "Sensor fusion", "field_count": 5}, {"field_name": "Deep learning", "field_count": 4}, {"field_name": "Task (computing)", "field_count": 4}], "clusters": [{"cluster_id": 26096, "cluster_count": 8}, {"cluster_id": 58559, "cluster_count": 6}, {"cluster_id": 13012, "cluster_count": 6}, {"cluster_id": 31098, "cluster_count": 5}, {"cluster_id": 58571, "cluster_count": 4}, {"cluster_id": 1634, "cluster_count": 4}, {"cluster_id": 7532, "cluster_count": 4}, {"cluster_id": 8144, "cluster_count": 4}, {"cluster_id": 11539, "cluster_count": 3}, {"cluster_id": 3064, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 174}, {"ref_CSET_id": 1867, "referenced_count": 105}, {"ref_CSET_id": 163, "referenced_count": 72}, {"ref_CSET_id": 87, "referenced_count": 58}, {"ref_CSET_id": 115, "referenced_count": 22}, {"ref_CSET_id": 785, "referenced_count": 14}, {"ref_CSET_id": 1797, "referenced_count": 14}, {"ref_CSET_id": 23, "referenced_count": 11}, {"ref_CSET_id": 184, "referenced_count": 11}, {"ref_CSET_id": 127, "referenced_count": 10}], "tasks": [{"referent": "classification", "task_count": 41}, {"referent": "image_processing", "task_count": 25}, {"referent": "robots", "task_count": 22}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 20}, {"referent": "autonomous_navigation", "task_count": 18}, {"referent": "anomaly_detection", "task_count": 17}, {"referent": "video_surveillance", "task_count": 16}, {"referent": "system_identification", "task_count": 12}, {"referent": "knowledge_base", "task_count": 11}, {"referent": "motion_planning", "task_count": 9}], "methods": [{"referent": "mad_learning", "method_count": 23}, {"referent": "vqa_models", "method_count": 14}, {"referent": "double_q_learning", "method_count": 14}, {"referent": "griffin_lim_algorithm", "method_count": 12}, {"referent": "convolutional_neural_networks", "method_count": 10}, {"referent": "3d_representations", "method_count": 9}, {"referent": "q_learning", "method_count": 9}, {"referent": "recurrent_neural_networks", "method_count": 9}, {"referent": "auto_classifier", "method_count": 9}, {"referent": "symbolic_deep_learning", "method_count": 8}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [521, 693, 834, 775, 807, 676, 668, 497, 537, 351, 3], "total": 6362, "isTopResearch": false, "rank": 54, "sp500_rank": 48}, "ai_publications": {"counts": [14, 18, 34, 31, 36, 37, 37, 49, 47, 22, 0], "total": 325, "isTopResearch": false, "rank": 56, "sp500_rank": 45}, "ai_publications_growth": {"counts": [], "total": -8.280229860776972, "isTopResearch": false, "rank": 1252, "sp500_rank": 307}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 1, 0, 1, 3, 4, 0, 0], "total": 10, "isTopResearch": false, "rank": 114, "sp500_rank": 57}, "citation_counts": {"counts": [78, 126, 138, 201, 276, 489, 532, 658, 880, 763, 46], "total": 4187, "isTopResearch": false, "rank": 78, "sp500_rank": 52}, "cv_pubs": {"counts": [5, 3, 6, 4, 5, 5, 6, 8, 9, 4, 0], "total": 55, "isTopResearch": true, "rank": 77, "sp500_rank": 54}, "nlp_pubs": {"counts": [1, 1, 1, 2, 1, 1, 1, 4, 4, 3, 0], "total": 19, "isTopResearch": true, "rank": 64, "sp500_rank": 46}, "robotics_pubs": {"counts": [4, 8, 11, 12, 12, 13, 10, 13, 8, 9, 0], "total": 100, "isTopResearch": true, "rank": 27, "sp500_rank": 25}, "citations_per_article": {"counts": [5.571428571428571, 7.0, 4.0588235294117645, 6.483870967741935, 7.666666666666667, 13.216216216216216, 14.378378378378379, 13.428571428571429, 18.72340425531915, 34.68181818181818, 0], "total": 12.883076923076922, "isTopResearch": false, "rank": 451, "sp500_rank": 155}}, "patents": {"ai_patents": {"counts": [4, 4, 2, 4, 2, 9, 20, 15, 8, 0, 0], "total": 68, "table": null, "rank": 189, "sp500_rank": 120}, "ai_patents_growth": {"counts": [], "total": 149.07407407407408, "table": null, "rank": 76, "sp500_rank": 31}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [40, 40, 20, 40, 20, 90, 200, 150, 80, 0, 0], "total": 680, "table": null, "rank": 189, "sp500_rank": 120}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 158, "sp500_rank": 91}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 193, "sp500_rank": 115}, "Transportation": {"counts": [1, 3, 2, 2, 1, 7, 5, 4, 4, 0, 0], "total": 29, "table": "industry", "rank": 62, "sp500_rank": 49}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 1, 1, 3, 0, 0, 0], "total": 6, "table": "industry", "rank": 94, "sp500_rank": 65}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 3, 1, 1, 1, 3, 1, 0, 0], "total": 11, "table": "industry", "rank": 250, "sp500_rank": 136}, "Banking_and_Finance": {"counts": [0, 1, 0, 1, 0, 0, 0, 2, 1, 0, 0], "total": 5, "table": "industry", "rank": 103, "sp500_rank": 71}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 2, 4, 2, 2, 0, 0], "total": 10, "table": "industry", "rank": 165, "sp500_rank": 97}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 2, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 5, "table": null, "rank": 213, "sp500_rank": 136}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "sp500_rank": 79}, "Planning_and_Scheduling": {"counts": [0, 2, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 183, "sp500_rank": 120}, "Control": {"counts": [2, 3, 2, 2, 1, 4, 9, 6, 5, 0, 0], "total": 34, "table": "application", "rank": 68, "sp500_rank": 51}, "Distributed_AI": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 4, 8, 5, 3, 0, 0], "total": 20, "table": "application", "rank": 186, "sp500_rank": 109}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 223, "sp500_rank": 134}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 3, 4, 4, 0, 0, 0], "total": 12, "table": "application", "rank": 110, "sp500_rank": 86}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3525, "rank": 138, "sp500_rank": 81}, "ai_jobs": {"counts": null, "total": 275, "rank": 194, "sp500_rank": 126}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Airbus SE ; German: [\u02c8\u025b\u02d0\u0250\u032fb\u028as] (About this soundlisten); Spanish: [\u02c8ej\u027ebus]) is a European multinational aerospace corporation. As of 2019, Airbus is the world's largest airliner manufacturer and took the most airliner orders, surpassing rival Boeing. It designs, manufactures and sells civil and military aerospace products worldwide and manufactures aircraft in the European Union and various other countries. The company has three divisions: Commercial Aircraft (Airbus S.A.S.), Defence and Space, and Helicopters, the third being the largest in its industry in terms of revenues and turbine helicopter deliveries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Airbus", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 936, "country": "China", "website": "http://www.lenovo.com", "crunchbase": {"text": "7b7f17f7-8321-cf92-b348-be5f6f886d83", "url": "https://www.crunchbase.com/organization/lenovo"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lenovo"], "stage": "Mature", "name": "Lenovo", "patent_name": "Lenovo", "continent": "Asia", "local_logo": "lenovo.png", "aliases": "Lenovo; Lenovo Corporation; Lenovo Group Ltd; Lianxiang Jituan; \u8054\u60f3\u96c6\u56e2; \u8054\u60f3\u96c6\u56e2\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295871412, "url": "https://permid.org/1-4295871412"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:992", "url": "https://www.google.com/finance/quote/992:HKG"}], "market_full": [{"text": "STU:LHL", "url": "https://www.google.com/finance/quote/LHL:STU"}, {"text": "PKC:LNVGY", "url": "https://www.google.com/finance/quote/LNVGY:PKC"}, {"text": "PKC:LNVGF", "url": "https://www.google.com/finance/quote/LNVGF:PKC"}, {"text": "BER:LHL1", "url": "https://www.google.com/finance/quote/BER:LHL1"}, {"text": "DUS:LHL", "url": "https://www.google.com/finance/quote/DUS:LHL"}, {"text": "FRA:LHL", "url": "https://www.google.com/finance/quote/FRA:LHL"}, {"text": "HAM:LHL", "url": "https://www.google.com/finance/quote/HAM:LHL"}, {"text": "STU:LHL1", "url": "https://www.google.com/finance/quote/LHL1:STU"}, {"text": "MUN:LHL1", "url": "https://www.google.com/finance/quote/LHL1:MUN"}, {"text": "FRA:LHL1", "url": "https://www.google.com/finance/quote/FRA:LHL1"}, {"text": "DEU:992", "url": "https://www.google.com/finance/quote/992:DEU"}, {"text": "MUN:LHL", "url": "https://www.google.com/finance/quote/LHL:MUN"}, {"text": "HKG.HZ:992", "url": "https://www.google.com/finance/quote/992:HKG.HZ"}, {"text": "BER:LHL", "url": "https://www.google.com/finance/quote/BER:LHL"}, {"text": "DEU:LHL1", "url": "https://www.google.com/finance/quote/DEU:LHL1"}, {"text": "HKG:992", "url": "https://www.google.com/finance/quote/992:HKG"}, {"text": "HKG.HS:992", "url": "https://www.google.com/finance/quote/992:HKG.HS"}, {"text": "SWX:LEN", "url": "https://www.google.com/finance/quote/LEN:SWX"}, {"text": "HAN:LHL", "url": "https://www.google.com/finance/quote/HAN:LHL"}], "crunchbase_description": "Lenovo Group is a computer technology company that manufactures personal computers, smartphones, televisions, and wearable devices.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 7}, {"field_name": "Segmentation", "field_count": 7}, {"field_name": "Skyline", "field_count": 4}, {"field_name": "Salience (neuroscience)", "field_count": 3}, {"field_name": "Discriminative model", "field_count": 3}, {"field_name": "Bayesian probability", "field_count": 2}, {"field_name": "Ranking", "field_count": 2}, {"field_name": "Modality (human\u2013computer interaction)", "field_count": 2}, {"field_name": "Applications of artificial intelligence", "field_count": 2}, {"field_name": "Bounded rationality", "field_count": 1}], "clusters": [{"cluster_id": 20613, "cluster_count": 5}, {"cluster_id": 8437, "cluster_count": 4}, {"cluster_id": 5109, "cluster_count": 3}, {"cluster_id": 1027, "cluster_count": 3}, {"cluster_id": 616, "cluster_count": 3}, {"cluster_id": 12979, "cluster_count": 3}, {"cluster_id": 76523, "cluster_count": 3}, {"cluster_id": 88671, "cluster_count": 3}, {"cluster_id": 11234, "cluster_count": 2}, {"cluster_id": 14353, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 137}, {"ref_CSET_id": 101, "referenced_count": 106}, {"ref_CSET_id": 87, "referenced_count": 39}, {"ref_CSET_id": 936, "referenced_count": 21}, {"ref_CSET_id": 115, "referenced_count": 20}, {"ref_CSET_id": 245, "referenced_count": 14}, {"ref_CSET_id": 133, "referenced_count": 12}, {"ref_CSET_id": 184, "referenced_count": 12}, {"ref_CSET_id": 785, "referenced_count": 11}, {"ref_CSET_id": 223, "referenced_count": 9}], "tasks": [{"referent": "classification", "task_count": 11}, {"referent": "segmentation", "task_count": 10}, {"referent": "classification_tasks", "task_count": 8}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "traffic_prediction", "task_count": 5}, {"referent": "human_dynamics", "task_count": 4}, {"referent": "motion_planning", "task_count": 4}, {"referent": "automatic_liver_and_tumor_segmentation", "task_count": 4}, {"referent": "collaborative_filtering", "task_count": 4}, {"referent": "natural_language_processing", "task_count": 3}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 9}, {"referent": "recurrent_neural_networks", "method_count": 9}, {"referent": "q_learning", "method_count": 8}, {"referent": "vqa_models", "method_count": 6}, {"referent": "ggs_nns", "method_count": 5}, {"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "3d_representations", "method_count": 5}, {"referent": "reinforcement_learning", "method_count": 5}, {"referent": "generative_adversarial_networks", "method_count": 5}, {"referent": "double_q_learning", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [10, 10, 10, 13, 16, 24, 25, 29, 28, 13, 1], "total": 179, "isTopResearch": false, "rank": 424, "sp500_rank": 254}, "ai_publications": {"counts": [0, 3, 4, 4, 7, 9, 15, 22, 15, 4, 0], "total": 83, "isTopResearch": false, "rank": 137, "sp500_rank": 90}, "ai_publications_growth": {"counts": [], "total": -19.494949494949495, "isTopResearch": false, "rank": 1320, "sp500_rank": 348}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 157, "sp500_rank": 75}, "citation_counts": {"counts": [0, 4, 8, 32, 98, 181, 297, 509, 644, 645, 29], "total": 2447, "isTopResearch": false, "rank": 116, "sp500_rank": 74}, "cv_pubs": {"counts": [0, 0, 1, 3, 4, 3, 8, 9, 6, 1, 0], "total": 35, "isTopResearch": true, "rank": 104, "sp500_rank": 70}, "nlp_pubs": {"counts": [0, 1, 1, 0, 1, 3, 1, 1, 0, 0, 0], "total": 8, "isTopResearch": true, "rank": 110, "sp500_rank": 70}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 1.3333333333333333, 2.0, 8.0, 14.0, 20.11111111111111, 19.8, 23.136363636363637, 42.93333333333333, 161.25, 0], "total": 29.481927710843372, "isTopResearch": false, "rank": 198, "sp500_rank": 49}}, "patents": {"ai_patents": {"counts": [3, 4, 7, 5, 20, 28, 65, 62, 65, 23, 0], "total": 282, "table": null, "rank": 84, "sp500_rank": 65}, "ai_patents_growth": {"counts": [], "total": 55.84249084249084, "table": null, "rank": 184, "sp500_rank": 88}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [30, 40, 70, 50, 200, 280, 650, 620, 650, 230, 0], "total": 2820, "table": null, "rank": 84, "sp500_rank": 65}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 1, 2, 0, 6, 0, 0, 0], "total": 10, "table": "industry", "rank": 90, "sp500_rank": 65}, "Transportation": {"counts": [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], "total": 4, "table": null, "rank": 147, "sp500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 5, 2, 3, 0, 0], "total": 11, "table": "industry", "rank": 68, "sp500_rank": 49}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 38, "sp500_rank": 31}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 3, 1, 7, 10, 15, 30, 23, 13, 0], "total": 103, "table": "industry", "rank": 73, "sp500_rank": 53}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0], "total": 3, "table": null, "rank": 141, "sp500_rank": 91}, "Telecommunications": {"counts": [0, 2, 0, 3, 3, 1, 5, 14, 3, 0, 0], "total": 31, "table": "industry", "rank": 107, "sp500_rank": 71}, "Networks__eg_social_IOT_etc": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [0, 2, 1, 0, 2, 2, 11, 7, 9, 1, 0], "total": 35, "table": "industry", "rank": 71, "sp500_rank": 53}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 75, "sp500_rank": 50}, "Speech_Processing": {"counts": [0, 0, 0, 2, 3, 2, 4, 3, 12, 3, 0], "total": 29, "table": "application", "rank": 38, "sp500_rank": 29}, "Knowledge_Representation": {"counts": [0, 2, 4, 0, 0, 0, 2, 1, 2, 0, 0], "total": 11, "table": "application", "rank": 69, "sp500_rank": 51}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 0, 1, 1, 10, 5, 7, 1, 0], "total": 26, "table": "application", "rank": 66, "sp500_rank": 52}, "Control": {"counts": [0, 0, 2, 0, 1, 1, 0, 1, 1, 0, 0], "total": 6, "table": null, "rank": 166, "sp500_rank": 113}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 1, 1, 9, 6, 20, 21, 24, 11, 0], "total": 93, "table": "application", "rank": 70, "sp500_rank": 50}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 2, 5, 3, 0, 0], "total": 11, "table": "application", "rank": 105, "sp500_rank": 78}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 4, 1, 0, 1, 0], "total": 7, "table": null, "rank": 147, "sp500_rank": 111}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3505, "rank": 139, "sp500_rank": 82}, "ai_jobs": {"counts": null, "total": 248, "rank": 209, "sp500_rank": 136}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 1987, "country": null, "website": "https://www.zf.com/", "crunchbase": {"text": " 61901f82-d4ad-7fdf-ab59-40cd0f4c6c7a", "url": " https://www.crunchbase.com/organization/zf-friedrichshafen-ag"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/zf-group"], "stage": "Unknown", "name": "Zf Friedrichshafen", "patent_name": "ZF Friedrichshafen", "continent": null, "local_logo": null, "aliases": "ZF Friedrichshafen; Zf Friedrichshafen Ag; Zf Group; \u5929\u5408\u4e9a\u592a\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295870068, "url": "https://permid.org/1-4295870068"}], "parent_info": "Zeppelin Foundation", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Advanced driver assistance systems", "field_count": 6}, {"field_name": "Probabilistic logic", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}, {"field_name": "Interpretability", "field_count": 1}, {"field_name": "Test data generation", "field_count": 1}, {"field_name": "Hyperparameter", "field_count": 1}, {"field_name": "Camera resectioning", "field_count": 1}, {"field_name": "RGB color model", "field_count": 1}], "clusters": [{"cluster_id": 2410, "cluster_count": 10}, {"cluster_id": 19977, "cluster_count": 7}, {"cluster_id": 31686, "cluster_count": 4}, {"cluster_id": 57595, "cluster_count": 3}, {"cluster_id": 2381, "cluster_count": 2}, {"cluster_id": 16160, "cluster_count": 2}, {"cluster_id": 8163, "cluster_count": 2}, {"cluster_id": 19290, "cluster_count": 1}, {"cluster_id": 8773, "cluster_count": 1}, {"cluster_id": 51505, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 84}, {"ref_CSET_id": 163, "referenced_count": 32}, {"ref_CSET_id": 87, "referenced_count": 29}, {"ref_CSET_id": 1987, "referenced_count": 29}, {"ref_CSET_id": 783, "referenced_count": 19}, {"ref_CSET_id": 800, "referenced_count": 19}, {"ref_CSET_id": 184, "referenced_count": 16}, {"ref_CSET_id": 1037, "referenced_count": 11}, {"ref_CSET_id": 127, "referenced_count": 8}, {"ref_CSET_id": 115, "referenced_count": 8}], "tasks": [{"referent": "autonomous_driving", "task_count": 20}, {"referent": "autonomous_vehicles", "task_count": 14}, {"referent": "trajectory_prediction", "task_count": 8}, {"referent": "trajectory_planning", "task_count": 6}, {"referent": "classification", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "change_detection", "task_count": 3}, {"referent": "object_detection", "task_count": 3}, {"referent": "multi_task_learning", "task_count": 3}, {"referent": "image_processing", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "3d_representations", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "neural_probabilistic_language_model", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "adamw", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [30, 28, 31, 44, 66, 49, 66, 39, 63, 38, 1], "total": 455, "isTopResearch": false, "rank": 290, "sp500_rank": 194}, "ai_publications": {"counts": [0, 1, 0, 1, 0, 8, 12, 8, 15, 4, 0], "total": 49, "isTopResearch": false, "rank": 186, "sp500_rank": 116}, "ai_publications_growth": {"counts": [], "total": -6.388888888888888, "isTopResearch": false, "rank": 1241, "sp500_rank": 302}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 14, 30, 69, 106, 0], "total": 220, "isTopResearch": false, "rank": 378, "sp500_rank": 173}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 4, 3, 3, 2, 0], "total": 12, "isTopResearch": true, "rank": 188, "sp500_rank": 109}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 6, 4, 3, 5, 1, 0], "total": 20, "isTopResearch": true, "rank": 77, "sp500_rank": 59}, "citations_per_article": {"counts": [0, 0.0, 0, 0.0, 0, 0.125, 1.1666666666666667, 3.75, 4.6, 26.5, 0], "total": 4.489795918367347, "isTopResearch": false, "rank": 730, "sp500_rank": 290}}, "patents": {"ai_patents": {"counts": [0, 0, 2, 3, 10, 37, 70, 39, 16, 0, 0], "total": 177, "table": null, "rank": 112, "sp500_rank": 77}, "ai_patents_growth": {"counts": [], "total": 104.96782496782497, "table": null, "rank": 108, "sp500_rank": 51}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 20, 30, 100, 370, 700, 390, 160, 0, 0], "total": 1770, "table": null, "rank": 112, "sp500_rank": 77}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 1, 1, 2, 3, 1, 0, 0, 0], "total": 8, "table": null, "rank": 59, "sp500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 4, 3, 1, 0, 0], "total": 9, "table": "industry", "rank": 89, "sp500_rank": 60}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 4, 5, 0, 0, 0, 0], "total": 9, "table": "industry", "rank": 95, "sp500_rank": 69}, "Transportation": {"counts": [0, 0, 2, 2, 7, 18, 35, 14, 7, 0, 0], "total": 85, "table": "industry", "rank": 31, "sp500_rank": 25}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": null, "rank": 131, "sp500_rank": 89}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0], "total": 4, "table": null, "rank": 23, "sp500_rank": 19}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 3, 4, 4, 1, 1, 0, 0], "total": 13, "table": "industry", "rank": 233, "sp500_rank": 126}, "Banking_and_Finance": {"counts": [0, 0, 1, 1, 0, 1, 1, 0, 1, 0, 0], "total": 5, "table": null, "rank": 103, "sp500_rank": 71}, "Telecommunications": {"counts": [0, 0, 1, 0, 2, 11, 11, 3, 2, 0, 0], "total": 30, "table": "industry", "rank": 111, "sp500_rank": 73}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 2, 6, 2, 0, 0, 0], "total": 10, "table": "application", "rank": 81, "sp500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 191, "sp500_rank": 101}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 2, 2, 4, 16, 11, 12, 2, 0, 0], "total": 49, "table": "application", "rank": 52, "sp500_rank": 42}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 1, 0, 2, 5, 15, 6, 2, 0, 0], "total": 31, "table": "application", "rank": 150, "sp500_rank": 92}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 3, 8, 4, 1, 0, 0], "total": 17, "table": "application", "rank": 76, "sp500_rank": 60}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 4, 9, 17, 5, 4, 0, 0], "total": 39, "table": "application", "rank": 52, "sp500_rank": 40}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3450, "rank": 140, "sp500_rank": 83}, "ai_jobs": {"counts": null, "total": 124, "rank": 302, "sp500_rank": 170}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 336, "country": "Ireland", "website": "http://www.aptiv.com/", "crunchbase": {"text": "4a7ae512-46ea-42c2-8cbb-b6b25b2b11c5", "url": "https://www.crunchbase.com/organization/aptiv"}, "child_crunchbase": [{"text": "7ecfa61e-54bd-256c-dc05-4d22d2f5e16f", "url": "https://www.crunchbase.com/organization/nutonomy"}, {"text": "a53e6e0b-44bd-6f4f-f927-8e271db0feb0", "url": "https://www.crunchbase.com/organization/delphi-2"}], "linkedin": ["https://www.linkedin.com/company/aptiv", "https://www.linkedin.com/company/nutonomy", "https://www.linkedin.com/company/delphi"], "stage": "Mature", "name": "Aptiv", "patent_name": "aptiv", "continent": "Europe", "local_logo": "aptiv.png", "aliases": "Aptiv Plc; Delphi Automotive", "permid_links": [{"text": 5035155584, "url": "https://permid.org/1-5035155584"}, {"text": 5050269299, "url": "https://permid.org/1-5050269299"}, {"text": 5057754612, "url": "https://permid.org/1-5057754612"}], "parent_info": null, "agg_child_info": "nuTonomy, Delphi", "unagg_child_info": null, "market_filt": [{"text": "NYSE:APTV", "url": "https://www.google.com/finance/quote/aptv:nyse"}], "market_full": [{"text": "BER:D7A", "url": "https://www.google.com/finance/quote/ber:d7a"}, {"text": "MUN:D7A", "url": "https://www.google.com/finance/quote/d7a:mun"}, {"text": "NYSE:APTV", "url": "https://www.google.com/finance/quote/aptv:nyse"}, {"text": "BMV:APTV/N", "url": "https://www.google.com/finance/quote/aptv/n:bmv"}, {"text": "FWB:D7A", "url": "https://www.google.com/finance/quote/d7a:fwb"}], "crunchbase_description": "Aptiv is a global technology company that develops safer, greener, and more connected solutions, which enable the future of mobility.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Advanced driver assistance systems", "field_count": 9}, {"field_name": "Convolutional neural network", "field_count": 6}, {"field_name": "Reinforcement learning", "field_count": 5}, {"field_name": "Segmentation", "field_count": 5}, {"field_name": "Robustness (computer science)", "field_count": 4}, {"field_name": "Support vector machine", "field_count": 4}, {"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Point cloud", "field_count": 4}, {"field_name": "Face (geometry)", "field_count": 2}], "clusters": [{"cluster_id": 23307, "cluster_count": 7}, {"cluster_id": 22331, "cluster_count": 7}, {"cluster_id": 27589, "cluster_count": 5}, {"cluster_id": 3281, "cluster_count": 5}, {"cluster_id": 65794, "cluster_count": 4}, {"cluster_id": 72275, "cluster_count": 4}, {"cluster_id": 19977, "cluster_count": 4}, {"cluster_id": 80096, "cluster_count": 3}, {"cluster_id": 56508, "cluster_count": 3}, {"cluster_id": 15399, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 95}, {"ref_CSET_id": 336, "referenced_count": 79}, {"ref_CSET_id": 163, "referenced_count": 59}, {"ref_CSET_id": 87, "referenced_count": 47}, {"ref_CSET_id": 783, "referenced_count": 20}, {"ref_CSET_id": 37, "referenced_count": 17}, {"ref_CSET_id": 27, "referenced_count": 13}, {"ref_CSET_id": 35, "referenced_count": 12}, {"ref_CSET_id": 800, "referenced_count": 12}, {"ref_CSET_id": 23, "referenced_count": 11}], "tasks": [{"referent": "autonomous_driving", "task_count": 28}, {"referent": "classification", "task_count": 23}, {"referent": "autonomous_vehicles", "task_count": 19}, {"referent": "vehicle_detection", "task_count": 13}, {"referent": "object_detection", "task_count": 9}, {"referent": "semantic_segmentation", "task_count": 8}, {"referent": "computer_vision", "task_count": 8}, {"referent": "autonomous_navigation", "task_count": 8}, {"referent": "image_processing", "task_count": 7}, {"referent": "self_driving_cars", "task_count": 6}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 16}, {"referent": "convolutional_neural_networks", "method_count": 11}, {"referent": "3d_representations", "method_count": 8}, {"referent": "1d_cnn", "method_count": 7}, {"referent": "griffin_lim_algorithm", "method_count": 7}, {"referent": "auto_classifier", "method_count": 7}, {"referent": "double_q_learning", "method_count": 7}, {"referent": "optimization", "method_count": 6}, {"referent": "pointnet", "method_count": 6}, {"referent": "symbolic_deep_learning", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [85, 100, 96, 69, 68, 94, 89, 78, 55, 51, 0], "total": 785, "isTopResearch": false, "rank": 221, "fortune500_rank": 84}, "ai_publications": {"counts": [3, 7, 4, 9, 12, 22, 27, 26, 24, 12, 0], "total": 146, "isTopResearch": false, "rank": 98, "fortune500_rank": 30}, "ai_publications_growth": {"counts": [], "total": -20.4653371320038, "isTopResearch": false, "rank": 1330, "fortune500_rank": 386}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 140, "fortune500_rank": 42}, "citation_counts": {"counts": [47, 67, 62, 68, 63, 135, 422, 905, 1298, 1164, 30], "total": 4261, "isTopResearch": false, "rank": 77, "fortune500_rank": 28}, "cv_pubs": {"counts": [3, 4, 2, 6, 5, 13, 8, 10, 13, 4, 0], "total": 68, "isTopResearch": true, "rank": 73, "fortune500_rank": 19}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 1, 2, 6, 11, 14, 8, 5, 0], "total": 47, "isTopResearch": true, "rank": 48, "fortune500_rank": 14}, "citations_per_article": {"counts": [15.666666666666666, 9.571428571428571, 15.5, 7.555555555555555, 5.25, 6.136363636363637, 15.62962962962963, 34.80769230769231, 54.083333333333336, 97.0, 0], "total": 29.184931506849313, "isTopResearch": false, "rank": 202, "fortune500_rank": 60}}, "patents": {"ai_patents": {"counts": [0, 0, 10, 38, 39, 37, 29, 37, 19, 1, 0], "total": 210, "table": null, "rank": 98, "fortune500_rank": 33}, "ai_patents_growth": {"counts": [], "total": 0.2787933822416579, "table": null, "rank": 361, "fortune500_rank": 121}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 100, 380, 390, 370, 290, 370, 190, 10, 0], "total": 2100, "table": null, "rank": 98, "fortune500_rank": 33}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 125, "fortune500_rank": 39}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 157, "fortune500_rank": 58}, "Transportation": {"counts": [0, 0, 9, 35, 32, 26, 21, 16, 4, 0, 0], "total": 143, "table": "industry", "rank": 20, "fortune500_rank": 8}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 165, "fortune500_rank": 55}, "Education": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 60, "fortune500_rank": 20}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 8, 3, 4, 4, 6, 1, 0, 0], "total": 27, "table": "industry", "rank": 160, "fortune500_rank": 57}, "Banking_and_Finance": {"counts": [0, 0, 0, 2, 7, 3, 0, 0, 1, 0, 0], "total": 13, "table": "industry", "rank": 63, "fortune500_rank": 25}, "Telecommunications": {"counts": [0, 0, 1, 11, 1, 13, 10, 14, 7, 0, 0], "total": 57, "table": "industry", "rank": 72, "fortune500_rank": 27}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 4, 1, 4, 2, 1, 1, 0, 0], "total": 13, "table": "industry", "rank": 137, "fortune500_rank": 49}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 119, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "fortune500_rank": 23}, "Language_Processing": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "fortune500_rank": 43}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 160, "fortune500_rank": 48}, "Knowledge_Representation": {"counts": [0, 0, 1, 1, 0, 3, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 126, "fortune500_rank": 56}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 3, 0, 2, 2, 1, 1, 0, 0], "total": 9, "table": "application", "rank": 134, "fortune500_rank": 49}, "Control": {"counts": [0, 0, 8, 35, 31, 27, 15, 9, 3, 0, 0], "total": 128, "table": "application", "rank": 28, "fortune500_rank": 10}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 1, 11, 14, 16, 13, 19, 11, 0, 0], "total": 85, "table": "application", "rank": 75, "fortune500_rank": 22}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 0, 3, 7, 13, 6, 0, 0], "total": 30, "table": "application", "rank": 46, "fortune500_rank": 23}, "Measuring_and_Testing": {"counts": [0, 0, 5, 17, 13, 18, 14, 23, 11, 0, 0], "total": 101, "table": "application", "rank": 24, "fortune500_rank": 10}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3437, "rank": 141, "fortune500_rank": 82}, "ai_jobs": {"counts": null, "total": 124, "rank": 302, "fortune500_rank": 165}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "Aptiv plc is an American-Irish-British auto parts company headquartered in Dublin, Ireland.", "wikipedia_link": "https://en.wikipedia.org/wiki/Aptiv", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2021, "country": "Netherlands", "website": "https://www.ing.com/", "crunchbase": {"text": " b1cfd7c5-f0ca-2cfe-6bb0-1452f42625d6 ", "url": "https://www.crunchbase.com/organization/ing-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ing"], "stage": "Mature", "name": "Ing Group", "patent_name": "ING Group", "continent": "Europe", "local_logo": null, "aliases": "ING Group; The Ing Group", "permid_links": [{"text": 4295884647, "url": "https://permid.org/1-4295884647"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ING", "url": "https://www.google.com/finance/quote/ING:NYSE"}], "market_full": [{"text": "SWX:INGA", "url": "https://www.google.com/finance/quote/INGA:SWX"}, {"text": "EBT:INGAA", "url": "https://www.google.com/finance/quote/EBT:INGAa"}, {"text": "HAM:INN1", "url": "https://www.google.com/finance/quote/HAM:INN1"}, {"text": "HAN:INN1", "url": "https://www.google.com/finance/quote/HAN:INN1"}, {"text": "STU:INN1", "url": "https://www.google.com/finance/quote/INN1:STU"}, {"text": "AEX:INGA", "url": "https://www.google.com/finance/quote/AEX:INGA"}, {"text": "MUN:INN1", "url": "https://www.google.com/finance/quote/INN1:MUN"}, {"text": "VIE:INGA", "url": "https://www.google.com/finance/quote/INGA:VIE"}, {"text": "MEX:INGAN", "url": "https://www.google.com/finance/quote/INGAN:MEX"}, {"text": "FRA:INNA", "url": "https://www.google.com/finance/quote/FRA:INNA"}, {"text": "LSE:0RIC", "url": "https://www.google.com/finance/quote/0RIC:LSE"}, {"text": "DEU:INN1", "url": "https://www.google.com/finance/quote/DEU:INN1"}, {"text": "DEU:INNA", "url": "https://www.google.com/finance/quote/DEU:INNA"}, {"text": "BER:INNA", "url": "https://www.google.com/finance/quote/BER:INNA"}, {"text": "DUS:INN1", "url": "https://www.google.com/finance/quote/DUS:INN1"}, {"text": "SAO:INGG34", "url": "https://www.google.com/finance/quote/INGG34:SAO"}, {"text": "NYSE:ING", "url": "https://www.google.com/finance/quote/ING:NYSE"}, {"text": "MUN:INNA", "url": "https://www.google.com/finance/quote/INNA:MUN"}, {"text": "BUE:ING3", "url": "https://www.google.com/finance/quote/BUE:ING3"}, {"text": "BRN:INN1", "url": "https://www.google.com/finance/quote/BRN:INN1"}, {"text": "NYQ:ING", "url": "https://www.google.com/finance/quote/ING:NYQ"}, {"text": "ASE:ING", "url": "https://www.google.com/finance/quote/ASE:ING"}, {"text": "MEX:INGN", "url": "https://www.google.com/finance/quote/INGN:MEX"}, {"text": "GER:INNX.A", "url": "https://www.google.com/finance/quote/GER:INNX.A"}, {"text": "MIL:INGA", "url": "https://www.google.com/finance/quote/INGA:MIL"}, {"text": "DUS:INNA", "url": "https://www.google.com/finance/quote/DUS:INNA"}, {"text": "PKC:INGVF", "url": "https://www.google.com/finance/quote/INGVF:PKC"}, {"text": "LSE:0A2K", "url": "https://www.google.com/finance/quote/0A2K:LSE"}, {"text": "BER:INN1", "url": "https://www.google.com/finance/quote/BER:INN1"}, {"text": "FRA:INN1", "url": "https://www.google.com/finance/quote/FRA:INN1"}, {"text": "STU:INNA", "url": "https://www.google.com/finance/quote/INNA:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Bayesian network", "field_count": 1}, {"field_name": "Intelligent decision support system", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Ensemble forecasting", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Classifier (UML)", "field_count": 1}], "clusters": [{"cluster_id": 3124, "cluster_count": 2}, {"cluster_id": 40901, "cluster_count": 1}, {"cluster_id": 7420, "cluster_count": 1}, {"cluster_id": 65178, "cluster_count": 1}, {"cluster_id": 94017, "cluster_count": 1}, {"cluster_id": 1829, "cluster_count": 1}, {"cluster_id": 214, "cluster_count": 1}, {"cluster_id": 1168, "cluster_count": 1}, {"cluster_id": 7666, "cluster_count": 1}, {"cluster_id": 3167, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 19}, {"ref_CSET_id": 163, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 3131, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 795, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "software_defect_prediction", "task_count": 2}, {"referent": "card_games", "task_count": 2}, {"referent": "data_mining", "task_count": 2}, {"referent": "recommendation", "task_count": 2}, {"referent": "automl", "task_count": 1}, {"referent": "word_embeddings", "task_count": 1}, {"referent": "recommendation_systems", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 3}, {"referent": "mad_learning", "method_count": 3}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "elmo", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "cdcc_net", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "wfst", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [19, 29, 2, 21, 10, 12, 18, 15, 8, 15, 0], "total": 149, "isTopResearch": false, "rank": 455, "sp500_rank": 272}, "ai_publications": {"counts": [0, 0, 0, 0, 2, 2, 1, 5, 1, 2, 0], "total": 13, "isTopResearch": false, "rank": 375, "sp500_rank": 202}, "ai_publications_growth": {"counts": [], "total": 140.0, "isTopResearch": false, "rank": 10, "sp500_rank": 5}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 7, 18, 15, 0], "total": 41, "isTopResearch": false, "rank": 615, "sp500_rank": 263}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0.0, 1.0, 1.4, 18.0, 7.5, 0], "total": 3.1538461538461537, "isTopResearch": false, "rank": 775, "sp500_rank": 310}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3412, "rank": 142, "sp500_rank": 84}, "ai_jobs": {"counts": null, "total": 357, "rank": 156, "sp500_rank": 102}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 3159, "country": "United States", "website": "https://www.vistaequitypartners.com/", "crunchbase": {"text": "4d096273-ae5d-d4c3-a411-20a42514d2ce", "url": "https://www.crunchbase.com/organization/vista-equity-partners"}, "child_crunchbase": [{"text": "52f4bdc1-5c4a-2ccd-837d-133a0a578cda", "url": "https://www.crunchbase.com/organization/citrix-systems"}, {"text": "931d94b8-2cc5-e844-b824-a3fa42317d2e", "url": "https://www.crunchbase.com/organization/eagleview-technologies"}], "linkedin": ["https://www.linkedin.com/company/vista-equity-partners", "https://www.linkedin.com/company/citrix", "https://www.linkedin.com/company/eagleview-technologies-inc"], "stage": "Unknown", "name": "Vista Equity Partners", "patent_name": "Vista Equity Partners", "continent": "North America", "local_logo": null, "aliases": "Vista Equity Partners; Vista Equity Partners Management, Llc", "permid_links": [{"text": 4295951692, "url": "https://permid.org/1-4295951692"}, {"text": 4295905957, "url": "https://permid.org/1-4295905957"}, {"text": 5037293878, "url": "https://permid.org/1-5037293878"}, {"text": 5000424881, "url": "https://permid.org/1-5000424881"}], "parent_info": null, "agg_child_info": "Citrix Systems, EagleView", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Feature extraction", "field_count": 1}], "clusters": [{"cluster_id": 78888, "cluster_count": 1}, {"cluster_id": 8446, "cluster_count": 1}, {"cluster_id": 5534, "cluster_count": 1}, {"cluster_id": 52087, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 809, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "segmentation", "task_count": 2}, {"referent": "cloud_detection", "task_count": 1}, {"referent": "speech_recognition", "task_count": 1}, {"referent": "collision_detection", "task_count": 1}, {"referent": "tensor_networks", "task_count": 1}, {"referent": "motion_retargeting", "task_count": 1}, {"referent": "customer_segmentation", "task_count": 1}, {"referent": "clustering", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 4, 7, 7, 7, 5, 3, 3, 8, 5, 1], "total": 55, "isTopResearch": false, "rank": 602, "fortune500_rank": 223}, "ai_publications": {"counts": [0, 0, 2, 1, 0, 1, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "fortune500_rank": 157}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 1, 6, 4, 6, 7, 10, 5, 4, 1], "total": 44, "isTopResearch": false, "rank": 602, "fortune500_rank": 167}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0.5, 6.0, 0, 6.0, 0, 0, 0, 0, 0], "total": 11.0, "isTopResearch": false, "rank": 504, "fortune500_rank": 150}}, "patents": {"ai_patents": {"counts": [4, 1, 2, 1, 6, 17, 23, 25, 9, 2, 0], "total": 90, "table": null, "rank": 168, "fortune500_rank": 52}, "ai_patents_growth": {"counts": [], "total": 75.77436771810173, "table": null, "rank": 152, "fortune500_rank": 34}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [40, 10, 20, 10, 60, 170, 230, 250, 90, 20, 0], "total": 900, "table": null, "rank": 168, "fortune500_rank": 52}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 2, 3, 3, 3, 0, 0], "total": 12, "table": "industry", "rank": 80, "fortune500_rank": 36}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [3, 0, 2, 1, 3, 10, 18, 18, 8, 1, 0], "total": 64, "table": "industry", "rank": 96, "fortune500_rank": 40}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [1, 1, 1, 0, 3, 11, 9, 13, 4, 0, 0], "total": 43, "table": "industry", "rank": 86, "fortune500_rank": 38}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 1, 1, 4, 4, 3, 1, 1, 0], "total": 15, "table": "industry", "rank": 123, "fortune500_rank": 46}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 56, "fortune500_rank": 31}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 139, "fortune500_rank": 43}, "Knowledge_Representation": {"counts": [1, 0, 1, 0, 0, 2, 1, 2, 2, 0, 0], "total": 9, "table": "application", "rank": 78, "fortune500_rank": 40}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 3, 3, 3, 1, 1, 0], "total": 12, "table": "application", "rank": 113, "fortune500_rank": 42}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], "total": 2, "table": null, "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 47, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 1, 1, 1, 0, 8, 3, 1, 0, 0], "total": 15, "table": "application", "rank": 213, "fortune500_rank": 62}, "Analytics_and_Algorithms": {"counts": [0, 1, 1, 0, 1, 3, 1, 1, 1, 1, 0], "total": 10, "table": "application", "rank": 114, "fortune500_rank": 47}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3408, "rank": 143, "fortune500_rank": 83}, "ai_jobs": {"counts": null, "total": 138, "rank": 285, "fortune500_rank": 154}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 1502, "country": "France", "website": "http://axa.com", "crunchbase": {"text": "7a1dde00-5809-1010-15a7-8d65012685ec", "url": "https://www.crunchbase.com/organization/axa"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/axa"], "stage": "Mature", "name": "Axa", "patent_name": "AXA", "continent": "Europe", "local_logo": "axa.png", "aliases": "AXA; Axa; Axa S.A", "permid_links": [{"text": 4295867483, "url": "https://permid.org/1-4295867483"}], "parent_info": "Phoenix Group (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "STU:AXA", "url": "https://www.google.com/finance/quote/AXA:STU"}, {"text": "HAN:AXA", "url": "https://www.google.com/finance/quote/AXA:HAN"}, {"text": "DEU:AXAA", "url": "https://www.google.com/finance/quote/AXAA:DEU"}, {"text": "HAM:AXA", "url": "https://www.google.com/finance/quote/AXA:HAM"}, {"text": "QXI:AXAHY", "url": "https://www.google.com/finance/quote/AXAHY:QXI"}, {"text": "FRA:AXAA", "url": "https://www.google.com/finance/quote/AXAA:FRA"}, {"text": "GER:AXAX", "url": "https://www.google.com/finance/quote/AXAX:GER"}, {"text": "MUN:AXA", "url": "https://www.google.com/finance/quote/AXA:MUN"}, {"text": "BER:AXA", "url": "https://www.google.com/finance/quote/AXA:BER"}, {"text": "VIE:CS", "url": "https://www.google.com/finance/quote/CS:VIE"}, {"text": "DEU:AXAF", "url": "https://www.google.com/finance/quote/AXAF:DEU"}, {"text": "MUN:AXAA", "url": "https://www.google.com/finance/quote/AXAA:MUN"}, {"text": "DUS:AXA", "url": "https://www.google.com/finance/quote/AXA:DUS"}, {"text": "MIL:AXA", "url": "https://www.google.com/finance/quote/AXA:MIL"}, {"text": "MEX:AXAN", "url": "https://www.google.com/finance/quote/AXAN:MEX"}, {"text": "PAR:CSNV", "url": "https://www.google.com/finance/quote/CSNV:PAR"}, {"text": "PAR:CS", "url": "https://www.google.com/finance/quote/CS:PAR"}, {"text": "FRA:AXA", "url": "https://www.google.com/finance/quote/AXA:FRA"}, {"text": "STU:AXAA", "url": "https://www.google.com/finance/quote/AXAA:STU"}, {"text": "BER:AXAA", "url": "https://www.google.com/finance/quote/AXAA:BER"}, {"text": "SWX:CS", "url": "https://www.google.com/finance/quote/CS:SWX"}, {"text": "LSE:0HAR", "url": "https://www.google.com/finance/quote/0HAR:LSE"}], "crunchbase_description": "AXA is a French multinational insurance firm that focuses on global insurance, investment management, and other financial services.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Unsupervised learning", "field_count": 3}, {"field_name": "Boosting (machine learning)", "field_count": 2}, {"field_name": "Interpretability", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Knowledge engineering", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Statistical classification", "field_count": 1}, {"field_name": "Applications of artificial intelligence", "field_count": 1}, {"field_name": "Genetic algorithm", "field_count": 1}, {"field_name": "Receiver operating characteristic", "field_count": 1}], "clusters": [{"cluster_id": 5109, "cluster_count": 8}, {"cluster_id": 4358, "cluster_count": 6}, {"cluster_id": 67586, "cluster_count": 4}, {"cluster_id": 298, "cluster_count": 3}, {"cluster_id": 20336, "cluster_count": 2}, {"cluster_id": 47300, "cluster_count": 2}, {"cluster_id": 10454, "cluster_count": 1}, {"cluster_id": 1386, "cluster_count": 1}, {"cluster_id": 100892, "cluster_count": 1}, {"cluster_id": 1621, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 40}, {"ref_CSET_id": 163, "referenced_count": 28}, {"ref_CSET_id": 1502, "referenced_count": 22}, {"ref_CSET_id": 115, "referenced_count": 12}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 785, "referenced_count": 5}, {"ref_CSET_id": 37, "referenced_count": 4}, {"ref_CSET_id": 434, "referenced_count": 4}, {"ref_CSET_id": 27, "referenced_count": 2}, {"ref_CSET_id": 1865, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 14}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 7}, {"referent": "community_detection", "task_count": 3}, {"referent": "disease_detection", "task_count": 2}, {"referent": "interpretability_techniques_for_deep_learning", "task_count": 2}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 2}, {"referent": "fairness", "task_count": 2}, {"referent": "individual_identification", "task_count": 1}, {"referent": "representation_learning", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 9}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "meta_learning_algorithms", "method_count": 4}, {"referent": "interpretability", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "t_d", "method_count": 2}, {"referent": "ggs_nns", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [7, 29, 27, 40, 45, 61, 55, 41, 27, 25, 0], "total": 357, "isTopResearch": false, "rank": 332, "sp500_rank": 215}, "ai_publications": {"counts": [1, 0, 2, 1, 2, 6, 12, 8, 4, 1, 0], "total": 37, "isTopResearch": false, "rank": 212, "sp500_rank": 129}, "ai_publications_growth": {"counts": [], "total": -52.77777777777778, "isTopResearch": false, "rank": 1503, "sp500_rank": 428}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 2, 2, 1, 1, 0, 0], "total": 6, "isTopResearch": false, "rank": 140, "sp500_rank": 69}, "citation_counts": {"counts": [6, 8, 16, 25, 28, 51, 88, 138, 194, 119, 7], "total": 680, "isTopResearch": false, "rank": 233, "sp500_rank": 126}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [6.0, 0, 8.0, 25.0, 14.0, 8.5, 7.333333333333333, 17.25, 48.5, 119.0, 0], "total": 18.37837837837838, "isTopResearch": false, "rank": 342, "sp500_rank": 107}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": null, "rank": 606, "sp500_rank": 248}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0], "total": 30, "table": null, "rank": 606, "sp500_rank": 248}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3386, "rank": 144, "sp500_rank": 85}, "ai_jobs": {"counts": null, "total": 460, "rank": 123, "sp500_rank": 79}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 734, "country": "United States", "website": "http://www.twitter.com/", "crunchbase": {"text": "5da6106f-0d27-0d37-e9d7-dcfeccc1f709", "url": "https://www.crunchbase.com/organization/twitter"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/twitter"], "stage": "Mature", "name": "Twitter", "patent_name": "twitter", "continent": "North America", "local_logo": "twitter.png", "aliases": "Twitter Inc", "permid_links": [{"text": 4296301199, "url": "https://permid.org/1-4296301199"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TWTR", "url": "https://www.google.com/finance/quote/nyse:twtr"}], "market_full": [{"text": "FWB:TWR", "url": "https://www.google.com/finance/quote/fwb:twr"}, {"text": "NYSE:TWTR", "url": "https://www.google.com/finance/quote/nyse:twtr"}, {"text": "BMV:TWTR", "url": "https://www.google.com/finance/quote/bmv:twtr"}, {"text": "BER:TWR", "url": "https://www.google.com/finance/quote/ber:twr"}, {"text": "FRA:TWTR", "url": "https://www.google.com/finance/quote/fra:twtr"}, {"text": "MUN:TWR", "url": "https://www.google.com/finance/quote/mun:twr"}, {"text": "MOEX:TWTR-RM", "url": "https://www.google.com/finance/quote/moex:twtr-rm"}, {"text": "BCBA:TWTR", "url": "https://www.google.com/finance/quote/bcba:twtr"}, {"text": "HAN:TWR", "url": "https://www.google.com/finance/quote/han:twr"}, {"text": "HAM:TWR", "url": "https://www.google.com/finance/quote/ham:twr"}, {"text": "MEX:TWTR", "url": "https://www.google.com/finance/quote/mex:twtr"}, {"text": "XETR:TWR", "url": "https://www.google.com/finance/quote/twr:xetr"}, {"text": "DUS:TWR", "url": "https://www.google.com/finance/quote/dus:twr"}], "crunchbase_description": "Twitter is a social networking platform that allows its users to send and read micro-blogs of up to 280-characters known as tweets.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Recommender system", "field_count": 8}, {"field_name": "Machine translation", "field_count": 6}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Convolutional neural network", "field_count": 5}, {"field_name": "Inference", "field_count": 4}, {"field_name": "Language model", "field_count": 3}, {"field_name": "Robustness (computer science)", "field_count": 3}, {"field_name": "Topic model", "field_count": 2}, {"field_name": "Unsupervised learning", "field_count": 2}, {"field_name": "Bayesian optimization", "field_count": 2}], "clusters": [{"cluster_id": 1989, "cluster_count": 8}, {"cluster_id": 3167, "cluster_count": 5}, {"cluster_id": 3527, "cluster_count": 5}, {"cluster_id": 2644, "cluster_count": 4}, {"cluster_id": 47386, "cluster_count": 3}, {"cluster_id": 20756, "cluster_count": 3}, {"cluster_id": 1338, "cluster_count": 3}, {"cluster_id": 12150, "cluster_count": 3}, {"cluster_id": 7095, "cluster_count": 3}, {"cluster_id": 1519, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 375}, {"ref_CSET_id": 163, "referenced_count": 200}, {"ref_CSET_id": 87, "referenced_count": 191}, {"ref_CSET_id": 734, "referenced_count": 59}, {"ref_CSET_id": 115, "referenced_count": 46}, {"ref_CSET_id": 127, "referenced_count": 43}, {"ref_CSET_id": 6, "referenced_count": 37}, {"ref_CSET_id": 792, "referenced_count": 32}, {"ref_CSET_id": 23, "referenced_count": 19}, {"ref_CSET_id": 21, "referenced_count": 17}], "tasks": [{"referent": "classification", "task_count": 19}, {"referent": "classification_tasks", "task_count": 12}, {"referent": "recommendation_systems", "task_count": 10}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 7}, {"referent": "machine_translation", "task_count": 6}, {"referent": "multi_task_learning", "task_count": 6}, {"referent": "recommendation", "task_count": 5}, {"referent": "social_network_analysis", "task_count": 5}, {"referent": "sentiment_detection", "task_count": 5}, {"referent": "inference_attack", "task_count": 5}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 25}, {"referent": "3d_representations", "method_count": 13}, {"referent": "convolutional_neural_networks", "method_count": 10}, {"referent": "ggs_nns", "method_count": 9}, {"referent": "optimization", "method_count": 9}, {"referent": "vqa_models", "method_count": 8}, {"referent": "mad_learning", "method_count": 8}, {"referent": "auto_classifier", "method_count": 8}, {"referent": "q_learning", "method_count": 8}, {"referent": "neural_architecture_search", "method_count": 7}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [44, 55, 50, 46, 29, 87, 118, 97, 121, 40, 0], "total": 687, "isTopResearch": false, "rank": 238, "fortune500_rank": 92}, "ai_publications": {"counts": [6, 9, 9, 12, 7, 11, 25, 24, 28, 7, 0], "total": 138, "isTopResearch": false, "rank": 102, "fortune500_rank": 31}, "ai_publications_growth": {"counts": [], "total": -20.777777777777775, "isTopResearch": false, "rank": 1333, "fortune500_rank": 388}, "ai_pubs_top_conf": {"counts": [7, 3, 6, 6, 5, 3, 16, 10, 12, 2, 0], "total": 70, "isTopResearch": false, "rank": 36, "fortune500_rank": 15}, "citation_counts": {"counts": [58, 108, 200, 387, 1079, 2230, 3834, 7871, 10727, 5107, 126], "total": 31727, "isTopResearch": false, "rank": 21, "fortune500_rank": 11}, "cv_pubs": {"counts": [1, 1, 2, 7, 1, 2, 4, 3, 4, 1, 0], "total": 26, "isTopResearch": true, "rank": 122, "fortune500_rank": 38}, "nlp_pubs": {"counts": [1, 6, 1, 2, 0, 1, 3, 6, 8, 4, 0], "total": 32, "isTopResearch": true, "rank": 54, "fortune500_rank": 19}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "fortune500_rank": 67}, "citations_per_article": {"counts": [9.666666666666666, 12.0, 22.22222222222222, 32.25, 154.14285714285714, 202.72727272727272, 153.36, 327.9583333333333, 383.10714285714283, 729.5714285714286, 0], "total": 229.90579710144928, "isTopResearch": false, "rank": 11, "fortune500_rank": 3}}, "patents": {"ai_patents": {"counts": [0, 0, 5, 19, 6, 8, 5, 3, 1, 0, 0], "total": 47, "table": null, "rank": 223, "fortune500_rank": 70}, "ai_patents_growth": {"counts": [], "total": -14.722222222222221, "table": null, "rank": 1447, "fortune500_rank": 418}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 50, 190, 60, 80, 50, 30, 10, 0, 0], "total": 470, "table": null, "rank": 223, "fortune500_rank": 70}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 5, 3, 7, 3, 2, 1, 0, 0], "total": 22, "table": "industry", "rank": 182, "fortune500_rank": 69}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 4, 13, 2, 2, 5, 0, 0, 0, 0], "total": 26, "table": "industry", "rank": 119, "fortune500_rank": 48}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 1, 1, 2, 1, 1, 1, 1, 0, 0], "total": 8, "table": "industry", "rank": 21, "fortune500_rank": 11}, "Business": {"counts": [0, 0, 1, 0, 2, 1, 1, 1, 1, 0, 0], "total": 7, "table": "industry", "rank": 183, "fortune500_rank": 61}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0], "total": 3, "table": "application", "rank": 214, "fortune500_rank": 70}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 3, 11, 2, 1, 0, 0, 0, 0, 0], "total": 17, "table": "application", "rank": 200, "fortune500_rank": 57}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3369, "rank": 145, "fortune500_rank": 84}, "ai_jobs": {"counts": null, "total": 581, "rank": 93, "fortune500_rank": 50}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Twitter is an American microblogging and social networking service on which users post and interact with messages known as \"tweets\". Registered users can post, like and retweet tweets, but unregistered users can only read them. Users access Twitter through its website interface or its mobile-device application software (\"app\"), though the service could also be accessed via SMS before April 2020. Twitter, Inc. is based in San Francisco, California, and has more than 25 offices around the world. Tweets were originally restricted to 140 characters, but was doubled to 280 for non-CJK languages in November 2017. Audio and video tweets remain limited to 140 seconds for most accounts.", "wikipedia_link": "https://en.wikipedia.org/wiki/Twitter", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2019, "country": "United States", "website": "https://www.allstate.com/", "crunchbase": {"text": " 008415d1-968e-0abd-3eb6-05de11b17d1d", "url": " https://www.crunchbase.com/organization/allstate"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/allstate"], "stage": "Mature", "name": "Allstate", "patent_name": "Allstate", "continent": "North America", "local_logo": null, "aliases": "Allstate; The Allstate Corporation", "permid_links": [{"text": 4297058125, "url": "https://permid.org/1-4297058125"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ALL PR I", "url": "https://www.google.com/finance/quote/ALL PR I:NYSE"}, {"text": "NYSE:ALL PR H", "url": "https://www.google.com/finance/quote/ALL PR H:NYSE"}, {"text": "NYSE:ALL PR G", "url": "https://www.google.com/finance/quote/ALL PR G:NYSE"}, {"text": "NYSE:ALL", "url": "https://www.google.com/finance/quote/ALL:NYSE"}, {"text": "NYSE:ALL PR B", "url": "https://www.google.com/finance/quote/ALL PR B:NYSE"}], "market_full": [{"text": "VIE:ALLS", "url": "https://www.google.com/finance/quote/ALLS:VIE"}, {"text": "BRN:ALS", "url": "https://www.google.com/finance/quote/ALS:BRN"}, {"text": "ASE:ALL PR G", "url": "https://www.google.com/finance/quote/ALL PR G:ASE"}, {"text": "NYQ:ALL PR G", "url": "https://www.google.com/finance/quote/ALL PR G:NYQ"}, {"text": "NYQ:ALL PR B", "url": "https://www.google.com/finance/quote/ALL PR B:NYQ"}, {"text": "NYQ:ALL PR H", "url": "https://www.google.com/finance/quote/ALL PR H:NYQ"}, {"text": "NYQ:ALL", "url": "https://www.google.com/finance/quote/ALL:NYQ"}, {"text": "ASE:ALL PR H", "url": "https://www.google.com/finance/quote/ALL PR H:ASE"}, {"text": "SAO:A1TT34", "url": "https://www.google.com/finance/quote/A1TT34:SAO"}, {"text": "MCX:ALL-RM", "url": "https://www.google.com/finance/quote/ALL-RM:MCX"}, {"text": "NYQ:ALL PR I", "url": "https://www.google.com/finance/quote/ALL PR I:NYQ"}, {"text": "DUS:ALS", "url": "https://www.google.com/finance/quote/ALS:DUS"}, {"text": "LSE:0HCZ", "url": "https://www.google.com/finance/quote/0HCZ:LSE"}, {"text": "ASE:ALL PR B", "url": "https://www.google.com/finance/quote/ALL PR B:ASE"}, {"text": "ASE:ALL", "url": "https://www.google.com/finance/quote/ALL:ASE"}, {"text": "NYSE:ALL PR I", "url": "https://www.google.com/finance/quote/ALL PR I:NYSE"}, {"text": "ASE:ALL PR I", "url": "https://www.google.com/finance/quote/ALL PR I:ASE"}, {"text": "BER:ALS", "url": "https://www.google.com/finance/quote/ALS:BER"}, {"text": "NYSE:ALL PR H", "url": "https://www.google.com/finance/quote/ALL PR H:NYSE"}, {"text": "GER:ALSX", "url": "https://www.google.com/finance/quote/ALSX:GER"}, {"text": "NYSE:ALL PR G", "url": "https://www.google.com/finance/quote/ALL PR G:NYSE"}, {"text": "MUN:ALS", "url": "https://www.google.com/finance/quote/ALS:MUN"}, {"text": "NYSE:ALL", "url": "https://www.google.com/finance/quote/ALL:NYSE"}, {"text": "DEU:ALL", "url": "https://www.google.com/finance/quote/ALL:DEU"}, {"text": "HAM:ALS", "url": "https://www.google.com/finance/quote/ALS:HAM"}, {"text": "FRA:ALS", "url": "https://www.google.com/finance/quote/ALS:FRA"}, {"text": "STU:ALS:", "url": "https://www.google.com/finance/quote/ALS:STU"}, {"text": "NYSE:ALL PR B", "url": "https://www.google.com/finance/quote/ALL PR B:NYSE"}, {"text": "HAN:ALS", "url": "https://www.google.com/finance/quote/ALS:HAN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Time series", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Transparency (graphic)", "field_count": 1}], "clusters": [{"cluster_id": 4310, "cluster_count": 1}, {"cluster_id": 74488, "cluster_count": 1}, {"cluster_id": 23924, "cluster_count": 1}, {"cluster_id": 60925, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 805, "referenced_count": 3}, {"ref_CSET_id": 319, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 1952, "referenced_count": 1}, {"ref_CSET_id": 1502, "referenced_count": 1}, {"ref_CSET_id": 110, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}], "tasks": [{"referent": "classification_tasks", "task_count": 1}, {"referent": "reasoning", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "hierarchical_reinforcement_learning", "task_count": 1}, {"referent": "image_classification_tasks", "task_count": 1}, {"referent": "domain_generalization", "task_count": 1}], "methods": [{"referent": "mrnn", "method_count": 2}, {"referent": "residual_srm", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "image_representations", "method_count": 1}, {"referent": "sequence_to_sequence_models", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "transformer_xl", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 3, 21, 6, 4, 6, 3, 1, 3, 5, 1], "total": 56, "isTopResearch": false, "rank": 599, "sp500_rank": 324, "fortune500_rank": 222}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 1], "total": 5, "isTopResearch": false, "rank": 540, "sp500_rank": 262, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 4, 3, 0], "total": 8, "isTopResearch": false, "rank": 782, "sp500_rank": 323, "fortune500_rank": 210}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 4.0, 3.0, 0.0], "total": 1.6, "isTopResearch": false, "rank": 854, "sp500_rank": 340, "fortune500_rank": 231}}, "patents": {"ai_patents": {"counts": [0, 2, 1, 13, 11, 18, 10, 18, 3, 0, 0], "total": 76, "table": null, "rank": 178, "sp500_rank": 112, "fortune500_rank": 56}, "ai_patents_growth": {"counts": [], "total": 33.063973063973066, "table": null, "rank": 266, "sp500_rank": 122, "fortune500_rank": 77}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 20, 10, 130, 110, 180, 100, 180, 30, 0, 0], "total": 760, "table": null, "rank": 178, "sp500_rank": 112, "fortune500_rank": 56}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 4, 1, 1, 0, 0, 0, 0], "total": 6, "table": null, "rank": 113, "sp500_rank": 73, "fortune500_rank": 47}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0], "total": 4, "table": null, "rank": 141, "sp500_rank": 95, "fortune500_rank": 51}, "Transportation": {"counts": [0, 1, 1, 12, 4, 4, 3, 6, 0, 0, 0], "total": 31, "table": "industry", "rank": 59, "sp500_rank": 46, "fortune500_rank": 19}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 4, 7, 4, 7, 1, 0, 0], "total": 24, "table": "industry", "rank": 175, "sp500_rank": 97, "fortune500_rank": 65}, "Banking_and_Finance": {"counts": [0, 2, 1, 6, 5, 8, 6, 7, 1, 0, 0], "total": 36, "table": "industry", "rank": 28, "sp500_rank": 22, "fortune500_rank": 15}, "Telecommunications": {"counts": [0, 1, 0, 2, 3, 6, 6, 5, 0, 0, 0], "total": 23, "table": "industry", "rank": 128, "sp500_rank": 80, "fortune500_rank": 51}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54, "fortune500_rank": 34}, "Business": {"counts": [0, 1, 1, 2, 6, 7, 3, 4, 2, 0, 0], "total": 26, "table": "industry", "rank": 85, "sp500_rank": 59, "fortune500_rank": 34}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 75, "sp500_rank": 50, "fortune500_rank": 39}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 160, "sp500_rank": 91, "fortune500_rank": 48}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 1, 1, 3, 1, 3, 1, 0, 0], "total": 11, "table": "application", "rank": 121, "sp500_rank": 86, "fortune500_rank": 46}, "Control": {"counts": [0, 1, 1, 8, 4, 6, 2, 5, 0, 0, 0], "total": 27, "table": "application", "rank": 77, "sp500_rank": 57, "fortune500_rank": 24}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 3, 4, 2, 3, 2, 0, 0], "total": 14, "table": "application", "rank": 218, "sp500_rank": 123, "fortune500_rank": 64}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 1, 5, 1, 1, 2, 1, 0, 0, 0], "total": 11, "table": "application", "rank": 114, "sp500_rank": 88, "fortune500_rank": 34}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3362, "rank": 146, "sp500_rank": 86, "fortune500_rank": 85}, "ai_jobs": {"counts": null, "total": 479, "rank": 118, "sp500_rank": 76, "fortune500_rank": 65}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 844, "country": "Sweden", "website": "http://www.spotify.com", "crunchbase": {"text": "022417b5-4980-6c54-0f3c-6736bbbb1a5e", "url": "https://www.crunchbase.com/organization/spotify"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/spotify"], "stage": "Mature", "name": "Spotify", "patent_name": "spotify", "continent": "Europe", "local_logo": "spotify.png", "aliases": "Spotify Technology S.A", "permid_links": [{"text": 4298094062, "url": "https://permid.org/1-4298094062"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SPOT", "url": "https://www.google.com/finance/quote/nyse:spot"}], "market_full": [{"text": "NYSE:SPOT", "url": "https://www.google.com/finance/quote/nyse:spot"}], "crunchbase_description": "Spotify is a commercial music streaming service that provides restricted digital content from a range of record labels and artists.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Recommender system", "field_count": 6}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Latent variable", "field_count": 2}, {"field_name": "Source separation", "field_count": 2}, {"field_name": "Ranking", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Inference", "field_count": 2}, {"field_name": "Automatic summarization", "field_count": 2}, {"field_name": "Adaptive learning", "field_count": 1}], "clusters": [{"cluster_id": 3240, "cluster_count": 9}, {"cluster_id": 12562, "cluster_count": 4}, {"cluster_id": 14994, "cluster_count": 4}, {"cluster_id": 4358, "cluster_count": 4}, {"cluster_id": 3758, "cluster_count": 3}, {"cluster_id": 148, "cluster_count": 3}, {"cluster_id": 21488, "cluster_count": 3}, {"cluster_id": 32830, "cluster_count": 2}, {"cluster_id": 3291, "cluster_count": 2}, {"cluster_id": 68929, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 115}, {"ref_CSET_id": 163, "referenced_count": 82}, {"ref_CSET_id": 792, "referenced_count": 27}, {"ref_CSET_id": 844, "referenced_count": 23}, {"ref_CSET_id": 87, "referenced_count": 15}, {"ref_CSET_id": 6, "referenced_count": 14}, {"ref_CSET_id": 115, "referenced_count": 13}, {"ref_CSET_id": 176, "referenced_count": 13}, {"ref_CSET_id": 1132, "referenced_count": 12}, {"ref_CSET_id": 23, "referenced_count": 12}], "tasks": [{"referent": "recommendation_systems", "task_count": 8}, {"referent": "recommendation", "task_count": 8}, {"referent": "music_generation", "task_count": 5}, {"referent": "classification", "task_count": 5}, {"referent": "source_separation", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "action_generation", "task_count": 4}, {"referent": "advertising", "task_count": 4}, {"referent": "classification_tasks", "task_count": 3}, {"referent": "code_search", "task_count": 3}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 13}, {"referent": "vqa_models", "method_count": 6}, {"referent": "mad_learning", "method_count": 5}, {"referent": "3d_representations", "method_count": 5}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "autoencoder", "method_count": 4}, {"referent": "generative_adversarial_networks", "method_count": 4}, {"referent": "logistic_regression", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "dueling_network", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [3, 2, 3, 6, 15, 36, 42, 56, 38, 36, 0], "total": 237, "isTopResearch": false, "rank": 390}, "ai_publications": {"counts": [0, 0, 0, 1, 8, 13, 18, 18, 9, 13, 0], "total": 80, "isTopResearch": false, "rank": 140}, "ai_publications_growth": {"counts": [], "total": -1.8518518518518523, "isTopResearch": false, "rank": 1218}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 3, 11, 12, 16, 8, 4, 0], "total": 54, "isTopResearch": false, "rank": 41}, "citation_counts": {"counts": [0, 0, 0, 0, 22, 94, 213, 292, 417, 328, 12], "total": 1378, "isTopResearch": false, "rank": 167}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 2, 0, 1, 1, 4, 0], "total": 9, "isTopResearch": true, "rank": 99}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 2.75, 7.230769230769231, 11.833333333333334, 16.22222222222222, 46.333333333333336, 25.23076923076923, 0], "total": 17.225, "isTopResearch": false, "rank": 361}}, "patents": {"ai_patents": {"counts": [2, 3, 4, 4, 3, 10, 14, 12, 2, 0, 0], "total": 54, "table": null, "rank": 212}, "ai_patents_growth": {"counts": [], "total": 86.34920634920637, "table": null, "rank": 132}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [20, 30, 40, 40, 30, 100, 140, 120, 20, 0, 0], "total": 540, "table": null, "rank": 212}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [2, 3, 4, 4, 2, 5, 10, 8, 1, 0, 0], "total": 39, "table": "industry", "rank": 135}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 1, 2, 1, 1, 2, 4, 1, 0, 0, 0], "total": 12, "table": "industry", "rank": 160}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 3, 1, 1, 0, 1, 0, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 196}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 1, 0, 1, 5, 4, 4, 0, 0, 0], "total": 15, "table": "industry", "rank": 11}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 2, 5, 8, 1, 1, 0, 0], "total": 17, "table": "application", "rank": 57}, "Knowledge_Representation": {"counts": [1, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0], "total": 5, "table": "application", "rank": 126}, "Planning_and_Scheduling": {"counts": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 244}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 3, 3, 1, 0, 0, 0], "total": 8, "table": "application", "rank": 269}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 4, 4, 2, 0, 0, 0], "total": 10, "table": "application", "rank": 114}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3359, "rank": 147}, "ai_jobs": {"counts": null, "total": 788, "rank": 59}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Spotify Technology S.A is a Luxembourg-based holding company who owns Spotify AB :43, a Swedish audio streaming and media services provider, founded in 2006 by Daniel Ek. Spotify is headquartered in Stockholm, Sweden, with offices in 17 different countries around the world. It is one of the world\u2019s largest music streaming service providers, with over 345 million monthly active users, including 155 million paying subscribers, as of December 2020.", "wikipedia_link": "https://en.wikipedia.org/wiki/Spotify", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2509, "country": "United States", "website": "https://www.thermofisher.com/", "crunchbase": {"text": "b0422dd2-b32a-efc0-a274-c65351f5c8a9", "url": "https://www.crunchbase.com/organization/thermo-fisher-scientific"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/thermo-fisher-scientific"], "stage": "Mature", "name": "Thermo Fisher Scientific", "patent_name": "thermo fisher scientific", "continent": "North America", "local_logo": "thermo_fisher_scientific.png", "aliases": "Thermo Fisher Scientific Inc", "permid_links": [{"text": 4295905068, "url": "https://permid.org/1-4295905068"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TMO", "url": "https://www.google.com/finance/quote/nyse:tmo"}], "market_full": [{"text": "DUS:TN8", "url": "https://www.google.com/finance/quote/dus:tn8"}, {"text": "BER:TN8", "url": "https://www.google.com/finance/quote/ber:tn8"}, {"text": "VIE:TMOF", "url": "https://www.google.com/finance/quote/tmof:vie"}, {"text": "GER:TN8X", "url": "https://www.google.com/finance/quote/ger:tn8x"}, {"text": "NYQ:TMO", "url": "https://www.google.com/finance/quote/nyq:tmo"}, {"text": "MUN:TN8", "url": "https://www.google.com/finance/quote/mun:tn8"}, {"text": "STU:TN8", "url": "https://www.google.com/finance/quote/stu:tn8"}, {"text": "FRA:TN8", "url": "https://www.google.com/finance/quote/fra:tn8"}, {"text": "SAO:TMOS34", "url": "https://www.google.com/finance/quote/sao:tmos34"}, {"text": "MCX:TMO-RM", "url": "https://www.google.com/finance/quote/mcx:tmo-rm"}, {"text": "LSE:0R0H", "url": "https://www.google.com/finance/quote/0r0h:lse"}, {"text": "BUE:TMO3", "url": "https://www.google.com/finance/quote/bue:tmo3"}, {"text": "ASE:TMO", "url": "https://www.google.com/finance/quote/ase:tmo"}, {"text": "BRN:TN8", "url": "https://www.google.com/finance/quote/brn:tn8"}, {"text": "DEU:TMO", "url": "https://www.google.com/finance/quote/deu:tmo"}, {"text": "NYSE:TMO", "url": "https://www.google.com/finance/quote/nyse:tmo"}, {"text": "MEX:TMO*", "url": "https://www.google.com/finance/quote/mex:tmo*"}], "crunchbase_description": "Thermo Fisher Scientific is a provider of laboratory information management and scientific data systems.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "Actuator", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Smoothing", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Raster scan", "field_count": 1}, {"field_name": "Iterative reconstruction", "field_count": 1}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Fiducial marker", "field_count": 1}], "clusters": [{"cluster_id": 91644, "cluster_count": 3}, {"cluster_id": 12408, "cluster_count": 2}, {"cluster_id": 2505, "cluster_count": 2}, {"cluster_id": 1501, "cluster_count": 2}, {"cluster_id": 1206, "cluster_count": 2}, {"cluster_id": 54143, "cluster_count": 1}, {"cluster_id": 8348, "cluster_count": 1}, {"cluster_id": 49769, "cluster_count": 1}, {"cluster_id": 5796, "cluster_count": 1}, {"cluster_id": 627, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 21}, {"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 21, "referenced_count": 8}, {"ref_CSET_id": 2509, "referenced_count": 8}, {"ref_CSET_id": 161, "referenced_count": 7}, {"ref_CSET_id": 184, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 223, "referenced_count": 5}, {"ref_CSET_id": 1962, "referenced_count": 3}, {"ref_CSET_id": 263, "referenced_count": 2}], "tasks": [{"referent": "image_analysis", "task_count": 4}, {"referent": "electron_microscopy", "task_count": 4}, {"referent": "image_processing", "task_count": 3}, {"referent": "medical_procedure", "task_count": 3}, {"referent": "segmentation", "task_count": 3}, {"referent": "disease_detection", "task_count": 2}, {"referent": "cancer", "task_count": 2}, {"referent": "information_extraction", "task_count": 2}, {"referent": "motion_planning", "task_count": 2}, {"referent": "image_restoration", "task_count": 2}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "q_learning", "method_count": 3}, {"referent": "1d_cnn", "method_count": 3}, {"referent": "3d_reconstruction", "method_count": 2}, {"referent": "non_parametric_regression", "method_count": 2}, {"referent": "autoencoder", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 2}, {"referent": "(2+1)d_convolution", "method_count": 2}, {"referent": "bpnet", "method_count": 2}, {"referent": "lime", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [887, 840, 812, 825, 871, 867, 966, 836, 824, 670, 7], "total": 8405, "isTopResearch": false, "rank": 43, "sp500_rank": 38, "fortune500_rank": 15}, "ai_publications": {"counts": [0, 4, 2, 2, 1, 5, 5, 3, 4, 3, 0], "total": 29, "isTopResearch": false, "rank": 244, "sp500_rank": 147, "fortune500_rank": 74}, "ai_publications_growth": {"counts": [], "total": -10.555555555555555, "isTopResearch": false, "rank": 1270, "sp500_rank": 316, "fortune500_rank": 366}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [34, 31, 39, 45, 68, 78, 113, 130, 120, 105, 2], "total": 765, "isTopResearch": false, "rank": 214, "sp500_rank": 121, "fortune500_rank": 67}, "cv_pubs": {"counts": [0, 1, 0, 1, 0, 3, 3, 1, 3, 3, 0], "total": 15, "isTopResearch": true, "rank": 163, "sp500_rank": 99, "fortune500_rank": 46}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114, "fortune500_rank": 49}, "citations_per_article": {"counts": [0, 7.75, 19.5, 22.5, 68.0, 15.6, 22.6, 43.333333333333336, 30.0, 35.0, 0], "total": 26.379310344827587, "isTopResearch": false, "rank": 218, "sp500_rank": 60, "fortune500_rank": 67}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 4, 11, 10, 10, 1, 0, 0], "total": 37, "table": null, "rank": 249, "sp500_rank": 142, "fortune500_rank": 79}, "ai_patents_growth": {"counts": [], "total": 55.303030303030305, "table": null, "rank": 190, "sp500_rank": 91, "fortune500_rank": 50}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 40, 110, 100, 100, 10, 0, 0], "total": 370, "table": null, "rank": 249, "sp500_rank": 142, "fortune500_rank": 79}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 3, 5, 5, 4, 1, 0, 0], "total": 18, "table": "industry", "rank": 30, "sp500_rank": 25, "fortune500_rank": 11}, "Life_Sciences": {"counts": [0, 0, 1, 0, 2, 5, 1, 2, 0, 0, 0], "total": 11, "table": "industry", "rank": 78, "sp500_rank": 54, "fortune500_rank": 32}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 1, 1, 3, 3, 0, 0, 0], "total": 9, "table": "industry", "rank": 268, "sp500_rank": 144, "fortune500_rank": 97}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 35, "sp500_rank": 22, "fortune500_rank": 17}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "sp500_rank": 101, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 212, "sp500_rank": 129, "fortune500_rank": 73}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 6, 8, 7, 0, 0, 0], "total": 22, "table": "application", "rank": 180, "sp500_rank": 105, "fortune500_rank": 52}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 5, 5, 2, 1, 0, 0], "total": 13, "table": "application", "rank": 104, "sp500_rank": 80, "fortune500_rank": 32}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3349, "rank": 148, "sp500_rank": 87, "fortune500_rank": 86}, "ai_jobs": {"counts": null, "total": 297, "rank": 181, "sp500_rank": 117, "fortune500_rank": 101}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Thermo Fisher Scientific is an American provisioner of scientific instrumentation, reagents and consumables, and software and services to healthcare, life science, and other laboratories in academia, government, and industry (including in the biotechnology and pharmaceutical sectors). Based in Waltham, Massachusetts, Thermo Fisher was created in 2006 by the merger of Thermo Electron and Fisher Scientific, to form a company with US$ 9 billion in combined revenues.", "wikipedia_link": "https://en.wikipedia.org/wiki/Thermo_Fisher_Scientific", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1893, "country": "United States", "website": "https://www.pepsico.com/", "crunchbase": {"text": " 3fddec04-3af4-4025-503c-dded57fab05b", "url": " https://www.crunchbase.com/organization/pepsico"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pepsico"], "stage": "Mature", "name": "Pepsico", "patent_name": "PepsiCo", "continent": "North America", "local_logo": null, "aliases": "Pepsi; PepsiCo; Pepsico, Inc", "permid_links": [{"text": 4295904718, "url": "https://permid.org/1-4295904718"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:PEP", "url": "https://www.google.com/finance/quote/NASDAQ:PEP"}], "market_full": [{"text": "STU:PEP", "url": "https://www.google.com/finance/quote/PEP:STU"}, {"text": "VIE:PEPS", "url": "https://www.google.com/finance/quote/PEPS:VIE"}, {"text": "SWX:PEP", "url": "https://www.google.com/finance/quote/PEP:SWX"}, {"text": "SGO:PEPCL", "url": "https://www.google.com/finance/quote/PEPCL:SGO"}, {"text": "MEX:PEP", "url": "https://www.google.com/finance/quote/MEX:PEP"}, {"text": "FRA:PEP", "url": "https://www.google.com/finance/quote/FRA:PEP"}, {"text": "SAO:PEPB34", "url": "https://www.google.com/finance/quote/PEPB34:SAO"}, {"text": "NASDAQ:PEP", "url": "https://www.google.com/finance/quote/NASDAQ:PEP"}, {"text": "HAN:PEP", "url": "https://www.google.com/finance/quote/HAN:PEP"}, {"text": "DEU:PEP", "url": "https://www.google.com/finance/quote/DEU:PEP"}, {"text": "SGO:PEP", "url": "https://www.google.com/finance/quote/PEP:SGO"}, {"text": "DUS:PEP", "url": "https://www.google.com/finance/quote/DUS:PEP"}, {"text": "GER:PEPX", "url": "https://www.google.com/finance/quote/GER:PEPX"}, {"text": "BRU:PEP", "url": "https://www.google.com/finance/quote/BRU:PEP"}, {"text": "MCX:PEP-RM", "url": "https://www.google.com/finance/quote/MCX:PEP-RM"}, {"text": "BUE:PEP3", "url": "https://www.google.com/finance/quote/BUE:PEP3"}, {"text": "HAM:PEP", "url": "https://www.google.com/finance/quote/HAM:PEP"}, {"text": "BER:PEP", "url": "https://www.google.com/finance/quote/BER:PEP"}, {"text": "LSE:0QOS", "url": "https://www.google.com/finance/quote/0QOS:LSE"}, {"text": "UAX:PEP", "url": "https://www.google.com/finance/quote/PEP:UAX"}, {"text": "MUN:PEP", "url": "https://www.google.com/finance/quote/MUN:PEP"}, {"text": "BRN:PEP", "url": "https://www.google.com/finance/quote/BRN:PEP"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [{"cluster_id": 813, "cluster_count": 1}, {"cluster_id": 12837, "cluster_count": 1}, {"cluster_id": 25155, "cluster_count": 1}, {"cluster_id": 4008, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "image_restoration", "task_count": 2}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "robotic_process_automation", "task_count": 1}, {"referent": "prototype_selection", "task_count": 1}, {"referent": "industrial_robots", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "hierarchical_clustering", "task_count": 1}, {"referent": "image_similarity_search", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "super_resolution", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}, {"referent": "als", "method_count": 1}, {"referent": "normalization", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [73, 81, 70, 72, 62, 99, 70, 107, 87, 65, 3], "total": 789, "isTopResearch": false, "rank": 216, "sp500_rank": 154, "fortune500_rank": 80}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 2, 1, 0], "total": 5, "isTopResearch": false, "rank": 540, "sp500_rank": 262, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400, "fortune500_rank": 419}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 7, 0], "total": 10, "isTopResearch": false, "rank": 760, "sp500_rank": 314, "fortune500_rank": 204}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0.0, 0, 0, 0.5, 7.0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "sp500_rank": 327, "fortune500_rank": 217}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 606, "sp500_rank": 248, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 0, 10, 0, 0, 0], "total": 30, "table": null, "rank": 606, "sp500_rank": 248, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "sp500_rank": 119, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 132, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 61, "sp500_rank": 47, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 212, "sp500_rank": 129, "fortune500_rank": 73}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3340, "rank": 149, "sp500_rank": 88, "fortune500_rank": 87}, "ai_jobs": {"counts": null, "total": 653, "rank": 81, "sp500_rank": 55, "fortune500_rank": 42}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages"}, {"cset_id": 440, "country": "United States", "website": "https://www.experian.com/", "crunchbase": {"text": "df535df4-1d9c-ee05-b259-784e5066270e", "url": "https://www.crunchbase.com/organization/experian"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/experian"], "stage": "Mature", "name": "Experian", "patent_name": "experian", "continent": "North America", "local_logo": "experian.png", "aliases": "Experian Information Solutions, Inc", "permid_links": [{"text": 5035445533, "url": "https://permid.org/1-5035445533"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "BER:J2BA", "url": "https://www.google.com/finance/quote/ber:j2ba"}, {"text": "OTC:EXPGY", "url": "https://www.google.com/finance/quote/expgy:otc"}, {"text": "FRA:EXPN", "url": "https://www.google.com/finance/quote/expn:fra"}, {"text": "BMV:EXPN/N", "url": "https://www.google.com/finance/quote/bmv:expn/n"}, {"text": "FWB:J2BA", "url": "https://www.google.com/finance/quote/fwb:j2ba"}, {"text": "MUN:J2BA", "url": "https://www.google.com/finance/quote/j2ba:mun"}, {"text": "LSE:EXPN", "url": "https://www.google.com/finance/quote/expn:lse"}, {"text": "DUS:J2BA", "url": "https://www.google.com/finance/quote/dus:j2ba"}], "crunchbase_description": "Experian unlocks the power of data to create opportunities for consumers, businesses, and society.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Coordinate descent", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Boosting (machine learning)", "field_count": 1}, {"field_name": "Matching (graph theory)", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Natural language", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 6016, "cluster_count": 3}, {"cluster_id": 19801, "cluster_count": 2}, {"cluster_id": 4358, "cluster_count": 1}, {"cluster_id": 5660, "cluster_count": 1}, {"cluster_id": 13825, "cluster_count": 1}, {"cluster_id": 73127, "cluster_count": 1}, {"cluster_id": 13551, "cluster_count": 1}, {"cluster_id": 405, "cluster_count": 1}, {"cluster_id": 80301, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 13}, {"ref_CSET_id": 101, "referenced_count": 9}, {"ref_CSET_id": 792, "referenced_count": 5}, {"ref_CSET_id": 1791, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 440, "referenced_count": 1}, {"ref_CSET_id": 191, "referenced_count": 1}], "tasks": [{"referent": "hierarchical_clustering", "task_count": 2}, {"referent": "change_detection_for_remote_sensing_images", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "computer_vision", "task_count": 2}, {"referent": "cell_segmentation", "task_count": 1}, {"referent": "influence_approximation", "task_count": 1}, {"referent": "customer_segmentation", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}, {"referent": "pedestrian_detection", "task_count": 1}, {"referent": "target_recognition", "task_count": 1}], "methods": [{"referent": "logistic_regression", "method_count": 2}, {"referent": "l1_regularization", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "policy_gradient_methods", "method_count": 1}, {"referent": "edgeboxes", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "shap", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "language_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [3, 1, 5, 8, 9, 3, 9, 3, 5, 3, 0], "total": 49, "isTopResearch": false, "rank": 619}, "ai_publications": {"counts": [0, 0, 2, 2, 2, 2, 2, 1, 0, 0, 0], "total": 11, "isTopResearch": false, "rank": 397}, "ai_publications_growth": {"counts": [], "total": -75.0, "isTopResearch": false, "rank": 1526}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 0, 4, 4, 9, 9, 10, 24, 56, 30, 1], "total": 147, "isTopResearch": false, "rank": 444}, "cv_pubs": {"counts": [0, 0, 2, 0, 1, 1, 2, 0, 0, 0, 0], "total": 6, "isTopResearch": true, "rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 2.0, 2.0, 4.5, 4.5, 5.0, 24.0, 0, 0, 0], "total": 13.363636363636363, "isTopResearch": false, "rank": 439}}, "patents": {"ai_patents": {"counts": [0, 1, 1, 1, 2, 3, 2, 3, 2, 0, 0], "total": 15, "table": null, "rank": 355}, "ai_patents_growth": {"counts": [], "total": 22.222222222222218, "table": null, "rank": 297}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 10, 10, 20, 30, 20, 30, 20, 0, 0], "total": 150, "table": null, "rank": 355}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 1, 2, 1, 1, 1, 1, 0, 0], "total": 8, "table": "industry", "rank": 273}, "Banking_and_Finance": {"counts": [0, 1, 0, 1, 1, 2, 0, 1, 1, 0, 0], "total": 7, "table": "industry", "rank": 88}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 1, 1, 0, 0, 2, 0, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 213}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3324, "rank": 150}, "ai_jobs": {"counts": null, "total": 655, "rank": 79}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Experian plc is an Anglo-Irish multinational consumer credit reporting company. Experian collects and aggregates information on over 1 billion people and businesses including 235 million individual U.S. consumers and more than 25 million U.S. businesses.", "wikipedia_link": "https://en.wikipedia.org/wiki/Experian", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 484, "country": "United States", "website": "https://www.here.com/en", "crunchbase": {"text": "fff9d7da-1a06-4e5b-8133-08271ea44e87", "url": "https://www.crunchbase.com/organization/here-technologies"}, "child_crunchbase": [{"text": "803564ba-2849-2e17-0e7e-d7aae47f12a8", "url": "https://www.crunchbase.com/organization/medio"}], "linkedin": ["https://www.linkedin.com/company/medio", "https://www.linkedin.com/company/here"], "stage": "Mature", "name": "Here Technologies", "patent_name": "here technologies ", "continent": "North America", "local_logo": "here_technologies_.png", "aliases": "Here International Bv; Here Maps; Here, A Nokia Company; here technologies ", "permid_links": [{"text": 5052665070, "url": "https://permid.org/1-5052665070"}], "parent_info": "Audi", "agg_child_info": "Medio", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "HERE Technologies creates living three-dimensional maps that grow upwards, breathing with layers of information and insights.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 7}, {"field_name": "Segmentation", "field_count": 4}, {"field_name": "Object (computer science)", "field_count": 4}, {"field_name": "Cluster analysis", "field_count": 4}, {"field_name": "Navigation system", "field_count": 2}, {"field_name": "Point cloud", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Ranking", "field_count": 2}, {"field_name": "Uncertain data", "field_count": 1}, {"field_name": "Data set", "field_count": 1}], "clusters": [{"cluster_id": 4473, "cluster_count": 13}, {"cluster_id": 28004, "cluster_count": 4}, {"cluster_id": 39641, "cluster_count": 3}, {"cluster_id": 86554, "cluster_count": 2}, {"cluster_id": 1149, "cluster_count": 2}, {"cluster_id": 26299, "cluster_count": 2}, {"cluster_id": 1027, "cluster_count": 2}, {"cluster_id": 2381, "cluster_count": 2}, {"cluster_id": 5136, "cluster_count": 1}, {"cluster_id": 15028, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 136}, {"ref_CSET_id": 101, "referenced_count": 104}, {"ref_CSET_id": 484, "referenced_count": 68}, {"ref_CSET_id": 87, "referenced_count": 44}, {"ref_CSET_id": 115, "referenced_count": 28}, {"ref_CSET_id": 21, "referenced_count": 26}, {"ref_CSET_id": 37, "referenced_count": 18}, {"ref_CSET_id": 6, "referenced_count": 12}, {"ref_CSET_id": 786, "referenced_count": 12}, {"ref_CSET_id": 23, "referenced_count": 12}], "tasks": [{"referent": "autonomous_navigation", "task_count": 10}, {"referent": "classification", "task_count": 9}, {"referent": "autonomous_driving", "task_count": 8}, {"referent": "autonomous_vehicles", "task_count": 5}, {"referent": "weakly_supervised_temporal_action_localization", "task_count": 5}, {"referent": "image_processing", "task_count": 5}, {"referent": "feature_selection", "task_count": 4}, {"referent": "activity_detection", "task_count": 4}, {"referent": "action_localization", "task_count": 4}, {"referent": "semantic_segmentation", "task_count": 4}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 10}, {"referent": "1d_cnn", "method_count": 6}, {"referent": "double_q_learning", "method_count": 5}, {"referent": "3d_representations", "method_count": 4}, {"referent": "metrix", "method_count": 3}, {"referent": "graphs", "method_count": 3}, {"referent": "maddpg", "method_count": 3}, {"referent": "vqa_models", "method_count": 2}, {"referent": "attention_mechanisms", "method_count": 2}, {"referent": "fcn", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 1, 7, 5, 11, 26, 24, 18, 12, 10, 0], "total": 115, "isTopResearch": false, "rank": 489}, "ai_publications": {"counts": [0, 1, 2, 2, 7, 18, 12, 9, 4, 2, 0], "total": 57, "isTopResearch": false, "rank": 168}, "ai_publications_growth": {"counts": [], "total": -43.51851851851851, "isTopResearch": false, "rank": 1430}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 2, 3, 2, 2, 0, 0], "total": 9, "isTopResearch": false, "rank": 122}, "citation_counts": {"counts": [64, 74, 65, 68, 74, 96, 170, 262, 349, 235, 8], "total": 1465, "isTopResearch": false, "rank": 163}, "cv_pubs": {"counts": [0, 0, 1, 0, 4, 15, 8, 6, 1, 0, 0], "total": 35, "isTopResearch": true, "rank": 104}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 2, 1, 1, 2, 0, 0, 0, 0, 0], "total": 6, "isTopResearch": true, "rank": 156}, "citations_per_article": {"counts": [0, 74.0, 32.5, 34.0, 10.571428571428571, 5.333333333333333, 14.166666666666666, 29.11111111111111, 87.25, 117.5, 0], "total": 25.70175438596491, "isTopResearch": false, "rank": 230}}, "patents": {"ai_patents": {"counts": [0, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 20, 10, 10, 0, 0, 0, 0, 0, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3316, "rank": 151}, "ai_jobs": {"counts": null, "total": 1378, "rank": 29}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Here Technologies (trading as Here) is a Netherlands-based company that provides mapping and location data and related services to individuals and companies. It is majority-owned by a consortium of German automotive companies (namely Audi, BMW, and Daimler), whilst other companies also own minority stakes. Its roots date back to U.S.-based Navteq in 1985, which was acquired by Finland-based Nokia in 2007. Here is currently based in The Netherlands.", "wikipedia_link": "https://en.wikipedia.org/wiki/Here_Technologies", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1515, "country": "United States", "website": "https://www.abbott.com/", "crunchbase": {"text": " 58923f75-7902-11ce-a1bc-ecd96c42e51a", "url": "https://www.crunchbase.com/organization/abbott"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/abbott-"], "stage": "Mature", "name": "Abbott", "patent_name": "Abbott", "continent": "North America", "local_logo": null, "aliases": "Abbott; Abbott Laboratories", "permid_links": [{"text": 4295903265, "url": "https://permid.org/1-4295903265"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ABT", "url": "https://www.google.com/finance/quote/ABT:NYSE"}], "market_full": [{"text": "BRN:ABT", "url": "https://www.google.com/finance/quote/ABT:BRN"}, {"text": "LSE:0Q15", "url": "https://www.google.com/finance/quote/0Q15:LSE"}, {"text": "FRA:ABL", "url": "https://www.google.com/finance/quote/ABL:FRA"}, {"text": "BUE:ABT3", "url": "https://www.google.com/finance/quote/ABT3:BUE"}, {"text": "HAN:ABL", "url": "https://www.google.com/finance/quote/ABL:HAN"}, {"text": "ASE:ABT", "url": "https://www.google.com/finance/quote/ABT:ASE"}, {"text": "BER:ABL", "url": "https://www.google.com/finance/quote/ABL:BER"}, {"text": "NYQ:ABT", "url": "https://www.google.com/finance/quote/ABT:NYQ"}, {"text": "DEU:ABT", "url": "https://www.google.com/finance/quote/ABT:DEU"}, {"text": "SWX:ABT", "url": "https://www.google.com/finance/quote/ABT:SWX"}, {"text": "VIE:ABT", "url": "https://www.google.com/finance/quote/ABT:VIE"}, {"text": "STU:ABL", "url": "https://www.google.com/finance/quote/ABL:STU"}, {"text": "SGO:ABT", "url": "https://www.google.com/finance/quote/ABT:SGO"}, {"text": "MCX:ABT-RM", "url": "https://www.google.com/finance/quote/ABT-RM:MCX"}, {"text": "NYSE:ABT", "url": "https://www.google.com/finance/quote/ABT:NYSE"}, {"text": "DUS:ABL", "url": "https://www.google.com/finance/quote/ABL:DUS"}, {"text": "MUN:ABL", "url": "https://www.google.com/finance/quote/ABL:MUN"}, {"text": "HAM:ABL", "url": "https://www.google.com/finance/quote/ABL:HAM"}, {"text": "SGO:ABTCL", "url": "https://www.google.com/finance/quote/ABTCL:SGO"}, {"text": "MEX:ABT", "url": "https://www.google.com/finance/quote/ABT:MEX"}, {"text": "GER:ABLX", "url": "https://www.google.com/finance/quote/ABLX:GER"}, {"text": "SAO:ABTT34", "url": "https://www.google.com/finance/quote/ABTT34:SAO"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Smoothing", "field_count": 1}, {"field_name": "Transfer of learning", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Map projection", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Bayesian probability", "field_count": 1}], "clusters": [{"cluster_id": 3491, "cluster_count": 1}, {"cluster_id": 3164, "cluster_count": 1}, {"cluster_id": 9078, "cluster_count": 1}, {"cluster_id": 13731, "cluster_count": 1}, {"cluster_id": 4929, "cluster_count": 1}, {"cluster_id": 72718, "cluster_count": 1}, {"cluster_id": 430, "cluster_count": 1}, {"cluster_id": 67052, "cluster_count": 1}, {"cluster_id": 17658, "cluster_count": 1}, {"cluster_id": 67520, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 341, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}, {"ref_CSET_id": 1515, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "robots", "task_count": 2}, {"referent": "steering_control", "task_count": 2}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "anomaly_detection", "task_count": 1}, {"referent": "visual_localization", "task_count": 1}, {"referent": "vessel_segmentation", "task_count": 1}, {"referent": "image_manipulation", "task_count": 1}, {"referent": "hand_detection", "task_count": 1}, {"referent": "arrhythmia_detection", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "csgld", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "hierarchical_feature_fusion", "method_count": 1}, {"referent": "ca", "method_count": 1}, {"referent": "r_cnn", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "non_parametric_classification", "method_count": 1}, {"referent": "sig", "method_count": 1}, {"referent": "dimfuse", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [633, 317, 308, 341, 374, 334, 308, 298, 341, 329, 1], "total": 3584, "isTopResearch": false, "rank": 81, "sp500_rank": 69, "fortune500_rank": 29}, "ai_publications": {"counts": [2, 1, 1, 6, 3, 1, 4, 0, 3, 0, 0], "total": 21, "isTopResearch": false, "rank": 294, "sp500_rank": 170, "fortune500_rank": 89}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [33, 41, 49, 63, 70, 70, 70, 82, 101, 79, 0], "total": 658, "isTopResearch": false, "rank": 237, "sp500_rank": 127, "fortune500_rank": 71}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 1, 0, 2, 1, 0, 1, 0, 0, 0, 0], "total": 6, "isTopResearch": true, "rank": 156, "sp500_rank": 101, "fortune500_rank": 42}, "citations_per_article": {"counts": [16.5, 41.0, 49.0, 10.5, 23.333333333333332, 70.0, 17.5, 0, 33.666666666666664, 0, 0], "total": 31.333333333333332, "isTopResearch": false, "rank": 184, "sp500_rank": 44, "fortune500_rank": 53}}, "patents": {"ai_patents": {"counts": [1, 4, 3, 4, 4, 5, 8, 12, 2, 0, 0], "total": 43, "table": null, "rank": 235, "sp500_rank": 136, "fortune500_rank": 76}, "ai_patents_growth": {"counts": [], "total": 45.0, "table": null, "rank": 225, "sp500_rank": 101, "fortune500_rank": 69}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 40, 30, 40, 40, 50, 80, 120, 20, 0, 0], "total": 430, "table": null, "rank": 235, "sp500_rank": 136, "fortune500_rank": 76}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [1, 4, 3, 4, 4, 5, 7, 11, 2, 0, 0], "total": 41, "table": "industry", "rank": 27, "sp500_rank": 21, "fortune500_rank": 9}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 363, "sp500_rank": 174, "fortune500_rank": 124}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "sp500_rank": 141, "fortune500_rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 47, "sp500_rank": 36, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [1, 4, 3, 3, 4, 4, 3, 9, 1, 0, 0], "total": 32, "table": "application", "rank": 38, "sp500_rank": 33, "fortune500_rank": 19}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3306, "rank": 152, "sp500_rank": 89, "fortune500_rank": 88}, "ai_jobs": {"counts": null, "total": 449, "rank": 127, "sp500_rank": 82, "fortune500_rank": 73}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment"}, {"cset_id": 1913, "country": "United States", "website": "https://www.humana.com/", "crunchbase": {"text": "ec051f41-7cee-4f06-9be2-a44e46813cdc", "url": "https://www.crunchbase.com/organization/humana"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/humana"], "stage": "Mature", "name": "Humana Inc", "patent_name": "humana inc", "continent": "North America", "local_logo": "humana_inc.png", "aliases": "Humana; Humana, Inc", "permid_links": [{"text": 4295904196, "url": "https://permid.org/1-4295904196"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HUM", "url": "https://www.google.com/finance/quote/hum:nyse"}], "market_full": [{"text": "LSE:0J6Z", "url": "https://www.google.com/finance/quote/0j6z:lse"}, {"text": "MUN:HUM", "url": "https://www.google.com/finance/quote/hum:mun"}, {"text": "FRA:HUM", "url": "https://www.google.com/finance/quote/fra:hum"}, {"text": "DUS:HUM", "url": "https://www.google.com/finance/quote/dus:hum"}, {"text": "MCX:HUM", "url": "https://www.google.com/finance/quote/hum:mcx"}, {"text": "NYSE:HUM", "url": "https://www.google.com/finance/quote/hum:nyse"}, {"text": "BER:HUM", "url": "https://www.google.com/finance/quote/ber:hum"}, {"text": "SAO:H1UM34", "url": "https://www.google.com/finance/quote/h1um34:sao"}, {"text": "NYQ:HUM", "url": "https://www.google.com/finance/quote/hum:nyq"}, {"text": "ASE:HUM", "url": "https://www.google.com/finance/quote/ase:hum"}, {"text": "DEU:HUM", "url": "https://www.google.com/finance/quote/deu:hum"}, {"text": "MEX:HUM*", "url": "https://www.google.com/finance/quote/hum*:mex"}, {"text": "BRN:HUM", "url": "https://www.google.com/finance/quote/brn:hum"}, {"text": "STU:HUM", "url": "https://www.google.com/finance/quote/hum:stu"}], "crunchbase_description": "Humana is an online store that specializes in the supply of baby food.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Boosting (machine learning)", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Question answering", "field_count": 1}], "clusters": [{"cluster_id": 44101, "cluster_count": 1}, {"cluster_id": 15146, "cluster_count": 1}, {"cluster_id": 1038, "cluster_count": 1}, {"cluster_id": 23924, "cluster_count": 1}, {"cluster_id": 85550, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 805, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 112, "referenced_count": 1}], "tasks": [{"referent": "time_series", "task_count": 2}, {"referent": "computer_vision", "task_count": 1}, {"referent": "multivariate_time_series_forecasting", "task_count": 1}, {"referent": "relation_classification", "task_count": 1}, {"referent": "question_answering", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "named_entity_recognition", "task_count": 1}, {"referent": "mortality_prediction", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "image_processing", "task_count": 1}], "methods": [{"referent": "lightconv", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "mim", "method_count": 1}, {"referent": "multi_scale_training", "method_count": 1}, {"referent": "gradient_based_subword_tokenization", "method_count": 1}, {"referent": "ghm_r", "method_count": 1}, {"referent": "mrnn", "method_count": 1}, {"referent": "wfst", "method_count": 1}, {"referent": "transformer_xl", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [35, 27, 50, 40, 62, 52, 49, 56, 50, 47, 0], "total": 468, "isTopResearch": false, "rank": 285, "sp500_rank": 190, "fortune500_rank": 111}, "ai_publications": {"counts": [0, 0, 0, 1, 1, 0, 0, 3, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "sp500_rank": 262, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 10, 11, 13, 13, 7, 0], "total": 54, "isTopResearch": false, "rank": 578, "sp500_rank": 250, "fortune500_rank": 159}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0.0, 0, 0, 4.333333333333333, 0, 0, 0], "total": 10.8, "isTopResearch": false, "rank": 512, "sp500_rank": 185, "fortune500_rank": 154}}, "patents": {"ai_patents": {"counts": [1, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0], "total": 4, "table": null, "rank": 565, "sp500_rank": 235, "fortune500_rank": 176}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 10, 0, 0, 0, 20, 0, 0, 0, 0], "total": 40, "table": null, "rank": 565, "sp500_rank": 235, "fortune500_rank": 176}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "sp500_rank": 114, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "sp500_rank": 183, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3297, "rank": 153, "sp500_rank": 90, "fortune500_rank": 89}, "ai_jobs": {"counts": null, "total": 552, "rank": 104, "sp500_rank": 65, "fortune500_rank": 58}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Humana Inc. is a for-profit American health insurance company based in Louisville, Kentucky. As of 2020 Humana had over 20 million members in the U.S., reported a 2019 revenue of US$56.9 billion, and had 46,000 employees. In 2020, the company ranked 52 on the Fortune 500 list, which made it the highest ranked (by revenues) company based in Kentucky. It has been the third largest health insurance in the nation.", "wikipedia_link": "https://en.wikipedia.org/wiki/Humana", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2077, "country": "Australia", "website": "https://www.commbank.com.au/", "crunchbase": {"text": " 11088459-6784-bab5-08cd-b347ef0b96c3", "url": " https://www.crunchbase.com/organization/commonwealth-bank-of-australia"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/commonwealthbank"], "stage": "Mature", "name": "Commonwealth Bank Of Australia", "patent_name": "Commonwealth Bank of Australia", "continent": "Oceania", "local_logo": null, "aliases": "Commbank; Commonwealth Bank of Australia", "permid_links": [{"text": 4295856152, "url": "https://permid.org/1-4295856152"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "STU:CWW", "url": "https://www.google.com/finance/quote/CWW:STU"}, {"text": "DEU:CWW0", "url": "https://www.google.com/finance/quote/CWW0:DEU"}, {"text": "ASX:CBAPJ", "url": "https://www.google.com/finance/quote/ASX:CBAPJ"}, {"text": "STU:CWW0", "url": "https://www.google.com/finance/quote/CWW0:STU"}, {"text": "FRA:CWW0", "url": "https://www.google.com/finance/quote/CWW0:FRA"}, {"text": "FRA:CWW", "url": "https://www.google.com/finance/quote/CWW:FRA"}, {"text": "DUS:CWW", "url": "https://www.google.com/finance/quote/CWW:DUS"}, {"text": "ASX:CBA", "url": "https://www.google.com/finance/quote/ASX:CBA"}, {"text": "MUN:CWW0", "url": "https://www.google.com/finance/quote/CWW0:MUN"}, {"text": "ASX:CBAPH", "url": "https://www.google.com/finance/quote/ASX:CBAPH"}, {"text": "BER:CWW", "url": "https://www.google.com/finance/quote/BER:CWW"}, {"text": "ASX:CBAPK", "url": "https://www.google.com/finance/quote/ASX:CBAPK"}, {"text": "MUN:CWW", "url": "https://www.google.com/finance/quote/CWW:MUN"}, {"text": "SWX:CBA", "url": "https://www.google.com/finance/quote/CBA:SWX"}, {"text": "DEU:CBAX", "url": "https://www.google.com/finance/quote/CBAX:DEU"}, {"text": "ASX:CBAPI", "url": "https://www.google.com/finance/quote/ASX:CBAPI"}, {"text": "PKC:CMWAY", "url": "https://www.google.com/finance/quote/CMWAY:PKC"}, {"text": "BRN:CWW", "url": "https://www.google.com/finance/quote/BRN:CWW"}, {"text": "HAM:CWW", "url": "https://www.google.com/finance/quote/CWW:HAM"}, {"text": "ASX:CBAPD", "url": "https://www.google.com/finance/quote/ASX:CBAPD"}, {"text": "PKC:CBAUF", "url": "https://www.google.com/finance/quote/CBAUF:PKC"}, {"text": "ASX:CBAPG", "url": "https://www.google.com/finance/quote/ASX:CBAPG"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Recommender system", "field_count": 1}, {"field_name": "Emotion classification", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Dimensionality reduction", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Question answering", "field_count": 1}], "clusters": [{"cluster_id": 1829, "cluster_count": 2}, {"cluster_id": 57497, "cluster_count": 1}, {"cluster_id": 8239, "cluster_count": 1}, {"cluster_id": 15224, "cluster_count": 1}, {"cluster_id": 21488, "cluster_count": 1}, {"cluster_id": 79501, "cluster_count": 1}, {"cluster_id": 1634, "cluster_count": 1}, {"cluster_id": 21939, "cluster_count": 1}, {"cluster_id": 12712, "cluster_count": 1}, {"cluster_id": 1193, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 37, "referenced_count": 3}, {"ref_CSET_id": 2077, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 805, "referenced_count": 2}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "face_recognition", "task_count": 2}, {"referent": "calibration_for_link_prediction", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}, {"referent": "image_comprehension", "task_count": 1}, {"referent": "multi_hop_question_answering", "task_count": 1}, {"referent": "machine_reading_comprehension", "task_count": 1}, {"referent": "reasoning", "task_count": 1}], "methods": [{"referent": "feature_extractors", "method_count": 2}, {"referent": "graph_self_attention", "method_count": 2}, {"referent": "gradient_clipping", "method_count": 1}, {"referent": "gan", "method_count": 1}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "adversarial_training", "method_count": 1}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "l1_regularization", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [3, 4, 6, 10, 5, 4, 1, 11, 5, 9, 0], "total": 58, "isTopResearch": false, "rank": 594, "sp500_rank": 323}, "ai_publications": {"counts": [1, 1, 0, 0, 1, 3, 0, 4, 1, 0, 0], "total": 11, "isTopResearch": false, "rank": 397, "sp500_rank": 211}, "ai_publications_growth": {"counts": [], "total": -87.5, "isTopResearch": false, "rank": 1548, "sp500_rank": 446}, "ai_pubs_top_conf": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 1, 3, 0, 3, 16, 12, 25, 41, 28, 1], "total": 130, "isTopResearch": false, "rank": 463, "sp500_rank": 206}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 161, "sp500_rank": 94}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0.0, 1.0, 0, 0, 3.0, 5.333333333333333, 0, 6.25, 41.0, 0, 0], "total": 11.818181818181818, "isTopResearch": false, "rank": 480, "sp500_rank": 165}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3287, "rank": 154, "sp500_rank": 91}, "ai_jobs": {"counts": null, "total": 620, "rank": 86, "sp500_rank": 58}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 506, "country": "United States", "website": "https://www.informatica.com", "crunchbase": {"text": "4e52dfd7-78c4-73f9-1bca-ddae550ad2c9", "url": "https://www.crunchbase.com/organization/informatica"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/informatica"], "stage": "Unknown", "name": "Informatica", "patent_name": "informatica", "continent": "North America", "local_logo": "informatica.png", "aliases": "Informatica LLC", "permid_links": [{"text": 4295913786, "url": "https://permid.org/1-4295913786"}], "parent_info": "Permira (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Informatica is an enterprise cloud data management that accelerates data-driven digital transformation.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Evolutionary algorithm", "field_count": 23}, {"field_name": "Cluster analysis", "field_count": 20}, {"field_name": "Deep learning", "field_count": 18}, {"field_name": "Ontology (information science)", "field_count": 18}, {"field_name": "Artificial neural network", "field_count": 14}, {"field_name": "Reinforcement learning", "field_count": 14}, {"field_name": "Relevance (information retrieval)", "field_count": 11}, {"field_name": "Segmentation", "field_count": 11}, {"field_name": "Iterative reconstruction", "field_count": 8}, {"field_name": "Recommender system", "field_count": 8}], "clusters": [{"cluster_id": 10170, "cluster_count": 34}, {"cluster_id": 25155, "cluster_count": 23}, {"cluster_id": 970, "cluster_count": 14}, {"cluster_id": 2791, "cluster_count": 14}, {"cluster_id": 1154, "cluster_count": 13}, {"cluster_id": 11510, "cluster_count": 11}, {"cluster_id": 884, "cluster_count": 9}, {"cluster_id": 19562, "cluster_count": 9}, {"cluster_id": 8748, "cluster_count": 8}, {"cluster_id": 8939, "cluster_count": 8}], "company_references": [{"ref_CSET_id": 506, "referenced_count": 679}, {"ref_CSET_id": 101, "referenced_count": 450}, {"ref_CSET_id": 163, "referenced_count": 249}, {"ref_CSET_id": 87, "referenced_count": 119}, {"ref_CSET_id": 115, "referenced_count": 93}, {"ref_CSET_id": 792, "referenced_count": 56}, {"ref_CSET_id": 127, "referenced_count": 34}, {"ref_CSET_id": 184, "referenced_count": 30}, {"ref_CSET_id": 787, "referenced_count": 27}, {"ref_CSET_id": 23, "referenced_count": 23}], "tasks": [{"referent": "classification", "task_count": 112}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 36}, {"referent": "image_restoration", "task_count": 31}, {"referent": "image_processing", "task_count": 26}, {"referent": "image_analysis", "task_count": 21}, {"referent": "tomography", "task_count": 21}, {"referent": "clustering", "task_count": 21}, {"referent": "portfolio_optimization", "task_count": 20}, {"referent": "robots", "task_count": 20}, {"referent": "multiobjective_optimization", "task_count": 19}], "methods": [{"referent": "vqa_models", "method_count": 65}, {"referent": "q_learning", "method_count": 51}, {"referent": "3d_representations", "method_count": 45}, {"referent": "optimization", "method_count": 45}, {"referent": "recurrent_neural_networks", "method_count": 40}, {"referent": "double_q_learning", "method_count": 40}, {"referent": "griffin_lim_algorithm", "method_count": 38}, {"referent": "meta_learning_algorithms", "method_count": 36}, {"referent": "mad_learning", "method_count": 33}, {"referent": "convolutional_neural_networks", "method_count": 32}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [609, 603, 595, 585, 560, 500, 536, 583, 539, 386, 9], "total": 5505, "isTopResearch": false, "rank": 61}, "ai_publications": {"counts": [74, 54, 60, 60, 61, 67, 93, 125, 126, 62, 0], "total": 782, "isTopResearch": false, "rank": 31}, "ai_publications_growth": {"counts": [], "total": -5.195016214371054, "isTopResearch": false, "rank": 1234}, "ai_pubs_top_conf": {"counts": [7, 7, 11, 5, 7, 9, 8, 6, 7, 2, 0], "total": 69, "isTopResearch": false, "rank": 38}, "citation_counts": {"counts": [437, 654, 749, 823, 1029, 1302, 1844, 2607, 3031, 2262, 90], "total": 14828, "isTopResearch": false, "rank": 39}, "cv_pubs": {"counts": [18, 10, 11, 11, 8, 3, 16, 22, 20, 16, 0], "total": 135, "isTopResearch": true, "rank": 41}, "nlp_pubs": {"counts": [4, 5, 11, 7, 4, 4, 5, 5, 5, 3, 0], "total": 53, "isTopResearch": true, "rank": 46}, "robotics_pubs": {"counts": [8, 2, 4, 1, 1, 3, 7, 7, 9, 8, 0], "total": 50, "isTopResearch": true, "rank": 47}, "citations_per_article": {"counts": [5.905405405405405, 12.11111111111111, 12.483333333333333, 13.716666666666667, 16.868852459016395, 19.432835820895523, 19.827956989247312, 20.856, 24.055555555555557, 36.483870967741936, 0], "total": 18.9616368286445, "isTopResearch": false, "rank": 333}}, "patents": {"ai_patents": {"counts": [0, 0, 2, 1, 0, 1, 3, 1, 1, 0, 0], "total": 9, "table": null, "rank": 424}, "ai_patents_growth": {"counts": [], "total": 66.66666666666666, "table": null, "rank": 164}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 20, 10, 0, 10, 30, 10, 10, 0, 0], "total": 90, "table": null, "rank": 424}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 2, 1, 0, 1, 1, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 336}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3277, "rank": 155}, "ai_jobs": {"counts": null, "total": 73, "rank": 403}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Informatica is a software development company founded in 1993. It is headquartered in Redwood City, California. Its core products include Enterprise Cloud Data Management and Data Integration. It was co-founded by Gaurav Dhillon and Diaz Nesamoney. Amit Walia is the company's CEO.", "wikipedia_link": "https://en.wikipedia.org/wiki/Informatica", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1921, "country": "United States", "website": "http://www.caterpillar.com/", "crunchbase": {"text": "201e94e7-a1a0-9330-76a4-467f3c0fd29c", "url": "https://www.crunchbase.com/organization/caterpillar-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/caterpillar-inc"], "stage": "Mature", "name": "Caterpillar Inc", "patent_name": "caterpillar inc", "continent": "North America", "local_logo": "caterpillar_inc.png", "aliases": "Caterpillar, Inc", "permid_links": [{"text": 4295903678, "url": "https://permid.org/1-4295903678"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CAT", "url": "https://www.google.com/finance/quote/cat:nyse"}], "market_full": [{"text": "DEU:CAT1", "url": "https://www.google.com/finance/quote/cat1:deu"}, {"text": "GER:CAT1", "url": "https://www.google.com/finance/quote/cat1:ger"}, {"text": "HAN:CAT1", "url": "https://www.google.com/finance/quote/cat1:han"}, {"text": "BER:CAT1", "url": "https://www.google.com/finance/quote/ber:cat1"}, {"text": "VIE:CAT", "url": "https://www.google.com/finance/quote/cat:vie"}, {"text": "MCX:CAT-RM", "url": "https://www.google.com/finance/quote/cat-rm:mcx"}, {"text": "SGO:CAT", "url": "https://www.google.com/finance/quote/cat:sgo"}, {"text": "BRN:CAT1", "url": "https://www.google.com/finance/quote/brn:cat1"}, {"text": "SAO:CATP34", "url": "https://www.google.com/finance/quote/catp34:sao"}, {"text": "PAR:CATR", "url": "https://www.google.com/finance/quote/catr:par"}, {"text": "SWX:CAT", "url": "https://www.google.com/finance/quote/cat:swx"}, {"text": "SGO:CATCL", "url": "https://www.google.com/finance/quote/catcl:sgo"}, {"text": "STU:CAT1", "url": "https://www.google.com/finance/quote/cat1:stu"}, {"text": "NYSE:CAT", "url": "https://www.google.com/finance/quote/cat:nyse"}, {"text": "EBT:CATRP", "url": "https://www.google.com/finance/quote/catrp:ebt"}, {"text": "BUE:CAT3", "url": "https://www.google.com/finance/quote/bue:cat3"}, {"text": "LSE:0Q18", "url": "https://www.google.com/finance/quote/0q18:lse"}, {"text": "HAM:CAT1", "url": "https://www.google.com/finance/quote/cat1:ham"}, {"text": "FRA:CAT1", "url": "https://www.google.com/finance/quote/cat1:fra"}, {"text": "UAX:CAT", "url": "https://www.google.com/finance/quote/cat:uax"}, {"text": "ASE:CAT", "url": "https://www.google.com/finance/quote/ase:cat"}, {"text": "NYQ:CAT", "url": "https://www.google.com/finance/quote/cat:nyq"}, {"text": "DUS:CAT1", "url": "https://www.google.com/finance/quote/cat1:dus"}, {"text": "MUN:CAT1", "url": "https://www.google.com/finance/quote/cat1:mun"}, {"text": "MEX:CAT*", "url": "https://www.google.com/finance/quote/cat*:mex"}], "crunchbase_description": "Caterpillar has been making sustainable progress possible and driving positive change on every continent.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Applications of artificial intelligence", "field_count": 1}, {"field_name": "Expert system", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Machine vision", "field_count": 1}, {"field_name": "Pose", "field_count": 1}, {"field_name": "Entropy (information theory)", "field_count": 1}], "clusters": [{"cluster_id": 9689, "cluster_count": 4}, {"cluster_id": 12054, "cluster_count": 3}, {"cluster_id": 18501, "cluster_count": 2}, {"cluster_id": 39701, "cluster_count": 2}, {"cluster_id": 5571, "cluster_count": 2}, {"cluster_id": 27564, "cluster_count": 1}, {"cluster_id": 18368, "cluster_count": 1}, {"cluster_id": 6410, "cluster_count": 1}, {"cluster_id": 9300, "cluster_count": 1}, {"cluster_id": 7270, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 1921, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 784, "referenced_count": 2}, {"ref_CSET_id": 201, "referenced_count": 1}, {"ref_CSET_id": 1767, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 2050, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 9}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "classification", "task_count": 4}, {"referent": "data_mining", "task_count": 3}, {"referent": "system_identification", "task_count": 3}, {"referent": "automl", "task_count": 3}, {"referent": "mobile_robot", "task_count": 3}, {"referent": "environmental_sound_classification", "task_count": 3}, {"referent": "image_restoration", "task_count": 2}, {"referent": "combinatorial_optimization", "task_count": 2}], "methods": [{"referent": "vqa_models", "method_count": 4}, {"referent": "meta_learning_algorithms", "method_count": 4}, {"referent": "optimization", "method_count": 3}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "hit_detector", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 2}, {"referent": "edgeboxes", "method_count": 1}, {"referent": "gravity", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [90, 49, 61, 57, 61, 60, 49, 44, 42, 23, 1], "total": 537, "isTopResearch": false, "rank": 268, "sp500_rank": 178, "fortune500_rank": 104}, "ai_publications": {"counts": [4, 1, 4, 1, 3, 9, 1, 2, 4, 0, 0], "total": 29, "isTopResearch": false, "rank": 244, "sp500_rank": 147, "fortune500_rank": 74}, "ai_publications_growth": {"counts": [], "total": 33.333333333333336, "isTopResearch": false, "rank": 86, "sp500_rank": 43, "fortune500_rank": 27}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [35, 41, 54, 53, 94, 76, 96, 95, 92, 78, 10], "total": 724, "isTopResearch": false, "rank": 223, "sp500_rank": 124, "fortune500_rank": 70}, "cv_pubs": {"counts": [0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 313, "sp500_rank": 158, "fortune500_rank": 84}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115, "fortune500_rank": 61}, "robotics_pubs": {"counts": [2, 1, 1, 0, 2, 4, 1, 1, 2, 0, 0], "total": 14, "isTopResearch": true, "rank": 94, "sp500_rank": 71, "fortune500_rank": 26}, "citations_per_article": {"counts": [8.75, 41.0, 13.5, 53.0, 31.333333333333332, 8.444444444444445, 96.0, 47.5, 23.0, 0, 0], "total": 24.96551724137931, "isTopResearch": false, "rank": 243, "sp500_rank": 70, "fortune500_rank": 76}}, "patents": {"ai_patents": {"counts": [3, 7, 6, 12, 8, 9, 23, 26, 7, 0, 0], "total": 101, "table": null, "rank": 160, "sp500_rank": 104, "fortune500_rank": 49}, "ai_patents_growth": {"counts": [], "total": 60.366344605475035, "table": null, "rank": 175, "sp500_rank": 83, "fortune500_rank": 44}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 70, 60, 120, 80, 90, 230, 260, 70, 0, 0], "total": 1010, "table": null, "rank": 160, "sp500_rank": 104, "fortune500_rank": 49}, "Physical_Sciences_and_Engineering": {"counts": [1, 3, 5, 9, 3, 5, 5, 11, 3, 0, 0], "total": 45, "table": "industry", "rank": 10, "sp500_rank": 8, "fortune500_rank": 5}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "sp500_rank": 136, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0], "total": 4, "table": null, "rank": 141, "sp500_rank": 95, "fortune500_rank": 51}, "Transportation": {"counts": [0, 2, 4, 9, 4, 7, 18, 9, 1, 0, 0], "total": 54, "table": "industry", "rank": 41, "sp500_rank": 33, "fortune500_rank": 14}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0], "total": 6, "table": null, "rank": 94, "sp500_rank": 65, "fortune500_rank": 29}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 1, 3, 4, 3, 0, 0, 0], "total": 12, "table": "industry", "rank": 240, "sp500_rank": 129, "fortune500_rank": 89}, "Banking_and_Finance": {"counts": [0, 2, 0, 0, 1, 0, 1, 4, 0, 0, 0], "total": 8, "table": "industry", "rank": 84, "sp500_rank": 62, "fortune500_rank": 32}, "Telecommunications": {"counts": [0, 0, 1, 1, 0, 0, 1, 3, 0, 0, 0], "total": 6, "table": null, "rank": 204, "sp500_rank": 111, "fortune500_rank": 77}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54, "fortune500_rank": 34}, "Business": {"counts": [2, 1, 0, 0, 2, 2, 1, 7, 4, 0, 0], "total": 19, "table": "industry", "rank": 109, "sp500_rank": 78, "fortune500_rank": 42}, "Energy_Management": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "sp500_rank": 79, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [1, 1, 0, 0, 2, 2, 1, 7, 4, 0, 0], "total": 18, "table": "application", "rank": 88, "sp500_rank": 65, "fortune500_rank": 33}, "Control": {"counts": [0, 4, 4, 9, 4, 7, 12, 14, 3, 0, 0], "total": 57, "table": "application", "rank": 48, "sp500_rank": 38, "fortune500_rank": 17}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 1, 2, 1, 1, 5, 4, 0, 0, 0], "total": 14, "table": "application", "rank": 218, "sp500_rank": 123, "fortune500_rank": 64}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 223, "sp500_rank": 134, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 1, 0, 4, 4, 1, 2, 7, 1, 0, 0], "total": 20, "table": "application", "rank": 84, "sp500_rank": 63, "fortune500_rank": 25}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3274, "rank": 156, "sp500_rank": 92, "fortune500_rank": 90}, "ai_jobs": {"counts": null, "total": 457, "rank": 126, "sp500_rank": 81, "fortune500_rank": 72}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Caterpillar Inc. (often shortened to CAT) is an American Fortune 100 corporation that designs, develops, engineers, manufactures, markets, and sells machinery, engines, financial products, and insurance to customers via a worldwide dealer network. It is the world's largest construction-equipment manufacturer. In 2018, Caterpillar was ranked number 65 on the Fortune 500 list and number 238 on the Global Fortune 500 list. Caterpillar stock is a component of the Dow Jones Industrial Average.", "wikipedia_link": "https://en.wikipedia.org/wiki/Caterpillar_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1383, "country": "United States", "website": "https://www.thewaltdisneycompany.com/", "crunchbase": {"text": "756936c0-c335-f0ae-0a3d-fe26bdff5695", "url": "https://www.crunchbase.com/organization/the-walt-disney-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-walt-disney-company"], "stage": "Mature", "name": "Disney", "patent_name": "Disney", "continent": "North America", "local_logo": "disney.png", "aliases": "Disney; The Walt Disney Company; Walt Disney Co Ltd", "permid_links": [{"text": 5064610769, "url": "https://permid.org/1-5064610769"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DIS", "url": "https://www.google.com/finance/quote/DIS:NYSE"}], "market_full": [{"text": "MCX:DIS-RM", "url": "https://www.google.com/finance/quote/DIS-RM:MCX"}, {"text": "BRN:WDP", "url": "https://www.google.com/finance/quote/BRN:WDP"}, {"text": "VIE:DIS", "url": "https://www.google.com/finance/quote/DIS:VIE"}, {"text": "HAM:WDP", "url": "https://www.google.com/finance/quote/HAM:WDP"}, {"text": "DUS:WDP", "url": "https://www.google.com/finance/quote/DUS:WDP"}, {"text": "BUE:DISN3", "url": "https://www.google.com/finance/quote/BUE:DISN3"}, {"text": "NYQ:DIS", "url": "https://www.google.com/finance/quote/DIS:NYQ"}, {"text": "MUN:WDP0", "url": "https://www.google.com/finance/quote/MUN:WDP0"}, {"text": "DEU:DIS", "url": "https://www.google.com/finance/quote/DEU:DIS"}, {"text": "ASE:DIS", "url": "https://www.google.com/finance/quote/ASE:DIS"}, {"text": "BER:WDP0", "url": "https://www.google.com/finance/quote/BER:WDP0"}, {"text": "DEU:WDP0", "url": "https://www.google.com/finance/quote/DEU:WDP0"}, {"text": "NYSE:DIS", "url": "https://www.google.com/finance/quote/DIS:NYSE"}, {"text": "SGO:DIS", "url": "https://www.google.com/finance/quote/DIS:SGO"}, {"text": "MUN:WDP", "url": "https://www.google.com/finance/quote/MUN:WDP"}, {"text": "FRA:WDP0", "url": "https://www.google.com/finance/quote/FRA:WDP0"}, {"text": "FRA:WDP", "url": "https://www.google.com/finance/quote/FRA:WDP"}, {"text": "SWX:DIS", "url": "https://www.google.com/finance/quote/DIS:SWX"}, {"text": "SGO:DISCL", "url": "https://www.google.com/finance/quote/DISCL:SGO"}, {"text": "HAN:WDP", "url": "https://www.google.com/finance/quote/HAN:WDP"}, {"text": "LSE:0QZO", "url": "https://www.google.com/finance/quote/0QZO:LSE"}, {"text": "STU:WDP", "url": "https://www.google.com/finance/quote/STU:WDP"}, {"text": "BER:WDP", "url": "https://www.google.com/finance/quote/BER:WDP"}, {"text": "MEX:DIS*", "url": "https://www.google.com/finance/quote/DIS*:MEX"}, {"text": "UAX:DIS", "url": "https://www.google.com/finance/quote/DIS:UAX"}, {"text": "GER:WDPX", "url": "https://www.google.com/finance/quote/GER:WDPX"}], "crunchbase_description": "The Walt Disney Company started as a cartoon studio and evolves into sports coverage and television shows.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Robot", "field_count": 15}, {"field_name": "Stereoscopy", "field_count": 8}, {"field_name": "Pixel", "field_count": 7}, {"field_name": "Segmentation", "field_count": 7}, {"field_name": "Image warping", "field_count": 7}, {"field_name": "Computer graphics", "field_count": 6}, {"field_name": "Rendering (computer graphics)", "field_count": 6}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Stereo camera", "field_count": 4}, {"field_name": "Augmented reality", "field_count": 4}], "clusters": [{"cluster_id": 2473, "cluster_count": 17}, {"cluster_id": 4853, "cluster_count": 16}, {"cluster_id": 5551, "cluster_count": 11}, {"cluster_id": 21678, "cluster_count": 11}, {"cluster_id": 2214, "cluster_count": 10}, {"cluster_id": 1298, "cluster_count": 9}, {"cluster_id": 40370, "cluster_count": 7}, {"cluster_id": 11939, "cluster_count": 7}, {"cluster_id": 37465, "cluster_count": 5}, {"cluster_id": 10078, "cluster_count": 5}], "company_references": [{"ref_CSET_id": 1383, "referenced_count": 247}, {"ref_CSET_id": 163, "referenced_count": 194}, {"ref_CSET_id": 6, "referenced_count": 91}, {"ref_CSET_id": 101, "referenced_count": 88}, {"ref_CSET_id": 184, "referenced_count": 30}, {"ref_CSET_id": 127, "referenced_count": 25}, {"ref_CSET_id": 87, "referenced_count": 20}, {"ref_CSET_id": 734, "referenced_count": 5}, {"ref_CSET_id": 711, "referenced_count": 5}, {"ref_CSET_id": 787, "referenced_count": 4}], "tasks": [{"referent": "animation", "task_count": 18}, {"referent": "robots", "task_count": 15}, {"referent": "character_recognition", "task_count": 12}, {"referent": "computer_vision", "task_count": 12}, {"referent": "image_processing", "task_count": 10}, {"referent": "segmentation", "task_count": 10}, {"referent": "feature_selection", "task_count": 8}, {"referent": "human_robot_interaction", "task_count": 7}, {"referent": "computational_manga", "task_count": 6}, {"referent": "neural_rendering", "task_count": 6}], "methods": [{"referent": "optimization", "method_count": 12}, {"referent": "vqa_models", "method_count": 11}, {"referent": "hri_pipeline", "method_count": 8}, {"referent": "3d_representations", "method_count": 8}, {"referent": "image_to_image_translation", "method_count": 8}, {"referent": "3d_reconstruction", "method_count": 8}, {"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "neural_architecture_search", "method_count": 5}, {"referent": "griffin_lim_algorithm", "method_count": 4}, {"referent": "linear_warmup_with_linear_decay", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [91, 102, 126, 90, 85, 98, 59, 51, 52, 48, 1], "total": 803, "isTopResearch": false, "rank": 213, "sp500_rank": 152, "fortune500_rank": 79}, "ai_publications": {"counts": [32, 25, 40, 21, 18, 21, 22, 9, 11, 2, 0], "total": 201, "isTopResearch": false, "rank": 79, "sp500_rank": 62, "fortune500_rank": 24}, "ai_publications_growth": {"counts": [], "total": -39.56228956228956, "isTopResearch": false, "rank": 1424, "sp500_rank": 394, "fortune500_rank": 411}, "ai_pubs_top_conf": {"counts": [2, 0, 4, 4, 2, 3, 2, 0, 0, 0, 0], "total": 17, "isTopResearch": false, "rank": 87, "sp500_rank": 47, "fortune500_rank": 29}, "citation_counts": {"counts": [478, 634, 835, 1040, 1189, 1199, 1339, 1391, 1437, 923, 27], "total": 10492, "isTopResearch": false, "rank": 48, "sp500_rank": 31, "fortune500_rank": 18}, "cv_pubs": {"counts": [15, 15, 22, 12, 9, 11, 7, 5, 2, 0, 0], "total": 98, "isTopResearch": true, "rank": 55, "sp500_rank": 40, "fortune500_rank": 14}, "nlp_pubs": {"counts": [0, 0, 0, 2, 1, 0, 3, 0, 0, 0, 0], "total": 6, "isTopResearch": true, "rank": 131, "sp500_rank": 79, "fortune500_rank": 37}, "robotics_pubs": {"counts": [6, 4, 11, 2, 2, 3, 5, 3, 3, 1, 0], "total": 40, "isTopResearch": true, "rank": 53, "sp500_rank": 44, "fortune500_rank": 16}, "citations_per_article": {"counts": [14.9375, 25.36, 20.875, 49.523809523809526, 66.05555555555556, 57.095238095238095, 60.86363636363637, 154.55555555555554, 130.63636363636363, 461.5, 0], "total": 52.19900497512438, "isTopResearch": false, "rank": 88, "sp500_rank": 16, "fortune500_rank": 21}}, "patents": {"ai_patents": {"counts": [5, 8, 7, 21, 15, 39, 35, 39, 16, 0, 0], "total": 185, "table": null, "rank": 109, "sp500_rank": 74, "fortune500_rank": 38}, "ai_patents_growth": {"counts": [], "total": 53.724053724053725, "table": null, "rank": 194, "sp500_rank": 92, "fortune500_rank": 53}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [50, 80, 70, 210, 150, 390, 350, 390, 160, 0, 0], "total": 1850, "table": null, "rank": 109, "sp500_rank": 74, "fortune500_rank": 38}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "sp500_rank": 136, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], "total": 4, "table": null, "rank": 141, "sp500_rank": 95, "fortune500_rank": 51}, "Transportation": {"counts": [0, 1, 2, 1, 1, 1, 1, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 112, "sp500_rank": 83, "fortune500_rank": 32}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0], "total": 4, "table": null, "rank": 116, "sp500_rank": 80, "fortune500_rank": 38}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 2, 3, 11, 6, 20, 11, 14, 8, 0, 0], "total": 76, "table": "industry", "rank": 90, "sp500_rank": 66, "fortune500_rank": 38}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 1, 4, 6, 1, 18, 11, 12, 6, 0, 0], "total": 59, "table": "industry", "rank": 70, "sp500_rank": 58, "fortune500_rank": 26}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54, "fortune500_rank": 34}, "Business": {"counts": [2, 0, 2, 1, 2, 5, 0, 3, 2, 0, 0], "total": 17, "table": "industry", "rank": 114, "sp500_rank": 80, "fortune500_rank": 43}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 4, 1, 2, 2, 2, 1, 0, 0, 0], "total": 12, "table": "industry", "rank": 13, "sp500_rank": 8, "fortune500_rank": 6}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 1, 0, 3, 1, 7, 3, 0, 0, 0, 0], "total": 15, "table": "application", "rank": 31, "sp500_rank": 23, "fortune500_rank": 17}, "Speech_Processing": {"counts": [0, 1, 0, 0, 1, 6, 3, 2, 1, 0, 0], "total": 14, "table": "application", "rank": 69, "sp500_rank": 50, "fortune500_rank": 19}, "Knowledge_Representation": {"counts": [2, 1, 1, 5, 3, 1, 2, 2, 0, 0, 0], "total": 17, "table": "application", "rank": 59, "sp500_rank": 43, "fortune500_rank": 33}, "Planning_and_Scheduling": {"counts": [2, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0], "total": 6, "table": null, "rank": 163, "sp500_rank": 110, "fortune500_rank": 55}, "Control": {"counts": [0, 1, 2, 1, 1, 2, 0, 1, 0, 0, 0], "total": 8, "table": null, "rank": 150, "sp500_rank": 102, "fortune500_rank": 50}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14, "fortune500_rank": 8}, "Computer_Vision": {"counts": [2, 3, 2, 8, 9, 18, 23, 24, 7, 0, 0], "total": 96, "table": "application", "rank": 69, "sp500_rank": 49, "fortune500_rank": 20}, "Analytics_and_Algorithms": {"counts": [0, 1, 1, 0, 1, 5, 3, 4, 1, 0, 0], "total": 16, "table": "application", "rank": 81, "sp500_rank": 63, "fortune500_rank": 34}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 165, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3257, "rank": 157, "sp500_rank": 93, "fortune500_rank": 91}, "ai_jobs": {"counts": null, "total": 353, "rank": 159, "sp500_rank": 103, "fortune500_rank": 85}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2216, "country": "United Kingdom", "website": "https://www.aon.com/home/index.html", "crunchbase": {"text": "4dd0b14e-3251-1e2f-48f9-57c450a599ee", "url": "https://www.crunchbase.com/organization/aon-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aon"], "stage": "Mature", "name": "Aon plc", "patent_name": "aon plc", "continent": "Europe", "local_logo": "aon_plc.png", "aliases": "Aon", "permid_links": [{"text": 5073798739, "url": "https://permid.org/1-5073798739"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AON", "url": "https://www.google.com/finance/quote/aon:nyse"}], "market_full": [{"text": "DUS:4VK", "url": "https://www.google.com/finance/quote/4vk:dus"}, {"text": "MUN:4VK", "url": "https://www.google.com/finance/quote/4vk:mun"}, {"text": "STU:4VK", "url": "https://www.google.com/finance/quote/4vk:stu"}, {"text": "LSE:0XHL", "url": "https://www.google.com/finance/quote/0xhl:lse"}, {"text": "NYSE:AON", "url": "https://www.google.com/finance/quote/aon:nyse"}, {"text": "ASE:AON", "url": "https://www.google.com/finance/quote/aon:ase"}, {"text": "FRA:4VK", "url": "https://www.google.com/finance/quote/4vk:fra"}, {"text": "NYQ:AON", "url": "https://www.google.com/finance/quote/aon:nyq"}, {"text": "BER:4VK", "url": "https://www.google.com/finance/quote/4vk:ber"}, {"text": "MEX:AONN", "url": "https://www.google.com/finance/quote/aonn:mex"}, {"text": "SAO:A1ON34", "url": "https://www.google.com/finance/quote/a1on34:sao"}, {"text": "DEU:4VK", "url": "https://www.google.com/finance/quote/4vk:deu"}], "crunchbase_description": "Aon is a global provider of risk management, insurance and reinsurance brokerage, human resources solutions, and outsourcing services.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 1, 2, 4, 2, 1, 4, 3, 3, 3, 0], "total": 25, "isTopResearch": false, "rank": 754, "fortune500_rank": 269}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3241, "rank": 158, "fortune500_rank": 92}, "ai_jobs": {"counts": null, "total": 512, "rank": 109, "fortune500_rank": 61}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Aon plc is a multinational British professional services firm that sells a range of financial risk-mitigation products, including insurance, pension administration, and health-insurance plans. Aon has approximately 50,000 employees in 120 countries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Aon_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1617, "country": "United States", "website": "http://www.chevron.com", "crunchbase": {"text": "0393ec59-73c7-c747-c97d-43455ff3adfb", "url": "https://www.crunchbase.com/organization/chevron"}, "child_crunchbase": [{"text": "44cf2477-1f42-20ae-2d86-520551ba6513", "url": "https://www.crunchbase.com/organization/noble-energy"}], "linkedin": ["https://www.linkedin.com/company/chevron", "https://www.linkedin.com/company/noble-energy"], "stage": "Mature", "name": "Chevron", "patent_name": "chevron", "continent": "North America", "local_logo": "chevron.png", "aliases": "Chevron Corporation", "permid_links": [{"text": 4295903744, "url": "https://permid.org/1-4295903744"}, {"text": 4295904617, "url": "https://permid.org/1-4295904617"}], "parent_info": null, "agg_child_info": "Noble Energy Inc", "unagg_child_info": null, "market_filt": [{"text": "NYSE:CVX", "url": "https://www.google.com/finance/quote/cvx:nyse"}], "market_full": [{"text": "BRU:CHTEX", "url": "https://www.google.com/finance/quote/bru:chtex"}, {"text": "HAM:CHV", "url": "https://www.google.com/finance/quote/chv:ham"}, {"text": "MCX:CX-RM", "url": "https://www.google.com/finance/quote/cx-rm:mcx"}, {"text": "STU:CHV", "url": "https://www.google.com/finance/quote/chv:stu"}, {"text": "UAX:CVX", "url": "https://www.google.com/finance/quote/cvx:uax"}, {"text": "DUS:CHV", "url": "https://www.google.com/finance/quote/chv:dus"}, {"text": "HAN:CHV", "url": "https://www.google.com/finance/quote/chv:han"}, {"text": "FRA:CHV", "url": "https://www.google.com/finance/quote/chv:fra"}, {"text": "LSE:0R2Q", "url": "https://www.google.com/finance/quote/0r2q:lse"}, {"text": "BUE:CVX3", "url": "https://www.google.com/finance/quote/bue:cvx3"}, {"text": "SAO:CHVX34", "url": "https://www.google.com/finance/quote/chvx34:sao"}, {"text": "MUN:CHV", "url": "https://www.google.com/finance/quote/chv:mun"}, {"text": "SGO:CVX", "url": "https://www.google.com/finance/quote/cvx:sgo"}, {"text": "NYQ:CVX", "url": "https://www.google.com/finance/quote/cvx:nyq"}, {"text": "NYSE:CVX", "url": "https://www.google.com/finance/quote/cvx:nyse"}, {"text": "MEX:CVX*", "url": "https://www.google.com/finance/quote/cvx*:mex"}, {"text": "ASE:CVX", "url": "https://www.google.com/finance/quote/ase:cvx"}, {"text": "GER:CHVX", "url": "https://www.google.com/finance/quote/chvx:ger"}, {"text": "SWX:CVX", "url": "https://www.google.com/finance/quote/cvx:swx"}, {"text": "BRN:CHV", "url": "https://www.google.com/finance/quote/brn:chv"}, {"text": "VIE:CVX", "url": "https://www.google.com/finance/quote/cvx:vie"}, {"text": "DEU:CVX", "url": "https://www.google.com/finance/quote/cvx:deu"}, {"text": "SGO:CVXCL", "url": "https://www.google.com/finance/quote/cvxcl:sgo"}, {"text": "BER:CHV", "url": "https://www.google.com/finance/quote/ber:chv"}], "crunchbase_description": "Chevron is an integrated energy and technology company with subsidiaries that conduct businesses under Chevron, Texaco and Caltex brands.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Analytics", "field_count": 3}, {"field_name": "Semantic Web", "field_count": 3}, {"field_name": "Cluster analysis", "field_count": 3}, {"field_name": "Intelligent decision support system", "field_count": 2}, {"field_name": "Uncertainty quantification", "field_count": 2}, {"field_name": "Local optimum", "field_count": 1}, {"field_name": "Emerging technologies", "field_count": 1}, {"field_name": "Chemometrics", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Curve fitting", "field_count": 1}], "clusters": [{"cluster_id": 12122, "cluster_count": 7}, {"cluster_id": 49423, "cluster_count": 4}, {"cluster_id": 25755, "cluster_count": 3}, {"cluster_id": 9045, "cluster_count": 3}, {"cluster_id": 1922, "cluster_count": 2}, {"cluster_id": 61921, "cluster_count": 2}, {"cluster_id": 62264, "cluster_count": 2}, {"cluster_id": 27186, "cluster_count": 2}, {"cluster_id": 1634, "cluster_count": 2}, {"cluster_id": 16732, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 13}, {"ref_CSET_id": 1617, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 682, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 949, "referenced_count": 1}, {"ref_CSET_id": 2403, "referenced_count": 1}, {"ref_CSET_id": 1899, "referenced_count": 1}, {"ref_CSET_id": 161, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}], "tasks": [{"referent": "developmental_learning", "task_count": 13}, {"referent": "decision_making", "task_count": 13}, {"referent": "speech_production", "task_count": 9}, {"referent": "image_analysis", "task_count": 8}, {"referent": "uncertainty_estimation", "task_count": 7}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "fault_detection", "task_count": 6}, {"referent": "classification", "task_count": 6}, {"referent": "portfolio_optimization", "task_count": 5}, {"referent": "congestive_heart_failure_detection", "task_count": 5}], "methods": [{"referent": "vqa_models", "method_count": 14}, {"referent": "mad_learning", "method_count": 12}, {"referent": "clustering", "method_count": 7}, {"referent": "double_q_learning", "method_count": 7}, {"referent": "optimization", "method_count": 7}, {"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "meta_learning_algorithms", "method_count": 5}, {"referent": "q_learning", "method_count": 5}, {"referent": "root", "method_count": 4}, {"referent": "griffin_lim_algorithm", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [407, 524, 445, 476, 584, 431, 400, 305, 259, 133, 2], "total": 3966, "isTopResearch": false, "rank": 78, "sp500_rank": 67, "fortune500_rank": 28}, "ai_publications": {"counts": [7, 6, 5, 6, 7, 6, 7, 8, 14, 2, 0], "total": 68, "isTopResearch": false, "rank": 154, "sp500_rank": 101, "fortune500_rank": 51}, "ai_publications_growth": {"counts": [], "total": 1.1904761904761945, "isTopResearch": false, "rank": 196, "sp500_rank": 97, "fortune500_rank": 49}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [35, 41, 55, 57, 60, 68, 64, 99, 128, 123, 6], "total": 736, "isTopResearch": false, "rank": 220, "sp500_rank": 123, "fortune500_rank": 69}, "cv_pubs": {"counts": [0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115, "fortune500_rank": 61}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 214, "sp500_rank": 131, "fortune500_rank": 57}, "citations_per_article": {"counts": [5.0, 6.833333333333333, 11.0, 9.5, 8.571428571428571, 11.333333333333334, 9.142857142857142, 12.375, 9.142857142857142, 61.5, 0], "total": 10.823529411764707, "isTopResearch": false, "rank": 511, "sp500_rank": 184, "fortune500_rank": 153}}, "patents": {"ai_patents": {"counts": [4, 7, 1, 3, 7, 6, 16, 15, 12, 0, 0], "total": 71, "table": null, "rank": 187, "sp500_rank": 118, "fortune500_rank": 59}, "ai_patents_growth": {"counts": [], "total": 48.71031746031746, "table": null, "rank": 216, "sp500_rank": 97, "fortune500_rank": 65}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [40, 70, 10, 30, 70, 60, 160, 150, 120, 0, 0], "total": 710, "table": null, "rank": 187, "sp500_rank": 118, "fortune500_rank": 59}, "Physical_Sciences_and_Engineering": {"counts": [2, 1, 0, 0, 4, 2, 6, 4, 5, 0, 0], "total": 24, "table": "industry", "rank": 24, "sp500_rank": 19, "fortune500_rank": 8}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 38, "sp500_rank": 31, "fortune500_rank": 11}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [2, 2, 0, 2, 3, 0, 7, 7, 5, 0, 0], "total": 28, "table": "industry", "rank": 156, "sp500_rank": 89, "fortune500_rank": 56}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 381, "sp500_rank": 174, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 2, 1, 2, 0, 0], "total": 6, "table": "industry", "rank": 196, "sp500_rank": 128, "fortune500_rank": 65}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 2, 0, 0, 0, 1, 1, 1, 1, 0, 0], "total": 6, "table": "application", "rank": 109, "sp500_rank": 68, "fortune500_rank": 50}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 2, 1, 2, 0, 0], "total": 6, "table": null, "rank": 163, "sp500_rank": 110, "fortune500_rank": 55}, "Control": {"counts": [1, 1, 1, 0, 2, 0, 1, 0, 1, 0, 0], "total": 7, "table": "application", "rank": 159, "sp500_rank": 108, "fortune500_rank": 56}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 0, 2, 1, 2, 5, 0, 0, 0], "total": 11, "table": "application", "rank": 236, "sp500_rank": 131, "fortune500_rank": 72}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 2, 7, 1, 0, 0], "total": 10, "table": "application", "rank": 114, "sp500_rank": 84, "fortune500_rank": 47}, "Measuring_and_Testing": {"counts": [2, 3, 0, 2, 5, 3, 10, 10, 5, 0, 0], "total": 40, "table": "application", "rank": 50, "sp500_rank": 38, "fortune500_rank": 19}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3224, "rank": 159, "sp500_rank": 94, "fortune500_rank": 93}, "ai_jobs": {"counts": null, "total": 390, "rank": 144, "sp500_rank": 94, "fortune500_rank": 78}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "Chevron Corporation is an American multinational energy corporation. One of the successor companies of Standard Oil, it is headquartered in San Ramon, California, and active in more than 180 countries. Chevron is engaged in every aspect of the oil, natural gas, including hydrocarbon exploration and production; refining, marketing and transport; chemicals manufacturing and sales; and power generation. Chevron is one of the world's largest companies; as of March 2020, it ranked fifteenth in the Fortune 500 with a yearly revenue of $146.5 billion and market valuation of $136 billion. In the 2020 Forbes Global 2000, Chevron was ranked as the 61st -largest public company in the world. It was also one of the Seven Sisters that dominated the global petroleum industry from the mid-1940s to the 1970s. Chevron is incorporated in California.", "wikipedia_link": "https://en.wikipedia.org/wiki/Chevron_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1553, "country": "United States", "website": "http://www.medtronic.com/", "crunchbase": {"text": "d5b9d6ac-97a8-1abf-c138-5c548d4acb38", "url": "https://www.crunchbase.com/organization/medtronic"}, "child_crunchbase": [{"text": "039b0a20-89a2-4411-9d55-63c01b444708", "url": "https://www.crunchbase.com/organization/affera-inc"}], "linkedin": ["https://www.linkedin.com/company/medtronic", "https://www.linkedin.com/company/affera"], "stage": "Mature", "name": "Medtronic", "patent_name": "medtronic", "continent": "North America", "local_logo": "medtronic.png", "aliases": "Medtronic Plc", "permid_links": [{"text": 5043331632, "url": "https://permid.org/1-5043331632"}, {"text": 5059014252, "url": "https://permid.org/1-5059014252"}], "parent_info": null, "agg_child_info": "Affera, Inc", "unagg_child_info": null, "market_filt": [{"text": "NYSE:MDT", "url": "https://www.google.com/finance/quote/mdt:nyse"}], "market_full": [{"text": "MUN:2M6", "url": "https://www.google.com/finance/quote/2m6:mun"}, {"text": "STU:2M6", "url": "https://www.google.com/finance/quote/2m6:stu"}, {"text": "SAO:MDTC34", "url": "https://www.google.com/finance/quote/mdtc34:sao"}, {"text": "ASE:MDT", "url": "https://www.google.com/finance/quote/ase:mdt"}, {"text": "HAN:2M6", "url": "https://www.google.com/finance/quote/2m6:han"}, {"text": "FRA:2M6", "url": "https://www.google.com/finance/quote/2m6:fra"}, {"text": "NYSE:MDT", "url": "https://www.google.com/finance/quote/mdt:nyse"}, {"text": "BUE:MDT3", "url": "https://www.google.com/finance/quote/bue:mdt3"}, {"text": "DUS:2M6", "url": "https://www.google.com/finance/quote/2m6:dus"}, {"text": "BRN:2M6", "url": "https://www.google.com/finance/quote/2m6:brn"}, {"text": "BER:2M6", "url": "https://www.google.com/finance/quote/2m6:ber"}, {"text": "LSE:0Y6X", "url": "https://www.google.com/finance/quote/0y6x:lse"}, {"text": "VIE:MDT", "url": "https://www.google.com/finance/quote/mdt:vie"}, {"text": "NYQ:MDT", "url": "https://www.google.com/finance/quote/mdt:nyq"}, {"text": "GER:2M6X", "url": "https://www.google.com/finance/quote/2m6x:ger"}, {"text": "MEX:MDTN", "url": "https://www.google.com/finance/quote/mdtn:mex"}, {"text": "DEU:2M6", "url": "https://www.google.com/finance/quote/2m6:deu"}, {"text": "HAM:2M6", "url": "https://www.google.com/finance/quote/2m6:ham"}], "crunchbase_description": "Medtronic develops healthcare technology solutions for medical conditions.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Language model", "field_count": 2}, {"field_name": "Feature vector", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Image-guided surgery", "field_count": 1}, {"field_name": "Normalization (statistics)", "field_count": 1}, {"field_name": "Haptic technology", "field_count": 1}, {"field_name": "Lasso (statistics)", "field_count": 1}, {"field_name": "Iterative reconstruction", "field_count": 1}, {"field_name": "Stereo imaging", "field_count": 1}], "clusters": [{"cluster_id": 970, "cluster_count": 3}, {"cluster_id": 35035, "cluster_count": 3}, {"cluster_id": 28719, "cluster_count": 2}, {"cluster_id": 29357, "cluster_count": 2}, {"cluster_id": 898, "cluster_count": 2}, {"cluster_id": 76022, "cluster_count": 2}, {"cluster_id": 4915, "cluster_count": 1}, {"cluster_id": 17155, "cluster_count": 1}, {"cluster_id": 7319, "cluster_count": 1}, {"cluster_id": 11817, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 36}, {"ref_CSET_id": 789, "referenced_count": 17}, {"ref_CSET_id": 163, "referenced_count": 15}, {"ref_CSET_id": 87, "referenced_count": 11}, {"ref_CSET_id": 1553, "referenced_count": 9}, {"ref_CSET_id": 201, "referenced_count": 6}, {"ref_CSET_id": 184, "referenced_count": 5}, {"ref_CSET_id": 219, "referenced_count": 3}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 223, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 6}, {"referent": "autonomous_navigation", "task_count": 5}, {"referent": "image_registration", "task_count": 3}, {"referent": "image_analysis", "task_count": 3}, {"referent": "myocardial_infarction_detection", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "brain_tumor_segmentation", "task_count": 2}, {"referent": "noise_level_prediction", "task_count": 1}, {"referent": "ctr", "task_count": 1}, {"referent": "arrhythmia_detection", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "edgeboxes", "method_count": 2}, {"referent": "language_models", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "darknet_19", "method_count": 2}, {"referent": "weight_demodulation", "method_count": 2}, {"referent": "deep_ensembles", "method_count": 1}, {"referent": "3d_reconstruction", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [261, 277, 366, 345, 309, 403, 344, 348, 334, 316, 2], "total": 3305, "isTopResearch": false, "rank": 86, "sp500_rank": 71, "fortune500_rank": 32}, "ai_publications": {"counts": [1, 3, 4, 3, 4, 2, 4, 4, 11, 7, 0], "total": 43, "isTopResearch": false, "rank": 195, "sp500_rank": 120, "fortune500_rank": 61}, "ai_publications_growth": {"counts": [], "total": 46.21212121212121, "isTopResearch": false, "rank": 70, "sp500_rank": 34, "fortune500_rank": 21}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [9, 5, 10, 36, 92, 120, 126, 126, 175, 277, 5], "total": 981, "isTopResearch": false, "rank": 196, "sp500_rank": 110, "fortune500_rank": 60}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 4, 5, 0], "total": 10, "isTopResearch": true, "rank": 202, "sp500_rank": 115, "fortune500_rank": 55}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102, "fortune500_rank": 54}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114, "fortune500_rank": 49}, "citations_per_article": {"counts": [9.0, 1.6666666666666667, 2.5, 12.0, 23.0, 60.0, 31.5, 31.5, 15.909090909090908, 39.57142857142857, 0], "total": 22.813953488372093, "isTopResearch": false, "rank": 270, "sp500_rank": 75, "fortune500_rank": 84}}, "patents": {"ai_patents": {"counts": [6, 13, 17, 12, 5, 27, 40, 46, 35, 0, 0], "total": 201, "table": null, "rank": 100, "sp500_rank": 71, "fortune500_rank": 35}, "ai_patents_growth": {"counts": [], "total": 167.71604938271605, "table": null, "rank": 59, "sp500_rank": 25, "fortune500_rank": 12}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [60, 130, 170, 120, 50, 270, 400, 460, 350, 0, 0], "total": 2010, "table": null, "rank": 100, "sp500_rank": 71, "fortune500_rank": 35}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [6, 13, 17, 12, 5, 27, 39, 44, 33, 0, 0], "total": 196, "table": "industry", "rank": 8, "sp500_rank": 7, "fortune500_rank": 3}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 1, 3, 1, 0, 0], "total": 6, "table": "industry", "rank": 121, "sp500_rank": 83, "fortune500_rank": 46}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 1, 4, 4, 2, 7, 2, 3, 3, 0, 0], "total": 27, "table": "industry", "rank": 160, "sp500_rank": 91, "fortune500_rank": 57}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 2, 3, 2, 2, 0, 0], "total": 9, "table": "industry", "rank": 174, "sp500_rank": 101, "fortune500_rank": 64}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 119, "sp500_rank": 94, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "sp500_rank": 67, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "sp500_rank": 79, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290, "sp500_rank": 156, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 1, 1, 3, 10, 17, 6, 0, 0], "total": 39, "table": "application", "rank": 136, "sp500_rank": 84, "fortune500_rank": 40}, "Analytics_and_Algorithms": {"counts": [6, 12, 14, 10, 4, 15, 26, 25, 17, 0, 0], "total": 129, "table": "application", "rank": 11, "sp500_rank": 9, "fortune500_rank": 3}, "Measuring_and_Testing": {"counts": [0, 1, 0, 1, 1, 2, 0, 2, 1, 0, 0], "total": 8, "table": "application", "rank": 139, "sp500_rank": 105, "fortune500_rank": 42}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3191, "rank": 160, "sp500_rank": 95, "fortune500_rank": 94}, "ai_jobs": {"counts": null, "total": 271, "rank": 195, "sp500_rank": 127, "fortune500_rank": 110}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Medtronic plc is an American domiciled medical device company that generates the majority of its sales and profits from the U.S. healthcare system but is headquartered in the Republic of Ireland to avoid taxes in US. Medtronic has an operational and executive headquarters in Fridley, Minnesota in the U.S. In 2015, Medtronic acquired Irish\u2013tax registered Covidien (a U.S. tax inversion to Ireland from 2007), in the largest U.S. corporate tax inversion in history, which enabled Medtronic to move its legal registration from the U.S. to Ireland. Medtronic operates in 140 countries and employs over 104,950 people.", "wikipedia_link": "https://en.wikipedia.org/wiki/Medtronic", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2792, "country": "United States", "website": "https://www.peraton.com/", "crunchbase": {"text": "bb76f02e-7eaf-4ae6-91d2-ced7191410b9", "url": "https://www.crunchbase.com/organization/peraton"}, "child_crunchbase": [{"text": "8b901af5-0709-4b39-9dcc-1198b802d8de", "url": "https://www.crunchbase.com/organization/dhpc-technologies-inc"}, {"text": "ce9fc874-38ed-bc47-5ee4-a669641ea173", "url": "https://www.crunchbase.com/organization/keypoint-government-solutions-inc"}], "linkedin": ["https://www.linkedin.com/company/dhpc", "https://www.linkedin.com/company/perspecta", "https://www.linkedin.com/company/peraton"], "stage": "Unknown", "name": "Peraton Inc", "patent_name": "peraton inc", "continent": "North America", "local_logo": "peraton_inc.png", "aliases": "Peraton; Peraton Corp", "permid_links": [{"text": 5034838491, "url": "https://permid.org/1-5034838491"}, {"text": 5060866271, "url": "https://permid.org/1-5060866271"}, {"text": 5055802472, "url": "https://permid.org/1-5055802472"}], "parent_info": "Veritas Capital", "agg_child_info": "DHPC Technologies Inc, Perspecta Inc", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Fearlessly solving the world's most complex challenges to keep people safe and secure.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Classifier (UML)", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Compressed sensing", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Information extraction", "field_count": 1}, {"field_name": "Classification rule", "field_count": 1}, {"field_name": "Feature vector", "field_count": 1}], "clusters": [{"cluster_id": 62662, "cluster_count": 7}, {"cluster_id": 1837, "cluster_count": 5}, {"cluster_id": 2381, "cluster_count": 3}, {"cluster_id": 26042, "cluster_count": 3}, {"cluster_id": 8106, "cluster_count": 2}, {"cluster_id": 25616, "cluster_count": 2}, {"cluster_id": 61271, "cluster_count": 2}, {"cluster_id": 31860, "cluster_count": 2}, {"cluster_id": 4358, "cluster_count": 1}, {"cluster_id": 104835, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 29}, {"ref_CSET_id": 2792, "referenced_count": 20}, {"ref_CSET_id": 87, "referenced_count": 16}, {"ref_CSET_id": 163, "referenced_count": 14}, {"ref_CSET_id": 1413, "referenced_count": 10}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 949, "referenced_count": 5}, {"ref_CSET_id": 1126, "referenced_count": 5}, {"ref_CSET_id": 127, "referenced_count": 4}, {"ref_CSET_id": 734, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 16}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "feature_selection", "task_count": 3}, {"referent": "knowledge_tracing", "task_count": 2}, {"referent": "image_analysis", "task_count": 2}, {"referent": "malware_classification", "task_count": 2}, {"referent": "adversarial_attack", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "adversarial", "task_count": 2}, {"referent": "motion_planning", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 8}, {"referent": "meta_learning_algorithms", "method_count": 5}, {"referent": "q_learning", "method_count": 4}, {"referent": "autoencoder", "method_count": 3}, {"referent": "xception", "method_count": 3}, {"referent": "mad_learning", "method_count": 3}, {"referent": "adadelta", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "infonce", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [18, 11, 28, 20, 14, 26, 33, 22, 37, 38, 1], "total": 248, "isTopResearch": false, "rank": 381}, "ai_publications": {"counts": [2, 0, 1, 1, 3, 5, 9, 5, 13, 3, 0], "total": 42, "isTopResearch": false, "rank": 198}, "ai_publications_growth": {"counts": [], "total": 12.877492877492879, "isTopResearch": false, "rank": 143}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [1, 4, 7, 7, 9, 9, 31, 36, 64, 54, 2], "total": 224, "isTopResearch": false, "rank": 376}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "isTopResearch": true, "rank": 214}, "citations_per_article": {"counts": [0.5, 0, 7.0, 7.0, 3.0, 1.8, 3.4444444444444446, 7.2, 4.923076923076923, 18.0, 0], "total": 5.333333333333333, "isTopResearch": false, "rank": 701}}, "patents": {"ai_patents": {"counts": [3, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0], "total": 7, "table": null, "rank": 464}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [30, 0, 0, 10, 0, 10, 20, 0, 0, 0, 0], "total": 70, "table": null, "rank": 464}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 277}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3119, "rank": 161}, "ai_jobs": {"counts": null, "total": 83, "rank": 374}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Peraton drives missions of consequence spanning the globe and extending to the farthest reaches of the galaxy. As the world\u2019s leading mission capability integrator, we are a trusted provider of highly differentiated national security solutions and technologies that keep people safe and secure. Peraton serves as a valued partner to essential government agencies, including the Intelligence Community, Department of Defense, Department of Health and Human Services, and NASA. Every day, our 10,000 employees do the can\u2019t be done, solving the most daunting challenges facing our customers.", "company_site_link": "https://www.peraton.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2057, "country": "United Kingdom", "website": "https://www.lloydsbankinggroup.com/", "crunchbase": {"text": " f633d4dd-a181-f5e4-294f-1e16e458730f ", "url": " https://www.crunchbase.com/organization/lloyds-bank "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lloyds-banking-group"], "stage": "Mature", "name": "Lloyds Banking Group", "patent_name": "Lloyds Banking Group", "continent": "Europe", "local_logo": null, "aliases": "Lloyds Banking Group; Lloyds Banking Group Plc; Lloyds Tsb", "permid_links": [{"text": 8589934254, "url": "https://permid.org/1-8589934254"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LYG", "url": "https://www.google.com/finance/quote/LYG:NYSE"}], "market_full": [{"text": "HAM:LLD", "url": "https://www.google.com/finance/quote/HAM:LLD"}, {"text": "SAO:L1YG34", "url": "https://www.google.com/finance/quote/L1YG34:SAO"}, {"text": "ASE:LYG", "url": "https://www.google.com/finance/quote/ASE:LYG"}, {"text": "DUS:LLD", "url": "https://www.google.com/finance/quote/DUS:LLD"}, {"text": "HAN:LLD", "url": "https://www.google.com/finance/quote/HAN:LLD"}, {"text": "MEX:LYGN", "url": "https://www.google.com/finance/quote/LYGN:MEX"}, {"text": "FRA:LLD", "url": "https://www.google.com/finance/quote/FRA:LLD"}, {"text": "GER:LLDX", "url": "https://www.google.com/finance/quote/GER:LLDX"}, {"text": "DEU:LLOY", "url": "https://www.google.com/finance/quote/DEU:LLOY"}, {"text": "MUN:LLD2", "url": "https://www.google.com/finance/quote/LLD2:MUN"}, {"text": "NYQ:LYG", "url": "https://www.google.com/finance/quote/LYG:NYQ"}, {"text": "LSE:LLD1", "url": "https://www.google.com/finance/quote/LLD1:LSE"}, {"text": "BER:LLD", "url": "https://www.google.com/finance/quote/BER:LLD"}, {"text": "LSE:LLD2", "url": "https://www.google.com/finance/quote/LLD2:LSE"}, {"text": "STU:LLD", "url": "https://www.google.com/finance/quote/LLD:STU"}, {"text": "LSE:LLD6", "url": "https://www.google.com/finance/quote/LLD6:LSE"}, {"text": "DEU:LLD2", "url": "https://www.google.com/finance/quote/DEU:LLD2"}, {"text": "BER:LLD2", "url": "https://www.google.com/finance/quote/BER:LLD2"}, {"text": "BUE:LYG3", "url": "https://www.google.com/finance/quote/BUE:LYG3"}, {"text": "MUN:LLD", "url": "https://www.google.com/finance/quote/LLD:MUN"}, {"text": "LSE:LLOY", "url": "https://www.google.com/finance/quote/LLOY:LSE"}, {"text": "LSE:LLD5", "url": "https://www.google.com/finance/quote/LLD5:LSE"}, {"text": "NYSE:LYG", "url": "https://www.google.com/finance/quote/LYG:NYSE"}, {"text": "LSE:LLPC", "url": "https://www.google.com/finance/quote/LLPC:LSE"}, {"text": "FRA:LLD2", "url": "https://www.google.com/finance/quote/FRA:LLD2"}, {"text": "PKC:LLOBF", "url": "https://www.google.com/finance/quote/LLOBF:PKC"}, {"text": "BRN:LLD", "url": "https://www.google.com/finance/quote/BRN:LLD"}, {"text": "PKC:LLDTF", "url": "https://www.google.com/finance/quote/LLDTF:PKC"}, {"text": "SWX:LLOY", "url": "https://www.google.com/finance/quote/LLOY:SWX"}, {"text": "LSE:LLPD", "url": "https://www.google.com/finance/quote/LLPD:LSE"}, {"text": "LSE:LLPE", "url": "https://www.google.com/finance/quote/LLPE:LSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [{"cluster_id": 15604, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 2057, "referenced_count": 1}], "tasks": [{"referent": "cbc_test", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 1}, {"referent": "gan", "method_count": 1}, {"referent": "generative_adversarial_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [21, 8, 3, 1, 5, 7, 13, 7, 37, 8, 2], "total": 112, "isTopResearch": false, "rank": 499, "sp500_rank": 289}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], "total": 3, "isTopResearch": false, "rank": 857, "sp500_rank": 343}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 3.0, 0], "total": 1.5, "isTopResearch": false, "rank": 855, "sp500_rank": 341}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3108, "rank": 162, "sp500_rank": 96}, "ai_jobs": {"counts": null, "total": 419, "rank": 138, "sp500_rank": 91}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 787, "country": "United States", "website": "https://www.xerox.com/", "crunchbase": {"text": "7ef1577a-8779-8044-4a42-669b796f8e4f", "url": "https://www.crunchbase.com/organization/xerox"}, "child_crunchbase": [{"text": "7c0d3dfc-26a4-de49-5168-8f067a48d288", "url": "https://www.crunchbase.com/organization/parc"}], "linkedin": ["https://www.linkedin.com/company/ppaarrcc", "https://www.linkedin.com/company/xerox"], "stage": "Mature", "name": "Xerox", "patent_name": "xerox", "continent": "North America", "local_logo": "xerox.png", "aliases": "Xerox Holdings Corporation", "permid_links": [{"text": 4296991390, "url": "https://permid.org/1-4296991390"}, {"text": 4295905360, "url": "https://permid.org/1-4295905360"}], "parent_info": null, "agg_child_info": "Palo Alto Research Center", "unagg_child_info": null, "market_filt": [{"text": "NYSE:XRX", "url": "https://www.google.com/finance/quote/nyse:xrx"}], "market_full": [{"text": "NYSE:XRX", "url": "https://www.google.com/finance/quote/nyse:xrx"}, {"text": "XETR:XER2", "url": "https://www.google.com/finance/quote/xer2:xetr"}, {"text": "LON:0A6Y", "url": "https://www.google.com/finance/quote/0a6y:lon"}, {"text": "BCBA:XROX", "url": "https://www.google.com/finance/quote/bcba:xrox"}, {"text": "HAN:XER2", "url": "https://www.google.com/finance/quote/han:xer2"}, {"text": "MUN:XER2", "url": "https://www.google.com/finance/quote/mun:xer2"}, {"text": "BER:XER2", "url": "https://www.google.com/finance/quote/ber:xer2"}, {"text": "FRA:XER2", "url": "https://www.google.com/finance/quote/fra:xer2"}, {"text": "MOEX:XRX-RM", "url": "https://www.google.com/finance/quote/moex:xrx-rm"}], "crunchbase_description": "Xerox is a document management technology and services enterprise, producing printing and publishing systems, copiers and fax machines.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Machine translation", "field_count": 21}, {"field_name": "Feature (computer vision)", "field_count": 13}, {"field_name": "Semantic similarity", "field_count": 11}, {"field_name": "Segmentation", "field_count": 10}, {"field_name": "Cluster analysis", "field_count": 10}, {"field_name": "Applications of artificial intelligence", "field_count": 8}, {"field_name": "Object (computer science)", "field_count": 8}, {"field_name": "Topic model", "field_count": 8}, {"field_name": "Deep learning", "field_count": 7}, {"field_name": "Heuristic", "field_count": 7}], "clusters": [{"cluster_id": 3167, "cluster_count": 16}, {"cluster_id": 655, "cluster_count": 15}, {"cluster_id": 6913, "cluster_count": 13}, {"cluster_id": 9019, "cluster_count": 13}, {"cluster_id": 8144, "cluster_count": 12}, {"cluster_id": 981, "cluster_count": 12}, {"cluster_id": 12798, "cluster_count": 9}, {"cluster_id": 5611, "cluster_count": 9}, {"cluster_id": 2891, "cluster_count": 7}, {"cluster_id": 30616, "cluster_count": 6}], "company_references": [{"ref_CSET_id": 787, "referenced_count": 554}, {"ref_CSET_id": 101, "referenced_count": 348}, {"ref_CSET_id": 163, "referenced_count": 269}, {"ref_CSET_id": 115, "referenced_count": 97}, {"ref_CSET_id": 87, "referenced_count": 93}, {"ref_CSET_id": 792, "referenced_count": 51}, {"ref_CSET_id": 1126, "referenced_count": 46}, {"ref_CSET_id": 6, "referenced_count": 29}, {"ref_CSET_id": 711, "referenced_count": 26}, {"ref_CSET_id": 127, "referenced_count": 21}], "tasks": [{"referent": "classification", "task_count": 96}, {"referent": "classification_tasks", "task_count": 39}, {"referent": "image_recognition", "task_count": 31}, {"referent": "retrieval", "task_count": 30}, {"referent": "image_processing", "task_count": 25}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 22}, {"referent": "machine_translation", "task_count": 20}, {"referent": "natural_language_processing", "task_count": 20}, {"referent": "image_retrieval", "task_count": 19}, {"referent": "image_annotation", "task_count": 19}], "methods": [{"referent": "3d_representations", "method_count": 75}, {"referent": "vqa_models", "method_count": 49}, {"referent": "auto_classifier", "method_count": 38}, {"referent": "double_q_learning", "method_count": 31}, {"referent": "image_representations", "method_count": 25}, {"referent": "q_learning", "method_count": 25}, {"referent": "griffin_lim_algorithm", "method_count": 24}, {"referent": "meta_learning_algorithms", "method_count": 20}, {"referent": "natural_language_processing", "method_count": 18}, {"referent": "causal_inference", "method_count": 16}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [292, 333, 321, 284, 159, 103, 101, 78, 68, 38, 1], "total": 1778, "isTopResearch": false, "rank": 133, "fortune500_rank": 51}, "ai_publications": {"counts": [82, 89, 98, 98, 52, 27, 26, 18, 18, 11, 0], "total": 519, "isTopResearch": false, "rank": 39, "fortune500_rank": 11}, "ai_publications_growth": {"counts": [], "total": -23.21937321937322, "isTopResearch": false, "rank": 1352, "fortune500_rank": 393}, "ai_pubs_top_conf": {"counts": [7, 9, 29, 28, 15, 5, 4, 2, 5, 2, 0], "total": 106, "isTopResearch": false, "rank": 27, "fortune500_rank": 11}, "citation_counts": {"counts": [904, 1399, 1766, 2180, 2476, 2897, 3539, 3812, 3906, 2536, 105], "total": 25520, "isTopResearch": false, "rank": 26, "fortune500_rank": 13}, "cv_pubs": {"counts": [32, 24, 24, 30, 9, 2, 5, 1, 2, 2, 0], "total": 131, "isTopResearch": true, "rank": 43, "fortune500_rank": 11}, "nlp_pubs": {"counts": [19, 28, 29, 31, 19, 7, 3, 4, 1, 0, 0], "total": 141, "isTopResearch": true, "rank": 17, "fortune500_rank": 8}, "robotics_pubs": {"counts": [1, 0, 4, 1, 2, 1, 5, 3, 2, 0, 0], "total": 19, "isTopResearch": true, "rank": 80, "fortune500_rank": 23}, "citations_per_article": {"counts": [11.024390243902438, 15.719101123595506, 18.020408163265305, 22.244897959183675, 47.61538461538461, 107.29629629629629, 136.1153846153846, 211.77777777777777, 217.0, 230.54545454545453, 0], "total": 49.17148362235067, "isTopResearch": false, "rank": 97, "fortune500_rank": 24}}, "patents": {"ai_patents": {"counts": [26, 44, 44, 44, 25, 19, 17, 28, 10, 0, 0], "total": 257, "table": null, "rank": 86, "fortune500_rank": 27}, "ai_patents_growth": {"counts": [], "total": 10.05985552115583, "table": null, "rank": 335, "fortune500_rank": 107}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [260, 440, 440, 440, 250, 190, 170, 280, 100, 0, 0], "total": 2570, "table": null, "rank": 86, "fortune500_rank": 27}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0], "total": 4, "table": null, "rank": 88, "fortune500_rank": 28}, "Life_Sciences": {"counts": [1, 10, 9, 5, 0, 2, 0, 1, 0, 0, 0], "total": 28, "table": "industry", "rank": 39, "fortune500_rank": 16}, "Security__eg_cybersecurity": {"counts": [0, 2, 1, 3, 0, 1, 2, 0, 0, 0, 0], "total": 9, "table": null, "rank": 95, "fortune500_rank": 39}, "Transportation": {"counts": [0, 1, 1, 1, 0, 2, 0, 4, 0, 0, 0], "total": 9, "table": null, "rank": 102, "fortune500_rank": 27}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 1, 0, 3, 7, 0, 0, 0], "total": 12, "table": "industry", "rank": 66, "fortune500_rank": 20}, "Education": {"counts": [2, 2, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 6, "table": null, "rank": 22, "fortune500_rank": 7}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 2, 0, 0], "total": 3, "table": null, "rank": 3, "fortune500_rank": 2}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [6, 21, 22, 28, 14, 12, 11, 7, 5, 0, 0], "total": 126, "table": "industry", "rank": 63, "fortune500_rank": 26}, "Banking_and_Finance": {"counts": [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 172, "fortune500_rank": 60}, "Telecommunications": {"counts": [4, 9, 8, 10, 3, 0, 3, 7, 0, 0, 0], "total": 44, "table": "industry", "rank": 85, "fortune500_rank": 37}, "Networks__eg_social_IOT_etc": {"counts": [1, 5, 0, 2, 0, 0, 1, 0, 0, 0, 0], "total": 9, "table": null, "rank": 19, "fortune500_rank": 10}, "Business": {"counts": [11, 9, 8, 7, 1, 1, 2, 0, 1, 0, 0], "total": 40, "table": "industry", "rank": 65, "fortune500_rank": 27}, "Energy_Management": {"counts": [0, 1, 0, 1, 0, 1, 0, 2, 0, 0, 0], "total": 5, "table": null, "rank": 76, "fortune500_rank": 17}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 10, "fortune500_rank": 5}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [1, 5, 4, 6, 6, 0, 0, 0, 0, 0, 0], "total": 22, "table": null, "rank": 23, "fortune500_rank": 13}, "Speech_Processing": {"counts": [1, 3, 0, 4, 2, 0, 0, 1, 0, 0, 0], "total": 11, "table": null, "rank": 77, "fortune500_rank": 23}, "Knowledge_Representation": {"counts": [13, 7, 6, 7, 4, 0, 3, 2, 1, 0, 0], "total": 43, "table": "application", "rank": 29, "fortune500_rank": 15}, "Planning_and_Scheduling": {"counts": [6, 5, 6, 4, 1, 1, 2, 0, 1, 0, 0], "total": 26, "table": "application", "rank": 66, "fortune500_rank": 25}, "Control": {"counts": [2, 4, 3, 1, 3, 1, 5, 6, 0, 0, 0], "total": 25, "table": "application", "rank": 79, "fortune500_rank": 26}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [3, 15, 16, 9, 10, 8, 7, 13, 4, 0, 0], "total": 85, "table": "application", "rank": 75, "fortune500_rank": 22}, "Analytics_and_Algorithms": {"counts": [1, 6, 7, 3, 1, 1, 2, 6, 1, 0, 0], "total": 28, "table": "application", "rank": 49, "fortune500_rank": 25}, "Measuring_and_Testing": {"counts": [1, 1, 2, 0, 1, 1, 2, 4, 0, 0, 0], "total": 12, "table": null, "rank": 110, "fortune500_rank": 33}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3096, "rank": 163, "fortune500_rank": 95}, "ai_jobs": {"counts": null, "total": 119, "rank": 308, "fortune500_rank": 168}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Xerox Holdings Corporation is an American corporation that sells print and digital document products and services in more than 160 countries. Xerox is headquartered in Norwalk, Connecticut (having moved from Stamford, Connecticut, in October 2007), though its largest population of employees is based around Rochester, New York, the area in which the company was founded. The company purchased Affiliated Computer Services for $6.4 billion in early 2010. As a large developed company, it is consistently placed in the list of Fortune 500 companies.", "wikipedia_link": "https://en.wikipedia.org/wiki/Xerox", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1990, "country": "United States", "website": "https://www.nationwide.com/", "crunchbase": {"text": " 7bdafeea-117e-4710-8802-2c6afeb0b690 ", "url": "https://www.crunchbase.com/organization/nationwide"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nationwide"], "stage": "Unknown", "name": "Nationwide", "patent_name": "Nationwide", "continent": "North America", "local_logo": null, "aliases": "Nationwide; Nationwide Mutual Insurance Company", "permid_links": [{"text": 4298009744, "url": "https://permid.org/1-4298009744"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Query expansion", "field_count": 3}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Facial expression", "field_count": 1}, {"field_name": "Unified Medical Language System", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "Receiver operating characteristic", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Heuristic", "field_count": 1}], "clusters": [{"cluster_id": 7684, "cluster_count": 7}, {"cluster_id": 27242, "cluster_count": 6}, {"cluster_id": 79223, "cluster_count": 5}, {"cluster_id": 23924, "cluster_count": 4}, {"cluster_id": 2862, "cluster_count": 4}, {"cluster_id": 6554, "cluster_count": 4}, {"cluster_id": 6969, "cluster_count": 3}, {"cluster_id": 1683, "cluster_count": 3}, {"cluster_id": 13771, "cluster_count": 3}, {"cluster_id": 1374, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 61}, {"ref_CSET_id": 1990, "referenced_count": 32}, {"ref_CSET_id": 163, "referenced_count": 28}, {"ref_CSET_id": 87, "referenced_count": 15}, {"ref_CSET_id": 115, "referenced_count": 11}, {"ref_CSET_id": 1797, "referenced_count": 4}, {"ref_CSET_id": 787, "referenced_count": 4}, {"ref_CSET_id": 989, "referenced_count": 3}, {"ref_CSET_id": 341, "referenced_count": 3}, {"ref_CSET_id": 805, "referenced_count": 3}], "tasks": [{"referent": "disease_detection", "task_count": 16}, {"referent": "classification", "task_count": 10}, {"referent": "developmental_learning", "task_count": 7}, {"referent": "protein_structure_prediction", "task_count": 6}, {"referent": "smac", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "image_analysis", "task_count": 4}, {"referent": "decision_making", "task_count": 4}, {"referent": "survival_analysis", "task_count": 4}, {"referent": "topological_data_analysis", "task_count": 3}], "methods": [{"referent": "vqa_models", "method_count": 15}, {"referent": "sm3", "method_count": 11}, {"referent": "mad_learning", "method_count": 8}, {"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "optimization", "method_count": 5}, {"referent": "double_q_learning", "method_count": 5}, {"referent": "logistic_regression", "method_count": 4}, {"referent": "mim", "method_count": 4}, {"referent": "auto_classifier", "method_count": 4}, {"referent": "1d_cnn", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1189, 1557, 1522, 2299, 2121, 2349, 2432, 2647, 2495, 2613, 36], "total": 21260, "isTopResearch": false, "rank": 17, "sp500_rank": 15}, "ai_publications": {"counts": [13, 16, 12, 12, 14, 9, 19, 35, 16, 12, 0], "total": 158, "isTopResearch": false, "rank": 91, "sp500_rank": 69}, "ai_publications_growth": {"counts": [], "total": 1.641604010025065, "isTopResearch": false, "rank": 194, "sp500_rank": 96}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 1, 2, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 169, "sp500_rank": 82}, "citation_counts": {"counts": [140, 194, 235, 245, 335, 333, 439, 615, 815, 693, 15], "total": 4059, "isTopResearch": false, "rank": 82, "sp500_rank": 55}, "cv_pubs": {"counts": [2, 1, 4, 1, 1, 0, 1, 2, 0, 1, 0], "total": 13, "isTopResearch": true, "rank": 179, "sp500_rank": 104}, "nlp_pubs": {"counts": [1, 0, 2, 0, 0, 1, 2, 3, 2, 1, 0], "total": 12, "isTopResearch": true, "rank": 84, "sp500_rank": 56}, "robotics_pubs": {"counts": [0, 1, 1, 2, 1, 0, 1, 3, 0, 0, 0], "total": 9, "isTopResearch": true, "rank": 124, "sp500_rank": 89}, "citations_per_article": {"counts": [10.76923076923077, 12.125, 19.583333333333332, 20.416666666666668, 23.928571428571427, 37.0, 23.105263157894736, 17.571428571428573, 50.9375, 57.75, 0], "total": 25.689873417721518, "isTopResearch": false, "rank": 231, "sp500_rank": 65}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0], "total": 4, "table": null, "rank": 565, "sp500_rank": 235}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "sp500_rank": 444}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 10, 10, 0, 10, 0, 0, 0], "total": 40, "table": null, "rank": 565, "sp500_rank": 235}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 141, "sp500_rank": 91}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3094, "rank": 164, "sp500_rank": 97}, "ai_jobs": {"counts": null, "total": 253, "rank": 206, "sp500_rank": 133}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 1905, "country": "United States", "website": "https://www.centene.com/", "crunchbase": {"text": "8fd89cd0-421a-f512-65ea-da7f27a9a276", "url": "https://www.crunchbase.com/organization/centene-corporation"}, "child_crunchbase": [{"text": "99925526-ad15-f75f-949a-e0002f816a17", "url": "https://www.crunchbase.com/organization/wellcare-health-plans"}, {"text": "068ae457-4c1a-47fa-2866-953fc5288616", "url": "https://www.crunchbase.com/organization/health-net"}], "linkedin": ["https://www.linkedin.com/company/wellcare", "https://www.linkedin.com/company/health-net", "https://www.linkedin.com/company/centene-corporation"], "stage": "Mature", "name": "Centene", "patent_name": "centene", "continent": "North America", "local_logo": "centene.png", "aliases": "Centene; Centene Corporation", "permid_links": [{"text": 5000109513, "url": "https://permid.org/1-5000109513"}, {"text": 4295904019, "url": "https://permid.org/1-4295904019"}, {"text": 4295901893, "url": "https://permid.org/1-4295901893"}], "parent_info": null, "agg_child_info": "Wellcare, Health Net", "unagg_child_info": null, "market_filt": [{"text": "NYSE:CNC", "url": "https://www.google.com/finance/quote/cnc:nyse"}], "market_full": [{"text": "NYSE:CNC", "url": "https://www.google.com/finance/quote/cnc:nyse"}, {"text": "MEX:CNC*", "url": "https://www.google.com/finance/quote/cnc*:mex"}, {"text": "DEU:QEN", "url": "https://www.google.com/finance/quote/deu:qen"}, {"text": "SAO:C1NC34", "url": "https://www.google.com/finance/quote/c1nc34:sao"}, {"text": "NYQ:CNC", "url": "https://www.google.com/finance/quote/cnc:nyq"}, {"text": "BRN:QEN", "url": "https://www.google.com/finance/quote/brn:qen"}, {"text": "LSE:0HVB", "url": "https://www.google.com/finance/quote/0hvb:lse"}, {"text": "ASE:CNC", "url": "https://www.google.com/finance/quote/ase:cnc"}, {"text": "MCX:CNC-RM", "url": "https://www.google.com/finance/quote/cnc-rm:mcx"}, {"text": "STU:QEN", "url": "https://www.google.com/finance/quote/qen:stu"}, {"text": "FRA:QEN", "url": "https://www.google.com/finance/quote/fra:qen"}, {"text": "MUN:QEN", "url": "https://www.google.com/finance/quote/mun:qen"}, {"text": "DUS:QEN", "url": "https://www.google.com/finance/quote/dus:qen"}], "crunchbase_description": "Centene provides healthcare solutions to families and individuals in order for them to get well, stay well, and be well.", "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [{"cluster_id": 3433, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "disease_detection", "task_count": 1}, {"referent": "parkinson_'s_disease", "task_count": 1}, {"referent": "recommendation", "task_count": 1}], "methods": [{"referent": "dac", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [6, 7, 3, 9, 8, 11, 10, 10, 17, 12, 0], "total": 93, "isTopResearch": false, "rank": 520, "sp500_rank": 298, "fortune500_rank": 195}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 2, 1, 0, 1, 0, 1, 1, 2, 0, 0], "total": 8, "isTopResearch": false, "rank": 782, "sp500_rank": 323, "fortune500_rank": 210}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 2.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 8.0, "isTopResearch": false, "rank": 595, "sp500_rank": 227, "fortune500_rank": 171}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3087, "rank": 165, "sp500_rank": 98, "fortune500_rank": 96}, "ai_jobs": {"counts": null, "total": 630, "rank": 84, "sp500_rank": 57, "fortune500_rank": 44}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Centene Corporation is a large publicly traded company and a multi-line managed care enterprise that serves as a major intermediary for both government-sponsored and privately insured health care programs. It is a healthcare insurer that focuses on managed care for uninsured, underinsured, and low-income individuals. Centene is the second-largest publicly traded corporation based in the state of Missouri. It ranked No. 42 in the 2020 Fortune 500 list of the largest United States corporations by total revenue.", "wikipedia_link": "https://en.wikipedia.org/wiki/Centene_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2327, "country": "United States", "website": "https://www.fortinet.com/", "crunchbase": {"text": "d77eeaa5-c240-8cf3-e41e-a696d9729abd", "url": "https://www.crunchbase.com/organization/fortinet"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fortinet"], "stage": "Mature", "name": "Fortinet", "patent_name": "fortinet", "continent": "North America", "local_logo": "fortinet.png", "aliases": "Fortinet Inc; Fortinet, Inc", "permid_links": [{"text": 4295935222, "url": "https://permid.org/1-4295935222"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:FTNT", "url": "https://www.google.com/finance/quote/ftnt:nasdaq"}], "market_full": [{"text": "BRN:FO8", "url": "https://www.google.com/finance/quote/brn:fo8"}, {"text": "SAO:F1TN34", "url": "https://www.google.com/finance/quote/f1tn34:sao"}, {"text": "DEU:FNT", "url": "https://www.google.com/finance/quote/deu:fnt"}, {"text": "MEX:FTNT", "url": "https://www.google.com/finance/quote/ftnt:mex"}, {"text": "NASDAQ:FTNT", "url": "https://www.google.com/finance/quote/ftnt:nasdaq"}, {"text": "HAN:FO8", "url": "https://www.google.com/finance/quote/fo8:han"}, {"text": "LSE:0IR9", "url": "https://www.google.com/finance/quote/0ir9:lse"}, {"text": "MUN:FO8", "url": "https://www.google.com/finance/quote/fo8:mun"}, {"text": "FRA:FO8", "url": "https://www.google.com/finance/quote/fo8:fra"}, {"text": "BER:FO8", "url": "https://www.google.com/finance/quote/ber:fo8"}, {"text": "MOEX:FTNT-RM", "url": "https://www.google.com/finance/quote/ftnt-rm:moex"}, {"text": "STU:FO8", "url": "https://www.google.com/finance/quote/fo8:stu"}, {"text": "DUS:FO8", "url": "https://www.google.com/finance/quote/dus:fo8"}], "crunchbase_description": "Fortinet is a provider of network security appliances that include firewalls, security gateways, and complementary products.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Nearest neighbor search", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 180, "cluster_count": 1}, {"cluster_id": 4262, "cluster_count": 1}, {"cluster_id": 32070, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "image_similarity_search", "task_count": 1}, {"referent": "android_malware_detection", "task_count": 1}, {"referent": "neural_network_security", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "autoencoder", "method_count": 1}, {"referent": "object_detection_models", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 4, 3, 0, 2, 0, 4, 4, 3, 4, 0], "total": 26, "isTopResearch": false, "rank": 744, "fortune500_rank": 265}, "ai_publications": {"counts": [0, 0, 2, 0, 0, 0, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 6, 7, 4, 6, 8, 10, 18, 0], "total": 59, "isTopResearch": false, "rank": 567, "fortune500_rank": 154}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0, 0, 0, 8.0, 0, 0, 0], "total": 19.666666666666668, "isTopResearch": false, "rank": 319, "fortune500_rank": 102}}, "patents": {"ai_patents": {"counts": [0, 0, 2, 3, 2, 4, 14, 13, 3, 0, 0], "total": 41, "table": null, "rank": 238, "fortune500_rank": 77}, "ai_patents_growth": {"counts": [], "total": 114.28571428571428, "table": null, "rank": 97, "fortune500_rank": 21}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 20, 30, 20, 40, 140, 130, 30, 0, 0], "total": 410, "table": null, "rank": 238, "fortune500_rank": 77}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 2, 3, 3, 0, 0, 0], "total": 9, "table": "industry", "rank": 95, "fortune500_rank": 39}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 1, 2, 2, 4, 6, 2, 0, 0], "total": 18, "table": "industry", "rank": 202, "fortune500_rank": 75}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 2, 3, 1, 4, 14, 5, 2, 0, 0], "total": 31, "table": "industry", "rank": 107, "fortune500_rank": 45}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 1, 5, 0, 0, 0], "total": 8, "table": "application", "rank": 269, "fortune500_rank": 82}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 1, 2, 0, 2, 0, 0], "total": 6, "table": "application", "rank": 147, "fortune500_rank": 61}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3054, "rank": 166, "fortune500_rank": 97}, "ai_jobs": {"counts": null, "total": 15, "rank": 754, "fortune500_rank": 376}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Fortinet is an American multinational corporation headquartered in Sunnyvale, California. It develops and sells cybersecurity solutions, including but not limited to physical products such as firewalls, plus software and services such as anti-virus protection, intrusion prevention systems and endpoint security components.", "wikipedia_link": "https://en.wikipedia.org/wiki/Fortinet", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1831, "country": "United States", "website": "https://www.elevancehealth.com/", "crunchbase": {"text": " 1bc28dec-4dde-5152-42b7-811f15233396", "url": "https://www.crunchbase.com/organization/wellpoint"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/antheminc"], "stage": "Mature", "name": "Elevance Health", "patent_name": "Elevance Health", "continent": "North America", "local_logo": null, "aliases": "Anthem; Anthem, Inc; Elevance Health; Elevance Health, Inc", "permid_links": [{"text": 4295901784, "url": "https://permid.org/1-4295901784"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ELV", "url": "https://www.google.com/finance/quote/ELV:NYSE"}], "market_full": [{"text": "DEU:A58", "url": "https://www.google.com/finance/quote/A58:DEU"}, {"text": "GER:A58X", "url": "https://www.google.com/finance/quote/A58X:GER"}, {"text": "DUS:A58", "url": "https://www.google.com/finance/quote/A58:DUS"}, {"text": "MUN:A58", "url": "https://www.google.com/finance/quote/A58:MUN"}, {"text": "VIE:ELV", "url": "https://www.google.com/finance/quote/ELV:VIE"}, {"text": "ASE:ELV", "url": "https://www.google.com/finance/quote/ASE:ELV"}, {"text": "MCX:ELV-RM", "url": "https://www.google.com/finance/quote/ELV-RM:MCX"}, {"text": "NYSE:ELV", "url": "https://www.google.com/finance/quote/ELV:NYSE"}, {"text": "MEX:ELV*", "url": "https://www.google.com/finance/quote/ELV*:MEX"}, {"text": "LSE:0HG8", "url": "https://www.google.com/finance/quote/0HG8:LSE"}, {"text": "NYQ:ELV", "url": "https://www.google.com/finance/quote/ELV:NYQ"}, {"text": "BRN:A58", "url": "https://www.google.com/finance/quote/A58:BRN"}, {"text": "SAO:E1LV34", "url": "https://www.google.com/finance/quote/E1LV34:SAO"}, {"text": "BER:A58", "url": "https://www.google.com/finance/quote/A58:BER"}, {"text": "FRA:A58", "url": "https://www.google.com/finance/quote/A58:FRA"}, {"text": "STU:A58", "url": "https://www.google.com/finance/quote/A58:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Semantic similarity", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 30367, "cluster_count": 1}, {"cluster_id": 1338, "cluster_count": 1}, {"cluster_id": 6708, "cluster_count": 1}, {"cluster_id": 13252, "cluster_count": 1}, {"cluster_id": 6342, "cluster_count": 1}, {"cluster_id": 6555, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 184, "referenced_count": 3}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 434, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "denoising", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "knowledge_graphs", "task_count": 1}, {"referent": "skills_assessment", "task_count": 1}, {"referent": "learning_to_paint", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "information_retrieval", "task_count": 1}], "methods": [{"referent": "graphsage", "method_count": 1}, {"referent": "wgan_gp", "method_count": 1}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [136, 97, 127, 136, 111, 115, 116, 100, 97, 168, 3], "total": 1206, "isTopResearch": false, "rank": 172, "sp500_rank": 128, "fortune500_rank": 65}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 4, 1, 0], "total": 6, "isTopResearch": false, "rank": 514, "sp500_rank": 255, "fortune500_rank": 139}, "ai_publications_growth": {"counts": [], "total": -87.5, "isTopResearch": false, "rank": 1548, "sp500_rank": 446, "fortune500_rank": 440}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [5, 5, 5, 6, 6, 8, 15, 9, 17, 7, 0], "total": 83, "isTopResearch": false, "rank": 532, "sp500_rank": 231, "fortune500_rank": 145}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 15.0, 0, 4.25, 7.0, 0], "total": 13.833333333333334, "isTopResearch": false, "rank": 435, "sp500_rank": 147, "fortune500_rank": 135}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0], "total": 3, "table": null, "rank": 606, "sp500_rank": 248, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 20, 0, 0], "total": 30, "table": null, "rank": 606, "sp500_rank": 248, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0], "total": 3, "table": "industry", "rank": 158, "sp500_rank": 91, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3053, "rank": 167, "sp500_rank": 99, "fortune500_rank": 98}, "ai_jobs": {"counts": null, "total": 388, "rank": 145, "sp500_rank": 95, "fortune500_rank": 79}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment"}, {"cset_id": 176, "country": "United States", "website": "https://www.netflix.com", "crunchbase": {"text": "3a7ec450-5422-1553-6c6a-4b28f6d4a17c", "url": "https://www.crunchbase.com/organization/netflix"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/netflix"], "stage": "Mature", "name": "Netflix", "patent_name": "netflix", "continent": "North America", "local_logo": "netflix.png", "aliases": "Netflix Com Inc; Netflix Inc; Netflix, Inc", "permid_links": [{"text": 4295902158, "url": "https://permid.org/1-4295902158"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:NFLX", "url": "https://www.google.com/finance/quote/nasdaq:nflx"}], "market_full": [{"text": "MOEX:NFLX-RM", "url": "https://www.google.com/finance/quote/moex:nflx-rm"}, {"text": "BMV:NFLX", "url": "https://www.google.com/finance/quote/bmv:nflx"}, {"text": "NASDAQ:NFLX", "url": "https://www.google.com/finance/quote/nasdaq:nflx"}, {"text": "FWB:NFC", "url": "https://www.google.com/finance/quote/fwb:nfc"}], "crunchbase_description": "Netflix is an online streaming platform that enables users to watch TV shows and movies.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Recommender system", "field_count": 18}, {"field_name": "Ranking", "field_count": 7}, {"field_name": "Quantization (signal processing)", "field_count": 4}, {"field_name": "Data compression", "field_count": 3}, {"field_name": "Inference", "field_count": 2}, {"field_name": "Automatic summarization", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Categorical variable", "field_count": 1}, {"field_name": "Just-noticeable difference", "field_count": 1}], "clusters": [{"cluster_id": 148, "cluster_count": 14}, {"cluster_id": 2387, "cluster_count": 7}, {"cluster_id": 1186, "cluster_count": 5}, {"cluster_id": 47386, "cluster_count": 5}, {"cluster_id": 47174, "cluster_count": 3}, {"cluster_id": 31316, "cluster_count": 2}, {"cluster_id": 6230, "cluster_count": 2}, {"cluster_id": 58210, "cluster_count": 2}, {"cluster_id": 50542, "cluster_count": 2}, {"cluster_id": 5109, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 172}, {"ref_CSET_id": 163, "referenced_count": 107}, {"ref_CSET_id": 176, "referenced_count": 54}, {"ref_CSET_id": 87, "referenced_count": 41}, {"ref_CSET_id": 792, "referenced_count": 32}, {"ref_CSET_id": 115, "referenced_count": 31}, {"ref_CSET_id": 6, "referenced_count": 31}, {"ref_CSET_id": 127, "referenced_count": 26}, {"ref_CSET_id": 245, "referenced_count": 12}, {"ref_CSET_id": 1126, "referenced_count": 11}], "tasks": [{"referent": "recommendation", "task_count": 17}, {"referent": "recommendation_systems", "task_count": 14}, {"referent": "classification", "task_count": 11}, {"referent": "causal_inference", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "collaborative_filtering", "task_count": 5}, {"referent": "image_processing", "task_count": 4}, {"referent": "sequential_recommendation", "task_count": 3}, {"referent": "no_reference_image_quality_assessment", "task_count": 3}, {"referent": "safety_perception_recognition", "task_count": 3}], "methods": [{"referent": "causal_inference", "method_count": 8}, {"referent": "optimization", "method_count": 8}, {"referent": "vqa_models", "method_count": 7}, {"referent": "mad_learning", "method_count": 7}, {"referent": "downsampling", "method_count": 6}, {"referent": "generative_models", "method_count": 5}, {"referent": "logistic_regression", "method_count": 5}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "distributions", "method_count": 4}, {"referent": "self_supervised_learning", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [17, 14, 28, 39, 29, 56, 44, 43, 35, 41, 2], "total": 348, "isTopResearch": false, "rank": 336, "sp500_rank": 218, "fortune500_rank": 128}, "ai_publications": {"counts": [6, 2, 11, 11, 6, 18, 18, 16, 21, 6, 0], "total": 115, "isTopResearch": false, "rank": 111, "sp500_rank": 80, "fortune500_rank": 34}, "ai_publications_growth": {"counts": [], "total": -17.09656084656085, "isTopResearch": false, "rank": 1311, "sp500_rank": 341, "fortune500_rank": 382}, "ai_pubs_top_conf": {"counts": [1, 1, 1, 1, 0, 6, 6, 4, 6, 4, 0], "total": 30, "isTopResearch": false, "rank": 59, "sp500_rank": 32, "fortune500_rank": 20}, "citation_counts": {"counts": [10, 28, 52, 128, 242, 459, 786, 1052, 1269, 681, 20], "total": 4727, "isTopResearch": false, "rank": 72, "sp500_rank": 49, "fortune500_rank": 26}, "cv_pubs": {"counts": [0, 0, 3, 3, 3, 9, 6, 7, 5, 3, 0], "total": 39, "isTopResearch": true, "rank": 96, "sp500_rank": 64, "fortune500_rank": 27}, "nlp_pubs": {"counts": [2, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0], "total": 6, "isTopResearch": true, "rank": 131, "sp500_rank": 79, "fortune500_rank": 37}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [1.6666666666666667, 14.0, 4.7272727272727275, 11.636363636363637, 40.333333333333336, 25.5, 43.666666666666664, 65.75, 60.42857142857143, 113.5, 0], "total": 41.10434782608696, "isTopResearch": false, "rank": 124, "sp500_rank": 28, "fortune500_rank": 33}}, "patents": {"ai_patents": {"counts": [3, 0, 2, 2, 0, 9, 7, 7, 1, 0, 0], "total": 31, "table": null, "rank": 266, "sp500_rank": 149, "fortune500_rank": 90}, "ai_patents_growth": {"counts": [], "total": -11.11111111111111, "table": null, "rank": 1441, "sp500_rank": 425, "fortune500_rank": 415}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 0, 20, 20, 0, 90, 70, 70, 10, 0, 0], "total": 310, "table": null, "rank": 266, "sp500_rank": 149, "fortune500_rank": 90}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "sp500_rank": 131, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [2, 0, 1, 1, 0, 2, 4, 3, 1, 0, 0], "total": 14, "table": "industry", "rank": 226, "sp500_rank": 123, "fortune500_rank": 82}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [1, 0, 1, 2, 0, 4, 4, 3, 0, 0, 0], "total": 15, "table": "industry", "rank": 143, "sp500_rank": 89, "fortune500_rank": 56}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 60, "sp500_rank": 38, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 127, "sp500_rank": 76, "fortune500_rank": 37}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 1, 1, 0, 5, 1, 4, 0, 0, 0], "total": 12, "table": "application", "rank": 229, "sp500_rank": 130, "fortune500_rank": 69}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 1, 0, 0, 3, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 147, "sp500_rank": 103, "fortune500_rank": 61}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3049, "rank": 168, "sp500_rank": 100, "fortune500_rank": 99}, "ai_jobs": {"counts": null, "total": 349, "rank": 160, "sp500_rank": 104, "fortune500_rank": 86}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Netflix, Inc. is an American over-the-top content platform and production company headquartered in Los Gatos, California. Netflix was founded in 1997 by Reed Hastings and Marc Randolph in Scotts Valley, California. The company's primary business is a subscription-based streaming service offering online streaming from a library of films and television series, including those produced in-house. In January 2021, Netflix reached 203.7 million subscribers, including 73 million in the United States. It is available worldwide except in the following: mainland China (due to local restrictions), Syria, North Korea, and Crimea (due to US sanctions). It was reported in 2020 that Netflix's operating income is $1.2 billion. The company has offices in France, Brazil, the Netherlands, India, Japan, South Korea, and the United Kingdom. Netflix is a member of the Motion Picture Association (MPA), producing and distributing content from countries all over the globe.", "wikipedia_link": "https://en.wikipedia.org/wiki/Netflix", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2241, "country": "United States", "website": "https://www.cadence.com/", "crunchbase": {"text": "fd32fa80-742c-f5a6-027d-2bec7c74ee3b", "url": "https://www.crunchbase.com/organization/cadence-design-systems"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cadence-design-systems"], "stage": "Mature", "name": "Cadence Design Systems", "patent_name": "cadence design systems", "continent": "North America", "local_logo": "cadence_design_systems.png", "aliases": "Cadence Design Systems Inc; Cadence Design Systems, Inc", "permid_links": [{"text": 4295903637, "url": "https://permid.org/1-4295903637"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CDNS", "url": "https://www.google.com/finance/quote/cdns:nasdaq"}], "market_full": [{"text": "MUN:CDS", "url": "https://www.google.com/finance/quote/cds:mun"}, {"text": "LSE:0HS2", "url": "https://www.google.com/finance/quote/0hs2:lse"}, {"text": "SAO:C1DN34", "url": "https://www.google.com/finance/quote/c1dn34:sao"}, {"text": "HAN:CDS", "url": "https://www.google.com/finance/quote/cds:han"}, {"text": "BER:CDS", "url": "https://www.google.com/finance/quote/ber:cds"}, {"text": "DUS:CDS", "url": "https://www.google.com/finance/quote/cds:dus"}, {"text": "MCX:CDNS-RM", "url": "https://www.google.com/finance/quote/cdns-rm:mcx"}, {"text": "NASDAQ:CDNS", "url": "https://www.google.com/finance/quote/cdns:nasdaq"}, {"text": "FRA:CDS", "url": "https://www.google.com/finance/quote/cds:fra"}, {"text": "STU:CDS", "url": "https://www.google.com/finance/quote/cds:stu"}, {"text": "DEU:CDNS", "url": "https://www.google.com/finance/quote/cdns:deu"}, {"text": "GER:CDSX", "url": "https://www.google.com/finance/quote/cdsx:ger"}, {"text": "BRN:CDS", "url": "https://www.google.com/finance/quote/brn:cds"}, {"text": "VIE:CDNS", "url": "https://www.google.com/finance/quote/cdns:vie"}], "crunchbase_description": "Cadence Design Systems develops electronic design automation, software, hardware and silicon intellectual property technologies.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Feature extraction", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Dimensionality reduction", "field_count": 2}, {"field_name": "Quantization (signal processing)", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Speech processing", "field_count": 1}, {"field_name": "Feature vector", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "Frame rate", "field_count": 1}, {"field_name": "Statistical model", "field_count": 1}], "clusters": [{"cluster_id": 6871, "cluster_count": 7}, {"cluster_id": 15802, "cluster_count": 6}, {"cluster_id": 10424, "cluster_count": 3}, {"cluster_id": 19425, "cluster_count": 2}, {"cluster_id": 20800, "cluster_count": 2}, {"cluster_id": 53882, "cluster_count": 2}, {"cluster_id": 8856, "cluster_count": 2}, {"cluster_id": 1621, "cluster_count": 2}, {"cluster_id": 2381, "cluster_count": 1}, {"cluster_id": 41455, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 41}, {"ref_CSET_id": 2241, "referenced_count": 13}, {"ref_CSET_id": 2075, "referenced_count": 13}, {"ref_CSET_id": 87, "referenced_count": 12}, {"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 789, "referenced_count": 7}, {"ref_CSET_id": 671, "referenced_count": 6}, {"ref_CSET_id": 127, "referenced_count": 6}, {"ref_CSET_id": 184, "referenced_count": 5}, {"ref_CSET_id": 115, "referenced_count": 4}], "tasks": [{"referent": "classification", "task_count": 9}, {"referent": "disease_detection", "task_count": 7}, {"referent": "image_processing", "task_count": 6}, {"referent": "feature_selection", "task_count": 4}, {"referent": "layout_to_image_generation", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "system_identification", "task_count": 2}, {"referent": "model_compression", "task_count": 2}, {"referent": "routing", "task_count": 2}, {"referent": "dimensionality_reduction", "task_count": 2}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 11}, {"referent": "1d_cnn", "method_count": 7}, {"referent": "recurrent_neural_networks", "method_count": 7}, {"referent": "mad_learning", "method_count": 5}, {"referent": "double_q_learning", "method_count": 5}, {"referent": "self_supervised_learning", "method_count": 4}, {"referent": "q_learning", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "distributions", "method_count": 3}, {"referent": "feature_extractors", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [66, 76, 67, 49, 70, 50, 82, 57, 65, 59, 1], "total": 642, "isTopResearch": false, "rank": 243, "fortune500_rank": 94}, "ai_publications": {"counts": [3, 1, 2, 1, 2, 4, 13, 11, 9, 1, 0], "total": 47, "isTopResearch": false, "rank": 190, "fortune500_rank": 59}, "ai_publications_growth": {"counts": [], "total": -40.81844081844082, "isTopResearch": false, "rank": 1426, "fortune500_rank": 413}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [2, 6, 10, 24, 33, 26, 59, 56, 103, 74, 1], "total": 394, "isTopResearch": false, "rank": 296, "fortune500_rank": 86}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 1, 3, 1, 3, 1, 0], "total": 10, "isTopResearch": true, "rank": 202, "fortune500_rank": 55}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "fortune500_rank": 61}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "fortune500_rank": 67}, "citations_per_article": {"counts": [0.6666666666666666, 6.0, 5.0, 24.0, 16.5, 6.5, 4.538461538461538, 5.090909090909091, 11.444444444444445, 74.0, 0], "total": 8.382978723404255, "isTopResearch": false, "rank": 589, "fortune500_rank": 168}}, "patents": {"ai_patents": {"counts": [1, 0, 1, 4, 6, 6, 8, 4, 1, 0, 0], "total": 31, "table": null, "rank": 266, "fortune500_rank": 90}, "ai_patents_growth": {"counts": [], "total": -5.5555555555555545, "table": null, "rank": 1434, "fortune500_rank": 411}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 10, 40, 60, 60, 80, 40, 10, 0, 0], "total": 310, "table": null, "rank": 266, "fortune500_rank": 90}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 4, 3, 6, 8, 4, 1, 0, 0], "total": 27, "table": "industry", "rank": 160, "fortune500_rank": 57}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 3, 3, 0, 1, 0, 0], "total": 8, "table": "application", "rank": 131, "fortune500_rank": 55}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 3028, "rank": 169, "fortune500_rank": 100}, "ai_jobs": {"counts": null, "total": 23, "rank": 656, "fortune500_rank": 333}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Cadence Design Systems, Inc., headquartered in San Jose, California, is an American multinational computational software company, founded in 1988 by the merger of SDA Systems and ECAD, Inc. The company produces software, hardware and silicon structures for designing integrated circuits, systems on chips (SoCs) and printed circuit boards.", "wikipedia_link": "https://en.wikipedia.org/wiki/Cadence_Design_Systems", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3116, "country": "United Kingdom", "website": "https://www.gsk.com/", "crunchbase": {"text": " 93853d8a-48b8-f3f1-c162-7c1d3b856082", "url": " https://www.crunchbase.com/organization/glaxosmithkline"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/glaxosmithkline"], "stage": "Mature", "name": "Glaxosmithkline", "patent_name": "GlaxoSmithKline", "continent": "Europe", "local_logo": null, "aliases": "GlaxoSmithKline; Glaxosmithkline Plc", "permid_links": [{"text": 4295895781, "url": "https://permid.org/1-4295895781"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:GSK", "url": "https://www.google.com/finance/quote/GSK:NYSE"}], "market_full": [{"text": "BER:GS7A", "url": "https://www.google.com/finance/quote/BER:GS7A"}, {"text": "DUS:GS7A", "url": "https://www.google.com/finance/quote/DUS:GS7A"}, {"text": "NYQ:GSK", "url": "https://www.google.com/finance/quote/GSK:NYQ"}, {"text": "BRN:GS7", "url": "https://www.google.com/finance/quote/BRN:GS7"}, {"text": "FRA:GS7", "url": "https://www.google.com/finance/quote/FRA:GS7"}, {"text": "PKC:GLAXF", "url": "https://www.google.com/finance/quote/GLAXF:PKC"}, {"text": "STU:GS7", "url": "https://www.google.com/finance/quote/GS7:STU"}, {"text": "DEU:GSK", "url": "https://www.google.com/finance/quote/DEU:GSK"}, {"text": "HAN:GS7A", "url": "https://www.google.com/finance/quote/GS7A:HAN"}, {"text": "LSE:GSK", "url": "https://www.google.com/finance/quote/GSK:LSE"}, {"text": "DEU:GS7A", "url": "https://www.google.com/finance/quote/DEU:GS7A"}, {"text": "SAO:G1SK34", "url": "https://www.google.com/finance/quote/G1SK34:SAO"}, {"text": "BUE:GSK3", "url": "https://www.google.com/finance/quote/BUE:GSK3"}, {"text": "GER:GS7X", "url": "https://www.google.com/finance/quote/GER:GS7X"}, {"text": "MUN:GS7A", "url": "https://www.google.com/finance/quote/GS7A:MUN"}, {"text": "BER:GS7", "url": "https://www.google.com/finance/quote/BER:GS7"}, {"text": "MEX:GSKN", "url": "https://www.google.com/finance/quote/GSKN:MEX"}, {"text": "NYSE:GSK", "url": "https://www.google.com/finance/quote/GSK:NYSE"}, {"text": "MEX:GSK1N", "url": "https://www.google.com/finance/quote/GSK1N:MEX"}, {"text": "HAN:GS7", "url": "https://www.google.com/finance/quote/GS7:HAN"}, {"text": "DUS:GS7", "url": "https://www.google.com/finance/quote/DUS:GS7"}, {"text": "ASE:GSK", "url": "https://www.google.com/finance/quote/ASE:GSK"}, {"text": "FRA:GS7A", "url": "https://www.google.com/finance/quote/FRA:GS7A"}, {"text": "HAM:GS7A", "url": "https://www.google.com/finance/quote/GS7A:HAM"}, {"text": "MUN:GS7", "url": "https://www.google.com/finance/quote/GS7:MUN"}, {"text": "SWX:GSK", "url": "https://www.google.com/finance/quote/GSK:SWX"}, {"text": "HAM:GS7", "url": "https://www.google.com/finance/quote/GS7:HAM"}, {"text": "STU:GS7A", "url": "https://www.google.com/finance/quote/GS7A:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 7}, {"field_name": "Segmentation", "field_count": 3}, {"field_name": "Cluster analysis", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Feature selection", "field_count": 3}, {"field_name": "Machine vision", "field_count": 2}, {"field_name": "Transfer of learning", "field_count": 2}, {"field_name": "Linear discriminant analysis", "field_count": 2}, {"field_name": "Random forest", "field_count": 2}, {"field_name": "Prediction interval", "field_count": 1}], "clusters": [{"cluster_id": 23169, "cluster_count": 7}, {"cluster_id": 11234, "cluster_count": 3}, {"cluster_id": 20261, "cluster_count": 3}, {"cluster_id": 35601, "cluster_count": 3}, {"cluster_id": 31462, "cluster_count": 2}, {"cluster_id": 8650, "cluster_count": 2}, {"cluster_id": 1683, "cluster_count": 2}, {"cluster_id": 17572, "cluster_count": 2}, {"cluster_id": 5341, "cluster_count": 2}, {"cluster_id": 9836, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 129}, {"ref_CSET_id": 87, "referenced_count": 32}, {"ref_CSET_id": 163, "referenced_count": 25}, {"ref_CSET_id": 115, "referenced_count": 18}, {"ref_CSET_id": 3116, "referenced_count": 16}, {"ref_CSET_id": 341, "referenced_count": 16}, {"ref_CSET_id": 184, "referenced_count": 13}, {"ref_CSET_id": 1633, "referenced_count": 11}, {"ref_CSET_id": 1797, "referenced_count": 10}, {"ref_CSET_id": 734, "referenced_count": 8}], "tasks": [{"referent": "classification", "task_count": 21}, {"referent": "drug_discovery", "task_count": 16}, {"referent": "developmental_learning", "task_count": 10}, {"referent": "image_analysis", "task_count": 7}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 5}, {"referent": "image_recognition", "task_count": 5}, {"referent": "segmentation", "task_count": 5}, {"referent": "clustering", "task_count": 3}, {"referent": "domain_generalization", "task_count": 3}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 12}, {"referent": "vqa_models", "method_count": 10}, {"referent": "mad_learning", "method_count": 10}, {"referent": "meta_learning_algorithms", "method_count": 10}, {"referent": "recurrent_neural_networks", "method_count": 9}, {"referent": "auto_classifier", "method_count": 7}, {"referent": "logistic_regression", "method_count": 7}, {"referent": "3d_representations", "method_count": 6}, {"referent": "crossvit", "method_count": 6}, {"referent": "hri_pipeline", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2797, 2592, 2638, 2337, 2144, 2457, 2447, 2389, 2523, 2240, 3], "total": 24567, "isTopResearch": false, "rank": 14, "sp500_rank": 12}, "ai_publications": {"counts": [5, 7, 6, 2, 9, 16, 13, 13, 21, 7, 0], "total": 99, "isTopResearch": false, "rank": 120, "sp500_rank": 85}, "ai_publications_growth": {"counts": [], "total": -1.7094017094017104, "isTopResearch": false, "rank": 1215, "sp500_rank": 287}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99}, "citation_counts": {"counts": [60, 88, 115, 131, 143, 290, 505, 653, 828, 722, 15], "total": 3550, "isTopResearch": false, "rank": 90, "sp500_rank": 60}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 6, 3, 5, 4, 2, 0], "total": 21, "isTopResearch": true, "rank": 135, "sp500_rank": 85}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [12.0, 12.571428571428571, 19.166666666666668, 65.5, 15.88888888888889, 18.125, 38.84615384615385, 50.23076923076923, 39.42857142857143, 103.14285714285714, 0], "total": 35.85858585858586, "isTopResearch": false, "rank": 154, "sp500_rank": 35}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 3, "table": null, "rank": 606, "sp500_rank": 248}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 0, 0, 0, 10, 10, 0, 0], "total": 30, "table": null, "rank": 606, "sp500_rank": 248}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 3, "table": "industry", "rank": 158, "sp500_rank": 91}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2992, "rank": 170, "sp500_rank": 101}, "ai_jobs": {"counts": null, "total": 834, "rank": 55, "sp500_rank": 38}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research"}, {"cset_id": 289, "country": "China", "website": "http://zte.com.cn", "crunchbase": {"text": "2ea7da9d-f3e2-de8a-a848-af25c045096c", "url": "https://www.crunchbase.com/organization/zte-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/zte"], "stage": "Mature", "name": "ZTE", "patent_name": "zte", "continent": "Asia", "local_logo": "zte.png", "aliases": "Zte Corp; Zte Corporation; \u4e2d\u5174; \u4e2d\u5174\u901a\u8baf\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295865240, "url": "https://permid.org/1-4295865240"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "SZSE:000063", "url": "https://www.google.com/finance/quote/000063:szse"}, {"text": "HKG:0763", "url": "https://www.google.com/finance/quote/0763:hkg"}], "market_full": [{"text": "FWB:FZM", "url": "https://www.google.com/finance/quote/fwb:fzm"}, {"text": "SZSE:000063", "url": "https://www.google.com/finance/quote/000063:szse"}, {"text": "HKG:0763", "url": "https://www.google.com/finance/quote/0763:hkg"}, {"text": "OTC:ZTCOF", "url": "https://www.google.com/finance/quote/otc:ztcof"}, {"text": "DUS:FZM", "url": "https://www.google.com/finance/quote/dus:fzm"}, {"text": "BER:FZM", "url": "https://www.google.com/finance/quote/ber:fzm"}, {"text": "MUN:FZM", "url": "https://www.google.com/finance/quote/fzm:mun"}], "crunchbase_description": "ZTE provides telecommunications equipment and network solutions.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 10}, {"field_name": "Convolutional neural network", "field_count": 9}, {"field_name": "Deep learning", "field_count": 7}, {"field_name": "Cluster analysis", "field_count": 6}, {"field_name": "Feature extraction", "field_count": 5}, {"field_name": "Reinforcement learning", "field_count": 4}, {"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Support vector machine", "field_count": 3}, {"field_name": "Robustness (computer science)", "field_count": 3}, {"field_name": "RGB color model", "field_count": 2}], "clusters": [{"cluster_id": 13372, "cluster_count": 4}, {"cluster_id": 1206, "cluster_count": 4}, {"cluster_id": 1436, "cluster_count": 4}, {"cluster_id": 1621, "cluster_count": 3}, {"cluster_id": 177, "cluster_count": 3}, {"cluster_id": 183, "cluster_count": 3}, {"cluster_id": 364, "cluster_count": 3}, {"cluster_id": 32424, "cluster_count": 2}, {"cluster_id": 25609, "cluster_count": 2}, {"cluster_id": 39447, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 127}, {"ref_CSET_id": 163, "referenced_count": 101}, {"ref_CSET_id": 87, "referenced_count": 50}, {"ref_CSET_id": 112, "referenced_count": 33}, {"ref_CSET_id": 245, "referenced_count": 25}, {"ref_CSET_id": 223, "referenced_count": 23}, {"ref_CSET_id": 6, "referenced_count": 20}, {"ref_CSET_id": 115, "referenced_count": 17}, {"ref_CSET_id": 21, "referenced_count": 16}, {"ref_CSET_id": 37, "referenced_count": 12}], "tasks": [{"referent": "classification", "task_count": 35}, {"referent": "feature_selection", "task_count": 11}, {"referent": "system_identification", "task_count": 10}, {"referent": "image_processing", "task_count": 8}, {"referent": "computer_vision", "task_count": 6}, {"referent": "personal_identification", "task_count": 6}, {"referent": "traffic_prediction", "task_count": 5}, {"referent": "image_analysis", "task_count": 5}, {"referent": "video_surveillance", "task_count": 5}, {"referent": "image_restoration", "task_count": 4}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 16}, {"referent": "recurrent_neural_networks", "method_count": 13}, {"referent": "double_q_learning", "method_count": 12}, {"referent": "deep_belief_network", "method_count": 10}, {"referent": "symbolic_deep_learning", "method_count": 9}, {"referent": "griffin_lim_algorithm", "method_count": 9}, {"referent": "auto_classifier", "method_count": 8}, {"referent": "1d_cnn", "method_count": 8}, {"referent": "clustering", "method_count": 7}, {"referent": "awd_lstm", "method_count": 7}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [429, 378, 393, 389, 410, 398, 350, 426, 414, 251, 3], "total": 3841, "isTopResearch": false, "rank": 79}, "ai_publications": {"counts": [12, 6, 13, 16, 15, 10, 22, 33, 28, 14, 0], "total": 169, "isTopResearch": false, "rank": 86}, "ai_publications_growth": {"counts": [], "total": -5.050505050505052, "isTopResearch": false, "rank": 1232}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 2, 2, 0], "total": 8, "isTopResearch": false, "rank": 127}, "citation_counts": {"counts": [32, 42, 52, 65, 67, 112, 234, 410, 563, 489, 17], "total": 2083, "isTopResearch": false, "rank": 131}, "cv_pubs": {"counts": [6, 5, 7, 8, 3, 3, 6, 9, 14, 8, 0], "total": 69, "isTopResearch": true, "rank": 72}, "nlp_pubs": {"counts": [0, 0, 1, 1, 5, 0, 2, 3, 3, 2, 0], "total": 17, "isTopResearch": true, "rank": 71}, "robotics_pubs": {"counts": [0, 0, 1, 1, 1, 0, 2, 1, 0, 0, 0], "total": 6, "isTopResearch": true, "rank": 156}, "citations_per_article": {"counts": [2.6666666666666665, 7.0, 4.0, 4.0625, 4.466666666666667, 11.2, 10.636363636363637, 12.424242424242424, 20.107142857142858, 34.92857142857143, 0], "total": 12.325443786982248, "isTopResearch": false, "rank": 463}}, "patents": {"ai_patents": {"counts": [4, 4, 5, 18, 24, 35, 47, 73, 35, 4, 0], "total": 249, "table": null, "rank": 89}, "ai_patents_growth": {"counts": [], "total": 45.14606551840595, "table": null, "rank": 224}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [40, 40, 50, 180, 240, 350, 470, 730, 350, 40, 0], "total": 2490, "table": null, "rank": 89}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 3, "table": null, "rank": 158}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 2, 1, 2, 1, 4, 1, 1, 0], "total": 12, "table": "industry", "rank": 80}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "total": 4, "table": null, "rank": 39}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 6, 5, 9, 13, 18, 11, 3, 0], "total": 66, "table": "industry", "rank": 94}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [2, 1, 3, 5, 10, 9, 21, 26, 8, 0, 0], "total": 85, "table": "industry", "rank": 50}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 1, 0, 4, 2, 4, 1, 0, 0], "total": 12, "table": "industry", "rank": 140}, "Energy_Management": {"counts": [0, 1, 0, 2, 0, 1, 0, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 76}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87}, "Speech_Processing": {"counts": [0, 0, 1, 2, 1, 0, 0, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 117}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], "total": 4, "table": null, "rank": 137}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 0, 3, 2, 3, 1, 0, 0], "total": 10, "table": "application", "rank": 124}, "Control": {"counts": [0, 0, 0, 1, 1, 0, 2, 0, 0, 0, 0], "total": 4, "table": null, "rank": 190}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [1, 1, 0, 2, 8, 12, 17, 31, 8, 1, 0], "total": 81, "table": "application", "rank": 81}, "Analytics_and_Algorithms": {"counts": [0, 0, 2, 2, 4, 0, 13, 10, 1, 0, 0], "total": 32, "table": "application", "rank": 38}, "Measuring_and_Testing": {"counts": [0, 0, 0, 2, 2, 1, 0, 0, 2, 0, 0], "total": 7, "table": "application", "rank": 147}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2988, "rank": 171}, "ai_jobs": {"counts": null, "total": 50, "rank": 483}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "ZTE Corporation is a Chinese partially state-owned technology company that specializes in telecommunication. Founded in 1985, ZTE is listed on both the Hong Kong and Shenzhen Stock Exchanges.", "wikipedia_link": "https://en.wikipedia.org/wiki/ZTE", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 714, "country": "United States", "website": "http://www.ti.com", "crunchbase": {"text": "41720f6f-aa97-d98e-ce1f-8597c1773e4a", "url": "https://www.crunchbase.com/organization/texas-instruments"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/texas-instruments"], "stage": "Mature", "name": "Texas Instruments", "patent_name": "texas instruments", "continent": "North America", "local_logo": "texas_instruments.png", "aliases": "Texas Instruments Inc; Texas Instruments Incorporated", "permid_links": [{"text": 4295905063, "url": "https://permid.org/1-4295905063"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:TXN", "url": "https://www.google.com/finance/quote/nasdaq:txn"}], "market_full": [{"text": "MEX:TXN", "url": "https://www.google.com/finance/quote/mex:txn"}, {"text": "BCBA:TXN", "url": "https://www.google.com/finance/quote/bcba:txn"}, {"text": "NASDAQ:TXN", "url": "https://www.google.com/finance/quote/nasdaq:txn"}, {"text": "BMV:TXN", "url": "https://www.google.com/finance/quote/bmv:txn"}, {"text": "VIE:TXN", "url": "https://www.google.com/finance/quote/txn:vie"}, {"text": "MOEX:TXN-RM", "url": "https://www.google.com/finance/quote/moex:txn-rm"}, {"text": "FRA:TXN", "url": "https://www.google.com/finance/quote/fra:txn"}, {"text": "LON:0R2H", "url": "https://www.google.com/finance/quote/0r2h:lon"}, {"text": "XETR:TII", "url": "https://www.google.com/finance/quote/tii:xetr"}], "crunchbase_description": "Texas Instruments is a global semiconductor company that manufactures, designs, tests, and sells embedded and analog processing chips.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Advanced driver assistance systems", "field_count": 15}, {"field_name": "Deep learning", "field_count": 4}, {"field_name": "Robustness (computer science)", "field_count": 3}, {"field_name": "Source separation", "field_count": 3}, {"field_name": "Feature (computer vision)", "field_count": 3}, {"field_name": "Feature extraction", "field_count": 3}, {"field_name": "Kalman filter", "field_count": 2}, {"field_name": "Video processing", "field_count": 2}, {"field_name": "Parallel processing (DSP implementation)", "field_count": 2}, {"field_name": "Gesture", "field_count": 2}], "clusters": [{"cluster_id": 56890, "cluster_count": 14}, {"cluster_id": 1621, "cluster_count": 5}, {"cluster_id": 15399, "cluster_count": 4}, {"cluster_id": 214, "cluster_count": 3}, {"cluster_id": 54075, "cluster_count": 3}, {"cluster_id": 65211, "cluster_count": 3}, {"cluster_id": 1052, "cluster_count": 2}, {"cluster_id": 177, "cluster_count": 2}, {"cluster_id": 85688, "cluster_count": 2}, {"cluster_id": 3240, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 714, "referenced_count": 50}, {"ref_CSET_id": 101, "referenced_count": 35}, {"ref_CSET_id": 163, "referenced_count": 23}, {"ref_CSET_id": 87, "referenced_count": 10}, {"ref_CSET_id": 671, "referenced_count": 6}, {"ref_CSET_id": 184, "referenced_count": 6}, {"ref_CSET_id": 3131, "referenced_count": 6}, {"ref_CSET_id": 209, "referenced_count": 5}, {"ref_CSET_id": 127, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 4}], "tasks": [{"referent": "computer_vision", "task_count": 14}, {"referent": "classification", "task_count": 14}, {"referent": "image_processing", "task_count": 13}, {"referent": "object_detection", "task_count": 8}, {"referent": "feature_selection", "task_count": 7}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "robots", "task_count": 6}, {"referent": "image_recognition", "task_count": 6}, {"referent": "autonomous_driving", "task_count": 6}, {"referent": "video_surveillance", "task_count": 4}], "methods": [{"referent": "1d_cnn", "method_count": 13}, {"referent": "double_q_learning", "method_count": 10}, {"referent": "convolutional_neural_networks", "method_count": 10}, {"referent": "adamw", "method_count": 9}, {"referent": "optimization", "method_count": 8}, {"referent": "neural_architecture_search", "method_count": 7}, {"referent": "griffin_lim_algorithm", "method_count": 6}, {"referent": "auto_classifier", "method_count": 6}, {"referent": "symbolic_deep_learning", "method_count": 5}, {"referent": "transformer_xl", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [336, 362, 289, 296, 279, 268, 186, 186, 174, 139, 1], "total": 2516, "isTopResearch": false, "rank": 109, "fortune500_rank": 43}, "ai_publications": {"counts": [20, 17, 6, 14, 15, 10, 8, 2, 9, 1, 0], "total": 102, "isTopResearch": false, "rank": 119, "fortune500_rank": 38}, "ai_publications_growth": {"counts": [], "total": 62.03703703703704, "isTopResearch": false, "rank": 52, "fortune500_rank": 14}, "ai_pubs_top_conf": {"counts": [2, 2, 1, 1, 2, 2, 0, 2, 0, 1, 0], "total": 13, "isTopResearch": false, "rank": 99, "fortune500_rank": 35}, "citation_counts": {"counts": [142, 181, 207, 180, 210, 223, 222, 261, 235, 166, 4], "total": 2031, "isTopResearch": false, "rank": 134, "fortune500_rank": 40}, "cv_pubs": {"counts": [11, 13, 3, 5, 9, 5, 2, 2, 2, 1, 0], "total": 53, "isTopResearch": true, "rank": 79, "fortune500_rank": 22}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [4, 1, 0, 2, 1, 1, 1, 0, 1, 0, 0], "total": 11, "isTopResearch": true, "rank": 106, "fortune500_rank": 29}, "citations_per_article": {"counts": [7.1, 10.647058823529411, 34.5, 12.857142857142858, 14.0, 22.3, 27.75, 130.5, 26.11111111111111, 166.0, 0], "total": 19.91176470588235, "isTopResearch": false, "rank": 315, "fortune500_rank": 101}}, "patents": {"ai_patents": {"counts": [0, 1, 3, 5, 12, 5, 5, 9, 6, 0, 0], "total": 46, "table": null, "rank": 225, "fortune500_rank": 72}, "ai_patents_growth": {"counts": [], "total": 7.222222222222221, "table": null, "rank": 343, "fortune500_rank": 111}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 30, 50, 120, 50, 50, 90, 60, 0, 0], "total": 460, "table": null, "rank": 225, "fortune500_rank": 72}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 1, 1, 2, 7, 1, 2, 6, 5, 0, 0], "total": 25, "table": "industry", "rank": 169, "fortune500_rank": 62}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 204, "fortune500_rank": 77}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 160, "fortune500_rank": 48}, "Knowledge_Representation": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 2, 4, 2, 3, 2, 4, 0, 0, 0], "total": 17, "table": "application", "rank": 200, "fortune500_rank": 57}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 1, 0, 2, 5, 0, 0], "total": 9, "table": "application", "rank": 122, "fortune500_rank": 51}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 1, 1, 2, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 170, "fortune500_rank": 59}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2960, "rank": 172, "fortune500_rank": 101}, "ai_jobs": {"counts": null, "total": 67, "rank": 417, "fortune500_rank": 222}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Texas Instruments Incorporated (TI) is an American technology company headquartered in Dallas, Texas, that designs and manufactures semiconductors and various integrated circuits, which it sells to electronics designers and manufacturers globally. It is one of the top 10 semiconductor companies worldwide based on sales volume. The company's focus is on developing analog chips and embedded processors, which account for more than 80% of its revenue. TI also produces TI digital light processing technology and education technology products including calculators, microcontrollers and multi-core processors. The company holds 45,000 patents worldwide as of 2016.", "wikipedia_link": "https://en.wikipedia.org/wiki/Texas_Instruments", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2305, "country": "United States", "website": "https://www.equifax.com/", "crunchbase": {"text": "4248ffc8-f4fb-8d83-c13e-7fce6c09af74", "url": "https://www.crunchbase.com/organization/equifax"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/equifax"], "stage": "Mature", "name": "Equifax Inc.", "patent_name": "equifax inc.", "continent": "North America", "local_logo": "equifax_inc.png", "aliases": "Equifax; Equifax, Inc; Talx", "permid_links": [{"text": 4295903939, "url": "https://permid.org/1-4295903939"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EFX", "url": "https://www.google.com/finance/quote/efx:nyse"}], "market_full": [{"text": "BRN:EFX", "url": "https://www.google.com/finance/quote/brn:efx"}, {"text": "ASE:EFX", "url": "https://www.google.com/finance/quote/ase:efx"}, {"text": "BER:EFX", "url": "https://www.google.com/finance/quote/ber:efx"}, {"text": "VIE:EFX", "url": "https://www.google.com/finance/quote/efx:vie"}, {"text": "MOEX:EFX-RM", "url": "https://www.google.com/finance/quote/efx-rm:moex"}, {"text": "DEU:EFX", "url": "https://www.google.com/finance/quote/deu:efx"}, {"text": "SAO:E1FX34", "url": "https://www.google.com/finance/quote/e1fx34:sao"}, {"text": "LSE:0II3", "url": "https://www.google.com/finance/quote/0ii3:lse"}, {"text": "FRA:EFX", "url": "https://www.google.com/finance/quote/efx:fra"}, {"text": "STU:EFX", "url": "https://www.google.com/finance/quote/efx:stu"}, {"text": "MEX:EFX*", "url": "https://www.google.com/finance/quote/efx*:mex"}, {"text": "MUN:EFX", "url": "https://www.google.com/finance/quote/efx:mun"}, {"text": "GER:EFXX", "url": "https://www.google.com/finance/quote/efxx:ger"}, {"text": "BUE:EFX", "url": "https://www.google.com/finance/quote/bue:efx"}, {"text": "DUS:EFX", "url": "https://www.google.com/finance/quote/dus:efx"}, {"text": "NYQ:EFX", "url": "https://www.google.com/finance/quote/efx:nyq"}, {"text": "NYSE:EFX", "url": "https://www.google.com/finance/quote/efx:nyse"}], "crunchbase_description": "Equifax manages financial, demographic, employment, and marketing information in the U.S., Canada, the U.K, and Brazil for commercial uses.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Random forest", "field_count": 1}, {"field_name": "Boosting (machine learning)", "field_count": 1}, {"field_name": "Test set", "field_count": 1}], "clusters": [{"cluster_id": 644, "cluster_count": 4}, {"cluster_id": 71520, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2305, "referenced_count": 5}, {"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "conversational_response_selection", "task_count": 1}, {"referent": "structured_prediction", "task_count": 1}, {"referent": "seismic_analysis", "task_count": 1}, {"referent": "damaged_building_detection", "task_count": 1}, {"referent": "individual_identification", "task_count": 1}, {"referent": "image_recognition", "task_count": 1}, {"referent": "skills_assessment", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 4}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "shap", "method_count": 1}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "adamw", "method_count": 1}, {"referent": "lightconv", "method_count": 1}, {"referent": "wfst", "method_count": 1}, {"referent": "discriminators", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 2, 2, 1, 1, 4, 8, 7, 10, 0], "total": 35, "isTopResearch": false, "rank": 686, "fortune500_rank": 248}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": 11.111111111111105, "isTopResearch": false, "rank": 153, "fortune500_rank": 42}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 24, 90, 227, 20], "total": 361, "isTopResearch": false, "rank": 310, "fortune500_rank": 91}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 8.0, 90.0, 0, 0], "total": 72.2, "isTopResearch": false, "rank": 57, "fortune500_rank": 12}}, "patents": {"ai_patents": {"counts": [0, 0, 4, 4, 4, 6, 4, 10, 1, 0, 0], "total": 33, "table": null, "rank": 262, "fortune500_rank": 87}, "ai_patents_growth": {"counts": [], "total": 55.55555555555555, "table": null, "rank": 186, "fortune500_rank": 49}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 40, 40, 40, 60, 40, 100, 10, 0, 0], "total": 330, "table": null, "rank": 262, "fortune500_rank": 87}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 141, "fortune500_rank": 51}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 3, 1, 2, 4, 1, 3, 0, 0, 0], "total": 14, "table": "industry", "rank": 226, "fortune500_rank": 82}, "Banking_and_Finance": {"counts": [0, 0, 3, 1, 0, 1, 1, 5, 0, 0, 0], "total": 11, "table": "industry", "rank": 73, "fortune500_rank": 28}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 1, 2, 2, 1, 0, 0], "total": 7, "table": "industry", "rank": 194, "fortune500_rank": 72}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 2, 0, 2, 0, 1, 5, 0, 0, 0], "total": 10, "table": "industry", "rank": 149, "fortune500_rank": 54}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 2, 0, 1, 0, 1, 5, 0, 0, 0], "total": 9, "table": "application", "rank": 134, "fortune500_rank": 49}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 1, 1, 1, 2, 0, 0, 0], "total": 6, "table": "application", "rank": 300, "fortune500_rank": 91}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2954, "rank": 173, "fortune500_rank": 102}, "ai_jobs": {"counts": null, "total": 558, "rank": 102, "fortune500_rank": 56}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Equifax Inc. is an American multinational consumer credit reporting agency and is one of the three largest consumer credit reporting agencies, along with Experian and TransUnion (together known as the \"Big Three\"). Equifax collects and aggregates information on over 800 million individual consumers and more than 88 million businesses worldwide. In addition to credit and demographic data and services to business, Equifax sells credit monitoring and fraud prevention services directly to consumers.", "wikipedia_link": "https://en.wikipedia.org/wiki/Equifax", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1633, "country": "Sweden", "website": "http://www.novartis.com", "crunchbase": {"text": "70e9297e-c40a-5679-edcf-5287d6577ca2", "url": "https://www.crunchbase.com/organization/novartis"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/novartis"], "stage": "Mature", "name": "Novartis", "patent_name": "novartis", "continent": "Europe", "local_logo": "novartis.png", "aliases": "Novartis Ag", "permid_links": [{"text": 4295890628, "url": "https://permid.org/1-4295890628"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NVS", "url": "https://www.google.com/finance/quote/nvs:nyse"}], "market_full": [{"text": "STU:NOT", "url": "https://www.google.com/finance/quote/not:stu"}, {"text": "DEU:NOVZN", "url": "https://www.google.com/finance/quote/deu:novzn"}, {"text": "LSE:0QM7", "url": "https://www.google.com/finance/quote/0qm7:lse"}, {"text": "NYSE:NVS", "url": "https://www.google.com/finance/quote/nvs:nyse"}, {"text": "BRN:NOT", "url": "https://www.google.com/finance/quote/brn:not"}, {"text": "MUN:NOTA", "url": "https://www.google.com/finance/quote/mun:nota"}, {"text": "MUN:NOT", "url": "https://www.google.com/finance/quote/mun:not"}, {"text": "SAO:N1VS34", "url": "https://www.google.com/finance/quote/n1vs34:sao"}, {"text": "HAN:NOT", "url": "https://www.google.com/finance/quote/han:not"}, {"text": "LSE:0K9E", "url": "https://www.google.com/finance/quote/0k9e:lse"}, {"text": "BER:NOTA", "url": "https://www.google.com/finance/quote/ber:nota"}, {"text": "STU:NOTA", "url": "https://www.google.com/finance/quote/nota:stu"}, {"text": "SWX:NOVNEE", "url": "https://www.google.com/finance/quote/novnee:swx"}, {"text": "FRA:NOTA", "url": "https://www.google.com/finance/quote/fra:nota"}, {"text": "DEU:NOTA", "url": "https://www.google.com/finance/quote/deu:nota"}, {"text": "HAM:NOT", "url": "https://www.google.com/finance/quote/ham:not"}, {"text": "BER:NOT", "url": "https://www.google.com/finance/quote/ber:not"}, {"text": "MEX:NVSN", "url": "https://www.google.com/finance/quote/mex:nvsn"}, {"text": "PKC:NVSEF", "url": "https://www.google.com/finance/quote/nvsef:pkc"}, {"text": "DUS:NOTA", "url": "https://www.google.com/finance/quote/dus:nota"}, {"text": "FRA:NOT", "url": "https://www.google.com/finance/quote/fra:not"}, {"text": "LSE:0QLR", "url": "https://www.google.com/finance/quote/0qlr:lse"}, {"text": "SWX:NOVN", "url": "https://www.google.com/finance/quote/novn:swx"}, {"text": "NYQ:NVS", "url": "https://www.google.com/finance/quote/nvs:nyq"}, {"text": "BUE:NVS3", "url": "https://www.google.com/finance/quote/bue:nvs3"}, {"text": "MCX:NVS-RM", "url": "https://www.google.com/finance/quote/mcx:nvs-rm"}, {"text": "ASE:NVS", "url": "https://www.google.com/finance/quote/ase:nvs"}, {"text": "DUS:NOT", "url": "https://www.google.com/finance/quote/dus:not"}], "crunchbase_description": "Novartis is a healthcare company that provides solutions to address the evolving needs of patients worldwide.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 7}, {"field_name": "Convolutional neural network", "field_count": 4}, {"field_name": "Digital pathology", "field_count": 4}, {"field_name": "Ontology (information science)", "field_count": 3}, {"field_name": "Lasso (statistics)", "field_count": 3}, {"field_name": "Missing data", "field_count": 2}, {"field_name": "Random forest", "field_count": 2}, {"field_name": "Homogeneity (statistics)", "field_count": 2}, {"field_name": "Big data", "field_count": 2}, {"field_name": "Fingerprint (computing)", "field_count": 2}], "clusters": [{"cluster_id": 23169, "cluster_count": 8}, {"cluster_id": 1683, "cluster_count": 6}, {"cluster_id": 24047, "cluster_count": 6}, {"cluster_id": 9836, "cluster_count": 4}, {"cluster_id": 23266, "cluster_count": 4}, {"cluster_id": 1038, "cluster_count": 3}, {"cluster_id": 2888, "cluster_count": 3}, {"cluster_id": 1154, "cluster_count": 3}, {"cluster_id": 8650, "cluster_count": 3}, {"cluster_id": 31505, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 106}, {"ref_CSET_id": 1633, "referenced_count": 61}, {"ref_CSET_id": 163, "referenced_count": 34}, {"ref_CSET_id": 87, "referenced_count": 28}, {"ref_CSET_id": 341, "referenced_count": 17}, {"ref_CSET_id": 115, "referenced_count": 17}, {"ref_CSET_id": 1797, "referenced_count": 15}, {"ref_CSET_id": 1962, "referenced_count": 8}, {"ref_CSET_id": 3108, "referenced_count": 7}, {"ref_CSET_id": 3116, "referenced_count": 6}], "tasks": [{"referent": "classification", "task_count": 28}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 13}, {"referent": "drug_discovery", "task_count": 12}, {"referent": "developmental_learning", "task_count": 10}, {"referent": "image_analysis", "task_count": 10}, {"referent": "skills_assessment", "task_count": 5}, {"referent": "image_processing", "task_count": 4}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 4}, {"referent": "chemical_reaction_prediction", "task_count": 3}, {"referent": "portfolio_optimization", "task_count": 3}], "methods": [{"referent": "mad_learning", "method_count": 22}, {"referent": "recurrent_neural_networks", "method_count": 19}, {"referent": "convolutional_neural_networks", "method_count": 9}, {"referent": "meta_learning_algorithms", "method_count": 8}, {"referent": "vqa_models", "method_count": 8}, {"referent": "auto_classifier", "method_count": 8}, {"referent": "3d_representations", "method_count": 7}, {"referent": "metrix", "method_count": 6}, {"referent": "pafs", "method_count": 6}, {"referent": "double_q_learning", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [3622, 3655, 3937, 3794, 3810, 3954, 3406, 3287, 3193, 2931, 10], "total": 35599, "isTopResearch": false, "rank": 6, "sp500_rank": 5}, "ai_publications": {"counts": [8, 6, 8, 4, 15, 15, 26, 25, 28, 12, 0], "total": 147, "isTopResearch": false, "rank": 97, "sp500_rank": 73}, "ai_publications_growth": {"counts": [], "total": -16.329670329670332, "isTopResearch": false, "rank": 1297, "sp500_rank": 337}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [99, 118, 151, 175, 186, 220, 339, 618, 879, 882, 29], "total": 3696, "isTopResearch": false, "rank": 87, "sp500_rank": 57}, "cv_pubs": {"counts": [0, 3, 3, 2, 4, 6, 7, 2, 8, 2, 0], "total": 37, "isTopResearch": true, "rank": 100, "sp500_rank": 67}, "nlp_pubs": {"counts": [1, 0, 1, 0, 1, 0, 1, 3, 1, 0, 0], "total": 8, "isTopResearch": true, "rank": 110, "sp500_rank": 70}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [12.375, 19.666666666666668, 18.875, 43.75, 12.4, 14.666666666666666, 13.038461538461538, 24.72, 31.392857142857142, 73.5, 0], "total": 25.142857142857142, "isTopResearch": false, "rank": 237, "sp500_rank": 68}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0], "total": 5, "table": null, "rank": 525, "sp500_rank": 225}, "ai_patents_growth": {"counts": [], "total": -66.66666666666667, "table": null, "rank": 1550, "sp500_rank": 456}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 0, 0, 30, 10, 0, 0, 0], "total": 50, "table": null, "rank": 525, "sp500_rank": 225}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 122, "sp500_rank": 78}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2947, "rank": 174, "sp500_rank": 102}, "ai_jobs": {"counts": null, "total": 1029, "rank": 41, "sp500_rank": 28}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Novartis International AG is a Swiss multinational pharmaceutical company based in Basel, Switzerland. It is one of the largest pharmaceutical companies in the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/Novartis", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1829, "country": "Switzerland", "website": "https://www.nestle.com/", "crunchbase": {"text": " 65ed963a-fbef-d991-b841-d2d1f481503d ", "url": " https://www.crunchbase.com/organization/nestl "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nestle-s-a-"], "stage": "Mature", "name": "Nestl\u00e9", "patent_name": "Nestl\u00e9", "continent": "Europe", "local_logo": null, "aliases": "Nestl\u00e9; Nestl\u00e9 S.A", "permid_links": [{"text": 4295890634, "url": "https://permid.org/1-4295890634"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PKC:NSRGF", "url": "https://www.google.com/finance/quote/NSRGF:PKC"}, {"text": "DEU:NESM", "url": "https://www.google.com/finance/quote/DEU:NESM"}, {"text": "HAN:NESR", "url": "https://www.google.com/finance/quote/HAN:NESR"}, {"text": "BER:NESM", "url": "https://www.google.com/finance/quote/BER:NESM"}, {"text": "STU:NESR", "url": "https://www.google.com/finance/quote/NESR:STU"}, {"text": "PKC:NSRGY", "url": "https://www.google.com/finance/quote/NSRGY:PKC"}, {"text": "LSE:0RR6", "url": "https://www.google.com/finance/quote/0RR6:LSE"}, {"text": "SWX:NESN", "url": "https://www.google.com/finance/quote/NESN:SWX"}, {"text": "BER:NESR", "url": "https://www.google.com/finance/quote/BER:NESR"}, {"text": "FRA:NESR", "url": "https://www.google.com/finance/quote/FRA:NESR"}, {"text": "STU:NESM", "url": "https://www.google.com/finance/quote/NESM:STU"}, {"text": "HAM:NESR", "url": "https://www.google.com/finance/quote/HAM:NESR"}, {"text": "FRA:NESM", "url": "https://www.google.com/finance/quote/FRA:NESM"}, {"text": "MUN:NESM", "url": "https://www.google.com/finance/quote/MUN:NESM"}, {"text": "MEX:NESNN", "url": "https://www.google.com/finance/quote/MEX:NESNN"}, {"text": "MUN:NESR", "url": "https://www.google.com/finance/quote/MUN:NESR"}, {"text": "DUS:NESM", "url": "https://www.google.com/finance/quote/DUS:NESM"}, {"text": "SWX:NESNE", "url": "https://www.google.com/finance/quote/NESNE:SWX"}, {"text": "LSE:0QR4", "url": "https://www.google.com/finance/quote/0QR4:LSE"}, {"text": "BRN:NESR", "url": "https://www.google.com/finance/quote/BRN:NESR"}, {"text": "DEU:NESN", "url": "https://www.google.com/finance/quote/DEU:NESN"}, {"text": "DUS:NESR", "url": "https://www.google.com/finance/quote/DUS:NESR"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature selection", "field_count": 1}], "clusters": [{"cluster_id": 2357, "cluster_count": 1}, {"cluster_id": 4143, "cluster_count": 1}, {"cluster_id": 39229, "cluster_count": 1}, {"cluster_id": 103445, "cluster_count": 1}, {"cluster_id": 92107, "cluster_count": 1}, {"cluster_id": 793, "cluster_count": 1}, {"cluster_id": 44985, "cluster_count": 1}, {"cluster_id": 1153, "cluster_count": 1}, {"cluster_id": 2383, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 133, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 219, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "action_generation", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "active_learning", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "distance_estimation", "task_count": 1}, {"referent": "load_forecasting", "task_count": 1}, {"referent": "object_detection", "task_count": 1}, {"referent": "parkinson_'s_disease", "task_count": 1}, {"referent": "pneumonia_detection", "task_count": 1}], "methods": [{"referent": "hoc", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "downsampling", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "gaussian_process", "method_count": 1}, {"referent": "gru", "method_count": 1}, {"referent": "3d_sa", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "working_memory_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [94, 137, 109, 169, 213, 183, 216, 135, 157, 116, 2], "total": 1531, "isTopResearch": false, "rank": 142, "sp500_rank": 110}, "ai_publications": {"counts": [0, 1, 1, 1, 1, 2, 0, 0, 1, 1, 0], "total": 8, "isTopResearch": false, "rank": 455, "sp500_rank": 233}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 2, 4, 8, 33, 51, 52, 94, 92, 98, 3], "total": 437, "isTopResearch": false, "rank": 286, "sp500_rank": 145}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 2.0, 4.0, 8.0, 33.0, 25.5, 0, 0, 92.0, 98.0, 0], "total": 54.625, "isTopResearch": false, "rank": 84, "sp500_rank": 13}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2945, "rank": 175, "sp500_rank": 103}, "ai_jobs": {"counts": null, "total": 445, "rank": 128, "sp500_rank": 83}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1975, "country": "Sweden", "website": "https://www.volvocars.com/", "crunchbase": {"text": " 7c496593-3cc3-4e13-8c38-eaa66022c42e", "url": " https://www.crunchbase.com/organization/volvo"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/volvo-group"], "stage": "Mature", "name": "Volvo", "patent_name": "Volvo", "continent": "Europe", "local_logo": null, "aliases": "Volvo; Volvo Car Corporation; Volvo Car Group", "permid_links": [{"text": 4295890024, "url": "https://permid.org/1-4295890024"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PKL:VOLVF", "url": "https://www.google.com/finance/quote/PKL:VOLVF"}, {"text": "MUN:VOL3", "url": "https://www.google.com/finance/quote/MUN:VOL3"}, {"text": "EBT:VOLVAS", "url": "https://www.google.com/finance/quote/EBT:VOLVAs"}, {"text": "BRN:VOL1", "url": "https://www.google.com/finance/quote/BRN:VOL1"}, {"text": "STU:VOL3", "url": "https://www.google.com/finance/quote/STU:VOL3"}, {"text": "PNK:VLVLY", "url": "https://www.google.com/finance/quote/PNK:VLVLY"}, {"text": "STU:VOL1", "url": "https://www.google.com/finance/quote/STU:VOL1"}, {"text": "LSE:0MHW", "url": "https://www.google.com/finance/quote/0MHW:LSE"}, {"text": "DEU:VOLVA", "url": "https://www.google.com/finance/quote/DEU:VOLVa"}, {"text": "DEU:VOLVB", "url": "https://www.google.com/finance/quote/DEU:VOLVb"}, {"text": "FRA:VOL4", "url": "https://www.google.com/finance/quote/FRA:VOL4"}, {"text": "DEU:VOL4", "url": "https://www.google.com/finance/quote/DEU:VOL4"}, {"text": "MUN:VOL1", "url": "https://www.google.com/finance/quote/MUN:VOL1"}, {"text": "HAM:VOL3", "url": "https://www.google.com/finance/quote/HAM:VOL3"}, {"text": "HAN:VOL3", "url": "https://www.google.com/finance/quote/HAN:VOL3"}, {"text": "PKL:VOLAF", "url": "https://www.google.com/finance/quote/PKL:VOLAF"}, {"text": "PRA:VOLVB", "url": "https://www.google.com/finance/quote/PRA:VOLVB"}, {"text": "FRA:VOL3", "url": "https://www.google.com/finance/quote/FRA:VOL3"}, {"text": "DUS:VOL1", "url": "https://www.google.com/finance/quote/DUS:VOL1"}, {"text": "GER:VOLVX,B", "url": "https://www.google.com/finance/quote/GER:VOLVX,B"}, {"text": "BER:VOL1", "url": "https://www.google.com/finance/quote/BER:VOL1"}, {"text": "STO:VOLV B", "url": "https://www.google.com/finance/quote/STO:VOLV B"}, {"text": "FRA:VOL1", "url": "https://www.google.com/finance/quote/FRA:VOL1"}, {"text": "STU:VOL4", "url": "https://www.google.com/finance/quote/STU:VOL4"}, {"text": "MUN:VOL4", "url": "https://www.google.com/finance/quote/MUN:VOL4"}, {"text": "LSE:0HTP", "url": "https://www.google.com/finance/quote/0HTP:LSE"}, {"text": "EBT:VOLVBS", "url": "https://www.google.com/finance/quote/EBT:VOLVBs"}, {"text": "GER:VOLVX,A", "url": "https://www.google.com/finance/quote/GER:VOLVX,A"}, {"text": "BER:VOL3", "url": "https://www.google.com/finance/quote/BER:VOL3"}, {"text": "STO:VOLV A", "url": "https://www.google.com/finance/quote/STO:VOLV A"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [{"cluster_id": 2702, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "software_defect_prediction", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2, 2, 1, 3, 2, 1, 0, 1, 0, 0, 0], "total": 12, "isTopResearch": false, "rank": 907, "sp500_rank": 387}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 1, 1, 0, 0, 3, 4, 4, 3, 2, 0], "total": 18, "isTopResearch": false, "rank": 695, "sp500_rank": 287}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 1.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 18.0, "isTopResearch": false, "rank": 347, "sp500_rank": 110}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2936, "rank": 176, "sp500_rank": 104}, "ai_jobs": {"counts": null, "total": 215, "rank": 223, "sp500_rank": 144}}, "sector": "Industrials", "business_sector": "Industrial Goods"}, {"cset_id": 2539, "country": "United States", "website": "https://www.westerndigital.com/", "crunchbase": {"text": "efbc7a23-0558-c9d5-d9f2-609c433a2c4b", "url": "https://www.crunchbase.com/organization/western-digital"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/western-digital"], "stage": "Mature", "name": "Western Digital", "patent_name": "western digital", "continent": "North America", "local_logo": "western_digital.png", "aliases": "Wdc; Western Digital Corp; Western Digital Corporation; Western Digital Technologies, Inc", "permid_links": [{"text": 4295905332, "url": "https://permid.org/1-4295905332"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "VIE:WDC", "url": "https://www.google.com/finance/quote/vie:wdc"}, {"text": "MUN:WDC", "url": "https://www.google.com/finance/quote/mun:wdc"}, {"text": "BER:WDC", "url": "https://www.google.com/finance/quote/ber:wdc"}, {"text": "GER:WDCX", "url": "https://www.google.com/finance/quote/ger:wdcx"}, {"text": "BRN:WDC", "url": "https://www.google.com/finance/quote/brn:wdc"}, {"text": "FRA:WDC", "url": "https://www.google.com/finance/quote/fra:wdc"}, {"text": "MEX:WDC*", "url": "https://www.google.com/finance/quote/mex:wdc*"}, {"text": "SAO:W1DC34", "url": "https://www.google.com/finance/quote/sao:w1dc34"}, {"text": "HAN:WDC", "url": "https://www.google.com/finance/quote/han:wdc"}, {"text": "LSE:0QZF", "url": "https://www.google.com/finance/quote/0qzf:lse"}, {"text": "HAM:WDC", "url": "https://www.google.com/finance/quote/ham:wdc"}, {"text": "DEU:WDC", "url": "https://www.google.com/finance/quote/deu:wdc"}, {"text": "STU:WDC", "url": "https://www.google.com/finance/quote/stu:wdc"}, {"text": "MCX:WDC-RM", "url": "https://www.google.com/finance/quote/mcx:wdc-rm"}, {"text": "DUS:WDC", "url": "https://www.google.com/finance/quote/dus:wdc"}], "crunchbase_description": "WD is driving the innovation needed to help customers capture, preserve, access, and transform an ever-increasing diversity of data.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 5}, {"field_name": "Lossy compression", "field_count": 3}, {"field_name": "Reinforcement learning", "field_count": 3}, {"field_name": "Kernel (statistics)", "field_count": 2}, {"field_name": "Robot", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Navigation system", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 34261, "cluster_count": 2}, {"cluster_id": 4607, "cluster_count": 2}, {"cluster_id": 52089, "cluster_count": 2}, {"cluster_id": 3568, "cluster_count": 2}, {"cluster_id": 64566, "cluster_count": 2}, {"cluster_id": 14668, "cluster_count": 2}, {"cluster_id": 86347, "cluster_count": 1}, {"cluster_id": 86628, "cluster_count": 1}, {"cluster_id": 57811, "cluster_count": 1}, {"cluster_id": 34434, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 21}, {"ref_CSET_id": 2539, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 7}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 184, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 1126, "referenced_count": 3}, {"ref_CSET_id": 734, "referenced_count": 2}, {"ref_CSET_id": 1037, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 2}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 8}, {"referent": "classification", "task_count": 7}, {"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "robots", "task_count": 3}, {"referent": "video_surveillance", "task_count": 3}, {"referent": "recommendation_systems", "task_count": 3}, {"referent": "multimodal_deep_learning", "task_count": 3}, {"referent": "neural_network_compression", "task_count": 2}, {"referent": "handwritten_digit_recognition", "task_count": 2}, {"referent": "autonomous_driving", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "deep_belief_network", "method_count": 5}, {"referent": "deep_boltzmann_machine", "method_count": 3}, {"referent": "1d_cnn", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "restricted_boltzmann_machine", "method_count": 3}, {"referent": "griffin_lim_algorithm", "method_count": 3}, {"referent": "cbam", "method_count": 3}, {"referent": "reinforcement_learning", "method_count": 2}, {"referent": "awd_lstm", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [98, 89, 94, 96, 110, 136, 118, 132, 118, 91, 0], "total": 1082, "isTopResearch": false, "rank": 184, "fortune500_rank": 69}, "ai_publications": {"counts": [1, 3, 0, 1, 2, 6, 12, 10, 6, 2, 0], "total": 43, "isTopResearch": false, "rank": 195, "fortune500_rank": 61}, "ai_publications_growth": {"counts": [], "total": -41.111111111111114, "isTopResearch": false, "rank": 1428, "fortune500_rank": 415}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [26, 24, 39, 63, 53, 65, 80, 97, 113, 83, 5], "total": 648, "isTopResearch": false, "rank": 239, "fortune500_rank": 72}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0], "total": 6, "isTopResearch": true, "rank": 156, "fortune500_rank": 42}, "citations_per_article": {"counts": [26.0, 8.0, 0, 63.0, 26.5, 10.833333333333334, 6.666666666666667, 9.7, 18.833333333333332, 41.5, 0], "total": 15.069767441860465, "isTopResearch": false, "rank": 402, "fortune500_rank": 122}}, "patents": {"ai_patents": {"counts": [0, 0, 2, 0, 14, 28, 32, 40, 6, 0, 0], "total": 122, "table": null, "rank": 143, "fortune500_rank": 46}, "ai_patents_growth": {"counts": [], "total": 46.42857142857142, "table": null, "rank": 222, "fortune500_rank": 68}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 20, 0, 140, 280, 320, 400, 60, 0, 0], "total": 1220, "table": null, "rank": 143, "fortune500_rank": 46}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": "industry", "rank": 157, "fortune500_rank": 58}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 2, 0, 14, 23, 28, 29, 4, 0, 0], "total": 100, "table": "industry", "rank": 74, "fortune500_rank": 32}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 4, 5, 6, 1, 0, 0], "total": 17, "table": "industry", "rank": 140, "fortune500_rank": 55}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 78, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 1, 1, 3, 3, 1, 0, 0], "total": 9, "table": "industry", "rank": 15, "fortune500_rank": 8}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 87, "fortune500_rank": 43}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 3, 2, 0, 0, 0], "total": 6, "table": "application", "rank": 166, "fortune500_rank": 57}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 4, 5, 5, 1, 0, 0], "total": 17, "table": "application", "rank": 200, "fortune500_rank": 57}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2809, "rank": 177, "fortune500_rank": 103}, "ai_jobs": {"counts": null, "total": 153, "rank": 270, "fortune500_rank": 143}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Western Digital Corporation (abbreviated WDC, commonly known as simply Western Digital and WD) is an American computer hard disk drive manufacturer and data storage company. It designs, manufactures and sells data technology products, including storage devices, data center systems and cloud storage services.", "wikipedia_link": "https://en.wikipedia.org/wiki/Western_Digital", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 298, "country": "United States", "website": "https://www.3m.com", "crunchbase": {"text": "0e8aeaff-bbd3-cebc-7b8d-dedb6c239b11", "url": "https://www.crunchbase.com/organization/3m"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/3m"], "stage": "Mature", "name": "3M", "patent_name": "3m", "continent": "North America", "local_logo": "3m.png", "aliases": "3M Co; Minnesota Mining And Manufacturing Company", "permid_links": [{"text": 5000072036, "url": "https://permid.org/1-5000072036"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MMM", "url": "https://www.google.com/finance/quote/mmm:nyse"}], "market_full": [{"text": "BMV:MMM", "url": "https://www.google.com/finance/quote/bmv:mmm"}, {"text": "XETR:MMM", "url": "https://www.google.com/finance/quote/mmm:xetr"}, {"text": "MOEX:MMM-RM", "url": "https://www.google.com/finance/quote/mmm-rm:moex"}, {"text": "NYSE:MMM", "url": "https://www.google.com/finance/quote/mmm:nyse"}], "crunchbase_description": "3M operates as a diversified technology company.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Luminance", "field_count": 1}, {"field_name": "Syllabic verse", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}, {"field_name": "Intelligent tutoring system", "field_count": 1}, {"field_name": "Statistical classification", "field_count": 1}, {"field_name": "Nearest neighbor search", "field_count": 1}, {"field_name": "Big data", "field_count": 1}, {"field_name": "Camera phone", "field_count": 1}, {"field_name": "Neural coding", "field_count": 1}, {"field_name": "Salience (neuroscience)", "field_count": 1}], "clusters": [{"cluster_id": 65, "cluster_count": 4}, {"cluster_id": 2891, "cluster_count": 3}, {"cluster_id": 3281, "cluster_count": 2}, {"cluster_id": 35937, "cluster_count": 2}, {"cluster_id": 10596, "cluster_count": 1}, {"cluster_id": 14, "cluster_count": 1}, {"cluster_id": 6370, "cluster_count": 1}, {"cluster_id": 183, "cluster_count": 1}, {"cluster_id": 26745, "cluster_count": 1}, {"cluster_id": 2313, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 787, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 833, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}], "tasks": [{"referent": "image_processing", "task_count": 5}, {"referent": "classification", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "quantization", "task_count": 2}, {"referent": "image_restoration", "task_count": 2}, {"referent": "image_retrieval", "task_count": 2}, {"referent": "segmentation", "task_count": 2}, {"referent": "hyperparameter_optimization", "task_count": 1}, {"referent": "image_recognition", "task_count": 1}, {"referent": "event_extraction", "task_count": 1}], "methods": [{"referent": "visual_attention", "method_count": 3}, {"referent": "vqa_models", "method_count": 3}, {"referent": "optimization", "method_count": 2}, {"referent": "autoencoder", "method_count": 2}, {"referent": "natural_language_processing", "method_count": 2}, {"referent": "dimensionality_reduction", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [200, 262, 184, 243, 173, 180, 208, 172, 148, 121, 0], "total": 1891, "isTopResearch": false, "rank": 129, "sp500_rank": 101, "fortune500_rank": 49}, "ai_publications": {"counts": [1, 7, 2, 4, 3, 0, 2, 1, 2, 2, 0], "total": 24, "isTopResearch": false, "rank": 273, "sp500_rank": 160, "fortune500_rank": 82}, "ai_publications_growth": {"counts": [], "total": 16.666666666666668, "isTopResearch": false, "rank": 124, "sp500_rank": 65, "fortune500_rank": 36}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [4, 2, 8, 15, 10, 26, 26, 16, 16, 25, 3], "total": 151, "isTopResearch": false, "rank": 440, "sp500_rank": 200, "fortune500_rank": 128}, "cv_pubs": {"counts": [1, 3, 1, 0, 2, 0, 2, 0, 1, 0, 0], "total": 10, "isTopResearch": true, "rank": 202, "sp500_rank": 115, "fortune500_rank": 55}, "nlp_pubs": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102, "fortune500_rank": 54}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [4.0, 0.2857142857142857, 4.0, 3.75, 3.3333333333333335, 0, 13.0, 16.0, 8.0, 12.5, 0], "total": 6.291666666666667, "isTopResearch": false, "rank": 672, "sp500_rank": 267, "fortune500_rank": 192}}, "patents": {"ai_patents": {"counts": [1, 4, 3, 3, 6, 20, 16, 14, 0, 0, 0], "total": 67, "table": null, "rank": 193, "sp500_rank": 123, "fortune500_rank": 61}, "ai_patents_growth": {"counts": [], "total": 66.94444444444444, "table": null, "rank": 163, "sp500_rank": 78, "fortune500_rank": 38}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 40, 30, 30, 60, 200, 160, 140, 0, 0, 0], "total": 670, "table": null, "rank": 193, "sp500_rank": 123, "fortune500_rank": 61}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 2, 0, 1, 2, 1, 0, 0, 0], "total": 6, "table": null, "rank": 68, "sp500_rank": 56, "fortune500_rank": 23}, "Life_Sciences": {"counts": [1, 2, 2, 2, 2, 8, 7, 6, 0, 0, 0], "total": 30, "table": "industry", "rank": 34, "sp500_rank": 26, "fortune500_rank": 14}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 3, 0, 3, 1, 1, 0, 0, 0], "total": 8, "table": "industry", "rank": 103, "sp500_rank": 73, "fortune500_rank": 43}, "Transportation": {"counts": [0, 0, 0, 0, 1, 1, 3, 1, 0, 0, 0], "total": 6, "table": null, "rank": 123, "sp500_rank": 89, "fortune500_rank": 37}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 2, 0, 4, 4, 3, 0, 0, 0], "total": 13, "table": "industry", "rank": 63, "sp500_rank": 47, "fortune500_rank": 19}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 1, 3, 3, 4, 6, 5, 2, 0, 0, 0], "total": 25, "table": "industry", "rank": 169, "sp500_rank": 96, "fortune500_rank": 62}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 141, "sp500_rank": 91, "fortune500_rank": 50}, "Telecommunications": {"counts": [0, 0, 0, 2, 2, 1, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 225, "sp500_rank": 119, "fortune500_rank": 86}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [1, 1, 0, 2, 2, 3, 4, 0, 0, 0, 0], "total": 13, "table": "industry", "rank": 137, "sp500_rank": 95, "fortune500_rank": 49}, "Energy_Management": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22, "fortune500_rank": 17}, "Language_Processing": {"counts": [0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 75, "sp500_rank": 50, "fortune500_rank": 39}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 2, 1, 1, 0, 0, 0], "total": 5, "table": null, "rank": 117, "sp500_rank": 72, "fortune500_rank": 34}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 162, "sp500_rank": 88, "fortune500_rank": 70}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 2, 1, 3, 4, 0, 0, 0, 0], "total": 11, "table": "application", "rank": 121, "sp500_rank": 86, "fortune500_rank": 46}, "Control": {"counts": [0, 1, 1, 1, 0, 5, 4, 1, 0, 0, 0], "total": 13, "table": "application", "rank": 122, "sp500_rank": 87, "fortune500_rank": 41}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 2, 1, 3, 4, 3, 5, 0, 0, 0], "total": 18, "table": "application", "rank": 198, "sp500_rank": 115, "fortune500_rank": 55}, "Analytics_and_Algorithms": {"counts": [0, 1, 1, 0, 0, 2, 1, 4, 0, 0, 0], "total": 9, "table": "application", "rank": 122, "sp500_rank": 88, "fortune500_rank": 51}, "Measuring_and_Testing": {"counts": [0, 0, 0, 2, 2, 3, 2, 1, 0, 0, 0], "total": 10, "table": "application", "rank": 121, "sp500_rank": 94, "fortune500_rank": 37}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2807, "rank": 178, "sp500_rank": 105, "fortune500_rank": 104}, "ai_jobs": {"counts": null, "total": 374, "rank": 150, "sp500_rank": 100, "fortune500_rank": 81}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Consumer Goods Conglomerates", "wikipedia_description": "The 3M Company is an American multinational conglomerate corporation operating in the fields of industry, worker safety, US health care, and consumer goods. The company produces over 60,000 products under several brands, including adhesives, abrasives, laminates, passive fire protection, personal protective equipment, window films, paint protection films, dental and orthodontic products, electrical and electronic connecting and insulating materials, medical products, car-care products, electronic circuits, healthcare software and optical films. It is based in Maplewood, a suburb of Saint Paul, Minnesota.", "wikipedia_link": "https://en.wikipedia.org/wiki/3M", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2100, "country": "Ireland", "website": "http://www.johnsoncontrols.com/", "crunchbase": {"text": "4b0e6b76-e58a-c010-f690-f7996ba1ffaf", "url": "https://www.crunchbase.com/organization/johnson-controls"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/johnson-controls"], "stage": "Mature", "name": "Johnson Controls International plc", "patent_name": "johnson controls international plc", "continent": "Europe", "local_logo": "johnson_controls_international_plc.png", "aliases": "Johnson Controls; Johnson Controls International plc", "permid_links": [{"text": 5043315501, "url": "https://permid.org/1-5043315501"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:JCI", "url": "https://www.google.com/finance/quote/jci:nyse"}], "market_full": [{"text": "MUN:TYIA", "url": "https://www.google.com/finance/quote/mun:tyia"}, {"text": "BRN:TYIA", "url": "https://www.google.com/finance/quote/brn:tyia"}, {"text": "DUS:TYIA", "url": "https://www.google.com/finance/quote/dus:tyia"}, {"text": "GER:TYIX.A", "url": "https://www.google.com/finance/quote/ger:tyix.a"}, {"text": "BER:TYIA", "url": "https://www.google.com/finance/quote/ber:tyia"}, {"text": "SAO:J1CI34", "url": "https://www.google.com/finance/quote/j1ci34:sao"}, {"text": "STU:TYIA", "url": "https://www.google.com/finance/quote/stu:tyia"}, {"text": "LSE:0Y7S", "url": "https://www.google.com/finance/quote/0y7s:lse"}, {"text": "BUE:JCI3", "url": "https://www.google.com/finance/quote/bue:jci3"}, {"text": "DEU:TYIA", "url": "https://www.google.com/finance/quote/deu:tyia"}, {"text": "ASE:JCI", "url": "https://www.google.com/finance/quote/ase:jci"}, {"text": "NYSE:JCI", "url": "https://www.google.com/finance/quote/jci:nyse"}, {"text": "FRA:TYIA", "url": "https://www.google.com/finance/quote/fra:tyia"}, {"text": "NYQ:JCI", "url": "https://www.google.com/finance/quote/jci:nyq"}], "crunchbase_description": "Johnson Controls offers smart buildings that create safe, healthy, and sustainable environments.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Time series", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Regret", "field_count": 1}, {"field_name": "Text processing", "field_count": 1}, {"field_name": "Uncertainty quantification", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Subspace topology", "field_count": 1}], "clusters": [{"cluster_id": 49570, "cluster_count": 2}, {"cluster_id": 10999, "cluster_count": 2}, {"cluster_id": 17671, "cluster_count": 2}, {"cluster_id": 1149, "cluster_count": 2}, {"cluster_id": 15407, "cluster_count": 2}, {"cluster_id": 50517, "cluster_count": 1}, {"cluster_id": 427, "cluster_count": 1}, {"cluster_id": 75197, "cluster_count": 1}, {"cluster_id": 579, "cluster_count": 1}, {"cluster_id": 71741, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 28}, {"ref_CSET_id": 87, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 115, "referenced_count": 10}, {"ref_CSET_id": 2100, "referenced_count": 7}, {"ref_CSET_id": 1126, "referenced_count": 5}, {"ref_CSET_id": 805, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 3}, {"ref_CSET_id": 671, "referenced_count": 2}, {"ref_CSET_id": 800, "referenced_count": 2}], "tasks": [{"referent": "fault_detection", "task_count": 3}, {"referent": "multivariate_time_series_forecasting", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "topological_data_analysis", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "recommendation_systems", "task_count": 2}, {"referent": "building_extraction", "task_count": 1}, {"referent": "spatio_temporal_forecasting", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "mrnn", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "q_learning", "method_count": 3}, {"referent": "reinforcement_learning", "method_count": 3}, {"referent": "attention_mechanisms", "method_count": 2}, {"referent": "npid", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [57, 58, 37, 39, 67, 70, 20, 27, 26, 9, 0], "total": 410, "isTopResearch": false, "rank": 307, "fortune500_rank": 118}, "ai_publications": {"counts": [1, 0, 0, 1, 0, 2, 4, 6, 4, 4, 0], "total": 22, "isTopResearch": false, "rank": 286, "fortune500_rank": 88}, "ai_publications_growth": {"counts": [], "total": 5.5555555555555545, "isTopResearch": false, "rank": 173, "fortune500_rank": 46}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [2, 4, 5, 5, 13, 21, 60, 127, 151, 137, 11], "total": 536, "isTopResearch": false, "rank": 266, "fortune500_rank": 81}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [2.0, 0, 0, 5.0, 0, 10.5, 15.0, 21.166666666666668, 37.75, 34.25, 0], "total": 24.363636363636363, "isTopResearch": false, "rank": 250, "fortune500_rank": 81}}, "patents": {"ai_patents": {"counts": [2, 7, 3, 11, 27, 23, 36, 26, 7, 0, 0], "total": 142, "table": null, "rank": 132, "fortune500_rank": 43}, "ai_patents_growth": {"counts": [], "total": 4.643048845947395, "table": null, "rank": 348, "fortune500_rank": 114}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [20, 70, 30, 110, 270, 230, 360, 260, 70, 0, 0], "total": 1420, "table": null, "rank": 132, "fortune500_rank": 43}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 1, 2, 10, 6, 13, 3, 1, 0, 0], "total": 37, "table": "industry", "rank": 14, "fortune500_rank": 6}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 2, 0, 5, 5, 4, 7, 5, 2, 0, 0], "total": 30, "table": "industry", "rank": 36, "fortune500_rank": 15}, "Transportation": {"counts": [0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 159, "fortune500_rank": 48}, "Industrial_and_Manufacturing": {"counts": [0, 1, 0, 0, 0, 2, 3, 1, 0, 0, 0], "total": 7, "table": null, "rank": 86, "fortune500_rank": 26}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 6, 9, 10, 11, 6, 2, 0, 0], "total": 45, "table": "industry", "rank": 128, "fortune500_rank": 47}, "Banking_and_Finance": {"counts": [0, 1, 2, 3, 2, 4, 1, 2, 1, 0, 0], "total": 16, "table": null, "rank": 56, "fortune500_rank": 22}, "Telecommunications": {"counts": [0, 3, 0, 7, 7, 1, 5, 4, 2, 0, 0], "total": 29, "table": null, "rank": 112, "fortune500_rank": 46}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 2, 1, 1, 1, 0, 0], "total": 6, "table": null, "rank": 31, "fortune500_rank": 16}, "Business": {"counts": [0, 1, 1, 2, 6, 7, 9, 3, 2, 0, 0], "total": 31, "table": "industry", "rank": 77, "fortune500_rank": 30}, "Energy_Management": {"counts": [1, 1, 0, 2, 9, 8, 15, 5, 1, 0, 0], "total": 42, "table": "industry", "rank": 15, "fortune500_rank": 3}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 1, 2, 3, 1, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 45, "fortune500_rank": 25}, "Speech_Processing": {"counts": [0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 127, "fortune500_rank": 37}, "Knowledge_Representation": {"counts": [0, 4, 0, 1, 5, 4, 5, 2, 0, 0, 0], "total": 21, "table": "application", "rank": 53, "fortune500_rank": 28}, "Planning_and_Scheduling": {"counts": [0, 1, 1, 1, 6, 6, 9, 3, 1, 0, 0], "total": 28, "table": "application", "rank": 61, "fortune500_rank": 22}, "Control": {"counts": [1, 3, 1, 5, 19, 11, 20, 11, 2, 0, 0], "total": 73, "table": "application", "rank": 41, "fortune500_rank": 14}, "Distributed_AI": {"counts": [0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 23, "fortune500_rank": 13}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 3, 6, 5, 4, 13, 2, 0, 0], "total": 34, "table": "application", "rank": 141, "fortune500_rank": 44}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 1, 2, 2, 0, 0, 0, 0], "total": 6, "table": null, "rank": 147, "fortune500_rank": 61}, "Measuring_and_Testing": {"counts": [0, 1, 0, 0, 0, 1, 4, 0, 0, 0, 0], "total": 6, "table": null, "rank": 158, "fortune500_rank": 51}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2772, "rank": 179, "fortune500_rank": 105}, "ai_jobs": {"counts": null, "total": 132, "rank": 290, "fortune500_rank": 157}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Johnson Controls International plc is an American Irish-domiciled multinational conglomerate headquartered in Cork, Ireland, that produces fire, HVAC, and security equipment for buildings. As of mid-2019, it employed 105,000 people in around 2,000 locations across six continents. As of 2017, it was listed as 389th in the Fortune Global 500; in 2017, it became ineligible for the Fortune 500, as it was headquartered outside the U.S.\nThe company was formed via the merger of American company Johnson Controls with Tyco International, announced on 25 January 2016. The merger led to the avoidance of U.S. taxes on its foreign market operations and a financial windfall for the CEO of Johnson Controls at that time, Alex Molinaroli. As of November 2018, Johnson Control's tax inversion to Ireland is the 3rd largest U.S. tax inversion in history.", "wikipedia_link": "https://en.wikipedia.org/wiki/Johnson_Controls", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2376, "country": "United States", "website": "http://www.jacobs.com/", "crunchbase": {"text": "32fb4ae9-ebe2-43fd-81f3-af722b025584", "url": "https://www.crunchbase.com/organization/jacobs"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/jacobs"], "stage": "Mature", "name": "Jacobs Engineering Group Inc", "patent_name": "jacobs engineering group inc", "continent": "North America", "local_logo": "jacobs_engineering_group_inc.png", "aliases": "Jacobs", "permid_links": [{"text": 4295904340, "url": "https://permid.org/1-4295904340"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:J", "url": "https://www.google.com/finance/quote/j:nyse"}], "market_full": [{"text": "BRN:JEG", "url": "https://www.google.com/finance/quote/brn:jeg"}, {"text": "SAO:J1EG34", "url": "https://www.google.com/finance/quote/j1eg34:sao"}, {"text": "MUN:JEG", "url": "https://www.google.com/finance/quote/jeg:mun"}, {"text": "DUS:JEG", "url": "https://www.google.com/finance/quote/dus:jeg"}, {"text": "NYSE:J", "url": "https://www.google.com/finance/quote/j:nyse"}, {"text": "BER:JEG", "url": "https://www.google.com/finance/quote/ber:jeg"}, {"text": "LSE:0JOI", "url": "https://www.google.com/finance/quote/0joi:lse"}, {"text": "FRA:JEG", "url": "https://www.google.com/finance/quote/fra:jeg"}, {"text": "MOEX:J-RM", "url": "https://www.google.com/finance/quote/j-rm:moex"}, {"text": "ASE:J", "url": "https://www.google.com/finance/quote/ase:j"}, {"text": "DEU:JEC", "url": "https://www.google.com/finance/quote/deu:jec"}, {"text": "NYQ:J", "url": "https://www.google.com/finance/quote/j:nyq"}, {"text": "STU:JEG", "url": "https://www.google.com/finance/quote/jeg:stu"}], "crunchbase_description": "Jacobs leads the global professional services sector delivering solutions for a more connected, sustainable world.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 1}, {"field_name": "Conditional independence", "field_count": 1}, {"field_name": "Inertial measurement unit", "field_count": 1}], "clusters": [{"cluster_id": 67516, "cluster_count": 2}, {"cluster_id": 3647, "cluster_count": 1}, {"cluster_id": 1451, "cluster_count": 1}, {"cluster_id": 61555, "cluster_count": 1}, {"cluster_id": 1027, "cluster_count": 1}, {"cluster_id": 32792, "cluster_count": 1}, {"cluster_id": 3742, "cluster_count": 1}, {"cluster_id": 91341, "cluster_count": 1}, {"cluster_id": 5136, "cluster_count": 1}, {"cluster_id": 28784, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 2376, "referenced_count": 2}, {"ref_CSET_id": 1867, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 2050, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "system_identification", "task_count": 2}, {"referent": "skills_assessment", "task_count": 1}, {"referent": "grasp_generation", "task_count": 1}, {"referent": "part_of_speech_tagging", "task_count": 1}, {"referent": "speech_recognition", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "visual_slam", "task_count": 1}, {"referent": "svbrdf_estimation", "task_count": 1}], "methods": [{"referent": "dnas", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "convtasnet", "method_count": 1}, {"referent": "harris_hawks_optimization_(hho)", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "orb_slam2", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "impala", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [63, 52, 38, 53, 63, 101, 108, 117, 121, 112, 5], "total": 833, "isTopResearch": false, "rank": 208, "fortune500_rank": 77}, "ai_publications": {"counts": [0, 2, 0, 0, 0, 1, 2, 3, 1, 0, 0], "total": 9, "isTopResearch": false, "rank": 437, "fortune500_rank": 124}, "ai_publications_growth": {"counts": [], "total": -38.88888888888889, "isTopResearch": false, "rank": 1423, "fortune500_rank": 410}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [2, 1, 7, 3, 8, 3, 5, 28, 47, 25, 0], "total": 129, "isTopResearch": false, "rank": 465, "fortune500_rank": 133}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 1, 0, 2, 1, 0, 0], "total": 5, "isTopResearch": true, "rank": 171, "fortune500_rank": 44}, "citations_per_article": {"counts": [0, 0.5, 0, 0, 0, 3.0, 2.5, 9.333333333333334, 47.0, 0, 0], "total": 14.333333333333334, "isTopResearch": false, "rank": 419, "fortune500_rank": 128}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2727, "rank": 180, "fortune500_rank": 106}, "ai_jobs": {"counts": null, "total": 143, "rank": 279, "fortune500_rank": 150}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Jacobs Engineering Group Inc. (NYSE: J) is an American international technical professional services firm. The company provides technical, professional and construction services, as well as scientific and specialty consulting for a broad range of clients globally, including companies, organizations, and government agencies. Its worldwide annual revenue reached nearly $15 billion in the 2018 fiscal year. Jacobs has consistently ranked No. 1 on both Engineering News-Record (ENR)'s 2018/2019/2020 Top 500 Design Firms and Trenchless Technology\u2019s 2018/2019 Top 50 Trenchless Engineering Firms.", "wikipedia_link": "https://en.wikipedia.org/wiki/Jacobs_Engineering_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1876, "country": "United States", "website": "https://www.lowes.com/", "crunchbase": {"text": " 56409cc3-6671-61ce-4edf-d978f1ced3de", "url": "https://www.crunchbase.com/organization/lowes"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lowe's-home-improvement"], "stage": "Mature", "name": "Lowe'S", "patent_name": "Lowe's", "continent": "North America", "local_logo": null, "aliases": "Lowe'S Companies, Inc; Lowe's", "permid_links": [{"text": 4295904432, "url": "https://permid.org/1-4295904432"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LOW", "url": "https://www.google.com/finance/quote/LOW:NYSE"}], "market_full": [{"text": "STU:LWE", "url": "https://www.google.com/finance/quote/LWE:STU"}, {"text": "BRN:LWE", "url": "https://www.google.com/finance/quote/BRN:LWE"}, {"text": "LSE:0JVQ", "url": "https://www.google.com/finance/quote/0JVQ:LSE"}, {"text": "NYSE:LOW", "url": "https://www.google.com/finance/quote/LOW:NYSE"}, {"text": "NYQ:LOW", "url": "https://www.google.com/finance/quote/LOW:NYQ"}, {"text": "ASE:LOW", "url": "https://www.google.com/finance/quote/ASE:LOW"}, {"text": "SAO:LOWC34", "url": "https://www.google.com/finance/quote/LOWC34:SAO"}, {"text": "DUS:LWE", "url": "https://www.google.com/finance/quote/DUS:LWE"}, {"text": "DEU:LOW", "url": "https://www.google.com/finance/quote/DEU:LOW"}, {"text": "FRA:LWE", "url": "https://www.google.com/finance/quote/FRA:LWE"}, {"text": "MUN:LWE", "url": "https://www.google.com/finance/quote/LWE:MUN"}, {"text": "BER:LWE", "url": "https://www.google.com/finance/quote/BER:LWE"}, {"text": "MCX:LOW-RM", "url": "https://www.google.com/finance/quote/LOW-RM:MCX"}, {"text": "VIE:LOWE", "url": "https://www.google.com/finance/quote/LOWE:VIE"}, {"text": "MEX:LOW", "url": "https://www.google.com/finance/quote/LOW:MEX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Relevance (information retrieval)", "field_count": 2}], "clusters": [{"cluster_id": 69604, "cluster_count": 2}, {"cluster_id": 32237, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 1876, "referenced_count": 1}, {"ref_CSET_id": 637, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 27, "referenced_count": 1}, {"ref_CSET_id": 840, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 201, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}], "tasks": [{"referent": "supervised_learning", "task_count": 1}, {"referent": "semi_supervised_image_classification", "task_count": 1}, {"referent": "building_extraction", "task_count": 1}, {"referent": "information_retrieval", "task_count": 1}, {"referent": "code_search", "task_count": 1}, {"referent": "recommendation", "task_count": 1}], "methods": [{"referent": "adversarial_training", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0], "total": 5, "isTopResearch": false, "rank": 1063, "sp500_rank": 414, "fortune500_rank": 359}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0], "total": 3, "isTopResearch": false, "rank": 618, "sp500_rank": 285, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": 100.0, "isTopResearch": false, "rank": 23, "sp500_rank": 13, "fortune500_rank": 6}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99, "fortune500_rank": 59}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "isTopResearch": false, "rank": 881, "sp500_rank": 347, "fortune500_rank": 245}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 1.0, 0], "total": 0.6666666666666666, "isTopResearch": false, "rank": 902, "sp500_rank": 355, "fortune500_rank": 251}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "sp500_rank": 444, "fortune500_rank": 438}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 10, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "sp500_rank": 196, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2720, "rank": 181, "sp500_rank": 106, "fortune500_rank": 107}, "ai_jobs": {"counts": null, "total": 290, "rank": 186, "sp500_rank": 121, "fortune500_rank": 104}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers"}, {"cset_id": 2093, "country": "United States", "website": "https://www.progressive.com/", "crunchbase": {"text": " 90d22683-5978-4c17-948e-4e7e4baff7cd", "url": "https://www.crunchbase.com/organization/progressive-commercial"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/progressive-insurance"], "stage": "Mature", "name": "Progressive", "patent_name": "Progressive", "continent": "North America", "local_logo": null, "aliases": "Progressive; Progressive Corporation; Progressive Insurance", "permid_links": [{"text": 4295904769, "url": "https://permid.org/1-4295904769"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PGR", "url": "https://www.google.com/finance/quote/NYSE:PGR"}], "market_full": [{"text": "BER:PGV", "url": "https://www.google.com/finance/quote/BER:PGV"}, {"text": "MCX:PGR-RM", "url": "https://www.google.com/finance/quote/MCX:PGR-RM"}, {"text": "MEX:PGR", "url": "https://www.google.com/finance/quote/MEX:PGR"}, {"text": "HAN:PGV", "url": "https://www.google.com/finance/quote/HAN:PGV"}, {"text": "STU:PGV", "url": "https://www.google.com/finance/quote/PGV:STU"}, {"text": "DEU:PGR", "url": "https://www.google.com/finance/quote/DEU:PGR"}, {"text": "NYQ:PGR", "url": "https://www.google.com/finance/quote/NYQ:PGR"}, {"text": "LSE:0KOC", "url": "https://www.google.com/finance/quote/0KOC:LSE"}, {"text": "FRA:PGV", "url": "https://www.google.com/finance/quote/FRA:PGV"}, {"text": "BRN:PGV", "url": "https://www.google.com/finance/quote/BRN:PGV"}, {"text": "SAO:P1GR34", "url": "https://www.google.com/finance/quote/P1GR34:SAO"}, {"text": "NYSE:PGR", "url": "https://www.google.com/finance/quote/NYSE:PGR"}, {"text": "MUN:PGV", "url": "https://www.google.com/finance/quote/MUN:PGV"}, {"text": "ASE:PGR", "url": "https://www.google.com/finance/quote/ASE:PGR"}, {"text": "DUS:PGV", "url": "https://www.google.com/finance/quote/DUS:PGV"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 2, 0, 1, 1, 2, 0, 0, 2, 0, 0], "total": 8, "isTopResearch": false, "rank": 980, "sp500_rank": 400, "fortune500_rank": 333}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2708, "rank": 182, "sp500_rank": 107, "fortune500_rank": 108}, "ai_jobs": {"counts": null, "total": 340, "rank": 164, "sp500_rank": 107, "fortune500_rank": 87}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 1891, "country": "United States", "website": "http://www.fedex.com/", "crunchbase": {"text": "7c02184d-7670-66b9-754b-2ea0d0e40a8d", "url": "https://www.crunchbase.com/organization/fedex"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fedex"], "stage": "Mature", "name": "FedEx Corp", "patent_name": "fedex corp", "continent": "North America", "local_logo": "fedex_corp.png", "aliases": "Fedex; Fedex Corporation", "permid_links": [{"text": 4295912126, "url": "https://permid.org/1-4295912126"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:FDX", "url": "https://www.google.com/finance/quote/fdx:nyse"}], "market_full": [{"text": "BER:FDX", "url": "https://www.google.com/finance/quote/ber:fdx"}, {"text": "VIE:FDX", "url": "https://www.google.com/finance/quote/fdx:vie"}, {"text": "SAO:FDXB34", "url": "https://www.google.com/finance/quote/fdxb34:sao"}, {"text": "ASE:FDX", "url": "https://www.google.com/finance/quote/ase:fdx"}, {"text": "NYQ:FDX", "url": "https://www.google.com/finance/quote/fdx:nyq"}, {"text": "NYSE:FDX", "url": "https://www.google.com/finance/quote/fdx:nyse"}, {"text": "HAN:FDX", "url": "https://www.google.com/finance/quote/fdx:han"}, {"text": "MUN:FDX", "url": "https://www.google.com/finance/quote/fdx:mun"}, {"text": "FRA:FDX", "url": "https://www.google.com/finance/quote/fdx:fra"}, {"text": "STU:FDX", "url": "https://www.google.com/finance/quote/fdx:stu"}, {"text": "SWX:FDX", "url": "https://www.google.com/finance/quote/fdx:swx"}, {"text": "DUS:FDX", "url": "https://www.google.com/finance/quote/dus:fdx"}, {"text": "LSE:0QZX", "url": "https://www.google.com/finance/quote/0qzx:lse"}, {"text": "DEU:FDX", "url": "https://www.google.com/finance/quote/deu:fdx"}, {"text": "BRN:FDX", "url": "https://www.google.com/finance/quote/brn:fdx"}, {"text": "MCX:FDX-RM", "url": "https://www.google.com/finance/quote/fdx-rm:mcx"}, {"text": "BUE:FDX3", "url": "https://www.google.com/finance/quote/bue:fdx3"}, {"text": "GER:FDXX", "url": "https://www.google.com/finance/quote/fdxx:ger"}, {"text": "HAM:FDX", "url": "https://www.google.com/finance/quote/fdx:ham"}, {"text": "MEX:FDX*", "url": "https://www.google.com/finance/quote/fdx*:mex"}], "crunchbase_description": "FedEx provides customers and businesses worldwide with a broad portfolio of transportation, e-commerce, and business services.", "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [4, 0, 4, 3, 1, 0, 0, 0, 1, 1, 0], "total": 14, "isTopResearch": false, "rank": 875, "sp500_rank": 380, "fortune500_rank": 310}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 1, 0, 4, 1, 0, 1, 0, 0], "total": 9, "table": null, "rank": 424, "sp500_rank": 196, "fortune500_rank": 134}, "ai_patents_growth": {"counts": [], "total": -87.5, "table": null, "rank": 1577, "sp500_rank": 467, "fortune500_rank": 454}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [20, 0, 0, 10, 0, 40, 10, 0, 10, 0, 0], "total": 90, "table": null, "rank": 424, "sp500_rank": 196, "fortune500_rank": 134}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 158, "sp500_rank": 91, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 157, "sp500_rank": 102, "fortune500_rank": 58}, "Transportation": {"counts": [1, 0, 0, 1, 0, 4, 0, 0, 1, 0, 0], "total": 7, "table": "industry", "rank": 112, "sp500_rank": 83, "fortune500_rank": 32}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 1, 0, 2, 0, 0, 1, 0, 0], "total": 5, "table": "industry", "rank": 104, "sp500_rank": 72, "fortune500_rank": 31}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 363, "sp500_rank": 174, "fortune500_rank": 124}, "Banking_and_Finance": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 172, "sp500_rank": 111, "fortune500_rank": 60}, "Telecommunications": {"counts": [1, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 225, "sp500_rank": 119, "fortune500_rank": 86}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [1, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 213, "sp500_rank": 136, "fortune500_rank": 72}, "Energy_Management": {"counts": [1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 97, "sp500_rank": 78, "fortune500_rank": 24}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 1, 0, 2, 1, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 183, "sp500_rank": 120, "fortune500_rank": 63}, "Control": {"counts": [1, 0, 0, 1, 0, 3, 0, 0, 1, 0, 0], "total": 6, "table": "application", "rank": 166, "sp500_rank": 113, "fortune500_rank": 57}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "application", "rank": 450, "sp500_rank": 196, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [1, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 170, "sp500_rank": 121, "fortune500_rank": 59}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2655, "rank": 183, "sp500_rank": 108, "fortune500_rank": 109}, "ai_jobs": {"counts": null, "total": 337, "rank": 166, "sp500_rank": 109, "fortune500_rank": 89}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "FedEx Corporation is an American multinational delivery services company headquartered in Memphis, Tennessee. The name \"FedEx\" is a syllabic abbreviation of the name of the company's original air division, Federal Express, which was used from 1973 until 2000. FedEx today is best known for its air delivery service, FedEx Express, which was one of the first major shipping companies to offer overnight delivery as a flagship service. Since then, FedEx also started FedEx Ground, FedEx Office (originally known as Kinko's), FedEx Supply Chain, and other divisions, often meant to respond to its main competitor, UPS. FedEx is also one of the top contractors of the US government and has purchased the naming rights to FedEx Field of the NFL's Washington Football Team and FedEx Forum of the NBA's Memphis Grizzlies.", "wikipedia_link": "https://en.wikipedia.org/wiki/FedEx", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2497, "country": "United States", "website": "http://www.statestreet.com/", "crunchbase": {"text": "6ba46c0e-88f3-66e3-227b-009eff0e9592", "url": "https://www.crunchbase.com/organization/state-street-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/state-street"], "stage": "Mature", "name": "State Street Corp.", "patent_name": "state street corp.", "continent": "North America", "local_logo": "state_street_corp.png", "aliases": "State Street; State Street Corporation", "permid_links": [{"text": 4295904976, "url": "https://permid.org/1-4295904976"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:STT.PRG", "url": "https://www.google.com/finance/quote/nyse:stt.prg"}, {"text": "NYSE:STT.PRD", "url": "https://www.google.com/finance/quote/nyse:stt.prd"}, {"text": "NYSE:STT", "url": "https://www.google.com/finance/quote/nyse:stt"}], "market_full": [{"text": "DEU:STT", "url": "https://www.google.com/finance/quote/deu:stt"}, {"text": "MCX:STT-RM", "url": "https://www.google.com/finance/quote/mcx:stt-rm"}, {"text": "GER:ZYAX", "url": "https://www.google.com/finance/quote/ger:zyax"}, {"text": "NYSE:STT.PRG", "url": "https://www.google.com/finance/quote/nyse:stt.prg"}, {"text": "HAN:ZYA", "url": "https://www.google.com/finance/quote/han:zya"}, {"text": "STU:ZYA", "url": "https://www.google.com/finance/quote/stu:zya"}, {"text": "NYQ:STT", "url": "https://www.google.com/finance/quote/nyq:stt"}, {"text": "MUN:ZYA", "url": "https://www.google.com/finance/quote/mun:zya"}, {"text": "SAO:S1YM34", "url": "https://www.google.com/finance/quote/s1ym34:sao"}, {"text": "NYSE:STT.PRD", "url": "https://www.google.com/finance/quote/nyse:stt.prd"}, {"text": "ASE:STT.PRG", "url": "https://www.google.com/finance/quote/ase:stt.prg"}, {"text": "DUS:ZYA", "url": "https://www.google.com/finance/quote/dus:zya"}, {"text": "FRA:ZYA", "url": "https://www.google.com/finance/quote/fra:zya"}, {"text": "NYQ:STT.PRG", "url": "https://www.google.com/finance/quote/nyq:stt.prg"}, {"text": "ASE:STT", "url": "https://www.google.com/finance/quote/ase:stt"}, {"text": "ASE:STT.PRD", "url": "https://www.google.com/finance/quote/ase:stt.prd"}, {"text": "LSE:0L9G", "url": "https://www.google.com/finance/quote/0l9g:lse"}, {"text": "VIE:STT", "url": "https://www.google.com/finance/quote/stt:vie"}, {"text": "BRN:ZYA", "url": "https://www.google.com/finance/quote/brn:zya"}, {"text": "NYSE:STT", "url": "https://www.google.com/finance/quote/nyse:stt"}, {"text": "NYQ:STT.PRD", "url": "https://www.google.com/finance/quote/nyq:stt.prd"}, {"text": "SAO:S1TT34", "url": "https://www.google.com/finance/quote/s1tt34:sao"}, {"text": "MEX:STT*", "url": "https://www.google.com/finance/quote/mex:stt*"}], "crunchbase_description": "State Street is a leading financial services provider serving some of the world's most sophisticated institutions.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Natural language", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "Similarity measure", "field_count": 1}, {"field_name": "Interpretability", "field_count": 1}], "clusters": [{"cluster_id": 484, "cluster_count": 3}, {"cluster_id": 230, "cluster_count": 2}, {"cluster_id": 749, "cluster_count": 1}, {"cluster_id": 26601, "cluster_count": 1}, {"cluster_id": 2503, "cluster_count": 1}, {"cluster_id": 86341, "cluster_count": 1}, {"cluster_id": 16998, "cluster_count": 1}, {"cluster_id": 22686, "cluster_count": 1}, {"cluster_id": 7470, "cluster_count": 1}, {"cluster_id": 45462, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 2497, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 337, "referenced_count": 2}, {"ref_CSET_id": 949, "referenced_count": 1}], "tasks": [{"referent": "time_series", "task_count": 3}, {"referent": "system_identification", "task_count": 2}, {"referent": "segmentation", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "data_mining", "task_count": 2}, {"referent": "domain_generalization", "task_count": 1}, {"referent": "multi_frame_super_resolution", "task_count": 1}, {"referent": "question_similarity", "task_count": 1}, {"referent": "fine_grained_action_detection", "task_count": 1}, {"referent": "patch_matching", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 3}, {"referent": "reinforcement_learning", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "natural_language_processing", "method_count": 1}, {"referent": "(2+1)d_convolution", "method_count": 1}, {"referent": "tree_structured_parzen_estimator_approach_(tpe)", "method_count": 1}, {"referent": "loss_functions", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [26, 27, 29, 22, 19, 33, 17, 30, 18, 8, 0], "total": 229, "isTopResearch": false, "rank": 394, "fortune500_rank": 152}, "ai_publications": {"counts": [1, 0, 0, 1, 0, 0, 2, 3, 2, 0, 0], "total": 9, "isTopResearch": false, "rank": 437, "fortune500_rank": 124}, "ai_publications_growth": {"counts": [], "total": -27.777777777777782, "isTopResearch": false, "rank": 1380, "fortune500_rank": 399}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [28, 44, 35, 33, 24, 18, 18, 26, 52, 26, 4], "total": 308, "isTopResearch": false, "rank": 327, "fortune500_rank": 97}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "fortune500_rank": 54}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [28.0, 0, 0, 33.0, 0, 0, 9.0, 8.666666666666666, 26.0, 0, 0], "total": 34.22222222222222, "isTopResearch": false, "rank": 158, "fortune500_rank": 44}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 3, 3, 1, 0, 0, 0], "total": 7, "table": null, "rank": 464, "fortune500_rank": 148}, "ai_patents_growth": {"counts": [], "total": -33.333333333333336, "table": null, "rank": 1491, "fortune500_rank": 432}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 30, 30, 10, 0, 0, 0], "total": 70, "table": null, "rank": 464, "fortune500_rank": 148}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 3, 1, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 336, "fortune500_rank": 117}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 141, "fortune500_rank": 50}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 252, "fortune500_rank": 82}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 214, "fortune500_rank": 70}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2641, "rank": 184, "fortune500_rank": 110}, "ai_jobs": {"counts": null, "total": 240, "rank": 212, "fortune500_rank": 115}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "State Street Corporation is an American financial services and bank holding company headquartered at One Lincoln Street in Boston with operations worldwide. It is the second-oldest continually operating United States bank; its predecessor, Union Bank, was founded in 1792. State Street is ranked 14th on the list of largest banks in the United States by assets. It is one of the largest asset management companies in the world with US$3.1 trillion under management and US$38.8 trillion under custody and administration. It is the second largest custodian bank in the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/State_Street_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1904, "country": "United Kingdom", "website": "https://www.unilever.com/", "crunchbase": {"text": " 7ca7dc60-4543-ea08-2062-5525859c42d3", "url": " https://www.crunchbase.com/organization/unilever"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/unilever"], "stage": "Mature", "name": "Unilever", "patent_name": "Unilever", "continent": "Europe", "local_logo": null, "aliases": "Unilever; Unilever Group", "permid_links": [{"text": 4295894770, "url": "https://permid.org/1-4295894770"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:UL", "url": "https://www.google.com/finance/quote/NYSE:UL"}], "market_full": [{"text": "DEU:UNVA", "url": "https://www.google.com/finance/quote/DEU:UNVA"}, {"text": "AEX:UNA", "url": "https://www.google.com/finance/quote/AEX:UNA"}, {"text": "EBT:UNAA", "url": "https://www.google.com/finance/quote/EBT:UNAa"}, {"text": "PRA:ULVR", "url": "https://www.google.com/finance/quote/PRA:ULVR"}, {"text": "DUS:UNVB", "url": "https://www.google.com/finance/quote/DUS:UNVB"}, {"text": "BER:UNVB", "url": "https://www.google.com/finance/quote/BER:UNVB"}, {"text": "FRA:UNVA", "url": "https://www.google.com/finance/quote/FRA:UNVA"}, {"text": "GER:UNVBX", "url": "https://www.google.com/finance/quote/GER:UNVBX"}, {"text": "BER:UNVA", "url": "https://www.google.com/finance/quote/BER:UNVA"}, {"text": "BUE:UL3", "url": "https://www.google.com/finance/quote/BUE:UL3"}, {"text": "MUN:UNVB", "url": "https://www.google.com/finance/quote/MUN:UNVB"}, {"text": "HAM:UNVB", "url": "https://www.google.com/finance/quote/HAM:UNVB"}, {"text": "PKC:UNLYF", "url": "https://www.google.com/finance/quote/PKC:UNLYF"}, {"text": "HAN:UNVB", "url": "https://www.google.com/finance/quote/HAN:UNVB"}, {"text": "MUN:UNVA", "url": "https://www.google.com/finance/quote/MUN:UNVA"}, {"text": "NYSE:UL", "url": "https://www.google.com/finance/quote/NYSE:UL"}, {"text": "DEU:ULVR", "url": "https://www.google.com/finance/quote/DEU:ULVR"}, {"text": "BRN:UNVB", "url": "https://www.google.com/finance/quote/BRN:UNVB"}, {"text": "VIE:ULVR", "url": "https://www.google.com/finance/quote/ULVR:VIE"}, {"text": "MEX:ULVRN", "url": "https://www.google.com/finance/quote/MEX:ULVRN"}, {"text": "NYQ:UL", "url": "https://www.google.com/finance/quote/NYQ:UL"}, {"text": "MEX:ULN", "url": "https://www.google.com/finance/quote/MEX:ULN"}, {"text": "FRA:UNVB", "url": "https://www.google.com/finance/quote/FRA:UNVB"}, {"text": "LSE:ULVR", "url": "https://www.google.com/finance/quote/LSE:ULVR"}, {"text": "DUS:UNVA", "url": "https://www.google.com/finance/quote/DUS:UNVA"}, {"text": "STU:UNVB", "url": "https://www.google.com/finance/quote/STU:UNVB"}, {"text": "STU:UNVA", "url": "https://www.google.com/finance/quote/STU:UNVA"}, {"text": "ASE:UL", "url": "https://www.google.com/finance/quote/ASE:UL"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Hyperspectral imaging", "field_count": 3}, {"field_name": "Cluster analysis", "field_count": 3}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "Task (computing)", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Haptic technology", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Partial least squares regression", "field_count": 1}, {"field_name": "Bayesian network", "field_count": 1}], "clusters": [{"cluster_id": 31522, "cluster_count": 2}, {"cluster_id": 5759, "cluster_count": 2}, {"cluster_id": 26441, "cluster_count": 2}, {"cluster_id": 19800, "cluster_count": 2}, {"cluster_id": 1821, "cluster_count": 2}, {"cluster_id": 5861, "cluster_count": 2}, {"cluster_id": 34794, "cluster_count": 2}, {"cluster_id": 47162, "cluster_count": 2}, {"cluster_id": 20237, "cluster_count": 1}, {"cluster_id": 65159, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 19}, {"ref_CSET_id": 163, "referenced_count": 9}, {"ref_CSET_id": 1904, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 671, "referenced_count": 4}, {"ref_CSET_id": 2292, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 949, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "classification_tasks", "task_count": 4}, {"referent": "multi_task_learning", "task_count": 4}, {"referent": "segmentation", "task_count": 3}, {"referent": "decision_making", "task_count": 2}, {"referent": "semantic_segmentation", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "manufacturing_quality_control", "task_count": 2}, {"referent": "visual_localization", "task_count": 2}, {"referent": "gesture_recognition", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 4}, {"referent": "k_means_clustering", "method_count": 3}, {"referent": "atss", "method_count": 2}, {"referent": "esp", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "metrix", "method_count": 2}, {"referent": "multiplicative_attention", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [454, 415, 340, 316, 349, 320, 315, 246, 242, 208, 5], "total": 3210, "isTopResearch": false, "rank": 89, "sp500_rank": 73}, "ai_publications": {"counts": [1, 6, 4, 0, 1, 3, 3, 4, 5, 2, 0], "total": 29, "isTopResearch": false, "rank": 244, "sp500_rank": 147}, "ai_publications_growth": {"counts": [], "total": -0.5555555555555548, "isTopResearch": false, "rank": 1211, "sp500_rank": 284}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [31, 62, 60, 59, 59, 57, 88, 97, 106, 121, 5], "total": 745, "isTopResearch": false, "rank": 218, "sp500_rank": 122}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 1, 3, 1, 3, 0, 0], "total": 9, "isTopResearch": true, "rank": 217, "sp500_rank": 122}, "nlp_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [31.0, 10.333333333333334, 15.0, 0, 59.0, 19.0, 29.333333333333332, 24.25, 21.2, 60.5, 0], "total": 25.689655172413794, "isTopResearch": false, "rank": 232, "sp500_rank": 66}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "sp500_rank": 101}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "sp500_rank": 152}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2637, "rank": 185, "sp500_rank": 109}, "ai_jobs": {"counts": null, "total": 507, "rank": 112, "sp500_rank": 70}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services"}, {"cset_id": 1917, "country": "South Korea", "website": "https://www.lg.com/", "crunchbase": {"text": " 17f84917-5568-f1e2-508a-44c37b8070c8", "url": " https://www.crunchbase.com/organization/lg"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lg-electronics"], "stage": "Mature", "name": "Lg Electronics", "patent_name": "LG Electronics", "continent": "Asia", "local_logo": null, "aliases": "LG Electronics; Lg Electronics Inc; Lg Electronics India Pvt. Ltd", "permid_links": [{"text": 4295881987, "url": "https://permid.org/1-4295881987"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MUN:LGLG", "url": "https://www.google.com/finance/quote/LGLG:MUN"}, {"text": "FRA:LGLG", "url": "https://www.google.com/finance/quote/FRA:LGLG"}, {"text": "LSE:39IB", "url": "https://www.google.com/finance/quote/39IB:LSE"}, {"text": "DEU:LGLG", "url": "https://www.google.com/finance/quote/DEU:LGLG"}, {"text": "DUS:LGLG", "url": "https://www.google.com/finance/quote/DUS:LGLG"}, {"text": "PKL:LGEIY", "url": "https://www.google.com/finance/quote/LGEIY:PKL"}, {"text": "STU:LGLG", "url": "https://www.google.com/finance/quote/LGLG:STU"}, {"text": "BER:LGLG", "url": "https://www.google.com/finance/quote/BER:LGLG"}, {"text": "PKL:LGEJY", "url": "https://www.google.com/finance/quote/LGEJY:PKL"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Normalization (statistics)", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Convolutional neural network", "field_count": 3}, {"field_name": "Kalman filter", "field_count": 2}, {"field_name": "Task (computing)", "field_count": 2}, {"field_name": "Robot", "field_count": 2}, {"field_name": "Word error rate", "field_count": 2}, {"field_name": "Landmark", "field_count": 2}, {"field_name": "RGB color model", "field_count": 2}], "clusters": [{"cluster_id": 32923, "cluster_count": 3}, {"cluster_id": 24157, "cluster_count": 3}, {"cluster_id": 887, "cluster_count": 2}, {"cluster_id": 1422, "cluster_count": 2}, {"cluster_id": 10558, "cluster_count": 2}, {"cluster_id": 28968, "cluster_count": 2}, {"cluster_id": 3291, "cluster_count": 2}, {"cluster_id": 22558, "cluster_count": 1}, {"cluster_id": 690, "cluster_count": 1}, {"cluster_id": 9233, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 103}, {"ref_CSET_id": 163, "referenced_count": 59}, {"ref_CSET_id": 87, "referenced_count": 23}, {"ref_CSET_id": 1917, "referenced_count": 14}, {"ref_CSET_id": 115, "referenced_count": 14}, {"ref_CSET_id": 671, "referenced_count": 10}, {"ref_CSET_id": 6, "referenced_count": 10}, {"ref_CSET_id": 112, "referenced_count": 10}, {"ref_CSET_id": 184, "referenced_count": 9}, {"ref_CSET_id": 127, "referenced_count": 9}], "tasks": [{"referent": "classification", "task_count": 14}, {"referent": "system_identification", "task_count": 6}, {"referent": "image_processing", "task_count": 5}, {"referent": "robots", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "feature_selection", "task_count": 5}, {"referent": "slam", "task_count": 4}, {"referent": "object_detection", "task_count": 4}, {"referent": "path_planning", "task_count": 3}, {"referent": "model_compression", "task_count": 3}], "methods": [{"referent": "double_q_learning", "method_count": 14}, {"referent": "recurrent_neural_networks", "method_count": 7}, {"referent": "convolutional_neural_networks", "method_count": 6}, {"referent": "optimization", "method_count": 6}, {"referent": "ggs_nns", "method_count": 5}, {"referent": "clustering", "method_count": 5}, {"referent": "griffin_lim_algorithm", "method_count": 5}, {"referent": "q_learning", "method_count": 4}, {"referent": "graphs", "method_count": 4}, {"referent": "transformer_xl", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [64, 64, 74, 64, 42, 72, 64, 61, 65, 44, 2], "total": 616, "isTopResearch": false, "rank": 248, "sp500_rank": 170}, "ai_publications": {"counts": [6, 6, 8, 7, 10, 9, 6, 9, 14, 8, 0], "total": 83, "isTopResearch": false, "rank": 137, "sp500_rank": 90}, "ai_publications_growth": {"counts": [], "total": 20.899470899470902, "isTopResearch": false, "rank": 115, "sp500_rank": 56}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 1, 0, 2, 1, 1, 5, 1, 0], "total": 12, "isTopResearch": false, "rank": 104, "sp500_rank": 53}, "citation_counts": {"counts": [25, 36, 53, 64, 75, 128, 254, 321, 399, 257, 11], "total": 1623, "isTopResearch": false, "rank": 155, "sp500_rank": 90}, "cv_pubs": {"counts": [2, 4, 4, 3, 3, 3, 0, 2, 4, 0, 0], "total": 25, "isTopResearch": true, "rank": 125, "sp500_rank": 79}, "nlp_pubs": {"counts": [1, 0, 0, 0, 3, 1, 0, 1, 2, 1, 0], "total": 9, "isTopResearch": true, "rank": 99, "sp500_rank": 67}, "robotics_pubs": {"counts": [2, 2, 1, 0, 1, 2, 1, 3, 2, 1, 0], "total": 15, "isTopResearch": true, "rank": 92, "sp500_rank": 69}, "citations_per_article": {"counts": [4.166666666666667, 6.0, 6.625, 9.142857142857142, 7.5, 14.222222222222221, 42.333333333333336, 35.666666666666664, 28.5, 32.125, 0], "total": 19.55421686746988, "isTopResearch": false, "rank": 320, "sp500_rank": 97}}, "patents": {"ai_patents": {"counts": [1, 3, 6, 13, 37, 27, 5, 1, 0, 0, 0], "total": 93, "table": null, "rank": 166, "sp500_rank": 107}, "ai_patents_growth": {"counts": [], "total": -62.836169502836164, "table": null, "rank": 1548, "sp500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 30, 60, 130, 370, 270, 50, 10, 0, 0, 0], "total": 930, "table": null, "rank": 166, "sp500_rank": 107}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 0, 1, 3, 9, 0, 0, 0, 0, 0], "total": 14, "table": "industry", "rank": 38, "sp500_rank": 32}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 157, "sp500_rank": 102}, "Transportation": {"counts": [0, 1, 6, 12, 21, 2, 0, 1, 0, 0, 0], "total": 43, "table": "industry", "rank": 51, "sp500_rank": 39}, "Industrial_and_Manufacturing": {"counts": [1, 2, 3, 4, 13, 7, 0, 1, 0, 0, 0], "total": 31, "table": "industry", "rank": 26, "sp500_rank": 23}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 5, 4, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 261, "sp500_rank": 143}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 115, "sp500_rank": 79}, "Telecommunications": {"counts": [0, 0, 1, 6, 12, 6, 0, 0, 0, 0, 0], "total": 25, "table": "industry", "rank": 121, "sp500_rank": 77}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 1, 3, 3, 0, 0, 0, 0, 0], "total": 7, "table": null, "rank": 183, "sp500_rank": 119}, "Energy_Management": {"counts": [0, 0, 0, 1, 6, 13, 0, 0, 0, 0, 0], "total": 20, "table": "industry", "rank": 30, "sp500_rank": 27}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 4, 3, 0, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 96, "sp500_rank": 61}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 198, "sp500_rank": 131}, "Control": {"counts": [1, 2, 5, 11, 27, 5, 0, 0, 0, 0, 0], "total": 51, "table": "application", "rank": 50, "sp500_rank": 40}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 11, "sp500_rank": 7}, "Computer_Vision": {"counts": [0, 1, 2, 4, 7, 6, 0, 0, 0, 0, 0], "total": 20, "table": "application", "rank": 186, "sp500_rank": 109}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 1, 2, 7, 12, 0, 0, 0, 0, 0, 0], "total": 22, "table": "application", "rank": 78, "sp500_rank": 59}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2599, "rank": 186, "sp500_rank": 110}, "ai_jobs": {"counts": null, "total": 146, "rank": 275, "sp500_rank": 163}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 835, "country": "United States", "website": "https://www.discover.com", "crunchbase": {"text": "efb0c925-366d-7336-9708-098d45f54919", "url": "https://www.crunchbase.com/organization/discover-financial-services"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/discover-financial-services"], "stage": "Mature", "name": "Discover Financial Services", "patent_name": "Discover Financial Services", "continent": "North America", "local_logo": "discover_financial_services.png", "aliases": "Dfs; Discover Financial Services", "permid_links": [{"text": 4295902718, "url": "https://permid.org/1-4295902718"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DFS", "url": "https://www.google.com/finance/quote/DFS:NYSE"}], "market_full": [{"text": "MUN:DC7", "url": "https://www.google.com/finance/quote/DC7:MUN"}, {"text": "BRN:DC7", "url": "https://www.google.com/finance/quote/BRN:DC7"}, {"text": "DUS:DC7", "url": "https://www.google.com/finance/quote/DC7:DUS"}, {"text": "ASE:DC7", "url": "https://www.google.com/finance/quote/ASE:DC7"}, {"text": "STU:DC7", "url": "https://www.google.com/finance/quote/DC7:STU"}, {"text": "VIE:DFS", "url": "https://www.google.com/finance/quote/DFS:VIE"}, {"text": "BER:DC7", "url": "https://www.google.com/finance/quote/BER:DC7"}, {"text": "LSE:0IBC", "url": "https://www.google.com/finance/quote/0IBC:LSE"}, {"text": "MCX:DFS-RM", "url": "https://www.google.com/finance/quote/DFS-RM:MCX"}, {"text": "NYSE:DFS", "url": "https://www.google.com/finance/quote/DFS:NYSE"}, {"text": "NYQ:DFS", "url": "https://www.google.com/finance/quote/DFS:NYQ"}, {"text": "FRA:DC7", "url": "https://www.google.com/finance/quote/DC7:FRA"}, {"text": "MEX:DFS*", "url": "https://www.google.com/finance/quote/DFS*:MEX"}, {"text": "SAO:D1FS34", "url": "https://www.google.com/finance/quote/D1FS34:SAO"}, {"text": "HAN:DC7", "url": "https://www.google.com/finance/quote/DC7:HAN"}, {"text": "GER:DC7X", "url": "https://www.google.com/finance/quote/DC7X:GER"}, {"text": "DEU:DFS", "url": "https://www.google.com/finance/quote/DEU:DFS"}], "crunchbase_description": "Discover Financial Services is a direct banking and payment services company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [4, 1, 5, 2, 2, 3, 2, 0, 1, 6, 0], "total": 26, "isTopResearch": false, "rank": 744, "fortune500_rank": 265}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0], "total": 5, "table": null, "rank": 525, "fortune500_rank": 169}, "ai_patents_growth": {"counts": [], "total": 200.0, "table": null, "rank": 39, "fortune500_rank": 6}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 30, 10, 0, 0], "total": 50, "table": null, "rank": 525, "fortune500_rank": 169}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "total": 4, "table": "industry", "rank": 363, "fortune500_rank": 124}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2564, "rank": 187, "fortune500_rank": 111}, "ai_jobs": {"counts": null, "total": 733, "rank": 69, "fortune500_rank": 37}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 1928, "country": "United States", "website": "https://www.pfizer.com/", "crunchbase": {"text": " 2eadc665-593a-c934-5088-a7490b7aa47d", "url": " https://www.crunchbase.com/organization/pfizer"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pfizer"], "stage": "Mature", "name": "Pfizer", "patent_name": "Pfizer", "continent": "North America", "local_logo": null, "aliases": "Pfizer; Pfizer Inc", "permid_links": [{"text": 4295904722, "url": "https://permid.org/1-4295904722"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PFE", "url": "https://www.google.com/finance/quote/NYSE:PFE"}], "market_full": [{"text": "MEX:PFE", "url": "https://www.google.com/finance/quote/MEX:PFE"}, {"text": "LSE:0Q1N", "url": "https://www.google.com/finance/quote/0Q1N:LSE"}, {"text": "ASE:PFE", "url": "https://www.google.com/finance/quote/ASE:PFE"}, {"text": "BUE:DPFE33", "url": "https://www.google.com/finance/quote/BUE:DPFE33"}, {"text": "DEU:PFE", "url": "https://www.google.com/finance/quote/DEU:PFE"}, {"text": "DUS:PFE", "url": "https://www.google.com/finance/quote/DUS:PFE"}, {"text": "HAN:PFE", "url": "https://www.google.com/finance/quote/HAN:PFE"}, {"text": "BER:PFE", "url": "https://www.google.com/finance/quote/BER:PFE"}, {"text": "MUN:PFE", "url": "https://www.google.com/finance/quote/MUN:PFE"}, {"text": "MCX:PFE-RM", "url": "https://www.google.com/finance/quote/MCX:PFE-RM"}, {"text": "UAX:PFE", "url": "https://www.google.com/finance/quote/PFE:UAX"}, {"text": "BUE:PFE", "url": "https://www.google.com/finance/quote/BUE:PFE"}, {"text": "HAM:PFE", "url": "https://www.google.com/finance/quote/HAM:PFE"}, {"text": "NYQ:PFE", "url": "https://www.google.com/finance/quote/NYQ:PFE"}, {"text": "NYSE:PFE", "url": "https://www.google.com/finance/quote/NYSE:PFE"}, {"text": "GER:PFEX", "url": "https://www.google.com/finance/quote/GER:PFEX"}, {"text": "SGO:PFECL", "url": "https://www.google.com/finance/quote/PFECL:SGO"}, {"text": "STU:PFE", "url": "https://www.google.com/finance/quote/PFE:STU"}, {"text": "SAO:PFIZ34", "url": "https://www.google.com/finance/quote/PFIZ34:SAO"}, {"text": "FRA:PFE", "url": "https://www.google.com/finance/quote/FRA:PFE"}, {"text": "SGO:PFE", "url": "https://www.google.com/finance/quote/PFE:SGO"}, {"text": "DEU:PFEB", "url": "https://www.google.com/finance/quote/DEU:PFEB"}, {"text": "VIE:PFE", "url": "https://www.google.com/finance/quote/PFE:VIE"}, {"text": "FRA:PFEB", "url": "https://www.google.com/finance/quote/FRA:PFEB"}, {"text": "STO:PFE", "url": "https://www.google.com/finance/quote/PFE:STO"}, {"text": "BRN:PFE", "url": "https://www.google.com/finance/quote/BRN:PFE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Feature learning", "field_count": 3}, {"field_name": "Regression analysis", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Speech acquisition", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Random forest", "field_count": 2}, {"field_name": "Linear discriminant analysis", "field_count": 2}, {"field_name": "Categorical variable", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Calibration (statistics)", "field_count": 1}], "clusters": [{"cluster_id": 68269, "cluster_count": 6}, {"cluster_id": 23169, "cluster_count": 4}, {"cluster_id": 15078, "cluster_count": 4}, {"cluster_id": 298, "cluster_count": 3}, {"cluster_id": 109, "cluster_count": 3}, {"cluster_id": 40228, "cluster_count": 2}, {"cluster_id": 4134, "cluster_count": 2}, {"cluster_id": 1979, "cluster_count": 2}, {"cluster_id": 19620, "cluster_count": 2}, {"cluster_id": 23266, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 34}, {"ref_CSET_id": 1928, "referenced_count": 23}, {"ref_CSET_id": 163, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 3116, "referenced_count": 6}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 341, "referenced_count": 6}, {"ref_CSET_id": 1797, "referenced_count": 5}, {"ref_CSET_id": 1633, "referenced_count": 4}, {"ref_CSET_id": 1962, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 14}, {"referent": "disease_detection", "task_count": 11}, {"referent": "image_analysis", "task_count": 10}, {"referent": "drug_discovery", "task_count": 8}, {"referent": "developmental_learning", "task_count": 8}, {"referent": "adl", "task_count": 7}, {"referent": "parkinson_'s_disease", "task_count": 6}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 6}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "survival_analysis", "task_count": 5}], "methods": [{"referent": "vqa_models", "method_count": 16}, {"referent": "mad_learning", "method_count": 13}, {"referent": "logistic_regression", "method_count": 10}, {"referent": "double_q_learning", "method_count": 8}, {"referent": "meta_learning_algorithms", "method_count": 7}, {"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "normalization", "method_count": 5}, {"referent": "optimization", "method_count": 5}, {"referent": "machine_translation_models", "method_count": 4}, {"referent": "image_to_image_translation", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2807, 2358, 2283, 2344, 2281, 2415, 2285, 2321, 2478, 2318, 13], "total": 23903, "isTopResearch": false, "rank": 15, "sp500_rank": 13, "fortune500_rank": 6}, "ai_publications": {"counts": [14, 15, 5, 8, 11, 8, 20, 18, 11, 2, 0], "total": 112, "isTopResearch": false, "rank": 114, "sp500_rank": 82, "fortune500_rank": 36}, "ai_publications_growth": {"counts": [], "total": -43.569023569023564, "isTopResearch": false, "rank": 1431, "sp500_rank": 397, "fortune500_rank": 416}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [161, 187, 258, 300, 314, 304, 486, 714, 999, 974, 25], "total": 4722, "isTopResearch": false, "rank": 73, "sp500_rank": 50, "fortune500_rank": 27}, "cv_pubs": {"counts": [1, 4, 1, 2, 0, 1, 2, 5, 2, 0, 0], "total": 18, "isTopResearch": true, "rank": 148, "sp500_rank": 94, "fortune500_rank": 42}, "nlp_pubs": {"counts": [0, 0, 1, 0, 2, 1, 2, 0, 0, 0, 0], "total": 6, "isTopResearch": true, "rank": 131, "sp500_rank": 79, "fortune500_rank": 37}, "robotics_pubs": {"counts": [0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 214, "sp500_rank": 131, "fortune500_rank": 57}, "citations_per_article": {"counts": [11.5, 12.466666666666667, 51.6, 37.5, 28.545454545454547, 38.0, 24.3, 39.666666666666664, 90.81818181818181, 487.0, 0], "total": 42.160714285714285, "isTopResearch": false, "rank": 119, "sp500_rank": 27, "fortune500_rank": 31}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2563, "rank": 188, "sp500_rank": 111, "fortune500_rank": 112}, "ai_jobs": {"counts": null, "total": 581, "rank": 93, "sp500_rank": 61, "fortune500_rank": 50}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research"}, {"cset_id": 341, "country": "United Kingdom", "website": "http://www.astrazeneca.com", "crunchbase": {"text": "2339d639-581b-690d-668d-f11ad904471d", "url": "https://www.crunchbase.com/organization/astrazeneca"}, "child_crunchbase": [{"text": "1c89f169-34bf-7038-d612-4fe01c65c481", "url": "https://www.crunchbase.com/organization/alexion-pharmaceuticals"}], "linkedin": ["https://www.linkedin.com/company/alexion-pharmaceuticals", "https://www.linkedin.com/company/astrazeneca"], "stage": "Mature", "name": "AstraZeneca", "patent_name": "astrazeneca", "continent": "Europe", "local_logo": "astrazeneca.png", "aliases": "Astrazeneca Plc", "permid_links": [{"text": 4295905466, "url": "https://permid.org/1-4295905466"}, {"text": 4295894341, "url": "https://permid.org/1-4295894341"}], "parent_info": null, "agg_child_info": "Alexion Pharmaceuticals", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:AZN", "url": "https://www.google.com/finance/quote/azn:nasdaq"}, {"text": "NYSE:AZN", "url": "https://www.google.com/finance/quote/azn:nyse"}], "market_full": [{"text": "STO:AZN", "url": "https://www.google.com/finance/quote/azn:sto"}, {"text": "NASDAQ:AZN", "url": "https://www.google.com/finance/quote/azn:nasdaq"}, {"text": "OTC:AZNCF", "url": "https://www.google.com/finance/quote/azncf:otc"}, {"text": "DUS:ZEG", "url": "https://www.google.com/finance/quote/dus:zeg"}, {"text": "HAN:ZEG", "url": "https://www.google.com/finance/quote/han:zeg"}, {"text": "HAM:ZEG", "url": "https://www.google.com/finance/quote/ham:zeg"}, {"text": "MUN:ZEG", "url": "https://www.google.com/finance/quote/mun:zeg"}, {"text": "BCBA:AZN", "url": "https://www.google.com/finance/quote/azn:bcba"}, {"text": "NYSE:AZN", "url": "https://www.google.com/finance/quote/azn:nyse"}, {"text": "BMV:AZN/N", "url": "https://www.google.com/finance/quote/azn/n:bmv"}, {"text": "FRA:AZN", "url": "https://www.google.com/finance/quote/azn:fra"}, {"text": "FWB:ZEG", "url": "https://www.google.com/finance/quote/fwb:zeg"}, {"text": "BER:ZEG", "url": "https://www.google.com/finance/quote/ber:zeg"}, {"text": "LON:AZN", "url": "https://www.google.com/finance/quote/azn:lon"}, {"text": "XETR:ZEG", "url": "https://www.google.com/finance/quote/xetr:zeg"}], "crunchbase_description": "AstraZeneca is a global pharmaceutical company that discovers, develops, manufactures, and markets prescription medicines.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 29}, {"field_name": "Segmentation", "field_count": 13}, {"field_name": "Digital pathology", "field_count": 10}, {"field_name": "Reinforcement learning", "field_count": 8}, {"field_name": "Convolutional neural network", "field_count": 7}, {"field_name": "Cluster analysis", "field_count": 5}, {"field_name": "Support vector machine", "field_count": 4}, {"field_name": "Feature selection", "field_count": 4}, {"field_name": "Information extraction", "field_count": 3}, {"field_name": "Feature (computer vision)", "field_count": 3}], "clusters": [{"cluster_id": 23169, "cluster_count": 45}, {"cluster_id": 42969, "cluster_count": 13}, {"cluster_id": 46779, "cluster_count": 11}, {"cluster_id": 1683, "cluster_count": 7}, {"cluster_id": 1038, "cluster_count": 6}, {"cluster_id": 8650, "cluster_count": 5}, {"cluster_id": 30120, "cluster_count": 4}, {"cluster_id": 24047, "cluster_count": 4}, {"cluster_id": 54074, "cluster_count": 4}, {"cluster_id": 1989, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 341, "referenced_count": 336}, {"ref_CSET_id": 101, "referenced_count": 312}, {"ref_CSET_id": 163, "referenced_count": 88}, {"ref_CSET_id": 87, "referenced_count": 84}, {"ref_CSET_id": 115, "referenced_count": 57}, {"ref_CSET_id": 354, "referenced_count": 39}, {"ref_CSET_id": 1633, "referenced_count": 33}, {"ref_CSET_id": 1797, "referenced_count": 30}, {"ref_CSET_id": 789, "referenced_count": 26}, {"ref_CSET_id": 1962, "referenced_count": 23}], "tasks": [{"referent": "drug_discovery", "task_count": 35}, {"referent": "classification", "task_count": 33}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 31}, {"referent": "image_analysis", "task_count": 15}, {"referent": "segmentation", "task_count": 14}, {"referent": "developmental_learning", "task_count": 13}, {"referent": "decision_making", "task_count": 12}, {"referent": "disease_detection", "task_count": 12}, {"referent": "activity_detection", "task_count": 12}, {"referent": "active_learning", "task_count": 9}], "methods": [{"referent": "mad_learning", "method_count": 46}, {"referent": "symbolic_deep_learning", "method_count": 30}, {"referent": "recurrent_neural_networks", "method_count": 26}, {"referent": "vqa_models", "method_count": 22}, {"referent": "generative_models", "method_count": 19}, {"referent": "meta_learning_algorithms", "method_count": 17}, {"referent": "convolutional_neural_networks", "method_count": 17}, {"referent": "q_learning", "method_count": 16}, {"referent": "double_q_learning", "method_count": 11}, {"referent": "reinforcement_learning", "method_count": 10}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2574, 2614, 2807, 3099, 3451, 3787, 3756, 3787, 4020, 3477, 13], "total": 33385, "isTopResearch": false, "rank": 8, "sp500_rank": 6, "fortune500_rank": 3}, "ai_publications": {"counts": [12, 10, 8, 7, 21, 18, 38, 41, 76, 25, 0], "total": 256, "isTopResearch": false, "rank": 68, "sp500_rank": 53, "fortune500_rank": 19}, "ai_publications_growth": {"counts": [], "total": 8.718442447582367, "isTopResearch": false, "rank": 164, "sp500_rank": 86, "fortune500_rank": 44}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 3, 4, 0], "total": 8, "isTopResearch": false, "rank": 127, "sp500_rank": 63, "fortune500_rank": 40}, "citation_counts": {"counts": [136, 144, 184, 195, 266, 484, 838, 1324, 1947, 1941, 62], "total": 7521, "isTopResearch": false, "rank": 61, "sp500_rank": 41, "fortune500_rank": 22}, "cv_pubs": {"counts": [2, 0, 1, 2, 3, 4, 9, 4, 18, 5, 0], "total": 48, "isTopResearch": true, "rank": 87, "sp500_rank": 58, "fortune500_rank": 24}, "nlp_pubs": {"counts": [0, 1, 1, 1, 1, 0, 2, 2, 1, 0, 0], "total": 9, "isTopResearch": true, "rank": 99, "sp500_rank": 67, "fortune500_rank": 28}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [11.333333333333334, 14.4, 23.0, 27.857142857142858, 12.666666666666666, 26.88888888888889, 22.05263157894737, 32.292682926829265, 25.61842105263158, 77.64, 0], "total": 29.37890625, "isTopResearch": false, "rank": 199, "sp500_rank": 50, "fortune500_rank": 59}}, "patents": {"ai_patents": {"counts": [0, 1, 1, 2, 2, 3, 1, 3, 2, 2, 0], "total": 17, "table": null, "rank": 345, "sp500_rank": 172, "fortune500_rank": 114}, "ai_patents_growth": {"counts": [], "total": 61.11111111111111, "table": null, "rank": 172, "sp500_rank": 82, "fortune500_rank": 42}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 10, 20, 20, 30, 10, 30, 20, 20, 0], "total": 170, "table": null, "rank": 345, "sp500_rank": 172, "fortune500_rank": 114}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 1, 0, 1, 2, 1, 2, 1, 0, 0], "total": 8, "table": "industry", "rank": 95, "sp500_rank": 62, "fortune500_rank": 39}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 1, 2, 1, 2, 0, 1, 1, 0, 0], "total": 9, "table": "application", "rank": 259, "sp500_rank": 139, "fortune500_rank": 79}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "sp500_rank": 134, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 209, "sp500_rank": 132, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2556, "rank": 189, "sp500_rank": 112, "fortune500_rank": 113}, "ai_jobs": {"counts": null, "total": 677, "rank": 77, "sp500_rank": 52, "fortune500_rank": 41}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "AstraZeneca plc is a British-Swedish multinational pharmaceutical and biotechnology company with its headquarters in Cambridge, England. AstraZeneca has a portfolio of products for major diseases including oncology, cardiovascular, gastrointestinal, infection, neuroscience, respiratory and inflammation areas.", "wikipedia_link": "https://en.wikipedia.org/wiki/AstraZeneca", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1390, "country": "Germany", "website": "http://www.telekom.com", "crunchbase": {"text": "ab47d80c-7971-c8e6-b620-7483498d0c5b", "url": "https://www.crunchbase.com/organization/deutsche-telekom"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/telekom"], "stage": "Mature", "name": "Deutsche Telekom", "patent_name": "Deutsche Telekom", "continent": "Europe", "local_logo": "deutsche_telekom.png", "aliases": "Deutsche Telekom; Deutsche Telekom Ag", "permid_links": [{"text": 4295870332, "url": "https://permid.org/1-4295870332"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "STU:DTE", "url": "https://www.google.com/finance/quote/DTE:STU"}, {"text": "FRA:DTE", "url": "https://www.google.com/finance/quote/DTE:FRA"}, {"text": "MUN:DTE", "url": "https://www.google.com/finance/quote/DTE:MUN"}, {"text": "LSE:0MPH", "url": "https://www.google.com/finance/quote/0MPH:LSE"}, {"text": "DUS:DTE", "url": "https://www.google.com/finance/quote/DTE:DUS"}, {"text": "BRN:DTE", "url": "https://www.google.com/finance/quote/BRN:DTE"}, {"text": "BER:DTEA", "url": "https://www.google.com/finance/quote/BER:DTEA"}, {"text": "EBT:DTED", "url": "https://www.google.com/finance/quote/DTEd:EBT"}, {"text": "DEU:DTEGN", "url": "https://www.google.com/finance/quote/DEU:DTEGn"}, {"text": "BUD:DEUTSCHETEL", "url": "https://www.google.com/finance/quote/BUD:DEUTSCHETEL"}, {"text": "FRA:DTEA", "url": "https://www.google.com/finance/quote/DTEA:FRA"}, {"text": "BRU:DTEL", "url": "https://www.google.com/finance/quote/BRU:DTEL"}, {"text": "QXI:DTEGY", "url": "https://www.google.com/finance/quote/DTEGY:QXI"}, {"text": "MEX:DTEN", "url": "https://www.google.com/finance/quote/DTEN:MEX"}, {"text": "QXI:DTEGF", "url": "https://www.google.com/finance/quote/DTEGF:QXI"}, {"text": "DUS:DTEA", "url": "https://www.google.com/finance/quote/DTEA:DUS"}, {"text": "BUE:DTEA3", "url": "https://www.google.com/finance/quote/BUE:DTEA3"}, {"text": "MIL:DTE", "url": "https://www.google.com/finance/quote/DTE:MIL"}, {"text": "PRA:DTE", "url": "https://www.google.com/finance/quote/DTE:PRA"}, {"text": "GER:DTEX.N", "url": "https://www.google.com/finance/quote/DTEX.N:GER"}, {"text": "SWX:DTE", "url": "https://www.google.com/finance/quote/DTE:SWX"}, {"text": "DEU:DTEA", "url": "https://www.google.com/finance/quote/DEU:DTEA"}, {"text": "HAM:DTE", "url": "https://www.google.com/finance/quote/DTE:HAM"}, {"text": "MUN:DTEA", "url": "https://www.google.com/finance/quote/DTEA:MUN"}, {"text": "VIE:DTE", "url": "https://www.google.com/finance/quote/DTE:VIE"}, {"text": "HAN:DTE", "url": "https://www.google.com/finance/quote/DTE:HAN"}, {"text": "STU:DTEA", "url": "https://www.google.com/finance/quote/DTEA:STU"}], "crunchbase_description": "Deutsche Telekom is a telecommunications company that offers a range of fixed-network services.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Speech synthesis", "field_count": 4}, {"field_name": "Gesture", "field_count": 2}, {"field_name": "Augmented reality", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Ensemble learning", "field_count": 2}, {"field_name": "Quantization (signal processing)", "field_count": 2}, {"field_name": "Wavelet", "field_count": 2}, {"field_name": "Ranking", "field_count": 2}, {"field_name": "Emotion Markup Language", "field_count": 2}, {"field_name": "Haptic technology", "field_count": 1}], "clusters": [{"cluster_id": 791, "cluster_count": 8}, {"cluster_id": 2214, "cluster_count": 5}, {"cluster_id": 20922, "cluster_count": 4}, {"cluster_id": 2644, "cluster_count": 4}, {"cluster_id": 66153, "cluster_count": 4}, {"cluster_id": 8618, "cluster_count": 3}, {"cluster_id": 13721, "cluster_count": 3}, {"cluster_id": 3023, "cluster_count": 2}, {"cluster_id": 5808, "cluster_count": 2}, {"cluster_id": 74779, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 1390, "referenced_count": 41}, {"ref_CSET_id": 163, "referenced_count": 18}, {"ref_CSET_id": 101, "referenced_count": 14}, {"ref_CSET_id": 115, "referenced_count": 13}, {"ref_CSET_id": 949, "referenced_count": 7}, {"ref_CSET_id": 27, "referenced_count": 4}, {"ref_CSET_id": 209, "referenced_count": 4}, {"ref_CSET_id": 1797, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 15}, {"referent": "multi_view_learning", "task_count": 4}, {"referent": "image_processing", "task_count": 4}, {"referent": "segmentation", "task_count": 4}, {"referent": "speech_recognition", "task_count": 4}, {"referent": "emotion_recognition", "task_count": 3}, {"referent": "autonomous_navigation", "task_count": 3}, {"referent": "text_independent_speaker_recognition", "task_count": 3}, {"referent": "autonomous_driving", "task_count": 3}, {"referent": "emotional_speech_synthesis", "task_count": 3}], "methods": [{"referent": "3d_representations", "method_count": 8}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "emf", "method_count": 3}, {"referent": "auto_classifier", "method_count": 3}, {"referent": "dueling_network", "method_count": 2}, {"referent": "dimfuse", "method_count": 2}, {"referent": "hyperparameter_search", "method_count": 2}, {"referent": "q_learning", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [186, 145, 118, 139, 172, 112, 98, 79, 82, 57, 2], "total": 1190, "isTopResearch": false, "rank": 173, "sp500_rank": 129}, "ai_publications": {"counts": [6, 2, 1, 2, 4, 2, 3, 8, 7, 0, 0], "total": 35, "isTopResearch": false, "rank": 216, "sp500_rank": 132}, "ai_publications_growth": {"counts": [], "total": 18.055555555555554, "isTopResearch": false, "rank": 120, "sp500_rank": 61}, "ai_pubs_top_conf": {"counts": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99}, "citation_counts": {"counts": [300, 335, 358, 356, 301, 269, 256, 244, 214, 143, 2], "total": 2778, "isTopResearch": false, "rank": 106, "sp500_rank": 67}, "cv_pubs": {"counts": [1, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "sp500_rank": 146}, "nlp_pubs": {"counts": [1, 0, 0, 1, 2, 0, 0, 1, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 141, "sp500_rank": 83}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0], "total": 5, "isTopResearch": true, "rank": 171, "sp500_rank": 107}, "citations_per_article": {"counts": [50.0, 167.5, 358.0, 178.0, 75.25, 134.5, 85.33333333333333, 30.5, 30.571428571428573, 0, 0], "total": 79.37142857142857, "isTopResearch": false, "rank": 52, "sp500_rank": 7}}, "patents": {"ai_patents": {"counts": [4, 1, 3, 3, 4, 5, 5, 19, 4, 0, 0], "total": 48, "table": null, "rank": 221, "sp500_rank": 132}, "ai_patents_growth": {"counts": [], "total": 101.66666666666667, "table": null, "rank": 114, "sp500_rank": 55}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [40, 10, 30, 30, 40, 50, 50, 190, 40, 0, 0], "total": 480, "table": null, "rank": 221, "sp500_rank": 132}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 0, 0, 1, 7, 0, 0, 0], "total": 9, "table": "industry", "rank": 95, "sp500_rank": 69}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 1, 2, 2, 0, 1, 2, 10, 3, 0, 0], "total": 22, "table": "industry", "rank": 182, "sp500_rank": 101}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 1, 1, 1, 1, 4, 3, 7, 1, 0, 0], "total": 19, "table": "industry", "rank": 136, "sp500_rank": 86}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [1, 0, 2, 0, 1, 1, 0, 1, 3, 0, 0], "total": 9, "table": "industry", "rank": 162, "sp500_rank": 110}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": "application", "rank": 139, "sp500_rank": 81}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "table": "application", "rank": 162, "sp500_rank": 88}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 3, 0, 0], "total": 6, "table": "application", "rank": 163, "sp500_rank": 110}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 36, "sp500_rank": 28}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [1, 0, 0, 0, 0, 2, 1, 6, 0, 0, 0], "total": 10, "table": "application", "rank": 241, "sp500_rank": 134}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 173, "sp500_rank": 114}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2547, "rank": 190, "sp500_rank": 113}, "ai_jobs": {"counts": null, "total": 159, "rank": 259, "sp500_rank": 156}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1883, "country": "United States", "website": "https://www.metlife.com/", "crunchbase": {"text": " 973bd74f-658b-e011-18a2-9ad2d32893ed", "url": "https://www.crunchbase.com/organization/metlife"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/metlife"], "stage": "Mature", "name": "Metlife", "patent_name": "MetLife", "continent": "North America", "local_logo": null, "aliases": "MetLife; Metlife, Inc; Metropolitan Life Insurance Co; Metropolitan Life Insurance Company (Mlic)", "permid_links": [{"text": 4295912198, "url": "https://permid.org/1-4295912198"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MET", "url": "https://www.google.com/finance/quote/MET:NYSE"}, {"text": "NYSE:MET PR A", "url": "https://www.google.com/finance/quote/MET PR A:NYSE"}, {"text": "NYSE:MET PR F", "url": "https://www.google.com/finance/quote/MET PR F:NYSE"}, {"text": "NYSE:MET PR E", "url": "https://www.google.com/finance/quote/MET PR E:NYSE"}], "market_full": [{"text": "NYQ:MET PR F", "url": "https://www.google.com/finance/quote/MET PR F:NYQ"}, {"text": "MCX:MET-RM", "url": "https://www.google.com/finance/quote/MCX:MET-RM"}, {"text": "DUS:MWZ", "url": "https://www.google.com/finance/quote/DUS:MWZ"}, {"text": "NYSE:MET", "url": "https://www.google.com/finance/quote/MET:NYSE"}, {"text": "NYSE:MET PR A", "url": "https://www.google.com/finance/quote/MET PR A:NYSE"}, {"text": "NYQ:MET PR E", "url": "https://www.google.com/finance/quote/MET PR E:NYQ"}, {"text": "GER:MWZX", "url": "https://www.google.com/finance/quote/GER:MWZX"}, {"text": "SAO:METB34", "url": "https://www.google.com/finance/quote/METB34:SAO"}, {"text": "BRN:MWZ", "url": "https://www.google.com/finance/quote/BRN:MWZ"}, {"text": "ASE:MET PR A", "url": "https://www.google.com/finance/quote/ASE:MET PR A"}, {"text": "STU:MWZ", "url": "https://www.google.com/finance/quote/MWZ:STU"}, {"text": "ASE:MET", "url": "https://www.google.com/finance/quote/ASE:MET"}, {"text": "LSE:0K0X", "url": "https://www.google.com/finance/quote/0K0X:LSE"}, {"text": "MEX:MET", "url": "https://www.google.com/finance/quote/MET:MEX"}, {"text": "FRA:MWZ", "url": "https://www.google.com/finance/quote/FRA:MWZ"}, {"text": "ASE:MET PR E", "url": "https://www.google.com/finance/quote/ASE:MET PR E"}, {"text": "ASE:MET PR F", "url": "https://www.google.com/finance/quote/ASE:MET PR F"}, {"text": "DEU:MET", "url": "https://www.google.com/finance/quote/DEU:MET"}, {"text": "NYQ:MET PR A", "url": "https://www.google.com/finance/quote/MET PR A:NYQ"}, {"text": "NYSE:MET PR F", "url": "https://www.google.com/finance/quote/MET PR F:NYSE"}, {"text": "NYQ:MET", "url": "https://www.google.com/finance/quote/MET:NYQ"}, {"text": "MUN:MWZ", "url": "https://www.google.com/finance/quote/MUN:MWZ"}, {"text": "BER:MWZ", "url": "https://www.google.com/finance/quote/BER:MWZ"}, {"text": "VIE:METL", "url": "https://www.google.com/finance/quote/METL:VIE"}, {"text": "NYSE:MET PR E", "url": "https://www.google.com/finance/quote/MET PR E:NYSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 44849, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "time_series", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [4, 0, 13, 1, 2, 1, 4, 2, 3, 2, 0], "total": 32, "isTopResearch": false, "rank": 700, "sp500_rank": 353, "fortune500_rank": 251}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 2, 2, 0], "total": 7, "isTopResearch": false, "rank": 794, "sp500_rank": 326, "fortune500_rank": 217}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 7.0, "isTopResearch": false, "rank": 634, "sp500_rank": 249, "fortune500_rank": 181}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2540, "rank": 191, "sp500_rank": 114, "fortune500_rank": 114}, "ai_jobs": {"counts": null, "total": 253, "rank": 206, "sp500_rank": 133, "fortune500_rank": 113}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2315, "country": "United States", "website": "https://www.f5.com/", "crunchbase": {"text": "cfe19843-3b6b-1661-f06f-cd58938e77c9", "url": "https://www.crunchbase.com/organization/f5-networks"}, "child_crunchbase": [{"text": "4dd0c258-edc0-795c-905a-024aba9668ec", "url": "https://www.crunchbase.com/organization/shape-security"}], "linkedin": ["https://www.linkedin.com/company/f5", "https://www.linkedin.com/company/shape-security"], "stage": "Mature", "name": "F5 Networks", "patent_name": "f5 networks", "continent": "North America", "local_logo": "f5_networks.png", "aliases": "F5; F5 Labs; F5 Networks Inc; F5, Inc", "permid_links": [{"text": 4295913368, "url": "https://permid.org/1-4295913368"}, {"text": 5037441999, "url": "https://permid.org/1-5037441999"}], "parent_info": "Nginx, Inc. (Acquired)", "agg_child_info": "Shape Security", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:FFIV", "url": "https://www.google.com/finance/quote/ffiv:nasdaq"}], "market_full": [{"text": "LSE:0IL6", "url": "https://www.google.com/finance/quote/0il6:lse"}, {"text": "HAN:FFV", "url": "https://www.google.com/finance/quote/ffv:han"}, {"text": "BER:FFV", "url": "https://www.google.com/finance/quote/ber:ffv"}, {"text": "DUS:FFV", "url": "https://www.google.com/finance/quote/dus:ffv"}, {"text": "STU:FFV", "url": "https://www.google.com/finance/quote/ffv:stu"}, {"text": "FRA:FFV", "url": "https://www.google.com/finance/quote/ffv:fra"}, {"text": "MEX:FFIV*", "url": "https://www.google.com/finance/quote/ffiv*:mex"}, {"text": "MOEX:FFIV-RM", "url": "https://www.google.com/finance/quote/ffiv-rm:moex"}, {"text": "GER:FFVX", "url": "https://www.google.com/finance/quote/ffvx:ger"}, {"text": "BRN:FFV", "url": "https://www.google.com/finance/quote/brn:ffv"}, {"text": "SAO:F1FI34", "url": "https://www.google.com/finance/quote/f1fi34:sao"}, {"text": "DEU:FFIV", "url": "https://www.google.com/finance/quote/deu:ffiv"}, {"text": "MUN:FFV", "url": "https://www.google.com/finance/quote/ffv:mun"}, {"text": "NASDAQ:FFIV", "url": "https://www.google.com/finance/quote/ffiv:nasdaq"}], "crunchbase_description": "F5 Networks provides application security and delivery tools.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 4713, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 3, 5, 5, 3, 3, 3, 2, 3, 2, 0], "total": 32, "isTopResearch": false, "rank": 700, "fortune500_rank": 251}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 0], "total": 6, "isTopResearch": false, "rank": 805, "fortune500_rank": 220}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1.0, 0, 0], "total": 6.0, "isTopResearch": false, "rank": 682, "fortune500_rank": 198}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 1, 3, 3, 0, 0, 0, 0, 0], "total": 8, "table": null, "rank": 443, "fortune500_rank": 142}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "fortune500_rank": 438}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 0, 10, 30, 30, 0, 0, 0, 0, 0], "total": 80, "table": null, "rank": 443, "fortune500_rank": 142}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 1, 2, 3, 0, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 287, "fortune500_rank": 104}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 1, 0, 0, 3, 1, 0, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 225, "fortune500_rank": 86}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2533, "rank": 192, "fortune500_rank": 115}, "ai_jobs": {"counts": null, "total": 36, "rank": 551, "fortune500_rank": 284}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "F5, Inc. is an American company that specializes in application services and application delivery networking (ADN). F5 is headquartered in Seattle, Washington, with additional development, manufacturing, and administrative offices worldwide.", "wikipedia_link": "https://en.wikipedia.org/wiki/F5_Networks", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2186, "country": "Canada", "website": "https://www.bmo.com/", "crunchbase": {"text": " 7d57a47c-b60a-b14a-9854-9edc54556430", "url": " https://www.crunchbase.com/organization/bank-of-montreal"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bank-of-montreal"], "stage": "Mature", "name": "Bank Of Montreal", "patent_name": "Bank of Montreal", "continent": "North America", "local_logo": null, "aliases": "Bank of Montreal; Bmo Financial Group", "permid_links": [{"text": 4295860596, "url": "https://permid.org/1-4295860596"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BMO", "url": "https://www.google.com/finance/quote/BMO:NYSE"}], "market_full": [{"text": "TOR:BMO.PR.D", "url": "https://www.google.com/finance/quote/BMO.PR.D:TOR"}, {"text": "TOR:BMO.PR.E", "url": "https://www.google.com/finance/quote/BMO.PR.E:TOR"}, {"text": "DUS:BZZ", "url": "https://www.google.com/finance/quote/BZZ:DUS"}, {"text": "NYSE:BMO", "url": "https://www.google.com/finance/quote/BMO:NYSE"}, {"text": "STU:BZZ", "url": "https://www.google.com/finance/quote/BZZ:STU"}, {"text": "TOR:BMO.PR.S", "url": "https://www.google.com/finance/quote/BMO.PR.S:TOR"}, {"text": "FRA:BZZ", "url": "https://www.google.com/finance/quote/BZZ:FRA"}, {"text": "BRN:BZZ", "url": "https://www.google.com/finance/quote/BRN:BZZ"}, {"text": "MEX:BMON", "url": "https://www.google.com/finance/quote/BMON:MEX"}, {"text": "TOR:BMO", "url": "https://www.google.com/finance/quote/BMO:TOR"}, {"text": "TOR:BMO.PR.Y", "url": "https://www.google.com/finance/quote/BMO.PR.Y:TOR"}, {"text": "ASE:BMO", "url": "https://www.google.com/finance/quote/ASE:BMO"}, {"text": "TOR:BMO.PR.F", "url": "https://www.google.com/finance/quote/BMO.PR.F:TOR"}, {"text": "TOR:BMO.PR.C", "url": "https://www.google.com/finance/quote/BMO.PR.C:TOR"}, {"text": "BER:BZZ", "url": "https://www.google.com/finance/quote/BER:BZZ"}, {"text": "NYQ:BMO", "url": "https://www.google.com/finance/quote/BMO:NYQ"}, {"text": "DEU:BMO", "url": "https://www.google.com/finance/quote/BMO:DEU"}, {"text": "PKC:BMQZF", "url": "https://www.google.com/finance/quote/BMQZF:PKC"}, {"text": "MUN:BZZ", "url": "https://www.google.com/finance/quote/BZZ:MUN"}, {"text": "HAN:BZZ", "url": "https://www.google.com/finance/quote/BZZ:HAN"}, {"text": "TOR:BMO.PR.W", "url": "https://www.google.com/finance/quote/BMO.PR.W:TOR"}, {"text": "TOR:BMO.PR.T", "url": "https://www.google.com/finance/quote/BMO.PR.T:TOR"}, {"text": "LSE:0UKH", "url": "https://www.google.com/finance/quote/0UKH:LSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Object (computer science)", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}], "clusters": [{"cluster_id": 1338, "cluster_count": 1}, {"cluster_id": 2505, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 17}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 6, "referenced_count": 5}, {"ref_CSET_id": 161, "referenced_count": 4}, {"ref_CSET_id": 184, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 223, "referenced_count": 3}, {"ref_CSET_id": 72, "referenced_count": 3}, {"ref_CSET_id": 37, "referenced_count": 2}], "tasks": [{"referent": "image_generation", "task_count": 1}, {"referent": "layout_to_image_generation", "task_count": 1}, {"referent": "document_layout_analysis", "task_count": 1}, {"referent": "real_time_semantic_segmentation", "task_count": 1}], "methods": [{"referent": "segnet", "method_count": 1}, {"referent": "convlstm", "method_count": 1}, {"referent": "residual_normal_distribution", "method_count": 1}, {"referent": "word_embeddings", "method_count": 1}, {"referent": "dmage", "method_count": 1}, {"referent": "generative_models", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [10, 3, 7, 1, 5, 4, 2, 3, 3, 3, 1], "total": 42, "isTopResearch": false, "rank": 647, "sp500_rank": 340}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 10, 8, 0], "total": 20, "isTopResearch": false, "rank": 684, "sp500_rank": 285}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 2.0, 10.0, 0, 0], "total": 10.0, "isTopResearch": false, "rank": 535, "sp500_rank": 198}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 3, 2, 7, 0, 0, 0], "total": 13, "table": null, "rank": 372, "sp500_rank": 179}, "ai_patents_growth": {"counts": [], "total": 138.88888888888889, "table": null, "rank": 80, "sp500_rank": 34}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 30, 20, 70, 0, 0, 0], "total": 130, "table": null, "rank": 372, "sp500_rank": 179}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "sp500_rank": 115}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 336, "sp500_rank": 166}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 172, "sp500_rank": 111}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 0, 5, 0, 0, 0], "total": 6, "table": "industry", "rank": 196, "sp500_rank": 128}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 1, 3, 0, 0, 0], "total": 5, "table": "application", "rank": 126, "sp500_rank": 77}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0], "total": 5, "table": "application", "rank": 183, "sp500_rank": 120}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "sp500_rank": 183}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2506, "rank": 193, "sp500_rank": 115}, "ai_jobs": {"counts": null, "total": 292, "rank": 183, "sp500_rank": 119}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 314, "country": "United States", "website": "http://airbnb.com", "crunchbase": {"text": "bcb617c3-9e43-d5b0-1d14-82b795f2642f", "url": "https://www.crunchbase.com/organization/airbnb"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/airbnb"], "stage": "Mature", "name": "Airbnb", "patent_name": "airbnb", "continent": "North America", "local_logo": "airbnb.png", "aliases": "Airbed & Breakfast; Airbnb Inc; Airbnb, Inc", "permid_links": [{"text": 5001437821, "url": "https://permid.org/1-5001437821"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Airbnb is an online community marketplace for people to list, discover, and book accommodations through mobile phones or the internet.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Ranking", "field_count": 2}, {"field_name": "Codebook", "field_count": 2}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Uncertain data", "field_count": 1}, {"field_name": "Online search", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Big data", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}], "clusters": [{"cluster_id": 13618, "cluster_count": 4}, {"cluster_id": 1186, "cluster_count": 2}, {"cluster_id": 68929, "cluster_count": 2}, {"cluster_id": 58210, "cluster_count": 2}, {"cluster_id": 26876, "cluster_count": 1}, {"cluster_id": 1989, "cluster_count": 1}, {"cluster_id": 48855, "cluster_count": 1}, {"cluster_id": 43229, "cluster_count": 1}, {"cluster_id": 14994, "cluster_count": 1}, {"cluster_id": 12542, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 43}, {"ref_CSET_id": 101, "referenced_count": 42}, {"ref_CSET_id": 792, "referenced_count": 13}, {"ref_CSET_id": 87, "referenced_count": 10}, {"ref_CSET_id": 314, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 7}, {"ref_CSET_id": 112, "referenced_count": 5}, {"ref_CSET_id": 787, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 3}], "tasks": [{"referent": "graph_ranking", "task_count": 3}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "blind_image_quality_assessment", "task_count": 2}, {"referent": "advertising", "task_count": 2}, {"referent": "natural_language_processing", "task_count": 2}, {"referent": "entity_disambiguation", "task_count": 1}, {"referent": "recommendation_systems", "task_count": 1}, {"referent": "sentiment_detection", "task_count": 1}, {"referent": "question_answering", "task_count": 1}, {"referent": "knowledge_base", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 4}, {"referent": "k_means_clustering", "method_count": 3}, {"referent": "vqa_models", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "causal_inference", "method_count": 2}, {"referent": "hoc", "method_count": 1}, {"referent": "image_representations", "method_count": 1}, {"referent": "document_embeddings", "method_count": 1}, {"referent": "topic_embeddings", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 3, 4, 8, 13, 27, 17, 21, 12, 7, 0], "total": 114, "isTopResearch": false, "rank": 492}, "ai_publications": {"counts": [0, 0, 1, 3, 4, 5, 4, 5, 2, 0, 0], "total": 24, "isTopResearch": false, "rank": 273}, "ai_publications_growth": {"counts": [], "total": -45.0, "isTopResearch": false, "rank": 1435}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 7, 3, 6, 2, 3, 0], "total": 22, "isTopResearch": false, "rank": 74}, "citation_counts": {"counts": [0, 0, 0, 6, 35, 61, 112, 165, 169, 129, 7], "total": 684, "isTopResearch": false, "rank": 231}, "cv_pubs": {"counts": [0, 0, 1, 2, 0, 0, 0, 0, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 313}, "nlp_pubs": {"counts": [0, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 161}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0.0, 2.0, 8.75, 12.2, 28.0, 33.0, 84.5, 0, 0], "total": 28.5, "isTopResearch": false, "rank": 208}}, "patents": {"ai_patents": {"counts": [1, 4, 2, 3, 2, 4, 5, 6, 2, 0, 0], "total": 29, "table": null, "rank": 273}, "ai_patents_growth": {"counts": [], "total": 48.333333333333336, "table": null, "rank": 218}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 40, 20, 30, 20, 40, 50, 60, 20, 0, 0], "total": 290, "table": null, "rank": 273}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 4, 2, 2, 2, 2, 3, 4, 0, 0, 0], "total": 19, "table": "industry", "rank": 195}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [0, 1, 0, 1, 0, 1, 1, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 225}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 2, 1, 2, 2, 4, 2, 6, 2, 0, 0], "total": 21, "table": "industry", "rank": 99}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 162}, "Planning_and_Scheduling": {"counts": [0, 2, 0, 2, 2, 3, 1, 6, 0, 0, 0], "total": 16, "table": "application", "rank": 93}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2501, "rank": 194}, "ai_jobs": {"counts": null, "total": 370, "rank": 152}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Airbnb, Inc. operates an online marketplace for lodging, primarily homestays for vacation rentals, and tourism activities. It is based in San Francisco, California. The platform is accessible via website and mobile app. Airbnb does not own any of the listed properties; instead, it profits by receiving commission from each booking. The company was founded in 2008 by Brian Chesky, Nathan Blecharczyk and Joe Gebbia. Airbnb is a shortened version of its original name, AirBedandBreakfast.com.", "wikipedia_link": "https://en.wikipedia.org/wiki/Airbnb", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1847, "country": "Japan", "website": "https://group.softbank/en", "crunchbase": {"text": " 43740d90-831d-4c54-a7d1-cc90bf30d948", "url": " https://www.crunchbase.com/organization/softbank-group-international"}, "child_crunchbase": [{"text": "8f7a0af0-5b16-e13c-523d-c89326d867fb", "url": "https://www.crunchbase.com/organization/arm"}], "linkedin": ["https://www.linkedin.com/company/softbankgroup", "https://www.linkedin.com/company/arm"], "stage": "Mature", "name": "Softbank Group", "patent_name": "SoftBank Group", "continent": "Asia", "local_logo": null, "aliases": "SoftBank Group; Softbank Group Corp", "permid_links": [{"text": 4295877094, "url": "https://permid.org/1-4295877094"}, {"text": 4296613277, "url": "https://permid.org/1-4296613277"}], "parent_info": null, "agg_child_info": "Arm", "unagg_child_info": null, "market_filt": [{"text": "TYO:9984", "url": "https://www.google.com/finance/quote/9984:TYO"}], "market_full": [{"text": "LSE:0R15", "url": "https://www.google.com/finance/quote/0R15:LSE"}, {"text": "FRA:SFT", "url": "https://www.google.com/finance/quote/FRA:SFT"}, {"text": "HAM:SFT", "url": "https://www.google.com/finance/quote/HAM:SFT"}, {"text": "MUN:SFTU", "url": "https://www.google.com/finance/quote/MUN:SFTU"}, {"text": "DUS:SFTU", "url": "https://www.google.com/finance/quote/DUS:SFTU"}, {"text": "VIE:SFT", "url": "https://www.google.com/finance/quote/SFT:VIE"}, {"text": "PKL:SFTBF", "url": "https://www.google.com/finance/quote/PKL:SFTBF"}, {"text": "FRA:SFTU", "url": "https://www.google.com/finance/quote/FRA:SFTU"}, {"text": "TYO:9984", "url": "https://www.google.com/finance/quote/9984:TYO"}, {"text": "DUS:SFT", "url": "https://www.google.com/finance/quote/DUS:SFT"}, {"text": "STU:SFTU", "url": "https://www.google.com/finance/quote/SFTU:STU"}, {"text": "MEX:SOFTN", "url": "https://www.google.com/finance/quote/MEX:SOFTN"}, {"text": "BER:SFTU", "url": "https://www.google.com/finance/quote/BER:SFTU"}, {"text": "DEU:9984", "url": "https://www.google.com/finance/quote/9984:DEU"}, {"text": "BER:SFT", "url": "https://www.google.com/finance/quote/BER:SFT"}, {"text": "MUN:SFT", "url": "https://www.google.com/finance/quote/MUN:SFT"}, {"text": "HAN:SFT", "url": "https://www.google.com/finance/quote/HAN:SFT"}, {"text": "PNK:SFTBY", "url": "https://www.google.com/finance/quote/PNK:SFTBY"}, {"text": "DEU:SFTU", "url": "https://www.google.com/finance/quote/DEU:SFTU"}, {"text": "LSE:0L7L", "url": "https://www.google.com/finance/quote/0L7L:LSE"}, {"text": "STU:SFT", "url": "https://www.google.com/finance/quote/SFT:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Noise reduction", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Data pre-processing", "field_count": 1}, {"field_name": "Stereoscopy", "field_count": 1}, {"field_name": "Adversarial system", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Face (geometry)", "field_count": 1}, {"field_name": "Intrusion detection system", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 1621, "cluster_count": 3}, {"cluster_id": 2846, "cluster_count": 3}, {"cluster_id": 3917, "cluster_count": 2}, {"cluster_id": 15284, "cluster_count": 2}, {"cluster_id": 96499, "cluster_count": 2}, {"cluster_id": 5508, "cluster_count": 1}, {"cluster_id": 4816, "cluster_count": 1}, {"cluster_id": 446, "cluster_count": 1}, {"cluster_id": 1206, "cluster_count": 1}, {"cluster_id": 68447, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 58}, {"ref_CSET_id": 163, "referenced_count": 16}, {"ref_CSET_id": 87, "referenced_count": 12}, {"ref_CSET_id": 1847, "referenced_count": 8}, {"ref_CSET_id": 115, "referenced_count": 7}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 127, "referenced_count": 5}, {"ref_CSET_id": 209, "referenced_count": 4}, {"ref_CSET_id": 223, "referenced_count": 3}, {"ref_CSET_id": 6, "referenced_count": 2}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "image_processing", "task_count": 4}, {"referent": "denoising", "task_count": 2}, {"referent": "end_to_end_speech_recognition", "task_count": 2}, {"referent": "autonomous_driving", "task_count": 2}, {"referent": "making_hiring_decisions", "task_count": 2}, {"referent": "image_denoising", "task_count": 2}, {"referent": "motion_detection", "task_count": 2}, {"referent": "multi_modal_person_identification", "task_count": 1}, {"referent": "bias_detection", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "mad_learning", "method_count": 5}, {"referent": "ggs_nns", "method_count": 3}, {"referent": "q_learning", "method_count": 2}, {"referent": "harm_net", "method_count": 2}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "backbone_architectures", "method_count": 2}, {"referent": "contrastive_predictive_coding", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [26, 59, 32, 41, 46, 40, 47, 39, 41, 37, 0], "total": 408, "isTopResearch": false, "rank": 310, "sp500_rank": 203}, "ai_publications": {"counts": [1, 1, 2, 3, 4, 3, 6, 6, 4, 9, 0], "total": 39, "isTopResearch": false, "rank": 209, "sp500_rank": 127}, "ai_publications_growth": {"counts": [], "total": 30.555555555555554, "isTopResearch": false, "rank": 91, "sp500_rank": 47}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 188, "sp500_rank": 92}, "citation_counts": {"counts": [12, 9, 12, 17, 18, 41, 104, 132, 129, 97, 2], "total": 573, "isTopResearch": false, "rank": 252, "sp500_rank": 135}, "cv_pubs": {"counts": [1, 1, 1, 0, 0, 1, 2, 1, 0, 1, 0], "total": 8, "isTopResearch": true, "rank": 229, "sp500_rank": 126}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114}, "citations_per_article": {"counts": [12.0, 9.0, 6.0, 5.666666666666667, 4.5, 13.666666666666666, 17.333333333333332, 22.0, 32.25, 10.777777777777779, 0], "total": 14.692307692307692, "isTopResearch": false, "rank": 411, "sp500_rank": 137}}, "patents": {"ai_patents": {"counts": [2, 7, 1, 4, 8, 46, 40, 54, 16, 2, 0], "total": 180, "table": null, "rank": 110, "sp500_rank": 75}, "ai_patents_growth": {"counts": [], "total": 165.65217391304347, "table": null, "rank": 61, "sp500_rank": 26}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [20, 70, 10, 40, 80, 460, 400, 540, 160, 20, 0], "total": 1800, "table": null, "rank": 110, "sp500_rank": 75}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158, "sp500_rank": 91}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 3, 2, 2, 0, 0, 0], "total": 7, "table": "industry", "rank": 112, "sp500_rank": 79}, "Transportation": {"counts": [0, 1, 0, 0, 0, 3, 2, 2, 0, 0, 0], "total": 8, "table": "industry", "rank": 107, "sp500_rank": 79}, "Industrial_and_Manufacturing": {"counts": [0, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 131, "sp500_rank": 89}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 3, 24, 25, 29, 11, 0, 0], "total": 94, "table": "industry", "rank": 78, "sp500_rank": 56}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], "total": 3, "table": null, "rank": 141, "sp500_rank": 91}, "Telecommunications": {"counts": [2, 2, 1, 0, 0, 8, 11, 8, 1, 0, 0], "total": 33, "table": "industry", "rank": 99, "sp500_rank": 67}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 252, "sp500_rank": 151}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 45, "sp500_rank": 29}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 4, "table": "application", "rank": 127, "sp500_rank": 76}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 2, 1, 1, 1, 0, 0], "total": 6, "table": "application", "rank": 109, "sp500_rank": 68}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 244, "sp500_rank": 152}, "Control": {"counts": [0, 1, 0, 0, 0, 3, 6, 1, 1, 0, 0], "total": 12, "table": "application", "rank": 124, "sp500_rank": 88}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [1, 3, 1, 3, 2, 18, 12, 12, 6, 0, 0], "total": 58, "table": "application", "rank": 105, "sp500_rank": 71}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 5, 5, 0, 0, 0, 0], "total": 11, "table": "application", "rank": 105, "sp500_rank": 78}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2464, "rank": 195, "sp500_rank": 116}, "ai_jobs": {"counts": null, "total": 79, "rank": 384, "sp500_rank": 200}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 694, "country": "United States", "website": "https://www.snap.com", "crunchbase": {"text": "e6178a34-5054-6449-8d77-5c28702d0dab", "url": "https://www.crunchbase.com/organization/snapchat"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/snap-inc-co"], "stage": "Mature", "name": "Snap Inc.", "patent_name": "snap inc.", "continent": "North America", "local_logo": "snap_inc.png", "aliases": "Snap Inc; Snap. Inc; Snapchat; Snapchat Inc", "permid_links": [{"text": 5038065579, "url": "https://permid.org/1-5038065579"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SNAP", "url": "https://www.google.com/finance/quote/nyse:snap"}], "market_full": [{"text": "MOEX:SNAP-RM", "url": "https://www.google.com/finance/quote/moex:snap-rm"}, {"text": "BMV:SNAP", "url": "https://www.google.com/finance/quote/bmv:snap"}, {"text": "MUN:1SI", "url": "https://www.google.com/finance/quote/1si:mun"}, {"text": "VIE:SNAP", "url": "https://www.google.com/finance/quote/snap:vie"}, {"text": "BCBA:1SI", "url": "https://www.google.com/finance/quote/1si:bcba"}, {"text": "NYSE:SNAP", "url": "https://www.google.com/finance/quote/nyse:snap"}, {"text": "FRA:1SI", "url": "https://www.google.com/finance/quote/1si:fra"}, {"text": "XETR:1SI", "url": "https://www.google.com/finance/quote/1si:xetr"}], "crunchbase_description": "Snap operates as a privately-owned multinational camera company focusing on multinational technology and social media.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 8}, {"field_name": "Deep learning", "field_count": 7}, {"field_name": "Face (geometry)", "field_count": 7}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Segmentation", "field_count": 4}, {"field_name": "Rendering (computer graphics)", "field_count": 3}, {"field_name": "Reinforcement learning", "field_count": 3}, {"field_name": "Pose", "field_count": 3}, {"field_name": "Object (computer science)", "field_count": 3}, {"field_name": "Sentiment analysis", "field_count": 3}], "clusters": [{"cluster_id": 1338, "cluster_count": 7}, {"cluster_id": 1989, "cluster_count": 7}, {"cluster_id": 28601, "cluster_count": 6}, {"cluster_id": 3446, "cluster_count": 5}, {"cluster_id": 1206, "cluster_count": 5}, {"cluster_id": 34162, "cluster_count": 5}, {"cluster_id": 9717, "cluster_count": 4}, {"cluster_id": 31316, "cluster_count": 4}, {"cluster_id": 56285, "cluster_count": 3}, {"cluster_id": 7095, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 495}, {"ref_CSET_id": 163, "referenced_count": 411}, {"ref_CSET_id": 87, "referenced_count": 225}, {"ref_CSET_id": 6, "referenced_count": 220}, {"ref_CSET_id": 184, "referenced_count": 147}, {"ref_CSET_id": 694, "referenced_count": 117}, {"ref_CSET_id": 115, "referenced_count": 62}, {"ref_CSET_id": 245, "referenced_count": 52}, {"ref_CSET_id": 223, "referenced_count": 44}, {"ref_CSET_id": 127, "referenced_count": 42}], "tasks": [{"referent": "classification", "task_count": 16}, {"referent": "computer_vision", "task_count": 7}, {"referent": "image_manipulation", "task_count": 6}, {"referent": "classification_tasks", "task_count": 5}, {"referent": "retrieval", "task_count": 5}, {"referent": "video_generation", "task_count": 4}, {"referent": "anomaly_detection", "task_count": 4}, {"referent": "single_image_super_resolution", "task_count": 4}, {"referent": "action_understanding", "task_count": 4}, {"referent": "keypoint_detection", "task_count": 4}], "methods": [{"referent": "3d_representations", "method_count": 25}, {"referent": "recurrent_neural_networks", "method_count": 18}, {"referent": "convolutional_neural_networks", "method_count": 17}, {"referent": "generative_models", "method_count": 10}, {"referent": "vqa_models", "method_count": 10}, {"referent": "generative_adversarial_networks", "method_count": 10}, {"referent": "1d_cnn", "method_count": 7}, {"referent": "symbolic_deep_learning", "method_count": 6}, {"referent": "autoencoder", "method_count": 6}, {"referent": "deep_belief_network", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 14, 25, 24, 43, 45, 50, 38, 63, 0], "total": 302, "isTopResearch": false, "rank": 356}, "ai_publications": {"counts": [0, 0, 8, 11, 13, 29, 26, 32, 26, 18, 0], "total": 163, "isTopResearch": false, "rank": 88}, "ai_publications_growth": {"counts": [], "total": -8.814102564102564, "isTopResearch": false, "rank": 1258}, "ai_pubs_top_conf": {"counts": [0, 0, 3, 4, 9, 12, 17, 8, 11, 10, 0], "total": 74, "isTopResearch": false, "rank": 34}, "citation_counts": {"counts": [0, 1, 31, 147, 388, 834, 1625, 2522, 3450, 2380, 86], "total": 11464, "isTopResearch": false, "rank": 45}, "cv_pubs": {"counts": [0, 0, 8, 8, 9, 19, 14, 20, 18, 11, 0], "total": 107, "isTopResearch": true, "rank": 51}, "nlp_pubs": {"counts": [0, 0, 1, 0, 1, 1, 1, 4, 0, 1, 0], "total": 9, "isTopResearch": true, "rank": 99}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 3.875, 13.363636363636363, 29.846153846153847, 28.75862068965517, 62.5, 78.8125, 132.69230769230768, 132.22222222222223, 0], "total": 70.33128834355828, "isTopResearch": false, "rank": 59}}, "patents": {"ai_patents": {"counts": [0, 1, 2, 7, 28, 25, 31, 36, 12, 0, 0], "total": 142, "table": null, "rank": 132}, "ai_patents_growth": {"counts": [], "total": 9.804915514592935, "table": null, "rank": 337}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 20, 70, 280, 250, 310, 360, 120, 0, 0], "total": 1420, "table": null, "rank": 132}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0], "total": 3, "table": null, "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 165}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 60}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 1, 1, 4, 13, 10, 15, 10, 4, 0, 0], "total": 58, "table": "industry", "rank": 104}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 1, 2, 1, 12, 8, 15, 13, 2, 0, 0], "total": 54, "table": "industry", "rank": 73}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 1, 0, 4, 2, 2, 2, 2, 0, 0], "total": 13, "table": "industry", "rank": 12}, "Business": {"counts": [0, 0, 1, 0, 2, 0, 3, 3, 1, 0, 0], "total": 10, "table": "industry", "rank": 149}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 0, 2, 1, 1, 0, 0], "total": 5, "table": "industry", "rank": 29}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 3, 2, 2, 2, 0, 0], "total": 10, "table": "application", "rank": 81}, "Knowledge_Representation": {"counts": [0, 0, 1, 2, 2, 0, 3, 0, 0, 0, 0], "total": 8, "table": "application", "rank": 88}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 214}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 1, 1, 7, 16, 17, 22, 30, 10, 0, 0], "total": 104, "table": "application", "rank": 64}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 243}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2437, "rank": 196}, "ai_jobs": {"counts": null, "total": 357, "rank": 156}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Snap Inc. is an American camera and social media company, founded on September 16, 2011, by Evan Spiegel, Bobby Murphy, and Reggie Brown based in Santa Monica, California. The company developed and maintains a number of technological products and services, namely Snapchat, Spectacles, and Bitmoji. The company was originally named Snapchat Inc. upon its inception, but it was rebranded on September 24, 2016, as Snap Inc. in order to include the Spectacles product under a single company.", "wikipedia_link": "https://en.wikipedia.org/wiki/Snap_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2306, "country": "United States", "website": "https://www.equinix.com/", "crunchbase": {"text": "e5c00cbd-ff5b-5600-d13a-6abc1181d1ed", "url": "https://www.crunchbase.com/organization/equinix"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/equinix"], "stage": "Mature", "name": "Equinix", "patent_name": "equinix", "continent": "North America", "local_logo": "equinix.png", "aliases": "Equinix, Inc", "permid_links": [{"text": 4295900491, "url": "https://permid.org/1-4295900491"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:EQIX", "url": "https://www.google.com/finance/quote/eqix:nasdaq"}], "market_full": [{"text": "FRA:EQN2", "url": "https://www.google.com/finance/quote/eqn2:fra"}, {"text": "STU:EQN2", "url": "https://www.google.com/finance/quote/eqn2:stu"}, {"text": "DUS:EQN2", "url": "https://www.google.com/finance/quote/dus:eqn2"}, {"text": "MUN:EQN2", "url": "https://www.google.com/finance/quote/eqn2:mun"}, {"text": "SAO:EQIX34", "url": "https://www.google.com/finance/quote/eqix34:sao"}, {"text": "BER:EQN2", "url": "https://www.google.com/finance/quote/ber:eqn2"}, {"text": "BRN:EQN2", "url": "https://www.google.com/finance/quote/brn:eqn2"}, {"text": "VIE:EQIX", "url": "https://www.google.com/finance/quote/eqix:vie"}, {"text": "HAN:EQN2", "url": "https://www.google.com/finance/quote/eqn2:han"}, {"text": "DEU:EQN2", "url": "https://www.google.com/finance/quote/deu:eqn2"}, {"text": "MEX:EQIX*", "url": "https://www.google.com/finance/quote/eqix*:mex"}, {"text": "LSE:0II4", "url": "https://www.google.com/finance/quote/0ii4:lse"}, {"text": "NASDAQ:EQIX", "url": "https://www.google.com/finance/quote/eqix:nasdaq"}], "crunchbase_description": "Equinix is an internet company that provides data center services for companies, businesses, and organizations.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 2, 0, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105, "fortune500_rank": 368}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 2, 0, 2, 1, 0, 0, 0], "total": 7, "table": null, "rank": 464, "fortune500_rank": 148}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561, "fortune500_rank": 450}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 20, 0, 20, 10, 0, 0, 0], "total": 70, "table": null, "rank": 464, "fortune500_rank": 148}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 2, 0, 2, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 305, "fortune500_rank": 110}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 2, 2, 0, 1, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 225, "fortune500_rank": 86}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 119, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2433, "rank": 197, "fortune500_rank": 116}, "ai_jobs": {"counts": null, "total": 100, "rank": 334, "fortune500_rank": 180}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Equinix, Inc. is an American multinational company headquartered in Redwood City, California, that specializes in Internet connection and data centers. The company is a leader in global colocation data center market share, with 210 data centers in 25 countries on five continents.", "wikipedia_link": "https://en.wikipedia.org/wiki/Equinix", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1528, "country": "Singapore", "website": "https://www.grab.com", "crunchbase": {"text": "a7682476-8a83-dbcf-73dc-41a841ef850e", "url": "https://www.crunchbase.com/organization/grabtaxi"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/grabapp"], "stage": "Mature", "name": "Grab", "patent_name": "grab", "continent": "Asia", "local_logo": "grab.png", "aliases": "Grab Holdings Inc", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Grab is an application that provides transportation, logistics, and financial services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}, {"field_name": "Ground truth", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Boosting (machine learning)", "field_count": 1}, {"field_name": "Orientation (computer vision)", "field_count": 1}, {"field_name": "Smoothing", "field_count": 1}], "clusters": [{"cluster_id": 49127, "cluster_count": 5}, {"cluster_id": 635, "cluster_count": 3}, {"cluster_id": 2505, "cluster_count": 2}, {"cluster_id": 15659, "cluster_count": 1}, {"cluster_id": 15028, "cluster_count": 1}, {"cluster_id": 1027, "cluster_count": 1}, {"cluster_id": 11891, "cluster_count": 1}, {"cluster_id": 48351, "cluster_count": 1}, {"cluster_id": 66278, "cluster_count": 1}, {"cluster_id": 1989, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 21}, {"ref_CSET_id": 101, "referenced_count": 19}, {"ref_CSET_id": 87, "referenced_count": 17}, {"ref_CSET_id": 1528, "referenced_count": 13}, {"ref_CSET_id": 21, "referenced_count": 7}, {"ref_CSET_id": 37, "referenced_count": 4}, {"ref_CSET_id": 805, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 223, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 3}], "tasks": [{"referent": "recommendation", "task_count": 2}, {"referent": "traffic_prediction", "task_count": 2}, {"referent": "road_segmentation", "task_count": 2}, {"referent": "image_matching", "task_count": 2}, {"referent": "network_pruning", "task_count": 2}, {"referent": "social_network_analysis", "task_count": 1}, {"referent": "efficient_exploration", "task_count": 1}, {"referent": "low_resource_named_entity_recognition", "task_count": 1}, {"referent": "automatic_machine_learning_model_selection", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "generative_adversarial_networks", "method_count": 2}, {"referent": "gan", "method_count": 2}, {"referent": "graph_convolutional_networks", "method_count": 2}, {"referent": "dueling_network", "method_count": 2}, {"referent": "fcn", "method_count": 2}, {"referent": "sttp", "method_count": 2}, {"referent": "3d_representations", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "v_trace", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 4, 0, 1, 2, 6, 8, 10, 8, 5, 0], "total": 45, "isTopResearch": false, "rank": 641}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 2, 3, 6, 5, 2, 0], "total": 19, "isTopResearch": false, "rank": 311}, "ai_publications_growth": {"counts": [], "total": 7.777777777777776, "isTopResearch": false, "rank": 169}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [0, 0, 0, 0, 4, 2, 13, 39, 59, 62, 3], "total": 182, "isTopResearch": false, "rank": 398}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 0, 1, 3, 2, 1, 0], "total": 8, "isTopResearch": true, "rank": 229}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 1.0, 4.333333333333333, 6.5, 11.8, 31.0, 0], "total": 9.578947368421053, "isTopResearch": false, "rank": 555}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 2, 12, 7, 0, 0], "total": 22, "table": null, "rank": 307}, "ai_patents_growth": {"counts": [], "total": 300.0, "table": null, "rank": 24}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 20, 120, 70, 0, 0], "total": 220, "table": null, "rank": 307}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 6, 2, 0, 0], "total": 9, "table": "industry", "rank": 102}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0], "total": 4, "table": "industry", "rank": 363}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 1, 5, 2, 0, 0], "total": 9, "table": "industry", "rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 1, 5, 1, 0, 0], "total": 8, "table": "industry", "rank": 168}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 1, 5, 1, 0, 0], "total": 8, "table": "application", "rank": 143}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": "application", "rank": 239}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 6, 2, 0, 0], "total": 9, "table": "application", "rank": 128}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2423, "rank": 198}, "ai_jobs": {"counts": null, "total": 525, "rank": 107}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Grab, Southeast Asia\u2019s largest superapp that connects millions of consumers to millions of drivers, merchants, and businesses. Grab is taking on the largest problems that affect the region, including access inequality, outdated infrastructure, and income disparity.", "company_site_link": "https://www.grab.com/sg/brand-story/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2010, "country": "Denmark", "website": "https://www.maersk.com/", "crunchbase": {"text": "58b21ff3-f198-ac9f-82bf-6d40f03d973c", "url": "https://www.crunchbase.com/organization/maersk"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/maersk-group"], "stage": "Mature", "name": "AP Moller - Maersk A/S", "patent_name": "ap moller - maersk a/s", "continent": "Europe", "local_logo": "ap_moller_-_maersk_a_s.png", "aliases": "Maersk", "permid_links": [{"text": 5076360326, "url": "https://permid.org/1-5076360326"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "VIE:MRSA", "url": "https://www.google.com/finance/quote/mrsa:vie"}, {"text": "BER:DP4B", "url": "https://www.google.com/finance/quote/ber:dp4b"}, {"text": "GER:MAERSKX,B", "url": "https://www.google.com/finance/quote/ger:maerskx,b"}, {"text": "EBT:MAERBC", "url": "https://www.google.com/finance/quote/ebt:maerbc"}, {"text": "PKL:AMKAF", "url": "https://www.google.com/finance/quote/amkaf:pkl"}, {"text": "HAN:DP4B", "url": "https://www.google.com/finance/quote/dp4b:han"}, {"text": "MUN:DP4A", "url": "https://www.google.com/finance/quote/dp4a:mun"}, {"text": "MUN:DP4B", "url": "https://www.google.com/finance/quote/dp4b:mun"}, {"text": "DUS:DP4A", "url": "https://www.google.com/finance/quote/dp4a:dus"}, {"text": "BER:DP4A", "url": "https://www.google.com/finance/quote/ber:dp4a"}, {"text": "FRA:DP4A", "url": "https://www.google.com/finance/quote/dp4a:fra"}, {"text": "BRN:DP4B", "url": "https://www.google.com/finance/quote/brn:dp4b"}, {"text": "STU:DP4A", "url": "https://www.google.com/finance/quote/dp4a:stu"}, {"text": "CPH:MAERSK B", "url": "https://www.google.com/finance/quote/cph:maersk b"}, {"text": "EBT:MAERAC", "url": "https://www.google.com/finance/quote/ebt:maerac"}, {"text": "BRN:DP4A", "url": "https://www.google.com/finance/quote/brn:dp4a"}, {"text": "DEU:DP4A", "url": "https://www.google.com/finance/quote/deu:dp4a"}, {"text": "DEU:MAERSKB", "url": "https://www.google.com/finance/quote/deu:maerskb"}, {"text": "DEU:DP4H", "url": "https://www.google.com/finance/quote/deu:dp4h"}, {"text": "LSE:0O76", "url": "https://www.google.com/finance/quote/0o76:lse"}, {"text": "FRA:DP4B", "url": "https://www.google.com/finance/quote/dp4b:fra"}, {"text": "HAM:DP4B", "url": "https://www.google.com/finance/quote/dp4b:ham"}, {"text": "GER:DP4X.A", "url": "https://www.google.com/finance/quote/dp4x.a:ger"}, {"text": "DUS:DP4B", "url": "https://www.google.com/finance/quote/dp4b:dus"}, {"text": "BER:DP4H", "url": "https://www.google.com/finance/quote/ber:dp4h"}, {"text": "FRA:DP4H", "url": "https://www.google.com/finance/quote/dp4h:fra"}, {"text": "PKL:AMKBF", "url": "https://www.google.com/finance/quote/amkbf:pkl"}, {"text": "OTC:AMKBF", "url": "https://www.google.com/finance/quote/amkbf:otc"}, {"text": "MEX:MAERSKBN", "url": "https://www.google.com/finance/quote/maerskbn:mex"}, {"text": "PKL:AMKBY", "url": "https://www.google.com/finance/quote/amkby:pkl"}, {"text": "LSE:0O77", "url": "https://www.google.com/finance/quote/0o77:lse"}, {"text": "CPH:MAERSK A", "url": "https://www.google.com/finance/quote/cph:maersk a"}, {"text": "STU:DP4B", "url": "https://www.google.com/finance/quote/dp4b:stu"}, {"text": "VIE:MRSK", "url": "https://www.google.com/finance/quote/mrsk:vie"}], "crunchbase_description": "Maersk is an integrated container logistics company working to connect and simplify its customers\u2019 supply chains.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 4}, {"field_name": "Feature selection", "field_count": 2}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Evolutionary computation", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}, {"field_name": "Knowledge engineering", "field_count": 1}, {"field_name": "Pixel", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 6953, "cluster_count": 4}, {"cluster_id": 14142, "cluster_count": 4}, {"cluster_id": 2418, "cluster_count": 1}, {"cluster_id": 5743, "cluster_count": 1}, {"cluster_id": 34185, "cluster_count": 1}, {"cluster_id": 22816, "cluster_count": 1}, {"cluster_id": 48024, "cluster_count": 1}, {"cluster_id": 87614, "cluster_count": 1}, {"cluster_id": 835, "cluster_count": 1}, {"cluster_id": 64410, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 13}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 2010, "referenced_count": 3}, {"ref_CSET_id": 785, "referenced_count": 2}], "tasks": [{"referent": "robots", "task_count": 11}, {"referent": "classification", "task_count": 4}, {"referent": "precision_agriculture", "task_count": 4}, {"referent": "developmental_learning", "task_count": 3}, {"referent": "locomotion", "task_count": 2}, {"referent": "image_analysis", "task_count": 2}, {"referent": "point_processes", "task_count": 2}, {"referent": "decision_making", "task_count": 2}, {"referent": "software_defect_prediction", "task_count": 1}, {"referent": "steering_control", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "amsbound", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "object_detection_models", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [59, 74, 71, 67, 72, 63, 65, 55, 31, 1, 0], "total": 558, "isTopResearch": false, "rank": 265, "sp500_rank": 177}, "ai_publications": {"counts": [4, 8, 3, 5, 2, 3, 4, 2, 1, 0, 0], "total": 32, "isTopResearch": false, "rank": 230, "sp500_rank": 142}, "ai_publications_growth": {"counts": [], "total": -66.66666666666667, "isTopResearch": false, "rank": 1518, "sp500_rank": 433}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99}, "citation_counts": {"counts": [13, 19, 12, 12, 18, 18, 24, 33, 44, 25, 0], "total": 218, "isTopResearch": false, "rank": 379, "sp500_rank": 174}, "cv_pubs": {"counts": [1, 0, 0, 2, 1, 1, 0, 2, 0, 0, 0], "total": 7, "isTopResearch": true, "rank": 252, "sp500_rank": 131}, "nlp_pubs": {"counts": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [2, 5, 1, 2, 0, 1, 1, 1, 0, 0, 0], "total": 13, "isTopResearch": true, "rank": 100, "sp500_rank": 74}, "citations_per_article": {"counts": [3.25, 2.375, 4.0, 2.4, 9.0, 6.0, 6.0, 16.5, 44.0, 0, 0], "total": 6.8125, "isTopResearch": false, "rank": 649, "sp500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2423, "rank": 198, "sp500_rank": 117}, "ai_jobs": {"counts": null, "total": 405, "rank": 140, "sp500_rank": 92}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "From the farm to your refrigerator, or the factory to your wardrobe, A.P. Moller - Maersk is developing solutions that meet customer needs from one end of the supply chain to the other.", "company_site_link": "https://www.maersk.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 564, "country": "United States", "website": "http://www.mathworks.com", "crunchbase": {"text": "fbce0930-7361-a19b-38fb-44753a1dd637", "url": "https://www.crunchbase.com/organization/mathworks"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-mathworks_2"], "stage": "Unknown", "name": "MathWorks", "patent_name": "mathworks", "continent": "North America", "local_logo": "mathworks.png", "aliases": "Mathworks Inc; Mathworks, Inc; The Mathworks", "permid_links": [{"text": 4296572519, "url": "https://permid.org/1-4296572519"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Mathworks is a producer of MATLAB, a program for data and statistical analysis.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 5}, {"field_name": "Robot", "field_count": 3}, {"field_name": "Haptic technology", "field_count": 3}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Eye tracking", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}, {"field_name": "Linear discriminant analysis", "field_count": 2}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "Inference", "field_count": 2}, {"field_name": "Genetic algorithm", "field_count": 1}], "clusters": [{"cluster_id": 2480, "cluster_count": 3}, {"cluster_id": 23319, "cluster_count": 2}, {"cluster_id": 2410, "cluster_count": 2}, {"cluster_id": 53068, "cluster_count": 2}, {"cluster_id": 3842, "cluster_count": 2}, {"cluster_id": 18204, "cluster_count": 2}, {"cluster_id": 40263, "cluster_count": 2}, {"cluster_id": 1621, "cluster_count": 2}, {"cluster_id": 7420, "cluster_count": 2}, {"cluster_id": 4583, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 43}, {"ref_CSET_id": 163, "referenced_count": 30}, {"ref_CSET_id": 87, "referenced_count": 13}, {"ref_CSET_id": 115, "referenced_count": 11}, {"ref_CSET_id": 564, "referenced_count": 8}, {"ref_CSET_id": 184, "referenced_count": 6}, {"ref_CSET_id": 790, "referenced_count": 5}, {"ref_CSET_id": 949, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 5}, {"ref_CSET_id": 127, "referenced_count": 5}], "tasks": [{"referent": "classification", "task_count": 16}, {"referent": "autonomous_vehicles", "task_count": 10}, {"referent": "steering_control", "task_count": 7}, {"referent": "autonomous_driving", "task_count": 6}, {"referent": "feature_selection", "task_count": 5}, {"referent": "mobile_robot", "task_count": 5}, {"referent": "decision_making", "task_count": 5}, {"referent": "safety_perception_recognition", "task_count": 5}, {"referent": "robots", "task_count": 5}, {"referent": "motion_planning", "task_count": 5}], "methods": [{"referent": "double_q_learning", "method_count": 9}, {"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "vqa_models", "method_count": 8}, {"referent": "meta_learning_algorithms", "method_count": 8}, {"referent": "optimization", "method_count": 8}, {"referent": "convolutional_neural_networks", "method_count": 6}, {"referent": "auto_classifier", "method_count": 6}, {"referent": "griffin_lim_algorithm", "method_count": 5}, {"referent": "contrastive_predictive_coding", "method_count": 5}, {"referent": "self_supervised_learning", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [74, 54, 59, 61, 47, 64, 50, 67, 64, 42, 0], "total": 582, "isTopResearch": false, "rank": 254}, "ai_publications": {"counts": [6, 11, 6, 11, 7, 10, 10, 13, 18, 3, 0], "total": 95, "isTopResearch": false, "rank": 124}, "ai_publications_growth": {"counts": [], "total": -4.957264957264958, "isTopResearch": false, "rank": 1231}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 3, 0, 2, 0, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 140}, "citation_counts": {"counts": [25, 54, 87, 129, 161, 205, 308, 315, 360, 277, 11], "total": 1932, "isTopResearch": false, "rank": 142}, "cv_pubs": {"counts": [3, 3, 0, 2, 1, 3, 4, 3, 1, 0, 0], "total": 20, "isTopResearch": true, "rank": 139}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [2, 6, 5, 3, 4, 2, 1, 4, 8, 1, 0], "total": 36, "isTopResearch": true, "rank": 56}, "citations_per_article": {"counts": [4.166666666666667, 4.909090909090909, 14.5, 11.727272727272727, 23.0, 20.5, 30.8, 24.23076923076923, 20.0, 92.33333333333333, 0], "total": 20.33684210526316, "isTopResearch": false, "rank": 308}}, "patents": {"ai_patents": {"counts": [2, 0, 2, 2, 1, 3, 2, 1, 0, 0, 0], "total": 13, "table": null, "rank": 372}, "ai_patents_growth": {"counts": [], "total": 38.888888888888886, "table": null, "rank": 246}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [20, 0, 20, 20, 10, 30, 20, 10, 0, 0, 0], "total": 130, "table": null, "rank": 372}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [1, 0, 1, 2, 0, 1, 0, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 305}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2418, "rank": 200}, "ai_jobs": {"counts": null, "total": 61, "rank": 438}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "MathWorks is an American privately held corporation that specializes in mathematical computing software. Its major products include MATLAB and Simulink, which support data analysis and simulation.", "wikipedia_link": "https://en.wikipedia.org/wiki/MathWorks", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1814, "country": "United States", "website": "https://www.fanniemae.com/", "crunchbase": {"text": " dabfe86a-8069-d9e9-bdc6-6e7bd33c0b5f ", "url": " https://www.crunchbase.com/organization/fannie-mae "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fanniemae"], "stage": "Mature", "name": "Fannie Mae", "patent_name": "Fannie Mae", "continent": "North America", "local_logo": null, "aliases": "Fannie Mae; Federal National Mortgage Association", "permid_links": [{"text": 4295903973, "url": "https://permid.org/1-4295903973"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "FRA:FNM2", "url": "https://www.google.com/finance/quote/FNM2:FRA"}, {"text": "BER:FNM2", "url": "https://www.google.com/finance/quote/BER:FNM2"}, {"text": "STU:FNM", "url": "https://www.google.com/finance/quote/FNM:STU"}, {"text": "MUN:FNM", "url": "https://www.google.com/finance/quote/FNM:MUN"}, {"text": "BER:FNM", "url": "https://www.google.com/finance/quote/BER:FNM"}, {"text": "DUS:FNM", "url": "https://www.google.com/finance/quote/DUS:FNM"}, {"text": "DEU:FNM2", "url": "https://www.google.com/finance/quote/DEU:FNM2"}, {"text": "PKC:FNMFO", "url": "https://www.google.com/finance/quote/FNMFO:PKC"}, {"text": "BUE:FNMA3", "url": "https://www.google.com/finance/quote/BUE:FNMA3"}, {"text": "LSE:01L0", "url": "https://www.google.com/finance/quote/01L0:LSE"}, {"text": "PKC:FNMFM", "url": "https://www.google.com/finance/quote/FNMFM:PKC"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Ensemble learning", "field_count": 1}], "clusters": [{"cluster_id": 14, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [14, 12, 9, 7, 14, 10, 20, 16, 10, 4, 0], "total": 116, "isTopResearch": false, "rank": 488, "sp500_rank": 286}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 4, 11, 0], "total": 15, "isTopResearch": false, "rank": 717, "sp500_rank": 297}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 4.0, 0, 0], "total": 15.0, "isTopResearch": false, "rank": 404, "sp500_rank": 135}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 20, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "sp500_rank": 134}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2411, "rank": 201, "sp500_rank": 118}, "ai_jobs": {"counts": null, "total": 268, "rank": 198, "sp500_rank": 128}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2479, "country": "United States", "website": "https://www.rockwellautomation.com/", "crunchbase": {"text": "ed73eabc-f399-4c58-aef0-60cc0c02ad33", "url": "https://www.crunchbase.com/organization/rockwell-automation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/rockwell-automation"], "stage": "Mature", "name": "Rockwell Automation Inc.", "patent_name": "rockwell automation inc.", "continent": "North America", "local_logo": "rockwell_automation_inc.png", "aliases": "Ra; Rockwell Automation; Rockwell Automation Inc; Rockwell Automation, Inc", "permid_links": [{"text": 4295904837, "url": "https://permid.org/1-4295904837"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ROK", "url": "https://www.google.com/finance/quote/nyse:rok"}], "market_full": [{"text": "ASE:ROK", "url": "https://www.google.com/finance/quote/ase:rok"}, {"text": "BRN:RWL", "url": "https://www.google.com/finance/quote/brn:rwl"}, {"text": "VIE:ROK", "url": "https://www.google.com/finance/quote/rok:vie"}, {"text": "GER:RWLX", "url": "https://www.google.com/finance/quote/ger:rwlx"}, {"text": "FRA:RWL", "url": "https://www.google.com/finance/quote/fra:rwl"}, {"text": "NYSE:ROK", "url": "https://www.google.com/finance/quote/nyse:rok"}, {"text": "LSE:0KXA", "url": "https://www.google.com/finance/quote/0kxa:lse"}, {"text": "HAN:RWL", "url": "https://www.google.com/finance/quote/han:rwl"}, {"text": "NYQ:ROK", "url": "https://www.google.com/finance/quote/nyq:rok"}, {"text": "MCX:ROK-RM", "url": "https://www.google.com/finance/quote/mcx:rok-rm"}, {"text": "DUS:RWL", "url": "https://www.google.com/finance/quote/dus:rwl"}, {"text": "HAM:RWL", "url": "https://www.google.com/finance/quote/ham:rwl"}, {"text": "SAO:R1OK34", "url": "https://www.google.com/finance/quote/r1ok34:sao"}, {"text": "MEX:ROK*", "url": "https://www.google.com/finance/quote/mex:rok*"}, {"text": "MUN:RWL", "url": "https://www.google.com/finance/quote/mun:rwl"}, {"text": "STU:RWL", "url": "https://www.google.com/finance/quote/rwl:stu"}, {"text": "DEU:RWL", "url": "https://www.google.com/finance/quote/deu:rwl"}, {"text": "BER:RWL", "url": "https://www.google.com/finance/quote/ber:rwl"}], "crunchbase_description": "Rockwell Automation deals with industrial automation investment and helps other firms with strategies for their automation technology.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Anomaly detection", "field_count": 2}, {"field_name": "Big data", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Inertial measurement unit", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Similarity measure", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}, {"field_name": "Visualization", "field_count": 1}, {"field_name": "Semantic Web", "field_count": 1}, {"field_name": "Ontology (information science)", "field_count": 1}], "clusters": [{"cluster_id": 2996, "cluster_count": 13}, {"cluster_id": 57530, "cluster_count": 2}, {"cluster_id": 14915, "cluster_count": 1}, {"cluster_id": 75288, "cluster_count": 1}, {"cluster_id": 5290, "cluster_count": 1}, {"cluster_id": 1259, "cluster_count": 1}, {"cluster_id": 61699, "cluster_count": 1}, {"cluster_id": 631, "cluster_count": 1}, {"cluster_id": 10764, "cluster_count": 1}, {"cluster_id": 1154, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2479, "referenced_count": 22}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 783, "referenced_count": 1}, {"ref_CSET_id": 2292, "referenced_count": 1}, {"ref_CSET_id": 1967, "referenced_count": 1}, {"ref_CSET_id": 3114, "referenced_count": 1}, {"ref_CSET_id": 798, "referenced_count": 1}], "tasks": [{"referent": "fault_detection", "task_count": 4}, {"referent": "system_identification", "task_count": 4}, {"referent": "developmental_learning", "task_count": 3}, {"referent": "q_learning", "task_count": 3}, {"referent": "network_pruning", "task_count": 3}, {"referent": "steering_control", "task_count": 2}, {"referent": "code_generation", "task_count": 2}, {"referent": "visual_localization", "task_count": 2}, {"referent": "disease_detection", "task_count": 2}, {"referent": "clustering", "task_count": 2}], "methods": [{"referent": "vqa_models", "method_count": 8}, {"referent": "backbone_architectures", "method_count": 2}, {"referent": "clustering", "method_count": 2}, {"referent": "nt_xent", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "sttp", "method_count": 1}, {"referent": "svd_parameterization", "method_count": 1}, {"referent": "cgnn", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "normalization", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [51, 76, 61, 59, 61, 73, 51, 80, 30, 20, 0], "total": 562, "isTopResearch": false, "rank": 262, "fortune500_rank": 100}, "ai_publications": {"counts": [5, 2, 1, 1, 1, 2, 3, 3, 1, 0, 0], "total": 19, "isTopResearch": false, "rank": 311, "fortune500_rank": 95}, "ai_publications_growth": {"counts": [], "total": -55.555555555555564, "isTopResearch": false, "rank": 1505, "fortune500_rank": 431}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [50, 46, 55, 51, 55, 68, 63, 55, 71, 53, 4], "total": 571, "isTopResearch": false, "rank": 254, "fortune500_rank": 75}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [10.0, 23.0, 55.0, 51.0, 55.0, 34.0, 21.0, 18.333333333333332, 71.0, 0, 0], "total": 30.05263157894737, "isTopResearch": false, "rank": 194, "fortune500_rank": 57}}, "patents": {"ai_patents": {"counts": [2, 2, 2, 0, 5, 8, 19, 11, 8, 0, 0], "total": 57, "table": null, "rank": 208, "fortune500_rank": 65}, "ai_patents_growth": {"counts": [], "total": 51.79824561403509, "table": null, "rank": 197, "fortune500_rank": 55}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [20, 20, 20, 0, 50, 80, 190, 110, 80, 0, 0], "total": 570, "table": null, "rank": 208, "fortune500_rank": 65}, "Physical_Sciences_and_Engineering": {"counts": [0, 2, 0, 0, 0, 0, 2, 0, 1, 0, 0], "total": 5, "table": "industry", "rank": 78, "fortune500_rank": 27}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0], "total": 4, "table": null, "rank": 141, "fortune500_rank": 51}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [1, 0, 1, 0, 1, 5, 10, 5, 2, 0, 0], "total": 25, "table": "industry", "rank": 34, "fortune500_rank": 11}, "Education": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 1, 2, 0, 2, 5, 9, 8, 4, 0, 0], "total": 31, "table": "industry", "rank": 150, "fortune500_rank": 54}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 1, 0, 2, 2, 6, 1, 2, 0, 0], "total": 14, "table": "industry", "rank": 147, "fortune500_rank": 58}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": null, "rank": 55, "fortune500_rank": 26}, "Business": {"counts": [0, 1, 0, 0, 0, 4, 5, 3, 2, 0, 0], "total": 15, "table": "industry", "rank": 123, "fortune500_rank": 46}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 119, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 0, 0, 4, 5, 3, 2, 0, 0], "total": 15, "table": "application", "rank": 97, "fortune500_rank": 38}, "Control": {"counts": [2, 2, 2, 0, 5, 7, 15, 11, 4, 0, 0], "total": 48, "table": "application", "rank": 53, "fortune500_rank": 19}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 6, 1, 1, 0, 0], "total": 9, "table": "application", "rank": 259, "fortune500_rank": 79}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0], "total": 4, "table": "application", "rank": 173, "fortune500_rank": 70}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0], "total": 4, "table": null, "rank": 189, "fortune500_rank": 62}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2410, "rank": 202, "fortune500_rank": 117}, "ai_jobs": {"counts": null, "total": 73, "rank": 403, "fortune500_rank": 214}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Rockwell Automation, Inc. (NYSE: ROK), is an American provider of industrial automation and information technology. Brands include Allen-Bradley and FactoryTalk software.", "wikipedia_link": "https://en.wikipedia.org/wiki/Rockwell_Automation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2111, "country": "United States", "website": "https://www.travelers.com/", "crunchbase": {"text": " c1653f9a-2017-d456-2987-400e7bfc088a", "url": " https://www.crunchbase.com/organization/travelers-insur"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/travelers"], "stage": "Mature", "name": "Travelers Cos.", "patent_name": "Travelers Cos.", "continent": "North America", "local_logo": null, "aliases": "The Travelers Companies, Inc; Travelers Cos.", "permid_links": [{"text": 4295904877, "url": "https://permid.org/1-4295904877"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TRV", "url": "https://www.google.com/finance/quote/NYSE:TRV"}], "market_full": [{"text": "VIE:TRV", "url": "https://www.google.com/finance/quote/TRV:VIE"}, {"text": "SAO:TRVC34", "url": "https://www.google.com/finance/quote/SAO:TRVC34"}, {"text": "NYQ:TRV", "url": "https://www.google.com/finance/quote/NYQ:TRV"}, {"text": "FRA:PA9", "url": "https://www.google.com/finance/quote/FRA:PA9"}, {"text": "LSE:0R03", "url": "https://www.google.com/finance/quote/0R03:LSE"}, {"text": "BUE:TRVV3", "url": "https://www.google.com/finance/quote/BUE:TRVV3"}, {"text": "HAN:PA9", "url": "https://www.google.com/finance/quote/HAN:PA9"}, {"text": "MCX:TRV-RM", "url": "https://www.google.com/finance/quote/MCX:TRV-RM"}, {"text": "SGO:TRV", "url": "https://www.google.com/finance/quote/SGO:TRV"}, {"text": "BRN:PA9", "url": "https://www.google.com/finance/quote/BRN:PA9"}, {"text": "MUN:PA9", "url": "https://www.google.com/finance/quote/MUN:PA9"}, {"text": "DEU:TRVN", "url": "https://www.google.com/finance/quote/DEU:TRVN"}, {"text": "BER:PA9", "url": "https://www.google.com/finance/quote/BER:PA9"}, {"text": "ASE:TRV", "url": "https://www.google.com/finance/quote/ASE:TRV"}, {"text": "GER:PA9X", "url": "https://www.google.com/finance/quote/GER:PA9X"}, {"text": "DUS:PA9", "url": "https://www.google.com/finance/quote/DUS:PA9"}, {"text": "SGO:TRVCL", "url": "https://www.google.com/finance/quote/SGO:TRVCL"}, {"text": "STU:PA9", "url": "https://www.google.com/finance/quote/PA9:STU"}, {"text": "MEX:TRV", "url": "https://www.google.com/finance/quote/MEX:TRV"}, {"text": "HAM:PA9", "url": "https://www.google.com/finance/quote/HAM:PA9"}, {"text": "NYSE:TRV", "url": "https://www.google.com/finance/quote/NYSE:TRV"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Evolutionary algorithm", "field_count": 1}, {"field_name": "Linear discriminant analysis", "field_count": 1}], "clusters": [{"cluster_id": 75632, "cluster_count": 1}, {"cluster_id": 23606, "cluster_count": 1}, {"cluster_id": 206, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 815, "referenced_count": 2}], "tasks": [{"referent": "multiple_sequence_alignment", "task_count": 1}, {"referent": "multiobjective_optimization", "task_count": 1}, {"referent": "video_similarity", "task_count": 1}, {"referent": "cluster_analysis", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "multi_class_classification", "task_count": 1}, {"referent": "dimensionality_reduction", "task_count": 1}], "methods": [{"referent": "clustering", "method_count": 1}, {"referent": "categorical_modularity", "method_count": 1}, {"referent": "3d_sa", "method_count": 1}, {"referent": "moco", "method_count": 1}, {"referent": "clusterfit", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 2, 0, 0, 1, 0, 0, 0, 0, 3, 0], "total": 7, "isTopResearch": false, "rank": 1006, "sp500_rank": 406, "fortune500_rank": 339}, "ai_publications": {"counts": [1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "sp500_rank": 285, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 3, 10, 6, 7, 13, 14, 14, 14, 11, 0], "total": 92, "isTopResearch": false, "rank": 516, "sp500_rank": 223, "fortune500_rank": 142}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0.0, 1.5, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 30.666666666666668, "isTopResearch": false, "rank": 188, "sp500_rank": 46, "fortune500_rank": 54}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2392, "rank": 203, "sp500_rank": 119, "fortune500_rank": 118}, "ai_jobs": {"counts": null, "total": 458, "rank": 125, "sp500_rank": 80, "fortune500_rank": 71}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 335, "country": "United States", "website": "http://www.appliedmaterials.com", "crunchbase": {"text": "c3dbc7b1-fc7e-8fa8-581c-5090a328b447", "url": "https://www.crunchbase.com/organization/applied-materials"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/applied-materials"], "stage": "Mature", "name": "Applied Materials", "patent_name": "applied materials", "continent": "North America", "local_logo": "applied_materials.png", "aliases": "Applied Materials Inc; Applied Materials, Inc", "permid_links": [{"text": 4295905583, "url": "https://permid.org/1-4295905583"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:4336", "url": "https://www.google.com/finance/quote/4336:hkg"}, {"text": "NASDAQ:AMAT", "url": "https://www.google.com/finance/quote/amat:nasdaq"}], "market_full": [{"text": "HKG:4336", "url": "https://www.google.com/finance/quote/4336:hkg"}, {"text": "MUN:AP2", "url": "https://www.google.com/finance/quote/ap2:mun"}, {"text": "HAN:AP2", "url": "https://www.google.com/finance/quote/ap2:han"}, {"text": "FWB:AP2", "url": "https://www.google.com/finance/quote/ap2:fwb"}, {"text": "BER:AP2", "url": "https://www.google.com/finance/quote/ap2:ber"}, {"text": "FRA:AMAT", "url": "https://www.google.com/finance/quote/amat:fra"}, {"text": "BMV:AMAT", "url": "https://www.google.com/finance/quote/amat:bmv"}, {"text": "XETR:AP2", "url": "https://www.google.com/finance/quote/ap2:xetr"}, {"text": "NASDAQ:AMAT", "url": "https://www.google.com/finance/quote/amat:nasdaq"}, {"text": "MOEX:AMAT-RM", "url": "https://www.google.com/finance/quote/amat-rm:moex"}, {"text": "HAM:AP2", "url": "https://www.google.com/finance/quote/ap2:ham"}, {"text": "DUS:AP2", "url": "https://www.google.com/finance/quote/ap2:dus"}, {"text": "VIE:AMAT", "url": "https://www.google.com/finance/quote/amat:vie"}], "crunchbase_description": "Applied Materials provides manufacturing solutions for the semiconductor, flat panel display and solar photovoltaic industries.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Feature extraction", "field_count": 3}, {"field_name": "Unsupervised learning", "field_count": 2}, {"field_name": "Dropout (neural networks)", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Photogrammetry", "field_count": 1}, {"field_name": "Shadow", "field_count": 1}, {"field_name": "Pixel", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Camera resectioning", "field_count": 1}, {"field_name": "Face (geometry)", "field_count": 1}], "clusters": [{"cluster_id": 52089, "cluster_count": 4}, {"cluster_id": 82867, "cluster_count": 3}, {"cluster_id": 27751, "cluster_count": 1}, {"cluster_id": 17833, "cluster_count": 1}, {"cluster_id": 12492, "cluster_count": 1}, {"cluster_id": 40197, "cluster_count": 1}, {"cluster_id": 18269, "cluster_count": 1}, {"cluster_id": 3468, "cluster_count": 1}, {"cluster_id": 20982, "cluster_count": 1}, {"cluster_id": 17758, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 335, "referenced_count": 5}, {"ref_CSET_id": 671, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 1877, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "small_data_image_classification", "task_count": 3}, {"referent": "defect_detection", "task_count": 3}, {"referent": "predictive_process_monitoring", "task_count": 2}, {"referent": "fault_detection", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "robots", "task_count": 2}, {"referent": "texture_classification", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "video_surveillance", "task_count": 2}], "methods": [{"referent": "vqa_models", "method_count": 4}, {"referent": "3d_representations", "method_count": 4}, {"referent": "feature_extractors", "method_count": 4}, {"referent": "mad_learning", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "image_to_image_translation", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "dropconnect", "method_count": 2}, {"referent": "wgan_gp", "method_count": 1}, {"referent": "sm3", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [147, 158, 114, 157, 114, 148, 128, 125, 130, 99, 4], "total": 1324, "isTopResearch": false, "rank": 159, "fortune500_rank": 58}, "ai_publications": {"counts": [0, 1, 2, 4, 2, 0, 3, 2, 4, 5, 0], "total": 23, "isTopResearch": false, "rank": 280, "fortune500_rank": 85}, "ai_publications_growth": {"counts": [], "total": 30.555555555555554, "isTopResearch": false, "rank": 91, "fortune500_rank": 30}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [3, 8, 9, 17, 23, 38, 53, 57, 56, 74, 5], "total": 343, "isTopResearch": false, "rank": 314, "fortune500_rank": 93}, "cv_pubs": {"counts": [0, 0, 1, 3, 2, 0, 2, 1, 0, 3, 0], "total": 12, "isTopResearch": true, "rank": 188, "fortune500_rank": 49}, "nlp_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 2, 0], "total": 3, "isTopResearch": true, "rank": 214, "fortune500_rank": 57}, "citations_per_article": {"counts": [0, 8.0, 4.5, 4.25, 11.5, 0, 17.666666666666668, 28.5, 14.0, 14.8, 0], "total": 14.91304347826087, "isTopResearch": false, "rank": 409, "fortune500_rank": 125}}, "patents": {"ai_patents": {"counts": [3, 3, 2, 5, 8, 23, 21, 55, 23, 0, 0], "total": 143, "table": null, "rank": 130, "fortune500_rank": 42}, "ai_patents_growth": {"counts": [], "total": 113.56970324361629, "table": null, "rank": 98, "fortune500_rank": 22}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 30, 20, 50, 80, 230, 210, 550, 230, 0, 0], "total": 1430, "table": null, "rank": 130, "fortune500_rank": 42}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 0, 0, 1, 2, 4, 1, 1, 0, 0], "total": 10, "table": "industry", "rank": 51, "fortune500_rank": 17}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 2, 0, 0], "total": 4, "table": null, "rank": 139, "fortune500_rank": 59}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [1, 2, 0, 1, 2, 9, 4, 7, 4, 0, 0], "total": 30, "table": "industry", "rank": 27, "fortune500_rank": 7}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 2, 2, 4, 6, 15, 4, 0, 0], "total": 34, "table": "industry", "rank": 143, "fortune500_rank": 51}, "Banking_and_Finance": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 5, 0, 0], "total": 6, "table": "industry", "rank": 204, "fortune500_rank": 77}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 119, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [1, 1, 2, 2, 3, 10, 8, 20, 12, 0, 0], "total": 59, "table": "industry", "rank": 4, "fortune500_rank": 3}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 1, 1, 2, 1, 0, 0], "total": 6, "table": "application", "rank": 109, "fortune500_rank": 50}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [1, 2, 0, 3, 2, 7, 6, 5, 5, 0, 0], "total": 31, "table": "application", "rank": 69, "fortune500_rank": 23}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 1, 0, 4, 12, 9, 21, 7, 0, 0], "total": 54, "table": "application", "rank": 109, "fortune500_rank": 32}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 3, 3, 0, 0], "total": 7, "table": "application", "rank": 137, "fortune500_rank": 57}, "Measuring_and_Testing": {"counts": [0, 1, 1, 0, 1, 7, 3, 15, 7, 0, 0], "total": 35, "table": "application", "rank": 56, "fortune500_rank": 21}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2389, "rank": 204, "fortune500_rank": 119}, "ai_jobs": {"counts": null, "total": 210, "rank": 225, "fortune500_rank": 120}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Applied Materials, Inc. is an American corporation that supplies equipment, services and software for the manufacture of semiconductor (integrated circuit) chips for electronics, flat panel displays for computers, smartphones and televisions, and solar products. The company also supplies equipment to produce coatings for flexible electronics, packaging and other applications. The company is headquartered in Santa Clara, California, in Silicon Valley.", "wikipedia_link": "https://en.wikipedia.org/wiki/Applied_Materials", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1132, "country": "Japan", "website": "http://www.sony.net/", "crunchbase": {"text": "bf313e68-63a0-8281-a809-bc824b4c51f2", "url": "https://www.crunchbase.com/organization/sony"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sony"], "stage": "Mature", "name": "Sony", "patent_name": "sony", "continent": "Asia", "local_logo": "sony.png", "aliases": "Sony Group Corporation", "permid_links": [{"text": 5000002406, "url": "https://permid.org/1-5000002406"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:6758", "url": "https://www.google.com/finance/quote/6758:tyo"}, {"text": "NYSE:SONY", "url": "https://www.google.com/finance/quote/nyse:sony"}], "market_full": [{"text": "OTCPINK:SNEJF", "url": "https://www.google.com/finance/quote/otcpink:snejf"}, {"text": "TYO:6758", "url": "https://www.google.com/finance/quote/6758:tyo"}, {"text": "STU:SON1", "url": "https://www.google.com/finance/quote/son1:stu"}, {"text": "ASE:SONY", "url": "https://www.google.com/finance/quote/ase:sony"}, {"text": "BUE:SONY3", "url": "https://www.google.com/finance/quote/bue:sony3"}, {"text": "MUN:SON1", "url": "https://www.google.com/finance/quote/mun:son1"}, {"text": "SAO:SNEC34", "url": "https://www.google.com/finance/quote/sao:snec34"}, {"text": "DUS:SON1", "url": "https://www.google.com/finance/quote/dus:son1"}, {"text": "NYSE:SONY", "url": "https://www.google.com/finance/quote/nyse:sony"}, {"text": "LSE:OL83", "url": "https://www.google.com/finance/quote/lse:ol83"}, {"text": "FRA:SONA", "url": "https://www.google.com/finance/quote/fra:sona"}, {"text": "MUN:SONA", "url": "https://www.google.com/finance/quote/mun:sona"}, {"text": "MEX:SONYN", "url": "https://www.google.com/finance/quote/mex:sonyn"}, {"text": "MCX:SONY-RM", "url": "https://www.google.com/finance/quote/mcx:sony-rm"}, {"text": "BER:SON1", "url": "https://www.google.com/finance/quote/ber:son1"}, {"text": "HAN:SON1", "url": "https://www.google.com/finance/quote/han:son1"}, {"text": "DUS:SONA", "url": "https://www.google.com/finance/quote/dus:sona"}, {"text": "SWX:SONC", "url": "https://www.google.com/finance/quote/sonc:swx"}, {"text": "VIE:SON1", "url": "https://www.google.com/finance/quote/son1:vie"}], "crunchbase_description": "Sony develops and manufactures audio, video, communications, and information technology products for the consumer and professional markets.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 15}, {"field_name": "Reinforcement learning", "field_count": 10}, {"field_name": "Cluster analysis", "field_count": 9}, {"field_name": "Convolutional neural network", "field_count": 9}, {"field_name": "Exponential family", "field_count": 6}, {"field_name": "Source separation", "field_count": 6}, {"field_name": "Semantics", "field_count": 6}, {"field_name": "Motion estimation", "field_count": 5}, {"field_name": "Boosting (machine learning)", "field_count": 4}, {"field_name": "Segmentation", "field_count": 4}], "clusters": [{"cluster_id": 26207, "cluster_count": 31}, {"cluster_id": 13114, "cluster_count": 28}, {"cluster_id": 3240, "cluster_count": 11}, {"cluster_id": 39641, "cluster_count": 10}, {"cluster_id": 12562, "cluster_count": 7}, {"cluster_id": 3291, "cluster_count": 6}, {"cluster_id": 1422, "cluster_count": 6}, {"cluster_id": 10008, "cluster_count": 5}, {"cluster_id": 24495, "cluster_count": 5}, {"cluster_id": 9233, "cluster_count": 5}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 460}, {"ref_CSET_id": 1132, "referenced_count": 305}, {"ref_CSET_id": 163, "referenced_count": 223}, {"ref_CSET_id": 87, "referenced_count": 106}, {"ref_CSET_id": 786, "referenced_count": 62}, {"ref_CSET_id": 115, "referenced_count": 62}, {"ref_CSET_id": 1784, "referenced_count": 57}, {"ref_CSET_id": 184, "referenced_count": 37}, {"ref_CSET_id": 3131, "referenced_count": 33}, {"ref_CSET_id": 6, "referenced_count": 28}], "tasks": [{"referent": "classification", "task_count": 39}, {"referent": "robots", "task_count": 30}, {"referent": "image_processing", "task_count": 18}, {"referent": "computer_vision", "task_count": 13}, {"referent": "language_identification", "task_count": 13}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 12}, {"referent": "mobile_robot", "task_count": 10}, {"referent": "autonomous_navigation", "task_count": 9}, {"referent": "clustering", "task_count": 8}, {"referent": "speech_recognition", "task_count": 7}], "methods": [{"referent": "q_learning", "method_count": 24}, {"referent": "recurrent_neural_networks", "method_count": 23}, {"referent": "vqa_models", "method_count": 17}, {"referent": "3d_representations", "method_count": 16}, {"referent": "convolutional_neural_networks", "method_count": 13}, {"referent": "auto_classifier", "method_count": 12}, {"referent": "clustering", "method_count": 12}, {"referent": "1d_cnn", "method_count": 11}, {"referent": "griffin_lim_algorithm", "method_count": 11}, {"referent": "image_to_image_translation", "method_count": 9}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [212, 161, 158, 155, 154, 153, 177, 138, 168, 135, 0], "total": 1611, "isTopResearch": false, "rank": 139, "sp500_rank": 107}, "ai_publications": {"counts": [32, 22, 24, 22, 21, 24, 29, 48, 54, 26, 0], "total": 302, "isTopResearch": false, "rank": 59, "sp500_rank": 48}, "ai_publications_growth": {"counts": [], "total": 8.721796509152831, "isTopResearch": false, "rank": 163, "sp500_rank": 85}, "ai_pubs_top_conf": {"counts": [0, 2, 8, 4, 1, 3, 2, 8, 4, 4, 0], "total": 36, "isTopResearch": false, "rank": 51, "sp500_rank": 27}, "citation_counts": {"counts": [237, 456, 675, 870, 996, 1061, 1271, 1406, 1679, 1209, 47], "total": 9907, "isTopResearch": false, "rank": 50, "sp500_rank": 32}, "cv_pubs": {"counts": [12, 8, 8, 6, 7, 5, 10, 8, 15, 4, 0], "total": 83, "isTopResearch": true, "rank": 64, "sp500_rank": 46}, "nlp_pubs": {"counts": [3, 1, 6, 4, 5, 3, 7, 5, 6, 2, 0], "total": 42, "isTopResearch": true, "rank": 50, "sp500_rank": 37}, "robotics_pubs": {"counts": [4, 3, 3, 1, 2, 6, 3, 15, 13, 4, 0], "total": 54, "isTopResearch": true, "rank": 45, "sp500_rank": 41}, "citations_per_article": {"counts": [7.40625, 20.727272727272727, 28.125, 39.54545454545455, 47.42857142857143, 44.208333333333336, 43.827586206896555, 29.291666666666668, 31.09259259259259, 46.5, 0], "total": 32.8046357615894, "isTopResearch": false, "rank": 170, "sp500_rank": 38}}, "patents": {"ai_patents": {"counts": [17, 23, 26, 75, 93, 226, 223, 121, 48, 1, 0], "total": 853, "table": null, "rank": 33, "sp500_rank": 26}, "ai_patents_growth": {"counts": [], "total": 31.981136248650703, "table": null, "rank": 272, "sp500_rank": 126}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [170, 230, 260, 750, 930, 2260, 2230, 1210, 480, 10, 0], "total": 8530, "table": null, "rank": 33, "sp500_rank": 26}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 88, "sp500_rank": 72}, "Life_Sciences": {"counts": [2, 2, 2, 17, 12, 20, 9, 1, 3, 0, 0], "total": 68, "table": "industry", "rank": 18, "sp500_rank": 16}, "Security__eg_cybersecurity": {"counts": [0, 1, 1, 3, 5, 5, 13, 4, 0, 0, 0], "total": 32, "table": null, "rank": 35, "sp500_rank": 29}, "Transportation": {"counts": [1, 2, 9, 7, 13, 27, 9, 3, 0, 0, 0], "total": 71, "table": "industry", "rank": 35, "sp500_rank": 28}, "Industrial_and_Manufacturing": {"counts": [0, 1, 2, 8, 11, 15, 7, 3, 0, 0, 0], "total": 47, "table": null, "rank": 15, "sp500_rank": 13}, "Education": {"counts": [0, 0, 1, 0, 2, 3, 2, 2, 0, 0, 0], "total": 10, "table": null, "rank": 12, "sp500_rank": 9}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 2, 3, 0, 2, 0, 0, 0, 0], "total": 7, "table": null, "rank": 17, "sp500_rank": 14}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [4, 12, 4, 36, 34, 85, 77, 32, 10, 0, 0], "total": 294, "table": "industry", "rank": 31, "sp500_rank": 26}, "Banking_and_Finance": {"counts": [0, 1, 3, 1, 1, 3, 7, 3, 1, 0, 0], "total": 20, "table": null, "rank": 47, "sp500_rank": 37}, "Telecommunications": {"counts": [5, 11, 9, 15, 35, 79, 68, 27, 14, 0, 0], "total": 263, "table": "industry", "rank": 17, "sp500_rank": 14}, "Networks__eg_social_IOT_etc": {"counts": [0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 47, "sp500_rank": 34}, "Business": {"counts": [2, 4, 5, 7, 12, 12, 11, 1, 1, 0, 0], "total": 55, "table": null, "rank": 51, "sp500_rank": 40}, "Energy_Management": {"counts": [0, 0, 0, 3, 0, 3, 2, 0, 0, 0, 0], "total": 8, "table": null, "rank": 55, "sp500_rank": 52}, "Entertainment": {"counts": [3, 1, 1, 6, 11, 35, 37, 23, 8, 0, 0], "total": 125, "table": "industry", "rank": 2, "sp500_rank": 2}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 1, 0, 6, 2, 1, 0, 0, 0], "total": 10, "table": null, "rank": 13, "sp500_rank": 8}, "Language_Processing": {"counts": [0, 2, 0, 3, 1, 0, 1, 0, 0, 0, 0], "total": 7, "table": null, "rank": 45, "sp500_rank": 34}, "Speech_Processing": {"counts": [0, 1, 1, 6, 12, 25, 21, 12, 3, 0, 0], "total": 81, "table": "application", "rank": 12, "sp500_rank": 9}, "Knowledge_Representation": {"counts": [1, 4, 2, 3, 5, 6, 3, 0, 0, 0, 0], "total": 24, "table": null, "rank": 45, "sp500_rank": 35}, "Planning_and_Scheduling": {"counts": [2, 3, 2, 3, 5, 9, 7, 1, 1, 0, 0], "total": 33, "table": null, "rank": 50, "sp500_rank": 42}, "Control": {"counts": [0, 0, 9, 11, 18, 33, 11, 3, 0, 0, 0], "total": 85, "table": "application", "rank": 37, "sp500_rank": 30}, "Distributed_AI": {"counts": [0, 0, 0, 1, 1, 3, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 14, "sp500_rank": 12}, "Robotics": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 14, "sp500_rank": 9}, "Computer_Vision": {"counts": [7, 8, 8, 30, 31, 98, 89, 68, 32, 0, 0], "total": 371, "table": "application", "rank": 23, "sp500_rank": 18}, "Analytics_and_Algorithms": {"counts": [0, 2, 4, 9, 6, 17, 13, 11, 2, 0, 0], "total": 64, "table": "application", "rank": 25, "sp500_rank": 22}, "Measuring_and_Testing": {"counts": [3, 1, 6, 10, 12, 18, 19, 8, 5, 0, 0], "total": 82, "table": "application", "rank": 31, "sp500_rank": 23}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2381, "rank": 205, "sp500_rank": 120}, "ai_jobs": {"counts": null, "total": 77, "rank": 388, "sp500_rank": 201}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Sony Corporation is a Japanese multinational conglomerate corporation headquartered in K\u014dnan, Minato, Tokyo. The company operates as one of the world's largest manufacturers of consumer and professional electronic products, the largest video game console company, the second largest video game publisher, the second largest record company, as well as one of the most comprehensive media companies, being the largest Japanese media conglomerate by size overtaking the privately held, family-owned Yomiuri Shimbun Holdings, the largest Japanese media conglomerate by revenue.", "wikipedia_link": "https://en.wikipedia.org/wiki/Sony", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 815, "country": "United States", "website": "https://www.rtx.com/", "crunchbase": {"text": "c1eb0c7f-f90e-e484-2e87-a5b9c3fb3267", "url": "https://www.crunchbase.com/organization/raytheon"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/raytheontechnologies"], "stage": "Mature", "name": "Raytheon Technologies", "patent_name": "raytheon technologies", "continent": "North America", "local_logo": "raytheon_technologies.png", "aliases": "Raytheon; Raytheon Technologies Corporation; United Technologies Corporation", "permid_links": [{"text": 4295905180, "url": "https://permid.org/1-4295905180"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:RTX", "url": "https://www.google.com/finance/quote/nyse:rtx"}], "market_full": [{"text": "BMV:RTX", "url": "https://www.google.com/finance/quote/bmv:rtx"}, {"text": "DUS:5UR", "url": "https://www.google.com/finance/quote/5ur:dus"}, {"text": "BCBA:RTX", "url": "https://www.google.com/finance/quote/bcba:rtx"}, {"text": "NYSE:RTX", "url": "https://www.google.com/finance/quote/nyse:rtx"}, {"text": "FRA:5UR", "url": "https://www.google.com/finance/quote/5ur:fra"}, {"text": "MEX:RTX", "url": "https://www.google.com/finance/quote/mex:rtx"}, {"text": "VIE:RTX", "url": "https://www.google.com/finance/quote/rtx:vie"}, {"text": "MUN:5UR", "url": "https://www.google.com/finance/quote/5ur:mun"}, {"text": "LON:0R2N", "url": "https://www.google.com/finance/quote/0r2n:lon"}, {"text": "FWB:5UR", "url": "https://www.google.com/finance/quote/5ur:fwb"}, {"text": "XETR:5UR", "url": "https://www.google.com/finance/quote/5ur:xetr"}, {"text": "MOEX:RTX-RM", "url": "https://www.google.com/finance/quote/moex:rtx-rm"}, {"text": "BER:5UR", "url": "https://www.google.com/finance/quote/5ur:ber"}], "crunchbase_description": "Raytheon Technologies is an aerospace and defense company that provides advanced systems and services.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Machine translation", "field_count": 10}, {"field_name": "Feature (computer vision)", "field_count": 9}, {"field_name": "Hidden Markov model", "field_count": 8}, {"field_name": "Keyword spotting", "field_count": 8}, {"field_name": "Word error rate", "field_count": 7}, {"field_name": "Language model", "field_count": 7}, {"field_name": "Cluster analysis", "field_count": 7}, {"field_name": "Feature extraction", "field_count": 7}, {"field_name": "Artificial neural network", "field_count": 6}, {"field_name": "Probabilistic logic", "field_count": 6}], "clusters": [{"cluster_id": 1422, "cluster_count": 13}, {"cluster_id": 1015, "cluster_count": 12}, {"cluster_id": 7420, "cluster_count": 10}, {"cluster_id": 6386, "cluster_count": 9}, {"cluster_id": 77287, "cluster_count": 8}, {"cluster_id": 8477, "cluster_count": 8}, {"cluster_id": 48023, "cluster_count": 8}, {"cluster_id": 8972, "cluster_count": 6}, {"cluster_id": 49190, "cluster_count": 5}, {"cluster_id": 5364, "cluster_count": 5}], "company_references": [{"ref_CSET_id": 815, "referenced_count": 224}, {"ref_CSET_id": 101, "referenced_count": 194}, {"ref_CSET_id": 163, "referenced_count": 155}, {"ref_CSET_id": 115, "referenced_count": 64}, {"ref_CSET_id": 87, "referenced_count": 40}, {"ref_CSET_id": 787, "referenced_count": 26}, {"ref_CSET_id": 6, "referenced_count": 21}, {"ref_CSET_id": 127, "referenced_count": 12}, {"ref_CSET_id": 23, "referenced_count": 8}, {"ref_CSET_id": 805, "referenced_count": 8}], "tasks": [{"referent": "classification", "task_count": 65}, {"referent": "speech_recognition", "task_count": 23}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 20}, {"referent": "robots", "task_count": 18}, {"referent": "image_processing", "task_count": 17}, {"referent": "video_surveillance", "task_count": 16}, {"referent": "image_analysis", "task_count": 15}, {"referent": "decision_making", "task_count": 14}, {"referent": "system_identification", "task_count": 14}, {"referent": "autonomous_vehicles", "task_count": 13}], "methods": [{"referent": "vqa_models", "method_count": 30}, {"referent": "recurrent_neural_networks", "method_count": 28}, {"referent": "double_q_learning", "method_count": 24}, {"referent": "3d_representations", "method_count": 24}, {"referent": "mad_learning", "method_count": 21}, {"referent": "auto_classifier", "method_count": 20}, {"referent": "q_learning", "method_count": 19}, {"referent": "optimization", "method_count": 15}, {"referent": "glow", "method_count": 15}, {"referent": "griffin_lim_algorithm", "method_count": 14}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [572, 407, 379, 390, 322, 304, 311, 258, 220, 149, 2], "total": 3314, "isTopResearch": false, "rank": 85, "sp500_rank": 70, "fortune500_rank": 31}, "ai_publications": {"counts": [56, 53, 37, 40, 32, 34, 38, 24, 29, 9, 0], "total": 352, "isTopResearch": false, "rank": 52, "sp500_rank": 41, "fortune500_rank": 15}, "ai_publications_growth": {"counts": [], "total": -28.32476305706796, "isTopResearch": false, "rank": 1388, "sp500_rank": 379, "fortune500_rank": 402}, "ai_pubs_top_conf": {"counts": [2, 2, 0, 2, 3, 3, 6, 3, 3, 5, 0], "total": 29, "isTopResearch": false, "rank": 60, "sp500_rank": 33, "fortune500_rank": 21}, "citation_counts": {"counts": [346, 489, 613, 672, 751, 767, 961, 1034, 1092, 797, 39], "total": 7561, "isTopResearch": false, "rank": 60, "sp500_rank": 40, "fortune500_rank": 21}, "cv_pubs": {"counts": [19, 14, 11, 9, 6, 4, 4, 2, 2, 0, 0], "total": 71, "isTopResearch": true, "rank": 69, "sp500_rank": 50, "fortune500_rank": 18}, "nlp_pubs": {"counts": [8, 9, 5, 8, 9, 4, 3, 5, 6, 5, 0], "total": 62, "isTopResearch": true, "rank": 41, "sp500_rank": 31, "fortune500_rank": 15}, "robotics_pubs": {"counts": [10, 3, 4, 10, 4, 4, 9, 7, 3, 0, 0], "total": 54, "isTopResearch": true, "rank": 45, "sp500_rank": 41, "fortune500_rank": 13}, "citations_per_article": {"counts": [6.178571428571429, 9.226415094339623, 16.56756756756757, 16.8, 23.46875, 22.558823529411764, 25.289473684210527, 43.083333333333336, 37.6551724137931, 88.55555555555556, 0], "total": 21.480113636363637, "isTopResearch": false, "rank": 288, "sp500_rank": 82, "fortune500_rank": 93}}, "patents": {"ai_patents": {"counts": [12, 13, 13, 20, 25, 52, 54, 45, 18, 0, 0], "total": 252, "table": null, "rank": 87, "sp500_rank": 67, "fortune500_rank": 28}, "ai_patents_growth": {"counts": [], "total": 31.726495726495724, "table": null, "rank": 273, "sp500_rank": 127, "fortune500_rank": 79}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [120, 130, 130, 200, 250, 520, 540, 450, 180, 0, 0], "total": 2520, "table": null, "rank": 87, "sp500_rank": 67, "fortune500_rank": 28}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 2, 1, 8, 4, 2, 1, 0, 0], "total": 18, "table": "industry", "rank": 30, "sp500_rank": 25, "fortune500_rank": 11}, "Life_Sciences": {"counts": [1, 0, 0, 3, 1, 1, 0, 2, 0, 0, 0], "total": 8, "table": null, "rank": 95, "sp500_rank": 62, "fortune500_rank": 39}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 4, 6, 3, 2, 2, 0, 0], "total": 17, "table": null, "rank": 63, "sp500_rank": 47, "fortune500_rank": 27}, "Transportation": {"counts": [2, 0, 3, 4, 6, 16, 13, 8, 4, 0, 0], "total": 56, "table": "industry", "rank": 39, "sp500_rank": 31, "fortune500_rank": 13}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 2, 2, 4, 2, 0, 0], "total": 10, "table": null, "rank": 69, "sp500_rank": 50, "fortune500_rank": 22}, "Education": {"counts": [0, 1, 0, 0, 2, 0, 0, 2, 0, 0, 0], "total": 5, "table": null, "rank": 32, "sp500_rank": 24, "fortune500_rank": 12}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Agricultural": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [3, 4, 5, 8, 9, 20, 20, 15, 7, 0, 0], "total": 91, "table": "industry", "rank": 83, "sp500_rank": 59, "fortune500_rank": 36}, "Banking_and_Finance": {"counts": [0, 0, 1, 2, 1, 1, 3, 2, 1, 0, 0], "total": 11, "table": null, "rank": 73, "sp500_rank": 57, "fortune500_rank": 28}, "Telecommunications": {"counts": [1, 2, 1, 3, 5, 16, 11, 8, 7, 0, 0], "total": 54, "table": "industry", "rank": 73, "sp500_rank": 59, "fortune500_rank": 28}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [3, 0, 0, 1, 3, 3, 4, 5, 1, 0, 0], "total": 20, "table": "industry", "rank": 106, "sp500_rank": 76, "fortune500_rank": 41}, "Energy_Management": {"counts": [1, 0, 0, 2, 0, 3, 2, 2, 0, 0, 0], "total": 10, "table": null, "rank": 48, "sp500_rank": 45, "fortune500_rank": 10}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 45, "sp500_rank": 29, "fortune500_rank": 19}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 10, "sp500_rank": 9, "fortune500_rank": 5}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22, "fortune500_rank": 17}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0], "total": 4, "table": null, "rank": 62, "sp500_rank": 44, "fortune500_rank": 35}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 1, 0, 0], "total": 4, "table": null, "rank": 127, "sp500_rank": 76, "fortune500_rank": 37}, "Knowledge_Representation": {"counts": [5, 2, 1, 2, 3, 5, 3, 2, 1, 0, 0], "total": 24, "table": "application", "rank": 45, "sp500_rank": 35, "fortune500_rank": 25}, "Planning_and_Scheduling": {"counts": [2, 0, 0, 1, 3, 3, 4, 2, 1, 0, 0], "total": 16, "table": "application", "rank": 93, "sp500_rank": 67, "fortune500_rank": 36}, "Control": {"counts": [3, 1, 5, 8, 7, 12, 17, 11, 5, 0, 0], "total": 69, "table": "application", "rank": 45, "sp500_rank": 36, "fortune500_rank": 16}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 36, "sp500_rank": 28, "fortune500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 4, 3, 5, 8, 17, 20, 19, 4, 0, 0], "total": 81, "table": "application", "rank": 81, "sp500_rank": 56, "fortune500_rank": 25}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 4, 1, 4, 2, 0, 0], "total": 12, "table": null, "rank": 99, "sp500_rank": 73, "fortune500_rank": 42}, "Measuring_and_Testing": {"counts": [1, 2, 4, 6, 3, 8, 9, 9, 4, 0, 0], "total": 46, "table": "application", "rank": 47, "sp500_rank": 36, "fortune500_rank": 18}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2362, "rank": 206, "sp500_rank": 121, "fortune500_rank": 120}, "ai_jobs": {"counts": null, "total": 74, "rank": 397, "sp500_rank": 205, "fortune500_rank": 210}}, "sector": "Industrials", "business_sector": "Industrial Goods"}, {"cset_id": 2335, "country": "United States", "website": "http://www.garmin.com/", "crunchbase": {"text": "d85fd6ab-075f-86cb-3531-2c6ed0802a31", "url": "https://www.crunchbase.com/organization/garmin"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/garmin"], "stage": "Mature", "name": "Garmin Ltd.", "patent_name": "garmin ltd.", "continent": "North America", "local_logo": "garmin_ltd.png", "aliases": "Garmin; Garmin International", "permid_links": [{"text": 4295913863, "url": "https://permid.org/1-4295913863"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:GRMN", "url": "https://www.google.com/finance/quote/grmn:nyse"}], "market_full": [{"text": "DUS:GEY", "url": "https://www.google.com/finance/quote/dus:gey"}, {"text": "NYSE:GRMN", "url": "https://www.google.com/finance/quote/grmn:nyse"}, {"text": "HAM:GEY", "url": "https://www.google.com/finance/quote/gey:ham"}, {"text": "BRN:GEY", "url": "https://www.google.com/finance/quote/brn:gey"}, {"text": "DEU:GRMN", "url": "https://www.google.com/finance/quote/deu:grmn"}, {"text": "FRA:GEY", "url": "https://www.google.com/finance/quote/fra:gey"}, {"text": "BER:GEY", "url": "https://www.google.com/finance/quote/ber:gey"}, {"text": "NYQ:GRMN", "url": "https://www.google.com/finance/quote/grmn:nyq"}, {"text": "MEX:GRMNN", "url": "https://www.google.com/finance/quote/grmnn:mex"}, {"text": "BUE:GRMN3", "url": "https://www.google.com/finance/quote/bue:grmn3"}], "crunchbase_description": "Garmin manufactures marine, aviation, and consumer technologies suitable to run on global positioning systems.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 31, "cluster_count": 1}, {"cluster_id": 1798, "cluster_count": 1}, {"cluster_id": 23628, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 795, "referenced_count": 1}], "tasks": [{"referent": "motion_detection", "task_count": 1}, {"referent": "action_localization", "task_count": 1}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "sm3", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 2, 5, 3, 1, 3, 5, 2, 0, 3, 0], "total": 25, "isTopResearch": false, "rank": 754, "fortune500_rank": 269}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0], "total": 3, "isTopResearch": false, "rank": 857, "fortune500_rank": 236}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 1.5, "isTopResearch": false, "rank": 855, "fortune500_rank": 232}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "fortune500_rank": 438}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 10, 10, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2341, "rank": 207, "fortune500_rank": 121}, "ai_jobs": {"counts": null, "total": 33, "rank": 569, "fortune500_rank": 292}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Splunk Inc. is an American public multinational corporation based in San Francisco, California, that produces software for searching, monitoring, and analyzing machine-generated big data via a Web-style interface.", "wikipedia_link": "https://en.wikipedia.org/wiki/Splunk", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2163, "country": "Singapore", "website": "https://flex.com/", "crunchbase": {"text": " 6161dd68-1ef7-1814-a870-c34dda1027df ", "url": "https://www.crunchbase.com/organization/flextronics-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/flexintl"], "stage": "Mature", "name": "Flex", "patent_name": "Flex", "continent": "Asia", "local_logo": null, "aliases": "Flex; Flex Ltd; Flextronics International Ltd", "permid_links": [{"text": 4295887812, "url": "https://permid.org/1-4295887812"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:FLEX", "url": "https://www.google.com/finance/quote/FLEX:NASDAQ"}], "market_full": [{"text": "FRA:FXI", "url": "https://www.google.com/finance/quote/FRA:FXI"}, {"text": "DUS:FXI", "url": "https://www.google.com/finance/quote/DUS:FXI"}, {"text": "BER:FXI", "url": "https://www.google.com/finance/quote/BER:FXI"}, {"text": "DEU:FLEX", "url": "https://www.google.com/finance/quote/DEU:FLEX"}, {"text": "HAN:FXI", "url": "https://www.google.com/finance/quote/FXI:HAN"}, {"text": "HAM:FXI", "url": "https://www.google.com/finance/quote/FXI:HAM"}, {"text": "STU:FXI", "url": "https://www.google.com/finance/quote/FXI:STU"}, {"text": "MUN:FXI", "url": "https://www.google.com/finance/quote/FXI:MUN"}, {"text": "MEX:FLEXN", "url": "https://www.google.com/finance/quote/FLEXN:MEX"}, {"text": "NASDAQ:FLEX", "url": "https://www.google.com/finance/quote/FLEX:NASDAQ"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Shadow mapping", "field_count": 1}], "clusters": [{"cluster_id": 5760, "cluster_count": 1}, {"cluster_id": 2996, "cluster_count": 1}, {"cluster_id": 14308, "cluster_count": 1}, {"cluster_id": 12492, "cluster_count": 1}, {"cluster_id": 43293, "cluster_count": 1}, {"cluster_id": 2891, "cluster_count": 1}, {"cluster_id": 25916, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 112, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 1125, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 625, "referenced_count": 1}], "tasks": [{"referent": "question_answering", "task_count": 2}, {"referent": "classification", "task_count": 1}, {"referent": "session_based_recommendations", "task_count": 1}, {"referent": "image_fusion", "task_count": 1}, {"referent": "shadow_detection", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}, {"referent": "information_retrieval", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "retrieval", "task_count": 1}], "methods": [{"referent": "mas", "method_count": 1}, {"referent": "content_based_attention", "method_count": 1}, {"referent": "linear_warmup_with_linear_decay", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "l1_regularization", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [34, 32, 39, 38, 34, 22, 28, 21, 20, 24, 1], "total": 293, "isTopResearch": false, "rank": 362, "sp500_rank": 233}, "ai_publications": {"counts": [1, 0, 1, 1, 1, 0, 0, 2, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 514, "sp500_rank": 255}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [1, 1, 3, 3, 8, 2, 5, 5, 5, 6, 0], "total": 39, "isTopResearch": false, "rank": 621, "sp500_rank": 266}, "cv_pubs": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [1.0, 0, 3.0, 3.0, 8.0, 0, 0, 2.5, 0, 0, 0], "total": 6.5, "isTopResearch": false, "rank": 661, "sp500_rank": 263}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 4, 2, 3, 2, 0, 0], "total": 12, "table": null, "rank": 384, "sp500_rank": 183}, "ai_patents_growth": {"counts": [], "total": 100.0, "table": null, "rank": 116, "sp500_rank": 57}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 40, 20, 30, 20, 0, 0], "total": 120, "table": null, "rank": 384, "sp500_rank": 183}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 2, 1, 2, 1, 0, 0], "total": 6, "table": "industry", "rank": 113, "sp500_rank": 73}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 2, 0, 0], "total": 5, "table": "industry", "rank": 336, "sp500_rank": 166}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212, "sp500_rank": 129}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], "total": 6, "table": "application", "rank": 300, "sp500_rank": 151}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "sp500_rank": 134}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2310, "rank": 208, "sp500_rank": 122}, "ai_jobs": {"counts": null, "total": 99, "rank": 336, "sp500_rank": 181}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 366, "country": "United Kingdom", "website": "https://www.bp.com/", "crunchbase": {"text": "e1df0636-887f-828b-f94e-79ffd8b890f1", "url": "https://www.crunchbase.com/organization/bp-3"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bp"], "stage": "Mature", "name": "BP", "patent_name": "bp", "continent": "Europe", "local_logo": "bp.png", "aliases": "Bp P.L.C; Bp Plc; British Petroleum", "permid_links": [{"text": 4295894740, "url": "https://permid.org/1-4295894740"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BP", "url": "https://www.google.com/finance/quote/bp:nyse"}], "market_full": [{"text": "HAM:BPE5", "url": "https://www.google.com/finance/quote/bpe5:ham"}, {"text": "BMV:BP/N", "url": "https://www.google.com/finance/quote/bmv:bp/n"}, {"text": "FWB:BPE5", "url": "https://www.google.com/finance/quote/bpe5:fwb"}, {"text": "LSE:BP", "url": "https://www.google.com/finance/quote/bp:lse"}, {"text": "NYSE:BP", "url": "https://www.google.com/finance/quote/bp:nyse"}, {"text": "BER:BPE5", "url": "https://www.google.com/finance/quote/ber:bpe5"}, {"text": "OTC:BPAQF", "url": "https://www.google.com/finance/quote/bpaqf:otc"}, {"text": "XETR:BPE5", "url": "https://www.google.com/finance/quote/bpe5:xetr"}, {"text": "DUS:BPE", "url": "https://www.google.com/finance/quote/bpe:dus"}], "crunchbase_description": "An integrated oil and gas company. Reimagining energy for people and our planet #bpNetZero", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Handwriting", "field_count": 1}, {"field_name": "Pattern recognition (psychology)", "field_count": 1}, {"field_name": "Unsupervised learning", "field_count": 1}, {"field_name": "Feature extraction", "field_count": 1}, {"field_name": "Particle swarm optimization", "field_count": 1}, {"field_name": "Rotation (mathematics)", "field_count": 1}, {"field_name": "Kalman filter", "field_count": 1}, {"field_name": "Monocular", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 7515, "cluster_count": 3}, {"cluster_id": 51708, "cluster_count": 2}, {"cluster_id": 9019, "cluster_count": 2}, {"cluster_id": 9925, "cluster_count": 1}, {"cluster_id": 27297, "cluster_count": 1}, {"cluster_id": 1106, "cluster_count": 1}, {"cluster_id": 24833, "cluster_count": 1}, {"cluster_id": 68041, "cluster_count": 1}, {"cluster_id": 9432, "cluster_count": 1}, {"cluster_id": 2006, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 9}, {"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 366, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 1495, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 682, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 1952, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "seismic_analysis", "task_count": 4}, {"referent": "image_analysis", "task_count": 3}, {"referent": "building_extraction", "task_count": 2}, {"referent": "pattern_classification", "task_count": 2}, {"referent": "image_restoration", "task_count": 1}, {"referent": "motion_compensation", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "damage_detection", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 5}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "vqa_models", "method_count": 3}, {"referent": "3d_reconstruction", "method_count": 2}, {"referent": "feature_extractors", "method_count": 2}, {"referent": "optimization", "method_count": 2}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "semi_supervised_learning_methods", "method_count": 2}, {"referent": "clustering", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [187, 169, 187, 114, 140, 111, 121, 122, 123, 64, 1], "total": 1339, "isTopResearch": false, "rank": 158, "sp500_rank": 122}, "ai_publications": {"counts": [0, 3, 7, 5, 0, 3, 2, 0, 3, 1, 0], "total": 24, "isTopResearch": false, "rank": 273, "sp500_rank": 160}, "ai_publications_growth": {"counts": [], "total": -83.33333333333334, "isTopResearch": false, "rank": 1540, "sp500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [8, 15, 11, 29, 60, 54, 93, 95, 117, 131, 5], "total": 618, "isTopResearch": false, "rank": 242, "sp500_rank": 130}, "cv_pubs": {"counts": [0, 0, 2, 2, 0, 1, 0, 0, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "sp500_rank": 146}, "nlp_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0, 5.0, 1.5714285714285714, 5.8, 0, 18.0, 46.5, 0, 39.0, 131.0, 0], "total": 25.75, "isTopResearch": false, "rank": 229, "sp500_rank": 64}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 1, 1, 3, 4, 2, 0, 0, 0], "total": 12, "table": null, "rank": 384, "sp500_rank": 183}, "ai_patents_growth": {"counts": [], "total": 61.111111111111114, "table": null, "rank": 170, "sp500_rank": 80}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 10, 10, 30, 40, 20, 0, 0, 0], "total": 120, "table": null, "rank": 384, "sp500_rank": 183}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 88, "sp500_rank": 72}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 170, "sp500_rank": 121}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2285, "rank": 209, "sp500_rank": 123}, "ai_jobs": {"counts": null, "total": 319, "rank": 172, "sp500_rank": 113}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "BP plc (formerly The British Petroleum Company plc and BP Amoco plc) is a British multinational oil and gas company headquartered in London, England. It is one of the world's seven oil and gas \"supermajors\". It is a vertically integrated company operating in all areas of the oil and gas industry, including exploration and production, refining, distribution and marketing, power generation and trading. It also has renewable energy interests in biofuels, wind power, smart grid and solar technology.", "wikipedia_link": "https://en.wikipedia.org/wiki/BP", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1495, "country": "Saudi Arabia", "website": "https://www.aramco.com/en/#top", "crunchbase": {"text": "d328617d-c9a3-5a43-ac92-4c4502f34af9", "url": "https://www.crunchbase.com/organization/saudi-aramco"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aramco"], "stage": "Mature", "name": "Saudi Arabian Oil Co", "patent_name": "saudi arabian oil co", "continent": "Asia", "local_logo": "saudi_arabian_oil_co.png", "aliases": "Saudi Arabian Oil Co; Saudi Arabian Oil Company; Saudi Aramco", "permid_links": [{"text": 4298459348, "url": "https://permid.org/1-4298459348"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "TADAWUL:2222", "url": "https://www.google.com/finance/quote/2222:tadawul"}], "crunchbase_description": "Saudi Aramco is a state-owned oil company that is dedicated to oil and gas production.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 12}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Reinforcement learning", "field_count": 4}, {"field_name": "Support vector machine", "field_count": 3}, {"field_name": "Decision tree", "field_count": 3}, {"field_name": "Anomaly detection", "field_count": 3}, {"field_name": "Correlation coefficient", "field_count": 3}, {"field_name": "Surrogate model", "field_count": 3}, {"field_name": "Synthetic data", "field_count": 2}, {"field_name": "Analytics", "field_count": 2}], "clusters": [{"cluster_id": 7515, "cluster_count": 14}, {"cluster_id": 25755, "cluster_count": 10}, {"cluster_id": 29455, "cluster_count": 7}, {"cluster_id": 49423, "cluster_count": 7}, {"cluster_id": 54676, "cluster_count": 6}, {"cluster_id": 68517, "cluster_count": 5}, {"cluster_id": 9045, "cluster_count": 5}, {"cluster_id": 22609, "cluster_count": 4}, {"cluster_id": 48100, "cluster_count": 4}, {"cluster_id": 88852, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 1495, "referenced_count": 73}, {"ref_CSET_id": 101, "referenced_count": 57}, {"ref_CSET_id": 163, "referenced_count": 29}, {"ref_CSET_id": 87, "referenced_count": 27}, {"ref_CSET_id": 682, "referenced_count": 19}, {"ref_CSET_id": 115, "referenced_count": 15}, {"ref_CSET_id": 676, "referenced_count": 15}, {"ref_CSET_id": 1797, "referenced_count": 9}, {"ref_CSET_id": 1828, "referenced_count": 6}, {"ref_CSET_id": 1789, "referenced_count": 5}], "tasks": [{"referent": "classification", "task_count": 54}, {"referent": "seismic_analysis", "task_count": 23}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 18}, {"referent": "image_processing", "task_count": 15}, {"referent": "portfolio_optimization", "task_count": 13}, {"referent": "image_analysis", "task_count": 13}, {"referent": "real_time_object_detection", "task_count": 11}, {"referent": "decision_making", "task_count": 11}, {"referent": "speech_production", "task_count": 10}, {"referent": "developmental_learning", "task_count": 9}], "methods": [{"referent": "mad_learning", "method_count": 40}, {"referent": "recurrent_neural_networks", "method_count": 29}, {"referent": "vqa_models", "method_count": 26}, {"referent": "symbolic_deep_learning", "method_count": 19}, {"referent": "double_q_learning", "method_count": 17}, {"referent": "griffin_lim_algorithm", "method_count": 16}, {"referent": "optimization", "method_count": 16}, {"referent": "meta_learning_algorithms", "method_count": 16}, {"referent": "convolutional_neural_networks", "method_count": 15}, {"referent": "self_supervised_learning", "method_count": 13}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [684, 639, 794, 783, 1041, 906, 1040, 1170, 1304, 1068, 30], "total": 9459, "isTopResearch": false, "rank": 39, "sp500_rank": 35}, "ai_publications": {"counts": [4, 4, 8, 9, 16, 24, 30, 40, 69, 32, 0], "total": 236, "isTopResearch": false, "rank": 72, "sp500_rank": 57}, "ai_publications_growth": {"counts": [], "total": 17.40338164251208, "isTopResearch": false, "rank": 123, "sp500_rank": 64}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99}, "citation_counts": {"counts": [12, 25, 23, 36, 50, 91, 133, 260, 428, 527, 42], "total": 1627, "isTopResearch": false, "rank": 154, "sp500_rank": 89}, "cv_pubs": {"counts": [1, 0, 2, 1, 0, 2, 1, 5, 5, 3, 0], "total": 20, "isTopResearch": true, "rank": 139, "sp500_rank": 87}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [1, 1, 1, 0, 2, 3, 2, 1, 2, 3, 0], "total": 16, "isTopResearch": true, "rank": 88, "sp500_rank": 65}, "citations_per_article": {"counts": [3.0, 6.25, 2.875, 4.0, 3.125, 3.7916666666666665, 4.433333333333334, 6.5, 6.202898550724638, 16.46875, 0], "total": 6.8940677966101696, "isTopResearch": false, "rank": 647, "sp500_rank": 255}}, "patents": {"ai_patents": {"counts": [1, 3, 4, 3, 9, 12, 40, 66, 34, 0, 0], "total": 172, "table": null, "rank": 115, "sp500_rank": 79}, "ai_patents_growth": {"counts": [], "total": 110.55555555555556, "table": null, "rank": 100, "sp500_rank": 45}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 30, 40, 30, 90, 120, 400, 660, 340, 0, 0], "total": 1720, "table": null, "rank": 115, "sp500_rank": 79}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 0, 2, 3, 5, 15, 40, 20, 0, 0], "total": 86, "table": "industry", "rank": 5, "sp500_rank": 3}, "Life_Sciences": {"counts": [0, 0, 1, 0, 2, 0, 0, 2, 1, 0, 0], "total": 6, "table": null, "rank": 113, "sp500_rank": 73}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 6, 6, 2, 0, 0], "total": 15, "table": "industry", "rank": 72, "sp500_rank": 54}, "Transportation": {"counts": [0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 0], "total": 5, "table": null, "rank": 133, "sp500_rank": 96}, "Industrial_and_Manufacturing": {"counts": [0, 0, 2, 0, 0, 0, 3, 2, 0, 0, 0], "total": 7, "table": null, "rank": 86, "sp500_rank": 61}, "Education": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 6, 3, 0, 0], "total": 10, "table": null, "rank": 14, "sp500_rank": 11}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 6, 4, 18, 29, 16, 0, 0], "total": 75, "table": "industry", "rank": 91, "sp500_rank": 67}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 172, "sp500_rank": 111}, "Telecommunications": {"counts": [0, 0, 2, 0, 0, 2, 10, 10, 5, 0, 0], "total": 29, "table": "industry", "rank": 112, "sp500_rank": 74}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 3, 0, 2, 1, 5, 11, 3, 0, 0], "total": 25, "table": "industry", "rank": 87, "sp500_rank": 61}, "Energy_Management": {"counts": [0, 0, 1, 0, 1, 1, 2, 3, 0, 0, 0], "total": 8, "table": null, "rank": 55, "sp500_rank": 52}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0], "total": 6, "table": null, "rank": 109, "sp500_rank": 68}, "Planning_and_Scheduling": {"counts": [0, 0, 3, 0, 2, 1, 5, 11, 3, 0, 0], "total": 25, "table": "application", "rank": 71, "sp500_rank": 55}, "Control": {"counts": [0, 0, 1, 2, 1, 5, 7, 7, 1, 0, 0], "total": 24, "table": "application", "rank": 82, "sp500_rank": 59}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 0, 1, 2, 4, 13, 22, 6, 0, 0], "total": 49, "table": "application", "rank": 118, "sp500_rank": 77}, "Analytics_and_Algorithms": {"counts": [0, 0, 2, 0, 0, 0, 5, 17, 7, 0, 0], "total": 31, "table": "application", "rank": 43, "sp500_rank": 36}, "Measuring_and_Testing": {"counts": [0, 3, 0, 1, 4, 9, 24, 41, 19, 0, 0], "total": 101, "table": "application", "rank": 24, "sp500_rank": 19}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2257, "rank": 210, "sp500_rank": 124}, "ai_jobs": {"counts": null, "total": 239, "rank": 213, "sp500_rank": 138}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We\u2019re a leading producer of the energy and chemicals that drive global commerce and enhance the daily lives of people around the globe.", "company_site_link": "https://www.aramco.com/en/who-we-are/overview", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1812, "country": null, "website": "https://www.allianz.com/", "crunchbase": {"text": "6c3fdb81-9b38-726d-1ed5-f46c563aa5f4", "url": "https://www.crunchbase.com/organization/allianz"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/allianz"], "stage": "Mature", "name": "Allianz", "patent_name": "Allianz", "continent": null, "local_logo": "allianz.png", "aliases": "Allianz; Allianz Group; Allianz Se", "permid_links": [{"text": 4295870171, "url": "https://permid.org/1-4295870171"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "EBT:ALVD", "url": "https://www.google.com/finance/quote/ALVd:EBT"}, {"text": "BUD:ALLIANZ", "url": "https://www.google.com/finance/quote/ALLIANZ:BUD"}, {"text": "FRA:ALV", "url": "https://www.google.com/finance/quote/ALV:FRA"}, {"text": "MEX:ALVN", "url": "https://www.google.com/finance/quote/ALVN:MEX"}, {"text": "DUS:ALV", "url": "https://www.google.com/finance/quote/ALV:DUS"}, {"text": "HAM:ALV", "url": "https://www.google.com/finance/quote/ALV:HAM"}, {"text": "GER:ALVX", "url": "https://www.google.com/finance/quote/ALVX:GER"}, {"text": "SWX:ALV", "url": "https://www.google.com/finance/quote/ALV:SWX"}, {"text": "MUN:ALV", "url": "https://www.google.com/finance/quote/ALV:MUN"}, {"text": "MIL:ALV", "url": "https://www.google.com/finance/quote/ALV:MIL"}, {"text": "LSE:0M6S", "url": "https://www.google.com/finance/quote/0M6S:LSE"}, {"text": "PKC:ALIZF", "url": "https://www.google.com/finance/quote/ALIZF:PKC"}, {"text": "STU:ALV", "url": "https://www.google.com/finance/quote/ALV:STU"}, {"text": "BER:ALV", "url": "https://www.google.com/finance/quote/ALV:BER"}, {"text": "DEU:ALVG", "url": "https://www.google.com/finance/quote/ALVG:DEU"}, {"text": "VIE:ALV", "url": "https://www.google.com/finance/quote/ALV:VIE"}, {"text": "HAN:ALV", "url": "https://www.google.com/finance/quote/ALV:HAN"}, {"text": "BRN:ALV", "url": "https://www.google.com/finance/quote/ALV:BRN"}], "crunchbase_description": "Allianz is an integrated financial services company offering a range of products, services, and solutions in insurance and asset management.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Hierarchical database model", "field_count": 1}, {"field_name": "Graphical model", "field_count": 1}, {"field_name": "Lexicon", "field_count": 1}], "clusters": [{"cluster_id": 7916, "cluster_count": 2}, {"cluster_id": 52561, "cluster_count": 1}, {"cluster_id": 40901, "cluster_count": 1}, {"cluster_id": 73375, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 1812, "referenced_count": 2}, {"ref_CSET_id": 429, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "text_classification", "task_count": 2}, {"referent": "data_augmentation", "task_count": 1}, {"referent": "text_augmentation", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "document_layout_analysis", "task_count": 1}, {"referent": "natural_language_transduction", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}, {"referent": "graph_models", "method_count": 1}, {"referent": "hierarchical_vae", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "document_embeddings", "method_count": 1}, {"referent": "softpool", "method_count": 1}, {"referent": "netmf", "method_count": 1}, {"referent": "simplenet", "method_count": 1}, {"referent": "muzero", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [17, 17, 20, 14, 19, 11, 15, 17, 10, 7, 0], "total": 147, "isTopResearch": false, "rank": 457, "sp500_rank": 273}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 2, 1, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "sp500_rank": 262}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 2, 0, 0, 0, 6, 3, 1, 0], "total": 12, "isTopResearch": false, "rank": 740, "sp500_rank": 305}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 161, "sp500_rank": 94}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 2.0, 0, 0, 0.0, 6.0, 3.0, 0, 0], "total": 2.4, "isTopResearch": false, "rank": 815, "sp500_rank": 324}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2242, "rank": 211, "sp500_rank": 125}, "ai_jobs": {"counts": null, "total": 297, "rank": 181, "sp500_rank": 117}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2115, "country": "Canada", "website": "https://www.manulife.com/", "crunchbase": {"text": " 6c77310f-fd6a-5aa2-1a0e-260689c8e6d3", "url": " https://www.crunchbase.com/organization/manulife-financial"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/manulife-financial"], "stage": "Mature", "name": "Manulife Financial", "patent_name": "Manulife Financial", "continent": "North America", "local_logo": null, "aliases": "Manulife Financial; The Manufacturers Life Insurance Company", "permid_links": [{"text": 4295862758, "url": "https://permid.org/1-4295862758"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:945", "url": "https://www.google.com/finance/quote/945:HKG"}, {"text": "NYSE:MFC", "url": "https://www.google.com/finance/quote/MFC:NYSE"}], "market_full": [{"text": "HKG.HZ:945", "url": "https://www.google.com/finance/quote/945:HKG.HZ"}, {"text": "TOR:MFC.PR.C", "url": "https://www.google.com/finance/quote/MFC.PR.C:TOR"}, {"text": "TOR:MFC.PR.K", "url": "https://www.google.com/finance/quote/MFC.PR.K:TOR"}, {"text": "TOR:MFC.PR.L", "url": "https://www.google.com/finance/quote/MFC.PR.L:TOR"}, {"text": "MEX:MFCN", "url": "https://www.google.com/finance/quote/MEX:MFCN"}, {"text": "HKG:945", "url": "https://www.google.com/finance/quote/945:HKG"}, {"text": "PKC:MNLCF", "url": "https://www.google.com/finance/quote/MNLCF:PKC"}, {"text": "LSE:0V5H", "url": "https://www.google.com/finance/quote/0V5H:LSE"}, {"text": "PKC:MNLFF", "url": "https://www.google.com/finance/quote/MNLFF:PKC"}, {"text": "ASE:MFC", "url": "https://www.google.com/finance/quote/ASE:MFC"}, {"text": "PKC:MNQFF", "url": "https://www.google.com/finance/quote/MNQFF:PKC"}, {"text": "TOR:MFC", "url": "https://www.google.com/finance/quote/MFC:TOR"}, {"text": "TOR:MFC.PR.B", "url": "https://www.google.com/finance/quote/MFC.PR.B:TOR"}, {"text": "HKG.HS:945", "url": "https://www.google.com/finance/quote/945:HKG.HS"}, {"text": "STU:MLU", "url": "https://www.google.com/finance/quote/MLU:STU"}, {"text": "TOR:MFC.PR.P", "url": "https://www.google.com/finance/quote/MFC.PR.P:TOR"}, {"text": "MUN:MLU", "url": "https://www.google.com/finance/quote/MLU:MUN"}, {"text": "NYQ:MFC", "url": "https://www.google.com/finance/quote/MFC:NYQ"}, {"text": "NYSE:MFC", "url": "https://www.google.com/finance/quote/MFC:NYSE"}, {"text": "TOR:MFC.PR.F", "url": "https://www.google.com/finance/quote/MFC.PR.F:TOR"}, {"text": "PKC:MNUFF", "url": "https://www.google.com/finance/quote/MNUFF:PKC"}, {"text": "BRN:MLU", "url": "https://www.google.com/finance/quote/BRN:MLU"}, {"text": "PHS:MFC", "url": "https://www.google.com/finance/quote/MFC:PHS"}, {"text": "DEU:MFC", "url": "https://www.google.com/finance/quote/DEU:MFC"}, {"text": "TOR:MFC.PR.I", "url": "https://www.google.com/finance/quote/MFC.PR.I:TOR"}, {"text": "TOR:MFC.PR.Q", "url": "https://www.google.com/finance/quote/MFC.PR.Q:TOR"}, {"text": "BER:MLU", "url": "https://www.google.com/finance/quote/BER:MLU"}, {"text": "DUS:MLU", "url": "https://www.google.com/finance/quote/DUS:MLU"}, {"text": "FRA:MLU", "url": "https://www.google.com/finance/quote/FRA:MLU"}, {"text": "TOR:MFC.PR.J", "url": "https://www.google.com/finance/quote/MFC.PR.J:TOR"}, {"text": "TOR:MFC.PR.M", "url": "https://www.google.com/finance/quote/MFC.PR.M:TOR"}, {"text": "TOR:MFC.PR.N", "url": "https://www.google.com/finance/quote/MFC.PR.N:TOR"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 1}], "clusters": [{"cluster_id": 17255, "cluster_count": 1}, {"cluster_id": 22567, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "data_clustering", "task_count": 2}, {"referent": "cancer_diagnosis", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "clustering", "task_count": 1}, {"referent": "social_network_analysis", "task_count": 1}, {"referent": "variable_selection", "task_count": 1}], "methods": [{"referent": "clustering", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [3, 1, 0, 0, 0, 0, 2, 3, 0, 1, 0], "total": 10, "isTopResearch": false, "rank": 942, "sp500_rank": 392}, "ai_publications": {"counts": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [2, 0, 4, 13, 10, 9, 11, 19, 14, 6, 0], "total": 88, "isTopResearch": false, "rank": 525, "sp500_rank": 228}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [2.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 44.0, "isTopResearch": false, "rank": 112, "sp500_rank": 25}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2226, "rank": 212, "sp500_rank": 126}, "ai_jobs": {"counts": null, "total": 326, "rank": 169, "sp500_rank": 111}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 1978, "country": "United States", "website": "https://www.aa.com/", "crunchbase": {"text": " cf1518de-cb38-1b4e-2601-3d377dab0eda", "url": "https://www.crunchbase.com/organization/american-airli"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/american-airlines"], "stage": "Mature", "name": "American Airlines Group", "patent_name": "American Airlines Group", "continent": "North America", "local_logo": null, "aliases": "American Airlines; American Airlines Group; American Airlines Group Inc; American Airlines, Inc; Amr; Us Airways", "permid_links": [{"text": 4295896494, "url": "https://permid.org/1-4295896494"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:AAL", "url": "https://www.google.com/finance/quote/AAL:NASDAQ"}], "market_full": [{"text": "NASDAQ:AAL", "url": "https://www.google.com/finance/quote/AAL:NASDAQ"}, {"text": "STU:A1G", "url": "https://www.google.com/finance/quote/A1G:STU"}, {"text": "FRA:A1G", "url": "https://www.google.com/finance/quote/A1G:FRA"}, {"text": "BER:A1G", "url": "https://www.google.com/finance/quote/A1G:BER"}, {"text": "LSE:0HE6", "url": "https://www.google.com/finance/quote/0HE6:LSE"}, {"text": "SAO:AALL34", "url": "https://www.google.com/finance/quote/AALL34:SAO"}, {"text": "SWX:A1G", "url": "https://www.google.com/finance/quote/A1G:SWX"}, {"text": "GER:A1GX", "url": "https://www.google.com/finance/quote/A1GX:GER"}, {"text": "DEU:A1G", "url": "https://www.google.com/finance/quote/A1G:DEU"}, {"text": "MUN:A1G", "url": "https://www.google.com/finance/quote/A1G:MUN"}, {"text": "HAM:A1G", "url": "https://www.google.com/finance/quote/A1G:HAM"}, {"text": "MEX:AAL*", "url": "https://www.google.com/finance/quote/AAL*:MEX"}, {"text": "DUS:A1G", "url": "https://www.google.com/finance/quote/A1G:DUS"}, {"text": "VIE:AAL", "url": "https://www.google.com/finance/quote/AAL:VIE"}, {"text": "HAN:A1G", "url": "https://www.google.com/finance/quote/A1G:HAN"}, {"text": "MCX:AAL-RM", "url": "https://www.google.com/finance/quote/AAL-RM:MCX"}, {"text": "BRN:A1G", "url": "https://www.google.com/finance/quote/A1G:BRN"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 55849, "cluster_count": 1}, {"cluster_id": 68117, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "steering_control", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "community_detection", "task_count": 1}, {"referent": "detection_of_dependencies", "task_count": 1}, {"referent": "data_mining", "task_count": 1}, {"referent": "clustering", "task_count": 1}], "methods": [{"referent": "ggs_nns", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "estimation_statistics", "method_count": 1}, {"referent": "pyramidnet", "method_count": 1}, {"referent": "shap", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [4, 4, 4, 3, 7, 22, 2, 1, 3, 0, 0], "total": 50, "isTopResearch": false, "rank": 617, "fortune500_rank": 230}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 4, 2, 4, 0, 1, 1, 2, 1, 1, 0], "total": 16, "isTopResearch": false, "rank": 704, "fortune500_rank": 190}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 0], "total": 8.0, "isTopResearch": false, "rank": 595, "fortune500_rank": 171}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2211, "rank": 213, "fortune500_rank": 122}, "ai_jobs": {"counts": null, "total": 230, "rank": 217, "fortune500_rank": 117}}, "sector": "Basic Materials", "business_sector": "Mineral Resources"}, {"cset_id": 358, "country": "United States", "website": "http://www.blackrock.com", "crunchbase": {"text": "931f7202-91fd-ab26-c07d-06518289ef06", "url": "https://www.crunchbase.com/organization/blackrock"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/blackrock"], "stage": "Mature", "name": "Blackrock", "patent_name": "blackrock", "continent": "North America", "local_logo": "blackrock.png", "aliases": "Blackrock Brasil; Blackrock Capital Investment Corporation; Blackrock Inc; Blackrock, Inc", "permid_links": [{"text": 4295900990, "url": "https://permid.org/1-4295900990"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BLK", "url": "https://www.google.com/finance/quote/blk:nyse"}], "market_full": [{"text": "LON:0QZZ", "url": "https://www.google.com/finance/quote/0qzz:lon"}, {"text": "FWB:BLQA", "url": "https://www.google.com/finance/quote/blqa:fwb"}, {"text": "BMV:BLK", "url": "https://www.google.com/finance/quote/blk:bmv"}, {"text": "MOEX:BLK-RM", "url": "https://www.google.com/finance/quote/blk-rm:moex"}, {"text": "NYSE:BLK", "url": "https://www.google.com/finance/quote/blk:nyse"}], "crunchbase_description": "BlackRock is an investment company that offers its services to institutions, intermediaries, foundations, and individual investors.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Structured text", "field_count": 1}, {"field_name": "Categorization", "field_count": 1}, {"field_name": "Driving simulator", "field_count": 1}, {"field_name": "Big data", "field_count": 1}, {"field_name": "Document retrieval", "field_count": 1}], "clusters": [{"cluster_id": 4671, "cluster_count": 2}, {"cluster_id": 6418, "cluster_count": 1}, {"cluster_id": 26678, "cluster_count": 1}, {"cluster_id": 3018, "cluster_count": 1}, {"cluster_id": 5465, "cluster_count": 1}, {"cluster_id": 69684, "cluster_count": 1}, {"cluster_id": 3007, "cluster_count": 1}, {"cluster_id": 26257, "cluster_count": 1}, {"cluster_id": 5511, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 743, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 805, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 267, "referenced_count": 1}, {"ref_CSET_id": 27, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "image_manipulation", "task_count": 1}, {"referent": "steering_control", "task_count": 1}, {"referent": "graphs", "task_count": 1}, {"referent": "visual_localization", "task_count": 1}, {"referent": "cross_lingual", "task_count": 1}, {"referent": "retrieval", "task_count": 1}, {"referent": "document_retrieval", "task_count": 1}, {"referent": "document_embedding", "task_count": 1}, {"referent": "sentence_embedding", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "document_embeddings", "method_count": 1}, {"referent": "crf", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "dimensionality_reduction", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "shap", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [56, 49, 78, 95, 94, 79, 93, 90, 93, 55, 1], "total": 783, "isTopResearch": false, "rank": 222, "fortune500_rank": 85}, "ai_publications": {"counts": [1, 0, 0, 1, 1, 2, 4, 1, 2, 3, 0], "total": 15, "isTopResearch": false, "rank": 346, "fortune500_rank": 105}, "ai_publications_growth": {"counts": [], "total": 25.0, "isTopResearch": false, "rank": 101, "fortune500_rank": 31}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [8, 21, 14, 24, 15, 18, 23, 36, 44, 35, 3], "total": 241, "isTopResearch": false, "rank": 365, "fortune500_rank": 109}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 2, 0], "total": 5, "isTopResearch": true, "rank": 141, "fortune500_rank": 42}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 214, "fortune500_rank": 57}, "citations_per_article": {"counts": [8.0, 0, 0, 24.0, 15.0, 9.0, 5.75, 36.0, 22.0, 11.666666666666666, 0], "total": 16.066666666666666, "isTopResearch": false, "rank": 384, "fortune500_rank": 119}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2210, "rank": 214, "fortune500_rank": 123}, "ai_jobs": {"counts": null, "total": 459, "rank": 124, "fortune500_rank": 70}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "As a global investment manager and fiduciary to our clients, our purpose at BlackRock is to help everyone experience financial well-being. Since 1999, we've been a leading provider of financial technology, and our clients turn to us for the solutions they need when planning for their most important goals.", "company_site_link": "https://www.blackrock.com/us/individual/about-us/about-blackrock", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 133, "country": "China", "website": "http://corporate.jd.com/", "crunchbase": {"text": "33818672-08db-f8b9-8e80-e76f7e96cdcd", "url": "https://www.crunchbase.com/organization/jd-com"}, "child_crunchbase": [{"text": "33818672-08db-f8b9-8e80-e76f7e96cdcd", "url": "https://www.crunchbase.com/organization/jd-com"}, {"text": "e1aab05d-8130-85fd-65c0-bae3ddc4c4f4", "url": "https://www.crunchbase.com/organization/jd-finance"}], "linkedin": ["https://www.linkedin.com/company/jd.com"], "stage": "Mature", "name": "JD.com", "patent_name": "jd.com", "continent": "Asia", "local_logo": "jdcom.png", "aliases": "Jd.Com, Inc; \u4eac\u4e1c; \u4eac\u4e1c\u96c6\u56e2; \u4eac\u4e1c\u96c6\u56e2\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5041064571, "url": "https://permid.org/1-5041064571"}, {"text": 5044364263, "url": "https://permid.org/1-5044364263"}], "parent_info": null, "agg_child_info": "Jingdong AI, Jd Finance", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:JD", "url": "https://www.google.com/finance/quote/jd:nasdaq"}, {"text": "HKG:9618", "url": "https://www.google.com/finance/quote/9618:hkg"}], "market_full": [{"text": "NASDAQ:JD", "url": "https://www.google.com/finance/quote/jd:nasdaq"}, {"text": "OTC:JDCMF", "url": "https://www.google.com/finance/quote/jdcmf:otc"}, {"text": "HKG:9618", "url": "https://www.google.com/finance/quote/9618:hkg"}, {"text": "MOEX:JD-RM", "url": "https://www.google.com/finance/quote/jd-rm:moex"}, {"text": "BCBA:JD", "url": "https://www.google.com/finance/quote/bcba:jd"}, {"text": "VIE:JD", "url": "https://www.google.com/finance/quote/jd:vie"}, {"text": "MEX:JDN", "url": "https://www.google.com/finance/quote/jdn:mex"}, {"text": "FRA:013A", "url": "https://www.google.com/finance/quote/013a:fra"}], "crunchbase_description": "JD.com is an internet company and online consumer electronics retailer in China.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 41}, {"field_name": "Deep learning", "field_count": 27}, {"field_name": "Convolutional neural network", "field_count": 24}, {"field_name": "Segmentation", "field_count": 22}, {"field_name": "Recommender system", "field_count": 19}, {"field_name": "Reinforcement learning", "field_count": 17}, {"field_name": "Feature learning", "field_count": 13}, {"field_name": "Question answering", "field_count": 12}, {"field_name": "Discriminative model", "field_count": 12}, {"field_name": "Parsing", "field_count": 11}], "clusters": [{"cluster_id": 148, "cluster_count": 27}, {"cluster_id": 1989, "cluster_count": 22}, {"cluster_id": 9819, "cluster_count": 22}, {"cluster_id": 1436, "cluster_count": 17}, {"cluster_id": 1027, "cluster_count": 14}, {"cluster_id": 2381, "cluster_count": 13}, {"cluster_id": 13405, "cluster_count": 11}, {"cluster_id": 10485, "cluster_count": 11}, {"cluster_id": 14887, "cluster_count": 11}, {"cluster_id": 56285, "cluster_count": 11}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 2301}, {"ref_CSET_id": 101, "referenced_count": 1970}, {"ref_CSET_id": 87, "referenced_count": 951}, {"ref_CSET_id": 133, "referenced_count": 772}, {"ref_CSET_id": 245, "referenced_count": 386}, {"ref_CSET_id": 115, "referenced_count": 348}, {"ref_CSET_id": 223, "referenced_count": 320}, {"ref_CSET_id": 6, "referenced_count": 300}, {"ref_CSET_id": 37, "referenced_count": 240}, {"ref_CSET_id": 21, "referenced_count": 239}], "tasks": [{"referent": "classification", "task_count": 97}, {"referent": "recommendation", "task_count": 46}, {"referent": "computer_vision", "task_count": 37}, {"referent": "object_detection", "task_count": 29}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 29}, {"referent": "classification_tasks", "task_count": 26}, {"referent": "segmentation", "task_count": 25}, {"referent": "semantic_segmentation", "task_count": 22}, {"referent": "recommendation_systems", "task_count": 22}, {"referent": "multi_task_learning", "task_count": 22}], "methods": [{"referent": "3d_representations", "method_count": 92}, {"referent": "recurrent_neural_networks", "method_count": 76}, {"referent": "convolutional_neural_networks", "method_count": 62}, {"referent": "q_learning", "method_count": 42}, {"referent": "double_q_learning", "method_count": 37}, {"referent": "1d_cnn", "method_count": 36}, {"referent": "vqa_models", "method_count": 34}, {"referent": "attention_mechanisms", "method_count": 34}, {"referent": "dueling_network", "method_count": 32}, {"referent": "neural_architecture_search", "method_count": 32}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 1, 6, 6, 25, 139, 226, 225, 261, 179, 3], "total": 1071, "isTopResearch": false, "rank": 187, "sp500_rank": 138}, "ai_publications": {"counts": [0, 0, 4, 3, 19, 97, 182, 186, 207, 94, 0], "total": 792, "isTopResearch": false, "rank": 30, "sp500_rank": 24}, "ai_publications_growth": {"counts": [], "total": -13.700415734076321, "isTopResearch": false, "rank": 1287, "sp500_rank": 329}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 11, 52, 85, 73, 68, 24, 0], "total": 314, "isTopResearch": false, "rank": 15, "sp500_rank": 10}, "citation_counts": {"counts": [0, 0, 4, 9, 91, 651, 2681, 5903, 9113, 7303, 333], "total": 26088, "isTopResearch": false, "rank": 25, "sp500_rank": 17}, "cv_pubs": {"counts": [0, 0, 2, 0, 6, 41, 105, 99, 111, 45, 0], "total": 409, "isTopResearch": true, "rank": 23, "sp500_rank": 17}, "nlp_pubs": {"counts": [0, 0, 2, 0, 4, 13, 17, 18, 22, 17, 0], "total": 93, "isTopResearch": true, "rank": 22, "sp500_rank": 16}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 4, 4, 10, 3, 0], "total": 21, "isTopResearch": true, "rank": 76, "sp500_rank": 58}, "citations_per_article": {"counts": [0, 0, 1.0, 3.0, 4.7894736842105265, 6.711340206185567, 14.73076923076923, 31.736559139784948, 44.02415458937198, 77.69148936170212, 0], "total": 32.93939393939394, "isTopResearch": false, "rank": 167, "sp500_rank": 36}}, "patents": {"ai_patents": {"counts": [2, 5, 10, 17, 90, 176, 176, 250, 176, 48, 0], "total": 950, "table": null, "rank": 28, "sp500_rank": 23}, "ai_patents_growth": {"counts": [], "total": 45.86700336700337, "table": null, "rank": 223, "sp500_rank": 100}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [20, 50, 100, 170, 900, 1760, 1760, 2500, 1760, 480, 0], "total": 9500, "table": null, "rank": 28, "sp500_rank": 23}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [1, 0, 0, 0, 0, 0, 3, 9, 0, 0, 0], "total": 13, "table": null, "rank": 70, "sp500_rank": 47}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 3, 4, 4, 2, 3, 0, 0], "total": 16, "table": "industry", "rank": 69, "sp500_rank": 52}, "Transportation": {"counts": [0, 0, 0, 1, 4, 5, 2, 3, 0, 0, 0], "total": 15, "table": "industry", "rank": 82, "sp500_rank": 64}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 2, 2, 1, 1, 0, 1, 1, 0], "total": 8, "table": null, "rank": 81, "sp500_rank": 56}, "Education": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0], "total": 3, "table": null, "rank": 29, "sp500_rank": 25}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [0, 4, 4, 6, 19, 33, 52, 93, 92, 13, 0], "total": 316, "table": "industry", "rank": 28, "sp500_rank": 24}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 6, 1, 1, 4, 0, 0], "total": 13, "table": null, "rank": 63, "sp500_rank": 51}, "Telecommunications": {"counts": [0, 1, 0, 4, 8, 7, 7, 9, 8, 1, 0], "total": 45, "table": "industry", "rank": 83, "sp500_rank": 63}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 3, 0, 3, 32, 50, 35, 73, 57, 9, 0], "total": 262, "table": "industry", "rank": 9, "sp500_rank": 9}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 97, "sp500_rank": 78}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": null, "rank": 37, "sp500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 3, 3, 1, 0, 0, 0, 0], "total": 7, "table": null, "rank": 45, "sp500_rank": 34}, "Speech_Processing": {"counts": [0, 0, 0, 1, 0, 4, 14, 7, 4, 1, 0], "total": 31, "table": "application", "rank": 34, "sp500_rank": 26}, "Knowledge_Representation": {"counts": [0, 0, 0, 2, 1, 2, 4, 3, 0, 0, 0], "total": 12, "table": "application", "rank": 66, "sp500_rank": 48}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 2, 15, 21, 2, 17, 19, 1, 0], "total": 78, "table": "application", "rank": 23, "sp500_rank": 21}, "Control": {"counts": [0, 0, 0, 1, 4, 4, 5, 2, 0, 0, 0], "total": 16, "table": "application", "rank": 106, "sp500_rank": 76}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14}, "Computer_Vision": {"counts": [2, 0, 2, 2, 29, 79, 75, 127, 91, 23, 0], "total": 430, "table": "application", "rank": 19, "sp500_rank": 15}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0], "total": 6, "table": null, "rank": 147, "sp500_rank": 103}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 7, 2, 1, 0, 0, 0], "total": 11, "table": null, "rank": 114, "sp500_rank": 88}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2184, "rank": 215, "sp500_rank": 127}, "ai_jobs": {"counts": null, "total": 445, "rank": 128, "sp500_rank": 83}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "JD.com, Inc. (Chinese: \u4eac\u4e1c; pinyin: J\u012bngd\u014dng), also known as Jingdong and formerly called 360buy, is a Chinese e-commerce company headquartered in Beijing. It is one of the two massive B2C online retailers in China by transaction volume and revenue, a member of the Fortune Global 500 and a major competitor to Alibaba-run Tmall.", "wikipedia_link": "https://en.wikipedia.org/wiki/JD.com", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2011, "country": "United States", "website": "https://www.tiaa.org/", "crunchbase": {"text": " bf0c8076-ae01-181e-2a0b-5c9b0313fca1 ", "url": " https://www.crunchbase.com/organization/tiaa-cref "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tiaa"], "stage": "Unknown", "name": "Tiaa", "patent_name": "TIAA", "continent": "North America", "local_logo": null, "aliases": "TIAA; Teachers Insurance And Annuity Association College Retirement Equities Fund", "permid_links": [{"text": 4297013677, "url": "https://permid.org/1-4297013677"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Discriminative model", "field_count": 1}], "clusters": [{"cluster_id": 37952, "cluster_count": 1}, {"cluster_id": 25078, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [{"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [6, 9, 4, 4, 2, 1, 3, 3, 1, 5, 0], "total": 38, "isTopResearch": false, "rank": 676, "sp500_rank": 347}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 881, "sp500_rank": 347}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 1.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "sp500_rank": 327}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2178, "rank": 216, "sp500_rank": 128}, "ai_jobs": {"counts": null, "total": 155, "rank": 264, "sp500_rank": 159}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2336, "country": "United States", "website": "https://www.gartner.com/en", "crunchbase": {"text": "b3bac9d0-5439-2608-1606-70e9a2d8f22d", "url": "https://www.crunchbase.com/organization/gartner"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/gartner"], "stage": "Mature", "name": "Gartner Inc", "patent_name": "gartner inc", "continent": "North America", "local_logo": "gartner_inc.png", "aliases": "Gartner; Gartner Consulting; Gartner Group; Gartner Group, Inc", "permid_links": [{"text": 4295903161, "url": "https://permid.org/1-4295903161"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MUN:GGRA", "url": "https://www.google.com/finance/quote/ggra:mun"}, {"text": "SAO:G1AR34", "url": "https://www.google.com/finance/quote/g1ar34:sao"}, {"text": "HAN:GGRA", "url": "https://www.google.com/finance/quote/ggra:han"}, {"text": "DUS:GGRA", "url": "https://www.google.com/finance/quote/dus:ggra"}, {"text": "BRN:GGRA", "url": "https://www.google.com/finance/quote/brn:ggra"}, {"text": "DEU:GART", "url": "https://www.google.com/finance/quote/deu:gart"}, {"text": "STU:GGRA", "url": "https://www.google.com/finance/quote/ggra:stu"}, {"text": "FRA:GGRA", "url": "https://www.google.com/finance/quote/fra:ggra"}, {"text": "NYQ:IT", "url": "https://www.google.com/finance/quote/it:nyq"}, {"text": "BER:GGRA", "url": "https://www.google.com/finance/quote/ber:ggra"}, {"text": "MOEX:IT-RM", "url": "https://www.google.com/finance/quote/it-rm:moex"}, {"text": "LSE:0ITV", "url": "https://www.google.com/finance/quote/0itv:lse"}, {"text": "ASE:IT", "url": "https://www.google.com/finance/quote/ase:it"}], "crunchbase_description": "Gartner provides fact-based consulting services, helping clients use and manage IT to enhance business performance.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Augmented reality", "field_count": 1}, {"field_name": "Feature learning", "field_count": 1}], "clusters": [{"cluster_id": 15732, "cluster_count": 1}, {"cluster_id": 4358, "cluster_count": 1}, {"cluster_id": 20306, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 793, "referenced_count": 1}], "tasks": [{"referent": "representation_learning", "task_count": 1}, {"referent": "data_clustering", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "visual_localization", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "gan_feature_matching", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 2, 3, 4, 6, 1, 2, 3, 0], "total": 22, "isTopResearch": false, "rank": 784, "fortune500_rank": 280}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -33.333333333333336, "isTopResearch": false, "rank": 1404, "fortune500_rank": 406}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 857, "fortune500_rank": 236}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 2.0, 0.0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "fortune500_rank": 237}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2174, "rank": 217, "fortune500_rank": 124}, "ai_jobs": {"counts": null, "total": 553, "rank": 103, "fortune500_rank": 57}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Gartner, Inc, officially known as Gartner, is a global research and advisory firm providing information, advice, and tools for leaders in IT, finance, HR, customer service and support, communications, legal and compliance, marketing, sales, and supply chain functions. Its headquarters are in Stamford, Connecticut, United States. The firm changed its name from Gartner Group, Inc to Gartner in 2000. It is a member of the S&P 500.", "wikipedia_link": "https://en.wikipedia.org/wiki/Gartner", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3105, "country": "United States", "website": "https://www.aig.com/", "crunchbase": {"text": " 5a1496f1-0f26-d0e0-9815-d378750011e4 ", "url": " https://www.crunchbase.com/organization/american-international-group "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aig"], "stage": "Mature", "name": "American International Group", "patent_name": "American International Group", "continent": "North America", "local_logo": null, "aliases": "American International Group; American International Group, Inc", "permid_links": [{"text": 4295903341, "url": "https://permid.org/1-4295903341"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AIG PR A", "url": "https://www.google.com/finance/quote/AIG PR A:NYSE"}, {"text": "NYSE:AIG", "url": "https://www.google.com/finance/quote/AIG:NYSE"}], "market_full": [{"text": "NYQ:AIG PR A", "url": "https://www.google.com/finance/quote/AIG PR A:NYQ"}, {"text": "SAO:AIGB34", "url": "https://www.google.com/finance/quote/AIGB34:SAO"}, {"text": "MCX:AIG-RM", "url": "https://www.google.com/finance/quote/AIG-RM:MCX"}, {"text": "STU:AINN", "url": "https://www.google.com/finance/quote/AINN:STU"}, {"text": "ASE:AIG PR A", "url": "https://www.google.com/finance/quote/AIG PR A:ASE"}, {"text": "SGO:AIGCL", "url": "https://www.google.com/finance/quote/AIGCL:SGO"}, {"text": "MUN:AINN", "url": "https://www.google.com/finance/quote/AINN:MUN"}, {"text": "NYSE:AIG PR A", "url": "https://www.google.com/finance/quote/AIG PR A:NYSE"}, {"text": "DUS:AINN", "url": "https://www.google.com/finance/quote/AINN:DUS"}, {"text": "HAM:AINN", "url": "https://www.google.com/finance/quote/AINN:HAM"}, {"text": "BRN:AINN", "url": "https://www.google.com/finance/quote/AINN:BRN"}, {"text": "DEU:AIG", "url": "https://www.google.com/finance/quote/AIG:DEU"}, {"text": "VIE:AIG", "url": "https://www.google.com/finance/quote/AIG:VIE"}, {"text": "SWX:AIG", "url": "https://www.google.com/finance/quote/AIG:SWX"}, {"text": "FRA:AINN", "url": "https://www.google.com/finance/quote/AINN:FRA"}, {"text": "GER:AINNX", "url": "https://www.google.com/finance/quote/AINNX:GER"}, {"text": "LSE:0OAL", "url": "https://www.google.com/finance/quote/0OAL:LSE"}, {"text": "HAN:AINN", "url": "https://www.google.com/finance/quote/AINN:HAN"}, {"text": "NYSE:AIG", "url": "https://www.google.com/finance/quote/AIG:NYSE"}, {"text": "ASE:AIG", "url": "https://www.google.com/finance/quote/AIG:ASE"}, {"text": "NYQ:AIG", "url": "https://www.google.com/finance/quote/AIG:NYQ"}, {"text": "SGO:AIG", "url": "https://www.google.com/finance/quote/AIG:SGO"}, {"text": "MEX:AIG*", "url": "https://www.google.com/finance/quote/AIG*:MEX"}, {"text": "BER:AINN", "url": "https://www.google.com/finance/quote/AINN:BER"}, {"text": "BUE:AIG3", "url": "https://www.google.com/finance/quote/AIG3:BUE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [{"cluster_id": 1338, "cluster_count": 1}, {"cluster_id": 65572, "cluster_count": 1}, {"cluster_id": 7095, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 734, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 796, "referenced_count": 1}, {"ref_CSET_id": 436, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "automated_writing_evaluation", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "event_extraction", "task_count": 1}, {"referent": "time_series", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 2}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "t_d", "method_count": 1}, {"referent": "npid", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "adversarial_training", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [8, 13, 14, 12, 6, 6, 7, 10, 2, 3, 0], "total": 81, "isTopResearch": false, "rank": 544, "sp500_rank": 306, "fortune500_rank": 203}, "ai_publications": {"counts": [0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "sp500_rank": 285, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 1], "total": 5, "isTopResearch": false, "rank": 820, "sp500_rank": 333, "fortune500_rank": 225}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 3.0, 0, 0, 0], "total": 1.6666666666666667, "isTopResearch": false, "rank": 851, "sp500_rank": 338, "fortune500_rank": 230}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 2, 1, 1, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525, "sp500_rank": 225, "fortune500_rank": 169}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "sp500_rank": 444, "fortune500_rank": 438}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 20, 10, 10, 0, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525, "sp500_rank": 225, "fortune500_rank": 169}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "sp500_rank": 131, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 115, "sp500_rank": 79, "fortune500_rank": 41}, "Telecommunications": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 233, "sp500_rank": 145, "fortune500_rank": 77}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 214, "sp500_rank": 141, "fortune500_rank": 70}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2172, "rank": 218, "sp500_rank": 129, "fortune500_rank": 125}, "ai_jobs": {"counts": null, "total": 258, "rank": 205, "sp500_rank": 132, "fortune500_rank": 112}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 237, "country": "United States", "website": "https://www.splunk.com", "crunchbase": {"text": "837ad05a-425e-95ef-ac60-883f89524b2b", "url": "https://www.crunchbase.com/organization/splunk"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/splunk"], "stage": "Mature", "name": "Splunk", "patent_name": "splunk", "continent": "North America", "local_logo": "splunk.png", "aliases": "Splunk Inc; Splunk, Inc", "permid_links": [{"text": 4297157941, "url": "https://permid.org/1-4297157941"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:SPLK", "url": "https://www.google.com/finance/quote/nasdaq:splk"}], "market_full": [{"text": "DUS:S0U", "url": "https://www.google.com/finance/quote/dus:s0u"}, {"text": "XETR:S0U", "url": "https://www.google.com/finance/quote/s0u:xetr"}, {"text": "MOEX:SPLK-RM", "url": "https://www.google.com/finance/quote/moex:splk-rm"}, {"text": "NASDAQ:SPLK", "url": "https://www.google.com/finance/quote/nasdaq:splk"}, {"text": "HAN:S0U", "url": "https://www.google.com/finance/quote/han:s0u"}, {"text": "BER:S0U", "url": "https://www.google.com/finance/quote/ber:s0u"}, {"text": "BMV:SPLK", "url": "https://www.google.com/finance/quote/bmv:splk"}, {"text": "FWB:S0U", "url": "https://www.google.com/finance/quote/fwb:s0u"}, {"text": "MUN:S0U", "url": "https://www.google.com/finance/quote/mun:s0u"}, {"text": "LSE:0R09", "url": "https://www.google.com/finance/quote/0r09:lse"}], "crunchbase_description": "Splunk is a software company that provides operational intelligence software that monitors, reports, and analyzes real-time machine data.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Analytics", "field_count": 1}, {"field_name": "Hyperparameter", "field_count": 1}, {"field_name": "Knowledge base", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Exploratory data analysis", "field_count": 1}, {"field_name": "Parsing", "field_count": 1}], "clusters": [{"cluster_id": 66571, "cluster_count": 2}, {"cluster_id": 11510, "cluster_count": 2}, {"cluster_id": 48351, "cluster_count": 1}, {"cluster_id": 32824, "cluster_count": 1}, {"cluster_id": 4358, "cluster_count": 1}, {"cluster_id": 16998, "cluster_count": 1}, {"cluster_id": 23779, "cluster_count": 1}, {"cluster_id": 20825, "cluster_count": 1}, {"cluster_id": 26, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 22}, {"ref_CSET_id": 115, "referenced_count": 17}, {"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 87, "referenced_count": 7}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 237, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 176, "referenced_count": 2}, {"ref_CSET_id": 487, "referenced_count": 2}], "tasks": [{"referent": "data_mining", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "neural_network_security", "task_count": 1}, {"referent": "clustering", "task_count": 1}, {"referent": "comics_processing", "task_count": 1}, {"referent": "disease_detection", "task_count": 1}, {"referent": "recommendation_systems", "task_count": 1}, {"referent": "network_community_partition", "task_count": 1}], "methods": [{"referent": "resnest", "method_count": 2}, {"referent": "generative_adversarial_networks", "method_count": 2}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "som", "method_count": 1}, {"referent": "gts", "method_count": 1}, {"referent": "coresets", "method_count": 1}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 5, 3, 3, 5, 0, 3, 2, 6, 7, 0], "total": 36, "isTopResearch": false, "rank": 680}, "ai_publications": {"counts": [1, 0, 0, 0, 1, 0, 3, 1, 4, 1, 0], "total": 11, "isTopResearch": false, "rank": 397}, "ai_publications_growth": {"counts": [], "total": 52.77777777777777, "isTopResearch": false, "rank": 62}, "ai_pubs_top_conf": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 1, 0, 1, 1, 10, 17, 27, 25, 27, 2], "total": 111, "isTopResearch": false, "rank": 487}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 1.0, 0, 5.666666666666667, 27.0, 6.25, 27.0, 0], "total": 10.090909090909092, "isTopResearch": false, "rank": 532}}, "patents": {"ai_patents": {"counts": [0, 2, 2, 13, 22, 13, 6, 6, 1, 0, 0], "total": 65, "table": null, "rank": 197}, "ai_patents_growth": {"counts": [], "total": -31.585081585081582, "table": null, "rank": 1487}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 20, 20, 130, 220, 130, 60, 60, 10, 0, 0], "total": 650, "table": null, "rank": 197}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 3, 0, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 141}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 12, 20, 13, 6, 6, 1, 0, 0], "total": 59, "table": "industry", "rank": 102}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 1, 5, 9, 4, 1, 1, 0, 0, 0], "total": 21, "table": "industry", "rank": 132}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 233}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 55}, "Language_Processing": {"counts": [0, 0, 1, 3, 2, 1, 0, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 45}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 160}, "Knowledge_Representation": {"counts": [0, 0, 2, 3, 13, 5, 3, 1, 1, 0, 0], "total": 28, "table": "application", "rank": 36}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 3, 0, 1, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 198}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 1, 2, 1, 1, 2, 1, 1, 0, 0], "total": 9, "table": "application", "rank": 259}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 2, 1, 1, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 147}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2170, "rank": 219}, "ai_jobs": {"counts": null, "total": 88, "rank": 363}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Splunk Inc. is an American public multinational corporation based in San Francisco, California, that produces software for searching, monitoring, and analyzing machine-generated big data via a Web-style interface.", "wikipedia_link": "https://en.wikipedia.org/wiki/Splunk", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1797, "country": "France", "website": "https://totalenergies.com/", "crunchbase": {"text": "844d9eb3-43d1-642e-cb37-292b61c12475", "url": "https://www.crunchbase.com/organization/total"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/totalenergies"], "stage": "Mature", "name": "Totalenergies Se", "patent_name": "totalenergies se", "continent": "Europe", "local_logo": "totalenergies_se.png", "aliases": "Total; Total S.A; Total Sa; Totalenergies", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TTE", "url": "https://www.google.com/finance/quote/NYSE:TTE"}], "market_full": [{"text": "DEU:TOTA", "url": "https://www.google.com/finance/quote/deu:tota"}, {"text": "DUS:TOTA", "url": "https://www.google.com/finance/quote/DUS:TOTA"}, {"text": "BER:TOTA", "url": "https://www.google.com/finance/quote/ber:tota"}, {"text": "NYQ:TTE", "url": "https://www.google.com/finance/quote/nyq:tte"}, {"text": "DUS:TOTB", "url": "https://www.google.com/finance/quote/dus:totb"}, {"text": "PAR:TTE", "url": "https://www.google.com/finance/quote/PAR:TTE"}, {"text": "BUE:TTE3", "url": "https://www.google.com/finance/quote/bue:tte3"}, {"text": "ASE:TTE", "url": "https://www.google.com/finance/quote/ASE:TTE"}, {"text": "BER:TOTB", "url": "https://www.google.com/finance/quote/ber:totb"}, {"text": "LSE:0A30", "url": "https://www.google.com/finance/quote/0a30:lse"}, {"text": "DEU:TOTF", "url": "https://www.google.com/finance/quote/deu:totf"}, {"text": "BRN:TOTB", "url": "https://www.google.com/finance/quote/brn:totb"}, {"text": "FRA:TOTA", "url": "https://www.google.com/finance/quote/FRA:TOTA"}, {"text": "STU:TOTB", "url": "https://www.google.com/finance/quote/stu:totb"}, {"text": "LSE:TTE", "url": "https://www.google.com/finance/quote/lse:tte"}, {"text": "MUN:TOTA", "url": "https://www.google.com/finance/quote/MUN:TOTA"}, {"text": "MEX:TTEN", "url": "https://www.google.com/finance/quote/mex:tten"}, {"text": "NYSE:TTE", "url": "https://www.google.com/finance/quote/NYSE:TTE"}, {"text": "FRA:TOTB", "url": "https://www.google.com/finance/quote/FRA:TOTB"}, {"text": "HAM:TOTB", "url": "https://www.google.com/finance/quote/HAM:TOTB"}, {"text": "SWX:FP", "url": "https://www.google.com/finance/quote/fp:swx"}, {"text": "GER:TOTBX", "url": "https://www.google.com/finance/quote/ger:totbx"}, {"text": "PKC:TTENF", "url": "https://www.google.com/finance/quote/pkc:ttenf"}, {"text": "MUN:TOTB", "url": "https://www.google.com/finance/quote/MUN:TOTB"}, {"text": "EBT:TTEP", "url": "https://www.google.com/finance/quote/EBT:TTEp"}, {"text": "VIE:FP", "url": "https://www.google.com/finance/quote/fp:vie"}, {"text": "STU:TOTA", "url": "https://www.google.com/finance/quote/stu:tota"}, {"text": "HAN:TOTB", "url": "https://www.google.com/finance/quote/han:totb"}], "crunchbase_description": "Total is one of the world's major oil and gas groups, with activities in more than 130 countries.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 4}, {"field_name": "Hyperspectral imaging", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Inference", "field_count": 2}, {"field_name": "Synthetic aperture radar", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Robot", "field_count": 2}, {"field_name": "Classifier (UML)", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}], "clusters": [{"cluster_id": 11145, "cluster_count": 4}, {"cluster_id": 49570, "cluster_count": 3}, {"cluster_id": 7515, "cluster_count": 3}, {"cluster_id": 27186, "cluster_count": 3}, {"cluster_id": 5378, "cluster_count": 2}, {"cluster_id": 2503, "cluster_count": 2}, {"cluster_id": 27297, "cluster_count": 2}, {"cluster_id": 30070, "cluster_count": 2}, {"cluster_id": 12846, "cluster_count": 1}, {"cluster_id": 45745, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 17}, {"ref_CSET_id": 87, "referenced_count": 12}, {"ref_CSET_id": 163, "referenced_count": 12}, {"ref_CSET_id": 1797, "referenced_count": 11}, {"ref_CSET_id": 6, "referenced_count": 4}, {"ref_CSET_id": 785, "referenced_count": 3}, {"ref_CSET_id": 366, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 1860, "referenced_count": 2}, {"ref_CSET_id": 676, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 21}, {"referent": "land_cover_classification", "task_count": 4}, {"referent": "image_processing", "task_count": 4}, {"referent": "developmental_learning", "task_count": 4}, {"referent": "remote_sensing", "task_count": 3}, {"referent": "supervised_learning", "task_count": 3}, {"referent": "action_understanding", "task_count": 3}, {"referent": "seismic_analysis", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "mobile_robot", "task_count": 2}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 7}, {"referent": "optimization", "method_count": 6}, {"referent": "self_supervised_learning", "method_count": 5}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "logistic_regression", "method_count": 4}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "mad_learning", "method_count": 4}, {"referent": "l1_regularization", "method_count": 3}, {"referent": "reinforcement_learning", "method_count": 3}, {"referent": "q_learning", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [262, 231, 260, 236, 264, 245, 289, 307, 365, 357, 11], "total": 2827, "isTopResearch": false, "rank": 99}, "ai_publications": {"counts": [1, 1, 1, 1, 5, 10, 12, 9, 15, 7, 0], "total": 62, "isTopResearch": false, "rank": 160}, "ai_publications_growth": {"counts": [], "total": -3.888888888888888, "isTopResearch": false, "rank": 1229}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [306, 679, 1186, 1814, 2851, 4367, 6367, 8719, 10406, 5400, 35], "total": 42130, "isTopResearch": false, "rank": 19}, "cv_pubs": {"counts": [1, 0, 0, 1, 2, 3, 1, 3, 1, 3, 0], "total": 15, "isTopResearch": true, "rank": 163}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0], "total": 4, "isTopResearch": true, "rank": 187}, "citations_per_article": {"counts": [306.0, 679.0, 1186.0, 1814.0, 570.2, 436.7, 530.5833333333334, 968.7777777777778, 693.7333333333333, 771.4285714285714, 0], "total": 679.516129032258, "isTopResearch": false, "rank": 3}}, "patents": {"ai_patents": {"counts": [1, 1, 0, 1, 4, 1, 2, 5, 7, 0, 0], "total": 22, "table": null, "rank": 307}, "ai_patents_growth": {"counts": [], "total": 58.333333333333336, "table": null, "rank": 177}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 10, 0, 10, 40, 10, 20, 50, 70, 0, 0], "total": 220, "table": null, "rank": 307}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0], "total": 5, "table": "industry", "rank": 78}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 2, 0, 2, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 336}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 1, 2, 0, 2, 1, 1, 0, 0], "total": 7, "table": "industry", "rank": 62}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 239}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 1, 0, 0, 1, 0, 1, 1, 1, 0, 0], "total": 5, "table": "application", "rank": 318}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 191}, "Measuring_and_Testing": {"counts": [1, 1, 0, 0, 2, 0, 1, 1, 3, 0, 0], "total": 9, "table": "application", "rank": 128}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2166, "rank": 220}, "ai_jobs": {"counts": null, "total": 263, "rank": 199}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 3148, "country": "France", "website": "https://totalenergies.com/", "crunchbase": {"text": " 70930b6f-3a70-4d9d-b2bb-1fd9adf3e2d2", "url": " https://www.crunchbase.com/organization/totalenergies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/totalenergies"], "stage": "Mature", "name": "Totalenergies", "patent_name": "TotalEnergies", "continent": "Europe", "local_logo": null, "aliases": "TotalEnergies; Totalenergies Se", "permid_links": [{"text": 5001170594, "url": "https://permid.org/1-5001170594"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TTE", "url": "https://www.google.com/finance/quote/NYSE:TTE"}], "market_full": [{"text": "LSE:0A30", "url": "https://www.google.com/finance/quote/0a30:lse"}, {"text": "STU:TOTA", "url": "https://www.google.com/finance/quote/stu:tota"}, {"text": "MUN:TOTA", "url": "https://www.google.com/finance/quote/MUN:TOTA"}, {"text": "DUS:TOTB", "url": "https://www.google.com/finance/quote/dus:totb"}, {"text": "STU:TOTB", "url": "https://www.google.com/finance/quote/stu:totb"}, {"text": "PAR:TTE", "url": "https://www.google.com/finance/quote/PAR:TTE"}, {"text": "HAM:TOTB", "url": "https://www.google.com/finance/quote/HAM:TOTB"}, {"text": "ASE:TTE", "url": "https://www.google.com/finance/quote/ASE:TTE"}, {"text": "LSE:TTE", "url": "https://www.google.com/finance/quote/lse:tte"}, {"text": "VIE:FP", "url": "https://www.google.com/finance/quote/fp:vie"}, {"text": "MIL:TOT", "url": "https://www.google.com/finance/quote/MIL:TOT"}, {"text": "HAN:TOTB", "url": "https://www.google.com/finance/quote/han:totb"}, {"text": "EBT:TTEP", "url": "https://www.google.com/finance/quote/EBT:TTEp"}, {"text": "DUS:TOTA", "url": "https://www.google.com/finance/quote/DUS:TOTA"}, {"text": "GER:TOTBX", "url": "https://www.google.com/finance/quote/ger:totbx"}, {"text": "MEX:TTEN", "url": "https://www.google.com/finance/quote/mex:tten"}, {"text": "SWX:FP", "url": "https://www.google.com/finance/quote/fp:swx"}, {"text": "BER:TOTA", "url": "https://www.google.com/finance/quote/ber:tota"}, {"text": "FRA:TOTA", "url": "https://www.google.com/finance/quote/FRA:TOTA"}, {"text": "PKC:TTFNF", "url": "https://www.google.com/finance/quote/PKC:TTFNF"}, {"text": "FRA:TOTB", "url": "https://www.google.com/finance/quote/FRA:TOTB"}, {"text": "NYSE:TTE", "url": "https://www.google.com/finance/quote/NYSE:TTE"}, {"text": "NYQ:TTE", "url": "https://www.google.com/finance/quote/nyq:tte"}, {"text": "BER:TOTB", "url": "https://www.google.com/finance/quote/ber:totb"}, {"text": "BUE:TTE3", "url": "https://www.google.com/finance/quote/bue:tte3"}, {"text": "MUN:TOTB", "url": "https://www.google.com/finance/quote/MUN:TOTB"}, {"text": "DEU:TOTA", "url": "https://www.google.com/finance/quote/deu:tota"}, {"text": "DEU:TOTF", "url": "https://www.google.com/finance/quote/deu:totf"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Inference", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Hyperspectral imaging", "field_count": 1}, {"field_name": "Prediction interval", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Curve fitting", "field_count": 1}, {"field_name": "False alarm", "field_count": 1}], "clusters": [{"cluster_id": 15397, "cluster_count": 1}, {"cluster_id": 3886, "cluster_count": 1}, {"cluster_id": 27186, "cluster_count": 1}, {"cluster_id": 53140, "cluster_count": 1}, {"cluster_id": 123150, "cluster_count": 1}, {"cluster_id": 11145, "cluster_count": 1}, {"cluster_id": 26441, "cluster_count": 1}, {"cluster_id": 51474, "cluster_count": 1}, {"cluster_id": 1609, "cluster_count": 1}, {"cluster_id": 46593, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 101, "referenced_count": 7}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 737, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 3148, "referenced_count": 1}, {"ref_CSET_id": 1789, "referenced_count": 1}], "tasks": [{"referent": "gaussian_processes", "task_count": 1}, {"referent": "prediction_intervals", "task_count": 1}, {"referent": "epidemiology", "task_count": 1}, {"referent": "time_series", "task_count": 1}, {"referent": "ensemble_pruning", "task_count": 1}, {"referent": "image_classification_tasks", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "single_cell_modeling", "task_count": 1}, {"referent": "hyperspectral", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}], "methods": [{"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "batchboost", "method_count": 1}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "cgnn", "method_count": 1}, {"referent": "deep_ensembles", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "value_function_estimation", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1, 1, 1, 3, 5, 0, 0, 3, 97, 296, 9], "total": 416, "isTopResearch": false, "rank": 302, "sp500_rank": 199}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 0], "total": 12, "isTopResearch": false, "rank": 384, "sp500_rank": 205}, "ai_publications_growth": {"counts": [], "total": 40.0, "isTopResearch": false, "rank": 76, "sp500_rank": 37}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 5, 1], "total": 7, "isTopResearch": false, "rank": 794, "sp500_rank": 326}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.2, 0.7142857142857143, 0], "total": 0.5833333333333334, "isTopResearch": false, "rank": 904, "sp500_rank": 356}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 5, 0, 0], "total": 8, "table": null, "rank": 443, "sp500_rank": 203}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 20, 50, 0, 0], "total": 80, "table": null, "rank": 443, "sp500_rank": 203}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": "industry", "rank": 125, "sp500_rank": 92}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "table": "application", "rank": 450, "sp500_rank": 196}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 3, 0, 0], "total": 4, "table": "application", "rank": 189, "sp500_rank": 129}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2166, "rank": 220, "sp500_rank": 130}, "ai_jobs": {"counts": null, "total": 263, "rank": 199, "sp500_rank": 129}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2765, "country": "United States", "website": "https://www.mantech.com/", "crunchbase": {"text": "3309451a-a9d5-ea52-5ef6-61049d00878b", "url": "https://www.crunchbase.com/organization/mantech"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mantech"], "stage": "Mature", "name": "ManTech International Corp/VA", "patent_name": "mantech international corp/va", "continent": "North America", "local_logo": "mantech_international_corp_va.png", "aliases": "Mantech; Mantech International Corp; Mantech International Corporation", "permid_links": [{"text": 4295902031, "url": "https://permid.org/1-4295902031"}], "parent_info": "The Carlyle Group (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:MANT", "url": "https://www.google.com/finance/quote/mant:nasdaq"}], "market_full": [{"text": "BER:MNMA", "url": "https://www.google.com/finance/quote/ber:mnma"}, {"text": "DEU:MNMA", "url": "https://www.google.com/finance/quote/deu:mnma"}, {"text": "FRA:MNMA", "url": "https://www.google.com/finance/quote/fra:mnma"}, {"text": "DUS:MNMA", "url": "https://www.google.com/finance/quote/dus:mnma"}, {"text": "NASDAQ:MANT", "url": "https://www.google.com/finance/quote/mant:nasdaq"}, {"text": "STU:MNMA", "url": "https://www.google.com/finance/quote/mnma:stu"}, {"text": "MUN:MNMA", "url": "https://www.google.com/finance/quote/mnma:mun"}], "crunchbase_description": "ManTech provides technologies and solutions for mission-critical national security programs.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [9, 1, 7, 4, 6, 5, 3, 4, 0, 7, 0], "total": 46, "isTopResearch": false, "rank": 633}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2161, "rank": 222}, "ai_jobs": {"counts": null, "total": 63, "rank": 431}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "ManTech International Corporation is an American defense contracting firm that was co-founded in 1968 by Franc Wertheimer and George J. Pedersen. The company uses advanced technology to help government and industry clients manage and protect information, support and maintain critical systems, and develop integrated systems to handle complex needs. The company name \"ManTech\" is a portmanteau formed through the combination of \"Management\" and \"Technology.\"", "wikipedia_link": "https://en.wikipedia.org/wiki/ManTech_International", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2748, "country": "Italy", "website": "https://www.leonardocompany.com/en/home", "crunchbase": {"text": "e83b2126-7bea-e90c-ec7b-5426fdbfd66f", "url": "https://www.crunchbase.com/organization/leonardo"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/leonardo_company"], "stage": "Mature", "name": "Leonardo SpA", "patent_name": "leonardo spa", "continent": "Europe", "local_logo": "leonardo_spa.png", "aliases": "Leonardo; Leonardo S.P.A", "permid_links": [{"text": 4295875430, "url": "https://permid.org/1-4295875430"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MIL:LDO", "url": "https://www.google.com/finance/quote/ldo:mil"}, {"text": "FRA:FMNB", "url": "https://www.google.com/finance/quote/fmnb:fra"}, {"text": "DEU:SIFI", "url": "https://www.google.com/finance/quote/deu:sifi"}, {"text": "HAN:FMNB", "url": "https://www.google.com/finance/quote/fmnb:han"}, {"text": "LSE:0ONG", "url": "https://www.google.com/finance/quote/0ong:lse"}, {"text": "PKC:FINMF", "url": "https://www.google.com/finance/quote/finmf:pkc"}, {"text": "STU:FMN", "url": "https://www.google.com/finance/quote/fmn:stu"}, {"text": "MUN:FMNB", "url": "https://www.google.com/finance/quote/fmnb:mun"}, {"text": "EBT:LDOM", "url": "https://www.google.com/finance/quote/ebt:ldom"}, {"text": "DUS:FMNB", "url": "https://www.google.com/finance/quote/dus:fmnb"}, {"text": "DEU:FMN", "url": "https://www.google.com/finance/quote/deu:fmn"}, {"text": "HAM:FMNB", "url": "https://www.google.com/finance/quote/fmnb:ham"}, {"text": "BER:FMNB", "url": "https://www.google.com/finance/quote/ber:fmnb"}, {"text": "STU:FMNB", "url": "https://www.google.com/finance/quote/fmnb:stu"}, {"text": "VIE:LDO", "url": "https://www.google.com/finance/quote/ldo:vie"}, {"text": "PKC:FINMY", "url": "https://www.google.com/finance/quote/finmy:pkc"}], "crunchbase_description": "Leonardo is a global high-tech company specializing in aerospace, security, and defense.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Swarm behaviour", "field_count": 1}, {"field_name": "Visualization", "field_count": 1}, {"field_name": "Multispectral image", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "RGB color model", "field_count": 1}, {"field_name": "Hyperspectral imaging", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 7893, "cluster_count": 1}, {"cluster_id": 35801, "cluster_count": 1}, {"cluster_id": 4816, "cluster_count": 1}, {"cluster_id": 2006, "cluster_count": 1}, {"cluster_id": 15718, "cluster_count": 1}, {"cluster_id": 4438, "cluster_count": 1}, {"cluster_id": 2275, "cluster_count": 1}, {"cluster_id": 2076, "cluster_count": 1}, {"cluster_id": 2135, "cluster_count": 1}, {"cluster_id": 26511, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 161, "referenced_count": 1}, {"ref_CSET_id": 3114, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 2075, "referenced_count": 1}, {"ref_CSET_id": 2748, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 6}, {"referent": "video_surveillance", "task_count": 5}, {"referent": "target_recognition", "task_count": 3}, {"referent": "hyperspectral", "task_count": 2}, {"referent": "community_detection", "task_count": 2}, {"referent": "steering_control", "task_count": 2}, {"referent": "autonomous_navigation", "task_count": 2}, {"referent": "scene_change_detection", "task_count": 1}, {"referent": "material_classification", "task_count": 1}, {"referent": "satellite_image_classification", "task_count": 1}], "methods": [{"referent": "sig", "method_count": 3}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "transposed_convolution", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "appo", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "schnet", "method_count": 1}, {"referent": "dvd_gan", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [15, 32, 13, 96, 37, 57, 44, 34, 26, 58, 4], "total": 416, "isTopResearch": false, "rank": 302}, "ai_publications": {"counts": [1, 0, 3, 4, 0, 2, 4, 2, 2, 2, 0], "total": 20, "isTopResearch": false, "rank": 301}, "ai_publications_growth": {"counts": [], "total": -16.666666666666668, "isTopResearch": false, "rank": 1303}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [1, 1, 2, 14, 24, 34, 38, 69, 59, 55, 4], "total": 301, "isTopResearch": false, "rank": 331}, "cv_pubs": {"counts": [1, 0, 3, 3, 0, 0, 2, 1, 0, 0, 0], "total": 10, "isTopResearch": true, "rank": 202}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 1, 1, 0], "total": 5, "isTopResearch": true, "rank": 171}, "citations_per_article": {"counts": [1.0, 0, 0.6666666666666666, 3.5, 0, 17.0, 9.5, 34.5, 29.5, 27.5, 0], "total": 15.05, "isTopResearch": false, "rank": 403}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 1, 1, 1, 0, 2, 0, 0], "total": 6, "table": null, "rank": 487}, "ai_patents_growth": {"counts": [], "total": -33.333333333333336, "table": null, "rank": 1491}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 10, 10, 10, 0, 20, 0, 0], "total": 60, "table": null, "rank": 487}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [1, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 147}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0], "total": 3, "table": "application", "rank": 209}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2150, "rank": 223}, "ai_jobs": {"counts": null, "total": 49, "rank": 487}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Leonardo S.p.A., formerly Leonardo-Finmeccanica and Finmeccanica, is an Italian multinational company specialising in aerospace, defence and security. Headquartered in Rome, the company has 180 sites worldwide. It is the eighth largest defence contractor in the world based on 2018 revenues. The company is partially owned by the Italian government, which holds 30.2% of the company's shares and is its largest shareholder.", "wikipedia_link": "https://en.wikipedia.org/wiki/Leonardo_S.p.A.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 1981, "country": "United States", "website": "https://www.delta.com/", "crunchbase": {"text": " 29354954-3ebe-3d88-7fe2-c27c4ab38ff9", "url": " https://www.crunchbase.com/organization/delta-air-lines"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/delta-air-lines"], "stage": "Mature", "name": "Delta Air Lines", "patent_name": "Delta Air Lines", "continent": "North America", "local_logo": null, "aliases": "Delta Air Lines; Delta Air Lines, Inc", "permid_links": [{"text": 4295903853, "url": "https://permid.org/1-4295903853"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DAL", "url": "https://www.google.com/finance/quote/DAL:NYSE"}], "market_full": [{"text": "MCX:DAL-RM", "url": "https://www.google.com/finance/quote/DAL-RM:MCX"}, {"text": "SAO:DEAI34", "url": "https://www.google.com/finance/quote/DEAI34:SAO"}, {"text": "BRN:OYC", "url": "https://www.google.com/finance/quote/BRN:OYC"}, {"text": "GER:OYCX", "url": "https://www.google.com/finance/quote/GER:OYCX"}, {"text": "FRA:OYC", "url": "https://www.google.com/finance/quote/FRA:OYC"}, {"text": "DEU:DEL", "url": "https://www.google.com/finance/quote/DEL:DEU"}, {"text": "MUN:OYC", "url": "https://www.google.com/finance/quote/MUN:OYC"}, {"text": "NYQ:DAL", "url": "https://www.google.com/finance/quote/DAL:NYQ"}, {"text": "STU:OYC", "url": "https://www.google.com/finance/quote/OYC:STU"}, {"text": "VIE:DAL", "url": "https://www.google.com/finance/quote/DAL:VIE"}, {"text": "BER:OYC", "url": "https://www.google.com/finance/quote/BER:OYC"}, {"text": "ASE:DAL", "url": "https://www.google.com/finance/quote/ASE:DAL"}, {"text": "LSE:0QZ4", "url": "https://www.google.com/finance/quote/0QZ4:LSE"}, {"text": "NYSE:DAL", "url": "https://www.google.com/finance/quote/DAL:NYSE"}, {"text": "MEX:DAL*", "url": "https://www.google.com/finance/quote/DAL*:MEX"}, {"text": "SWX:DAL", "url": "https://www.google.com/finance/quote/DAL:SWX"}, {"text": "DUS:OYC", "url": "https://www.google.com/finance/quote/DUS:OYC"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Semantic Web", "field_count": 1}], "clusters": [{"cluster_id": 47042, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [20, 28, 14, 10, 5, 8, 6, 2, 9, 11, 0], "total": 113, "isTopResearch": false, "rank": 496, "fortune500_rank": 184}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 833, "fortune500_rank": 228}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 1.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735, "fortune500_rank": 206}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2116, "rank": 224, "fortune500_rank": 126}, "ai_jobs": {"counts": null, "total": 317, "rank": 173, "fortune500_rank": 94}}, "sector": "Industrials", "business_sector": "Transportation"}, {"cset_id": 796, "country": "United States", "website": "https://abc.xyz/", "crunchbase": {"text": "096694c6-bcd2-a975-b95c-fab77c81d915", "url": "https://www.crunchbase.com/organization/alphabet"}, "child_crunchbase": [{"text": "19a9c1dc-6f04-41ca-bd48-77dad98897a0", "url": "https://www.crunchbase.com/organization/intrinsic-97a0"}, {"text": "c1833ca6-85d5-e3b8-08e5-8fcceb76717b", "url": "https://www.crunchbase.com/organization/google-s-self-driving-car-project"}, {"text": "d9f418da-28f5-8b04-97f7-086b4ffbf048", "url": "https://www.crunchbase.com/organization/vicarious-systems-inc"}, {"text": "ceff4e5b-95c2-839a-3150-c340c4b5bc71", "url": "https://www.crunchbase.com/organization/verily-2"}], "linkedin": ["https://www.linkedin.com/company/intrinsic", "https://www.linkedin.com/company/alphabet-inc", "https://www.linkedin.com/company/waymo", "https://www.linkedin.com/company/vicarious-ai", "https://www.linkedin.com/company/verily"], "stage": "Mature", "name": "Alphabet", "patent_name": "alphabet", "continent": "North America", "local_logo": "alphabet.png", "aliases": "Alphabet Inc", "permid_links": [{"text": 5082534760, "url": "https://permid.org/1-5082534760"}, {"text": 5030853586, "url": "https://permid.org/1-5030853586"}, {"text": 5053732847, "url": "https://permid.org/1-5053732847"}, {"text": 5028044072, "url": "https://permid.org/1-5028044072"}, {"text": 5050702354, "url": "https://permid.org/1-5050702354"}], "parent_info": null, "agg_child_info": "Intrinsic, Waymo, Vicarious AI, Verily Life Sciences", "unagg_child_info": "Google Brain, DeepMind, Google, Fitbit, Nest, Google Robotics", "market_filt": [{"text": "NASDAQ:GOOG", "url": "https://www.google.com/finance/quote/goog:nasdaq"}, {"text": "NASDAQ:GOOGL", "url": "https://www.google.com/finance/quote/googl:nasdaq"}], "market_full": [{"text": "NASDAQ:GOOG", "url": "https://www.google.com/finance/quote/goog:nasdaq"}, {"text": "BMV:GOOGL", "url": "https://www.google.com/finance/quote/bmv:googl"}, {"text": "DUS:ABEA", "url": "https://www.google.com/finance/quote/abea:dus"}, {"text": "MOEX:GOOG-RM", "url": "https://www.google.com/finance/quote/goog-rm:moex"}, {"text": "NEO:GOOG", "url": "https://www.google.com/finance/quote/goog:neo"}, {"text": "MUN:ABEA", "url": "https://www.google.com/finance/quote/abea:mun"}, {"text": "MIL:GOOGL", "url": "https://www.google.com/finance/quote/googl:mil"}, {"text": "XETR:ABEA", "url": "https://www.google.com/finance/quote/abea:xetr"}, {"text": "HAM:ABEA", "url": "https://www.google.com/finance/quote/abea:ham"}, {"text": "LON:0RIH", "url": "https://www.google.com/finance/quote/0rih:lon"}, {"text": "BER:ABEA", "url": "https://www.google.com/finance/quote/abea:ber"}, {"text": "NASDAQ:GOOGL", "url": "https://www.google.com/finance/quote/googl:nasdaq"}], "crunchbase_description": "Alphabet is a holding company that provides projects with resources, freedom, and focus to make their ideas happen.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Segmentation", "field_count": 4}, {"field_name": "Task (computing)", "field_count": 4}, {"field_name": "Convolutional neural network", "field_count": 4}, {"field_name": "Object (computer science)", "field_count": 4}, {"field_name": "Probabilistic logic", "field_count": 4}, {"field_name": "Receiver operating characteristic", "field_count": 4}, {"field_name": "Inference", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 3}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Concept learning", "field_count": 3}], "clusters": [{"cluster_id": 23307, "cluster_count": 12}, {"cluster_id": 19977, "cluster_count": 9}, {"cluster_id": 2844, "cluster_count": 4}, {"cluster_id": 56050, "cluster_count": 4}, {"cluster_id": 32715, "cluster_count": 3}, {"cluster_id": 1609, "cluster_count": 3}, {"cluster_id": 52787, "cluster_count": 3}, {"cluster_id": 4455, "cluster_count": 3}, {"cluster_id": 2482, "cluster_count": 3}, {"cluster_id": 3628, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 506}, {"ref_CSET_id": 87, "referenced_count": 140}, {"ref_CSET_id": 163, "referenced_count": 135}, {"ref_CSET_id": 796, "referenced_count": 103}, {"ref_CSET_id": 184, "referenced_count": 58}, {"ref_CSET_id": 336, "referenced_count": 46}, {"ref_CSET_id": 35, "referenced_count": 42}, {"ref_CSET_id": 23, "referenced_count": 34}, {"ref_CSET_id": 6, "referenced_count": 34}, {"ref_CSET_id": 223, "referenced_count": 33}], "tasks": [{"referent": "classification", "task_count": 18}, {"referent": "autonomous_driving", "task_count": 13}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 12}, {"referent": "motion_planning", "task_count": 9}, {"referent": "disease_detection", "task_count": 8}, {"referent": "domain_generalization", "task_count": 8}, {"referent": "autonomous_vehicles", "task_count": 7}, {"referent": "inference_attack", "task_count": 7}, {"referent": "object_detection", "task_count": 7}, {"referent": "segmentation", "task_count": 6}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 13}, {"referent": "3d_representations", "method_count": 12}, {"referent": "recurrent_neural_networks", "method_count": 11}, {"referent": "vqa_models", "method_count": 10}, {"referent": "neural_architecture_search", "method_count": 7}, {"referent": "symbolic_deep_learning", "method_count": 6}, {"referent": "chexnet", "method_count": 5}, {"referent": "causal_inference", "method_count": 5}, {"referent": "mad_learning", "method_count": 5}, {"referent": "generative_models", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 2, 6, 24, 61, 105, 120, 157, 134, 159, 0], "total": 768, "isTopResearch": false, "rank": 225, "sp500_rank": 156, "fortune500_rank": 87}, "ai_publications": {"counts": [0, 1, 2, 1, 7, 18, 18, 29, 31, 29, 0], "total": 136, "isTopResearch": false, "rank": 103, "sp500_rank": 74, "fortune500_rank": 32}, "ai_publications_growth": {"counts": [], "total": 20.518683310674415, "isTopResearch": false, "rank": 116, "sp500_rank": 57, "fortune500_rank": 35}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 1, 2, 2, 11, 11, 4, 0], "total": 32, "isTopResearch": false, "rank": 55, "sp500_rank": 29, "fortune500_rank": 19}, "citation_counts": {"counts": [0, 0, 1, 15, 45, 230, 541, 1357, 2039, 1820, 39], "total": 6087, "isTopResearch": false, "rank": 67, "sp500_rank": 45, "fortune500_rank": 24}, "cv_pubs": {"counts": [0, 1, 0, 0, 3, 6, 5, 13, 19, 21, 0], "total": 68, "isTopResearch": true, "rank": 73, "sp500_rank": 52, "fortune500_rank": 19}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 1, 0, 0, 1, 4, 4, 6, 5, 10, 0], "total": 31, "isTopResearch": true, "rank": 63, "sp500_rank": 50, "fortune500_rank": 19}, "citations_per_article": {"counts": [0, 0.0, 0.5, 15.0, 6.428571428571429, 12.777777777777779, 30.055555555555557, 46.793103448275865, 65.7741935483871, 62.758620689655174, 0], "total": 44.75735294117647, "isTopResearch": false, "rank": 111, "sp500_rank": 24, "fortune500_rank": 28}}, "patents": {"ai_patents": {"counts": [22, 25, 61, 99, 143, 155, 201, 198, 64, 0, 0], "total": 968, "table": null, "rank": 26, "sp500_rank": 21, "fortune500_rank": 6}, "ai_patents_growth": {"counts": [], "total": 12.192163477671421, "table": null, "rank": 325, "sp500_rank": 151, "fortune500_rank": 104}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [220, 250, 610, 990, 1430, 1550, 2010, 1980, 640, 0, 0], "total": 9680, "table": null, "rank": 26, "sp500_rank": 21, "fortune500_rank": 6}, "Physical_Sciences_and_Engineering": {"counts": [1, 1, 2, 1, 0, 0, 3, 0, 0, 0, 0], "total": 8, "table": null, "rank": 59, "sp500_rank": 50, "fortune500_rank": 21}, "Life_Sciences": {"counts": [3, 0, 6, 13, 17, 24, 17, 27, 5, 0, 0], "total": 112, "table": "industry", "rank": 11, "sp500_rank": 9, "fortune500_rank": 4}, "Security__eg_cybersecurity": {"counts": [1, 1, 3, 1, 2, 3, 2, 4, 0, 0, 0], "total": 17, "table": null, "rank": 63, "sp500_rank": 47, "fortune500_rank": 27}, "Transportation": {"counts": [13, 15, 17, 25, 52, 58, 50, 29, 8, 0, 0], "total": 267, "table": "industry", "rank": 9, "sp500_rank": 8, "fortune500_rank": 3}, "Industrial_and_Manufacturing": {"counts": [0, 1, 6, 10, 17, 12, 23, 21, 3, 0, 0], "total": 93, "table": "industry", "rank": 8, "sp500_rank": 6, "fortune500_rank": 2}, "Education": {"counts": [0, 0, 0, 0, 1, 3, 1, 1, 0, 0, 0], "total": 6, "table": null, "rank": 22, "sp500_rank": 16, "fortune500_rank": 7}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 4, "sp500_rank": 4, "fortune500_rank": 3}, "Agricultural": {"counts": [0, 0, 0, 2, 2, 5, 3, 10, 1, 0, 0], "total": 23, "table": null, "rank": 7, "sp500_rank": 7, "fortune500_rank": 3}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [3, 2, 17, 25, 30, 37, 40, 43, 6, 0, 0], "total": 203, "table": "industry", "rank": 40, "sp500_rank": 32, "fortune500_rank": 17}, "Banking_and_Finance": {"counts": [1, 1, 2, 1, 1, 2, 3, 0, 1, 0, 0], "total": 12, "table": null, "rank": 67, "sp500_rank": 52, "fortune500_rank": 26}, "Telecommunications": {"counts": [6, 3, 12, 11, 16, 21, 17, 23, 5, 0, 0], "total": 114, "table": "industry", "rank": 37, "sp500_rank": 33, "fortune500_rank": 17}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 4, 3, 4, 11, 7, 4, 11, 2, 0, 0], "total": 46, "table": null, "rank": 56, "sp500_rank": 43, "fortune500_rank": 25}, "Energy_Management": {"counts": [2, 0, 1, 0, 1, 0, 2, 2, 0, 0, 0], "total": 8, "table": null, "rank": 55, "sp500_rank": 52, "fortune500_rank": 11}, "Entertainment": {"counts": [1, 0, 1, 3, 2, 2, 1, 0, 0, 0, 0], "total": 10, "table": null, "rank": 15, "sp500_rank": 10, "fortune500_rank": 7}, "Nanotechnology": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 10, "sp500_rank": 9, "fortune500_rank": 5}, "Semiconductors": {"counts": [0, 0, 2, 0, 0, 1, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 24, "sp500_rank": 14, "fortune500_rank": 12}, "Language_Processing": {"counts": [1, 0, 2, 3, 4, 1, 0, 0, 0, 0, 0], "total": 11, "table": null, "rank": 37, "sp500_rank": 26, "fortune500_rank": 21}, "Speech_Processing": {"counts": [0, 0, 4, 5, 3, 4, 5, 6, 2, 0, 0], "total": 29, "table": null, "rank": 38, "sp500_rank": 29, "fortune500_rank": 11}, "Knowledge_Representation": {"counts": [2, 2, 2, 1, 4, 5, 7, 3, 1, 0, 0], "total": 27, "table": null, "rank": 39, "sp500_rank": 30, "fortune500_rank": 22}, "Planning_and_Scheduling": {"counts": [0, 2, 3, 3, 10, 5, 3, 9, 2, 0, 0], "total": 37, "table": "application", "rank": 48, "sp500_rank": 40, "fortune500_rank": 18}, "Control": {"counts": [14, 15, 18, 37, 64, 68, 60, 31, 10, 0, 0], "total": 317, "table": "application", "rank": 10, "sp500_rank": 9, "fortune500_rank": 4}, "Distributed_AI": {"counts": [0, 0, 0, 0, 2, 2, 2, 1, 0, 0, 0], "total": 7, "table": null, "rank": 9, "sp500_rank": 7, "fortune500_rank": 8}, "Robotics": {"counts": [0, 2, 2, 2, 8, 2, 0, 0, 0, 0, 0], "total": 16, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "Computer_Vision": {"counts": [10, 9, 8, 26, 40, 57, 85, 61, 19, 0, 0], "total": 315, "table": "application", "rank": 33, "sp500_rank": 24, "fortune500_rank": 8}, "Analytics_and_Algorithms": {"counts": [3, 0, 3, 11, 13, 11, 18, 15, 4, 0, 0], "total": 78, "table": "application", "rank": 20, "sp500_rank": 18, "fortune500_rank": 7}, "Measuring_and_Testing": {"counts": [9, 5, 7, 13, 27, 28, 30, 27, 7, 0, 0], "total": 153, "table": "application", "rank": 12, "sp500_rank": 10, "fortune500_rank": 4}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2111, "rank": 225, "sp500_rank": 131, "fortune500_rank": 127}, "ai_jobs": {"counts": null, "total": 213, "rank": 224, "sp500_rank": 145, "fortune500_rank": 119}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "What is Alphabet? Alphabet is mostly a collection of companies. The largest of which, of course, is Google. This newer Google is a bit slimmed down, with the companies that are pretty far afield of our main internet products contained in Alphabet instead. What do we mean by far afield? Good examples are our health efforts: Life Sciences (that works on the glucose-sensing contact lens), and Calico (focused on longevity). Fundamentally, we believe this allows us more management scale, as we can run things independently that aren\u2019t very related.", "company_site_link": "https://abc.xyz/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2176, "country": "United States", "website": "https://www.macys.com/", "crunchbase": {"text": " 9fd1e37c-8d42-38a9-05e5-437c95cb3e94", "url": "https://www.crunchbase.com/organization/macys"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/macy"], "stage": "Mature", "name": "Macy'S", "patent_name": "Macy's", "continent": "North America", "local_logo": null, "aliases": "Federated Department Stores, Inc; Macy's; Macys.Com, Llc", "permid_links": [{"text": 4295903122, "url": "https://permid.org/1-4295903122"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:M", "url": "https://www.google.com/finance/quote/M:NYSE"}], "market_full": [{"text": "BER:FDO", "url": "https://www.google.com/finance/quote/BER:FDO"}, {"text": "NYQ:M", "url": "https://www.google.com/finance/quote/M:NYQ"}, {"text": "STU:FDO", "url": "https://www.google.com/finance/quote/FDO:STU"}, {"text": "DUS:FDO", "url": "https://www.google.com/finance/quote/DUS:FDO"}, {"text": "SAO:AMACY34", "url": "https://www.google.com/finance/quote/AMACY34:SAO"}, {"text": "DEU:M", "url": "https://www.google.com/finance/quote/DEU:M"}, {"text": "FRA:FDO", "url": "https://www.google.com/finance/quote/FDO:FRA"}, {"text": "VIE:MACY", "url": "https://www.google.com/finance/quote/MACY:VIE"}, {"text": "LSE:0JXD", "url": "https://www.google.com/finance/quote/0JXD:LSE"}, {"text": "MCX:M-RM", "url": "https://www.google.com/finance/quote/M-RM:MCX"}, {"text": "BRN:FDO", "url": "https://www.google.com/finance/quote/BRN:FDO"}, {"text": "MUN:FDO", "url": "https://www.google.com/finance/quote/FDO:MUN"}, {"text": "MEX:M*", "url": "https://www.google.com/finance/quote/M*:MEX"}, {"text": "GER:FDOX", "url": "https://www.google.com/finance/quote/FDOX:GER"}, {"text": "NYSE:M", "url": "https://www.google.com/finance/quote/M:NYSE"}, {"text": "ASE:M", "url": "https://www.google.com/finance/quote/ASE:M"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2104, "rank": 226, "fortune500_rank": 128}, "ai_jobs": {"counts": null, "total": 143, "rank": 279, "fortune500_rank": 150}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers"}, {"cset_id": 2124, "country": "United States", "website": "https://www.northwesternmutual.com/", "crunchbase": {"text": " 5c1730e2-4ee0-da7e-8e21-659d474bffbb ", "url": " https://www.crunchbase.com/organization/northwestern-mutual-life "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/northwestern-mutual"], "stage": "Unknown", "name": "Northwestern Mutual", "patent_name": "Northwestern Mutual", "continent": "North America", "local_logo": null, "aliases": "Northwestern Mutual; The Northwestern Mutual Life Insurance Company", "permid_links": [{"text": 4296999413, "url": "https://permid.org/1-4296999413"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2067, "rank": 227, "sp500_rank": 132}, "ai_jobs": {"counts": null, "total": 261, "rank": 202, "sp500_rank": 131}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 1564, "country": "United States", "website": "http://www.bakerhughes.com", "crunchbase": {"text": "fb816fab-f529-bd11-ae69-08137799a3ac", "url": "https://www.crunchbase.com/organization/baker-hughes"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bakerhughes"], "stage": "Mature", "name": "Baker Hughes, A Ge Company", "patent_name": "Baker Hughes, a GE company", "continent": "North America", "local_logo": "baker_hughes,_a_ge_company.png", "aliases": "Baker Hughes; Baker Hughes, a GE company; Bhge; General Electric'S Oil And Gas", "permid_links": [{"text": 4295903545, "url": "https://permid.org/1-4295903545"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:BKR", "url": "https://www.google.com/finance/quote/BKR:NASDAQ"}], "market_full": [{"text": "NASDAQ:BKR", "url": "https://www.google.com/finance/quote/BKR:NASDAQ"}, {"text": "HAN:68V", "url": "https://www.google.com/finance/quote/68V:HAN"}, {"text": "MCX:BKR-RM", "url": "https://www.google.com/finance/quote/BKR-RM:MCX"}, {"text": "HAM:68V", "url": "https://www.google.com/finance/quote/68V:HAM"}, {"text": "MEX:BKR*", "url": "https://www.google.com/finance/quote/BKR*:MEX"}, {"text": "MUN:68V", "url": "https://www.google.com/finance/quote/68V:MUN"}, {"text": "DUS:68V", "url": "https://www.google.com/finance/quote/68V:DUS"}, {"text": "FRA:68V", "url": "https://www.google.com/finance/quote/68V:FRA"}, {"text": "GER:68VX", "url": "https://www.google.com/finance/quote/68VX:GER"}, {"text": "STU:68V", "url": "https://www.google.com/finance/quote/68V:STU"}, {"text": "DEU:68V", "url": "https://www.google.com/finance/quote/68V:DEU"}, {"text": "LSE:0RR8", "url": "https://www.google.com/finance/quote/0RR8:LSE"}, {"text": "BRN:68V", "url": "https://www.google.com/finance/quote/68V:BRN"}, {"text": "SAO:B1KR34", "url": "https://www.google.com/finance/quote/B1KR34:SAO"}, {"text": "BER:68V", "url": "https://www.google.com/finance/quote/68V:BER"}], "crunchbase_description": "Baker Hughes is an energy technology company that provides solutions for energy and industrial customers worldwide.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Analytics", "field_count": 3}, {"field_name": "Decision support system", "field_count": 2}, {"field_name": "Random forest", "field_count": 1}, {"field_name": "Heuristic", "field_count": 1}, {"field_name": "Multi-objective optimization", "field_count": 1}, {"field_name": "Boosting (machine learning)", "field_count": 1}, {"field_name": "Decision rule", "field_count": 1}, {"field_name": "3D modeling", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 54676, "cluster_count": 8}, {"cluster_id": 53446, "cluster_count": 5}, {"cluster_id": 29455, "cluster_count": 5}, {"cluster_id": 22989, "cluster_count": 4}, {"cluster_id": 38533, "cluster_count": 3}, {"cluster_id": 16620, "cluster_count": 3}, {"cluster_id": 41505, "cluster_count": 3}, {"cluster_id": 25755, "cluster_count": 2}, {"cluster_id": 68517, "cluster_count": 2}, {"cluster_id": 41511, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 1564, "referenced_count": 17}, {"ref_CSET_id": 101, "referenced_count": 14}, {"ref_CSET_id": 1495, "referenced_count": 9}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 2344, "referenced_count": 5}, {"ref_CSET_id": 2284, "referenced_count": 4}, {"ref_CSET_id": 785, "referenced_count": 4}, {"ref_CSET_id": 682, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 1797, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "decision_making", "task_count": 6}, {"referent": "motion_planning", "task_count": 6}, {"referent": "speech_production", "task_count": 5}, {"referent": "automl", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "developmental_learning", "task_count": 4}, {"referent": "autonomous_driving", "task_count": 4}, {"referent": "feature_selection", "task_count": 4}, {"referent": "image_analysis", "task_count": 4}], "methods": [{"referent": "vqa_models", "method_count": 10}, {"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "atss", "method_count": 7}, {"referent": "meta_learning_algorithms", "method_count": 7}, {"referent": "mad_learning", "method_count": 6}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "q_learning", "method_count": 4}, {"referent": "automl", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "self_supervised_learning", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [315, 358, 382, 407, 370, 319, 294, 364, 334, 168, 4], "total": 3315, "isTopResearch": false, "rank": 84, "fortune500_rank": 30}, "ai_publications": {"counts": [5, 6, 11, 7, 5, 7, 8, 20, 14, 6, 0], "total": 89, "isTopResearch": false, "rank": 130, "fortune500_rank": 42}, "ai_publications_growth": {"counts": [], "total": 20.952380952380953, "isTopResearch": false, "rank": 114, "fortune500_rank": 34}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [4, 6, 20, 36, 43, 67, 68, 92, 129, 127, 7], "total": 599, "isTopResearch": false, "rank": 247, "fortune500_rank": 73}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 1, 2, 1, 0, 1, 1, 2, 0, 1, 0], "total": 10, "isTopResearch": true, "rank": 114, "fortune500_rank": 31}, "citations_per_article": {"counts": [0.8, 1.0, 1.8181818181818181, 5.142857142857143, 8.6, 9.571428571428571, 8.5, 4.6, 9.214285714285714, 21.166666666666668, 0], "total": 6.730337078651686, "isTopResearch": false, "rank": 652, "fortune500_rank": 186}}, "patents": {"ai_patents": {"counts": [10, 1, 1, 5, 6, 16, 10, 14, 5, 0, 0], "total": 68, "table": null, "rank": 189, "fortune500_rank": 60}, "ai_patents_growth": {"counts": [], "total": 56.388888888888886, "table": null, "rank": 183, "fortune500_rank": 47}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [100, 10, 10, 50, 60, 160, 100, 140, 50, 0, 0], "total": 680, "table": null, "rank": 189, "fortune500_rank": 60}, "Physical_Sciences_and_Engineering": {"counts": [3, 1, 1, 5, 3, 12, 7, 4, 1, 0, 0], "total": 37, "table": "industry", "rank": 14, "fortune500_rank": 6}, "Life_Sciences": {"counts": [1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 139, "fortune500_rank": 59}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 193, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 3, 2, 1, 0, 0], "total": 7, "table": "industry", "rank": 86, "fortune500_rank": 26}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [2, 1, 1, 3, 4, 10, 5, 5, 1, 0, 0], "total": 32, "table": "industry", "rank": 149, "fortune500_rank": 53}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 249, "fortune500_rank": 95}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [3, 0, 0, 1, 2, 1, 0, 2, 0, 0, 0], "total": 9, "table": "industry", "rank": 162, "fortune500_rank": 56}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "fortune500_rank": 43}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [4, 0, 0, 2, 0, 2, 0, 1, 0, 0, 0], "total": 9, "table": "application", "rank": 78, "fortune500_rank": 40}, "Planning_and_Scheduling": {"counts": [2, 0, 0, 1, 2, 1, 0, 2, 0, 0, 0], "total": 8, "table": "application", "rank": 143, "fortune500_rank": 51}, "Control": {"counts": [2, 0, 1, 2, 4, 5, 3, 5, 0, 0, 0], "total": 22, "table": "application", "rank": 85, "fortune500_rank": 28}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 1, 1, 5, 2, 0, 0], "total": 10, "table": "application", "rank": 241, "fortune500_rank": 73}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 3, 0, 1, 0, 0, 0], "total": 4, "table": null, "rank": 173, "fortune500_rank": 70}, "Measuring_and_Testing": {"counts": [2, 0, 1, 0, 1, 5, 3, 7, 1, 0, 0], "total": 20, "table": "application", "rank": 84, "fortune500_rank": 25}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2043, "rank": 228, "fortune500_rank": 129}, "ai_jobs": {"counts": null, "total": 298, "rank": 180, "fortune500_rank": 100}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 1958, "country": "Spain", "website": "https://www.bbva.com/", "crunchbase": {"text": " ae632f7f-da81-c3d7-b171-412c5f0611ff", "url": " https://www.crunchbase.com/organization/banco-bilbao-vizcaya-argentaria"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bbva"], "stage": "Mature", "name": "Banco Bilbao Vizcaya Argentaria", "patent_name": "Banco Bilbao Vizcaya Argentaria", "continent": "Europe", "local_logo": null, "aliases": "Banco Bilbao Vizcaya Argentaria; Banco Bilbao Vizcaya Argentaria, S.A", "permid_links": [{"text": 4295889577, "url": "https://permid.org/1-4295889577"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BBVA", "url": "https://www.google.com/finance/quote/BBVA:NYSE"}], "market_full": [{"text": "PKC:BBVXF", "url": "https://www.google.com/finance/quote/BBVXF:PKC"}, {"text": "DEU:BBVA", "url": "https://www.google.com/finance/quote/BBVA:DEU"}, {"text": "DUS:BOY", "url": "https://www.google.com/finance/quote/BOY:DUS"}, {"text": "BUE:BBV3", "url": "https://www.google.com/finance/quote/BBV3:BUE"}, {"text": "VIE:BBVA", "url": "https://www.google.com/finance/quote/BBVA:VIE"}, {"text": "LSE:BVA", "url": "https://www.google.com/finance/quote/BVA:LSE"}, {"text": "ASE:BBVA", "url": "https://www.google.com/finance/quote/ASE:BBVA"}, {"text": "MUN:BOY", "url": "https://www.google.com/finance/quote/BOY:MUN"}, {"text": "FRA:BBVA", "url": "https://www.google.com/finance/quote/BBVA:FRA"}, {"text": "MIL:BBVA", "url": "https://www.google.com/finance/quote/BBVA:MIL"}, {"text": "SAO:BILB34", "url": "https://www.google.com/finance/quote/BILB34:SAO"}, {"text": "LSE:0A2B", "url": "https://www.google.com/finance/quote/0A2B:LSE"}, {"text": "STU:BOY", "url": "https://www.google.com/finance/quote/BOY:STU"}, {"text": "EBT:BBVAE", "url": "https://www.google.com/finance/quote/BBVAe:EBT"}, {"text": "STU:BBVA", "url": "https://www.google.com/finance/quote/BBVA:STU"}, {"text": "MEX:BBVA*", "url": "https://www.google.com/finance/quote/BBVA*:MEX"}, {"text": "BRU:BBV", "url": "https://www.google.com/finance/quote/BBV:BRU"}, {"text": "BER:BOY", "url": "https://www.google.com/finance/quote/BER:BOY"}, {"text": "GER:BOYX", "url": "https://www.google.com/finance/quote/BOYX:GER"}, {"text": "HAM:BOY", "url": "https://www.google.com/finance/quote/BOY:HAM"}, {"text": "MCE:BBVA", "url": "https://www.google.com/finance/quote/BBVA:MCE"}, {"text": "FRA:BOY", "url": "https://www.google.com/finance/quote/BOY:FRA"}, {"text": "DUS:BBVA", "url": "https://www.google.com/finance/quote/BBVA:DUS"}, {"text": "BRN:BOY", "url": "https://www.google.com/finance/quote/BOY:BRN"}, {"text": "NYSE:BBVA", "url": "https://www.google.com/finance/quote/BBVA:NYSE"}, {"text": "HAN:BOY", "url": "https://www.google.com/finance/quote/BOY:HAN"}, {"text": "MUN:BBVA", "url": "https://www.google.com/finance/quote/BBVA:MUN"}, {"text": "NYQ:BBVA", "url": "https://www.google.com/finance/quote/BBVA:NYQ"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Decision-making models", "field_count": 1}, {"field_name": "False positive paradox", "field_count": 1}], "clusters": [{"cluster_id": 24905, "cluster_count": 1}, {"cluster_id": 13347, "cluster_count": 1}, {"cluster_id": 52163, "cluster_count": 1}, {"cluster_id": 15496, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "feature_engineering", "task_count": 1}, {"referent": "fraud_detection", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [4, 8, 9, 6, 8, 3, 2, 3, 4, 1, 0], "total": 48, "isTopResearch": false, "rank": 622, "sp500_rank": 330}, "ai_publications": {"counts": [0, 0, 0, 0, 2, 1, 0, 0, 0, 1, 0], "total": 4, "isTopResearch": false, "rank": 573, "sp500_rank": 275}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 2, 3, 2, 7, 8, 0], "total": 23, "isTopResearch": false, "rank": 670, "sp500_rank": 279}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.5, 2.0, 0, 0, 0, 8.0, 0], "total": 5.75, "isTopResearch": false, "rank": 692, "sp500_rank": 274}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2037, "rank": 229, "sp500_rank": 133}, "ai_jobs": {"counts": null, "total": 342, "rank": 163, "sp500_rank": 106}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 1857, "country": "France", "website": "https://www.edf.fr/", "crunchbase": {"text": " 66955796-8910-3714-9125-cbc0072e1241 ", "url": "https://www.crunchbase.com/organization/edf"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/edf"], "stage": "Mature", "name": "Electricit\u00e9 De France", "patent_name": "Electricit\u00e9 de France", "continent": "Europe", "local_logo": null, "aliases": "Electricite De France Sa; Electricit\u00e9 de France", "permid_links": [{"text": 5000041150, "url": "https://permid.org/1-5000041150"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "EBT:EDFP", "url": "https://www.google.com/finance/quote/EBT:EDFp"}, {"text": "DUS:E2F", "url": "https://www.google.com/finance/quote/DUS:E2F"}, {"text": "PAR:EDF", "url": "https://www.google.com/finance/quote/EDF:PAR"}, {"text": "DEU:EDF", "url": "https://www.google.com/finance/quote/DEU:EDF"}, {"text": "BER:E2F", "url": "https://www.google.com/finance/quote/BER:E2F"}, {"text": "GER:E2FX", "url": "https://www.google.com/finance/quote/E2FX:GER"}, {"text": "HAM:E2F", "url": "https://www.google.com/finance/quote/E2F:HAM"}, {"text": "MUN:E2F", "url": "https://www.google.com/finance/quote/E2F:MUN"}, {"text": "FRA:E2F", "url": "https://www.google.com/finance/quote/E2F:FRA"}, {"text": "HAN:E2F", "url": "https://www.google.com/finance/quote/E2F:HAN"}, {"text": "STU:E2F", "url": "https://www.google.com/finance/quote/E2F:STU"}, {"text": "VIE:EDF", "url": "https://www.google.com/finance/quote/EDF:VIE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Anomaly detection", "field_count": 6}, {"field_name": "Cluster analysis", "field_count": 5}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Hyperparameter", "field_count": 2}, {"field_name": "Probabilistic logic", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}, {"field_name": "Linear model", "field_count": 1}, {"field_name": "Camera resectioning", "field_count": 1}], "clusters": [{"cluster_id": 68119, "cluster_count": 5}, {"cluster_id": 446, "cluster_count": 4}, {"cluster_id": 30035, "cluster_count": 4}, {"cluster_id": 5126, "cluster_count": 3}, {"cluster_id": 3797, "cluster_count": 3}, {"cluster_id": 81058, "cluster_count": 3}, {"cluster_id": 58861, "cluster_count": 3}, {"cluster_id": 2005, "cluster_count": 2}, {"cluster_id": 829, "cluster_count": 2}, {"cluster_id": 19425, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 1857, "referenced_count": 20}, {"ref_CSET_id": 101, "referenced_count": 12}, {"ref_CSET_id": 785, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 1884, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 487, "referenced_count": 2}, {"ref_CSET_id": 3116, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 12}, {"referent": "anomaly_detection", "task_count": 4}, {"referent": "time_series", "task_count": 4}, {"referent": "supervised_learning", "task_count": 4}, {"referent": "system_identification", "task_count": 3}, {"referent": "load_forecasting", "task_count": 3}, {"referent": "clustering", "task_count": 3}, {"referent": "speech_production", "task_count": 2}, {"referent": "smart_grid_prediction", "task_count": 2}, {"referent": "head_detection", "task_count": 2}], "methods": [{"referent": "vqa_models", "method_count": 7}, {"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "logistic_regression", "method_count": 4}, {"referent": "clustering", "method_count": 4}, {"referent": "meta_learning_algorithms", "method_count": 4}, {"referent": "q_learning", "method_count": 3}, {"referent": "mad_learning", "method_count": 3}, {"referent": "griffin_lim_algorithm", "method_count": 3}, {"referent": "auto_classifier", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [235, 275, 238, 265, 270, 266, 222, 187, 164, 120, 4], "total": 2246, "isTopResearch": false, "rank": 117, "sp500_rank": 92}, "ai_publications": {"counts": [8, 11, 9, 5, 4, 4, 2, 10, 9, 1, 0], "total": 63, "isTopResearch": false, "rank": 158, "sp500_rank": 103}, "ai_publications_growth": {"counts": [], "total": 100.37037037037037, "isTopResearch": false, "rank": 22, "sp500_rank": 12}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 188, "sp500_rank": 92}, "citation_counts": {"counts": [28, 28, 67, 71, 72, 212, 97, 144, 169, 153, 11], "total": 1052, "isTopResearch": false, "rank": 188, "sp500_rank": 104}, "cv_pubs": {"counts": [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 2, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114}, "citations_per_article": {"counts": [3.5, 2.5454545454545454, 7.444444444444445, 14.2, 18.0, 53.0, 48.5, 14.4, 18.77777777777778, 153.0, 0], "total": 16.6984126984127, "isTopResearch": false, "rank": 371, "sp500_rank": 122}}, "patents": {"ai_patents": {"counts": [2, 1, 0, 4, 0, 3, 3, 5, 0, 0, 0], "total": 18, "table": null, "rank": 337, "sp500_rank": 170}, "ai_patents_growth": {"counts": [], "total": 33.333333333333336, "table": null, "rank": 262, "sp500_rank": 120}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [20, 10, 0, 40, 0, 30, 30, 50, 0, 0, 0], "total": 180, "table": null, "rank": 337, "sp500_rank": 170}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 1, 0, 1, 1, 2, 0, 0, 0], "total": 6, "table": "industry", "rank": 305, "sp500_rank": 156}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [2, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 213, "sp500_rank": 136}, "Energy_Management": {"counts": [2, 1, 0, 2, 0, 2, 0, 3, 0, 0, 0], "total": 10, "table": "industry", "rank": 48, "sp500_rank": 45}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [2, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 183, "sp500_rank": 120}, "Control": {"counts": [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "sp500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 1, 0, 1, 0, 2, 1, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 158, "sp500_rank": 117}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2012, "rank": 230, "sp500_rank": 134}, "ai_jobs": {"counts": null, "total": 231, "rank": 216, "sp500_rank": 140}}, "sector": "Utilities", "business_sector": "Utilities"}, {"cset_id": 1872, "country": "United States", "website": "https://www.freddiemac.com/", "crunchbase": {"text": " 44b275a3-7d93-6a61-85d7-98a220d7e9b5 ", "url": " https://www.crunchbase.com/organization/freddie-mac "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/freddie-mac"], "stage": "Unknown", "name": "Freddie Mac", "patent_name": "Freddie Mac", "continent": "North America", "local_logo": null, "aliases": "Federal Home Loan Mortgage Corporation; Freddie Mac", "permid_links": [{"text": 4295903970, "url": "https://permid.org/1-4295903970"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [{"cluster_id": 4184, "cluster_count": 2}, {"cluster_id": 1989, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 1872, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "stock_price_prediction", "task_count": 3}, {"referent": "classification", "task_count": 2}, {"referent": "stock_market_prediction", "task_count": 1}, {"referent": "binary_classification", "task_count": 1}, {"referent": "relational_pattern_learning", "task_count": 1}, {"referent": "subjectivity_analysis", "task_count": 1}], "methods": [{"referent": "awd_lstm", "method_count": 2}, {"referent": "random_erasing", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "graph_convolutional_networks", "method_count": 1}, {"referent": "natural_language_processing", "method_count": 1}, {"referent": "bert", "method_count": 1}, {"referent": "hri_pipeline", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [10, 7, 9, 4, 4, 6, 10, 15, 7, 3, 0], "total": 75, "isTopResearch": false, "rank": 556, "sp500_rank": 309}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "sp500_rank": 285}, "ai_publications_growth": {"counts": [], "total": -75.0, "isTopResearch": false, "rank": 1526, "sp500_rank": 435}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 4, 5, 0], "total": 10, "isTopResearch": false, "rank": 760, "sp500_rank": 314}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0.5, 4.0, 0, 0], "total": 3.3333333333333335, "isTopResearch": false, "rank": 767, "sp500_rank": 305}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 2007, "rank": 231, "sp500_rank": 135}, "ai_jobs": {"counts": null, "total": 228, "rank": 218, "sp500_rank": 141}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 989, "country": "France", "website": "https://www.sanofi.com/", "crunchbase": {"text": "a90a2792-7fc3-c23e-836b-7b6271ec772d", "url": "https://www.crunchbase.com/organization/sanofi"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sanofi"], "stage": "Mature", "name": "Sanofi", "patent_name": "Sanofi", "continent": "Europe", "local_logo": "sanofi.png", "aliases": null, "permid_links": [{"text": 4295868215, "url": "https://permid.org/1-4295868215"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:SNY", "url": "https://www.google.com/finance/quote/NASDAQ:SNY"}], "market_full": [{"text": "HAM:SNW", "url": "https://www.google.com/finance/quote/HAM:SNW"}, {"text": "VIE:SANO", "url": "https://www.google.com/finance/quote/SANO:VIE"}, {"text": "DEU:SASY", "url": "https://www.google.com/finance/quote/DEU:SASY"}, {"text": "MUN:SNW", "url": "https://www.google.com/finance/quote/MUN:SNW"}, {"text": "STU:SNW", "url": "https://www.google.com/finance/quote/SNW:STU"}, {"text": "DEU:SNW2", "url": "https://www.google.com/finance/quote/DEU:SNW2"}, {"text": "NASDAQ:SNY", "url": "https://www.google.com/finance/quote/NASDAQ:SNY"}, {"text": "LSE:0A2V", "url": "https://www.google.com/finance/quote/0A2V:LSE"}, {"text": "PKC:SNYNF", "url": "https://www.google.com/finance/quote/PKC:SNYNF"}, {"text": "LSE:0O59", "url": "https://www.google.com/finance/quote/0O59:LSE"}, {"text": "HAN:SNW", "url": "https://www.google.com/finance/quote/HAN:SNW"}, {"text": "DUS:SNW", "url": "https://www.google.com/finance/quote/DUS:SNW"}, {"text": "DUS:SNW2", "url": "https://www.google.com/finance/quote/DUS:SNW2"}, {"text": "GER:SNWX", "url": "https://www.google.com/finance/quote/GER:SNWX"}, {"text": "PAR:4765", "url": "https://www.google.com/finance/quote/4765:PAR"}, {"text": "BER:SNW", "url": "https://www.google.com/finance/quote/BER:SNW"}, {"text": "MUN:SNW2", "url": "https://www.google.com/finance/quote/MUN:SNW2"}, {"text": "PAR:AVET", "url": "https://www.google.com/finance/quote/AVET:PAR"}, {"text": "STU:SNW2", "url": "https://www.google.com/finance/quote/SNW2:STU"}, {"text": "MEX:SNYN", "url": "https://www.google.com/finance/quote/MEX:SNYN"}, {"text": "EBT:SANP", "url": "https://www.google.com/finance/quote/EBT:SANp"}, {"text": "MEX:SAN1N", "url": "https://www.google.com/finance/quote/MEX:SAN1N"}, {"text": "FRA:SNW", "url": "https://www.google.com/finance/quote/FRA:SNW"}, {"text": "BER:SNW2", "url": "https://www.google.com/finance/quote/BER:SNW2"}, {"text": "FRA:SNW2", "url": "https://www.google.com/finance/quote/FRA:SNW2"}, {"text": "PAR:SANNV", "url": "https://www.google.com/finance/quote/PAR:SANNV"}, {"text": "MIL:SANF", "url": "https://www.google.com/finance/quote/MIL:SANF"}, {"text": "PAR:SAN", "url": "https://www.google.com/finance/quote/PAR:SAN"}], "crunchbase_description": "Sanofi is a healthcare company that provides treatments and the protection of life-saving vaccines.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Feature selection", "field_count": 2}, {"field_name": "Unsupervised learning", "field_count": 2}, {"field_name": "Projection pursuit", "field_count": 1}, {"field_name": "False positive rate", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Calibration (statistics)", "field_count": 1}, {"field_name": "Categorical variable", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 23169, "cluster_count": 5}, {"cluster_id": 60825, "cluster_count": 2}, {"cluster_id": 23000, "cluster_count": 2}, {"cluster_id": 58506, "cluster_count": 2}, {"cluster_id": 133, "cluster_count": 1}, {"cluster_id": 1683, "cluster_count": 1}, {"cluster_id": 28256, "cluster_count": 1}, {"cluster_id": 70668, "cluster_count": 1}, {"cluster_id": 37967, "cluster_count": 1}, {"cluster_id": 4478, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 29}, {"ref_CSET_id": 341, "referenced_count": 17}, {"ref_CSET_id": 87, "referenced_count": 11}, {"ref_CSET_id": 989, "referenced_count": 9}, {"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 115, "referenced_count": 7}, {"ref_CSET_id": 354, "referenced_count": 6}, {"ref_CSET_id": 3116, "referenced_count": 3}, {"ref_CSET_id": 1962, "referenced_count": 3}, {"ref_CSET_id": 671, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 6}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "disease_detection", "task_count": 3}, {"referent": "drug_discovery", "task_count": 3}, {"referent": "safety_perception_recognition", "task_count": 3}, {"referent": "image_interpretation", "task_count": 3}, {"referent": "model_selection", "task_count": 2}, {"referent": "clustering", "task_count": 2}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "histopathological_segmentation", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 9}, {"referent": "double_q_learning", "method_count": 8}, {"referent": "mad_learning", "method_count": 7}, {"referent": "vqa_models", "method_count": 6}, {"referent": "cgnn", "method_count": 5}, {"referent": "ggs_nns", "method_count": 4}, {"referent": "self_supervised_learning", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "distributions", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2234, 2414, 2449, 2654, 2595, 3028, 3021, 2976, 2886, 2833, 8], "total": 27098, "isTopResearch": false, "rank": 11, "sp500_rank": 9}, "ai_publications": {"counts": [5, 1, 3, 3, 3, 3, 5, 9, 11, 6, 0], "total": 49, "isTopResearch": false, "rank": 186, "sp500_rank": 116}, "ai_publications_growth": {"counts": [], "total": 18.922558922558924, "isTopResearch": false, "rank": 119, "sp500_rank": 60}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 157, "sp500_rank": 75}, "citation_counts": {"counts": [41, 45, 56, 74, 101, 134, 190, 258, 346, 309, 17], "total": 1571, "isTopResearch": false, "rank": 161, "sp500_rank": 95}, "cv_pubs": {"counts": [1, 0, 1, 1, 2, 1, 1, 0, 0, 1, 0], "total": 8, "isTopResearch": true, "rank": 229, "sp500_rank": 126}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [8.2, 45.0, 18.666666666666668, 24.666666666666668, 33.666666666666664, 44.666666666666664, 38.0, 28.666666666666668, 31.454545454545453, 51.5, 0], "total": 32.06122448979592, "isTopResearch": false, "rank": 177, "sp500_rank": 41}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 2, 1, 7, 4, 5, 0, 0], "total": 20, "table": null, "rank": 323, "sp500_rank": 165}, "ai_patents_growth": {"counts": [], "total": 169.04761904761907, "table": null, "rank": 58, "sp500_rank": 24}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 20, 10, 70, 40, 50, 0, 0], "total": 200, "table": null, "rank": 323, "sp500_rank": 165}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "sp500_rank": 92}, "Life_Sciences": {"counts": [1, 0, 0, 0, 2, 1, 4, 2, 5, 0, 0], "total": 15, "table": "industry", "rank": 63, "sp500_rank": 42}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 0], "total": 5, "table": "application", "rank": 318, "sp500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "sp500_rank": 134}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1983, "rank": 232, "sp500_rank": 136}, "ai_jobs": {"counts": null, "total": 526, "rank": 106, "sp500_rank": 66}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research"}, {"cset_id": 1499, "country": "United States", "website": "http://squareup.com", "crunchbase": {"text": "8b03cd97-d8a0-2246-8d0d-980f092d414e", "url": "https://www.crunchbase.com/organization/square"}, "child_crunchbase": [{"text": "29561aab-da7d-24b9-a375-617091f693cb", "url": "https://www.crunchbase.com/organization/eloquent-labs"}], "linkedin": ["https://www.linkedin.com/company/joinsquare", "https://www.linkedin.com/company/eloquent-labs"], "stage": "Mature", "name": "Square", "patent_name": "square", "continent": "North America", "local_logo": "square.png", "aliases": "Block, Squareup, Block, Inc", "permid_links": [], "parent_info": null, "agg_child_info": "Eloquent Labs", "unagg_child_info": null, "market_filt": [{"text": "NYSE:SQ", "url": "https://www.google.com/finance/quote/nyse:sq"}], "market_full": [{"text": "NYQ:SQ", "url": "https://www.google.com/finance/quote/nyq:sq"}, {"text": "SAO:S2QU34", "url": "https://www.google.com/finance/quote/s2qu34:sao"}, {"text": "GER:SQ3X", "url": "https://www.google.com/finance/quote/ger:sq3x"}, {"text": "DEU:F8O", "url": "https://www.google.com/finance/quote/deu:f8o"}, {"text": "STU:SQ3", "url": "https://www.google.com/finance/quote/sq3:stu"}, {"text": "BER:SQ3", "url": "https://www.google.com/finance/quote/ber:sq3"}, {"text": "BRN:SQ3", "url": "https://www.google.com/finance/quote/brn:sq3"}, {"text": "VIE:SQU", "url": "https://www.google.com/finance/quote/squ:vie"}, {"text": "FRA:F8O", "url": "https://www.google.com/finance/quote/f8o:fra"}, {"text": "ASX:SQ2", "url": "https://www.google.com/finance/quote/asx:sq2"}, {"text": "FRA:SQ3", "url": "https://www.google.com/finance/quote/fra:sq3"}, {"text": "ASE:SQ", "url": "https://www.google.com/finance/quote/ase:sq"}, {"text": "DUS:SQ3", "url": "https://www.google.com/finance/quote/dus:sq3"}, {"text": "MUN:SQ3", "url": "https://www.google.com/finance/quote/mun:sq3"}, {"text": "DEU:SQ3", "url": "https://www.google.com/finance/quote/deu:sq3"}, {"text": "MCX:SQ-RM", "url": "https://www.google.com/finance/quote/mcx:sq-rm"}, {"text": "HAM:SQ3", "url": "https://www.google.com/finance/quote/ham:sq3"}, {"text": "LSE:0L95", "url": "https://www.google.com/finance/quote/0l95:lse"}, {"text": "HAN:SQ3", "url": "https://www.google.com/finance/quote/han:sq3"}, {"text": "NYSE:SQ", "url": "https://www.google.com/finance/quote/nyse:sq"}, {"text": "MEX:SQ*", "url": "https://www.google.com/finance/quote/mex:sq*"}, {"text": "BUE:SQ", "url": "https://www.google.com/finance/quote/bue:sq"}], "crunchbase_description": "Square is a merchant services aggregator and mobile payment company that aims to simplify commerce through technology.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Unsupervised learning", "field_count": 1}, {"field_name": "Natural language", "field_count": 1}], "clusters": [{"cluster_id": 3446, "cluster_count": 1}, {"cluster_id": 44946, "cluster_count": 1}, {"cluster_id": 31554, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 9}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 219, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 844, "referenced_count": 1}, {"ref_CSET_id": 787, "referenced_count": 1}], "tasks": [{"referent": "3d_shape_generation", "task_count": 1}, {"referent": "multi_view_3d_shape_retrieval", "task_count": 1}, {"referent": "summarization", "task_count": 1}, {"referent": "image_annotation", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 2}, {"referent": "graphs", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "hermite_activation", "method_count": 1}, {"referent": "polya_gamma_augmentation", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "document_embeddings", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 10, 3, 1, 2, 2, 1, 2, 6, 6, 0], "total": 33, "isTopResearch": false, "rank": 694}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 2, 4, 2, 10, 17, 20, 20, 19, 0], "total": 94, "isTopResearch": false, "rank": 514}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 10.0, 0, 0, 20.0, 0, 0], "total": 31.333333333333332, "isTopResearch": false, "rank": 184}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1967, "rank": 233}, "ai_jobs": {"counts": null, "total": 270, "rank": 196}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Square was established to give every aspiring business owner an easier way to take credit cards. We\u2019ve built a lot more tools since. From side gigs to sports stadiums, we\u2019re helping power businesses of all sizes and types to help them succeed\u2014no matter what success means to them.", "company_site_link": "https://squareup.com/us/en/why-square", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2545, "country": "United Kingdom", "website": "https://www.wtwco.com/", "crunchbase": {"text": "86a166ba-3fda-e2c6-518a-ba0758f6b5a8", "url": "https://www.crunchbase.com/organization/willis-towers-watson"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/wtwcorporate"], "stage": "Mature", "name": "Willis Towers Watson", "patent_name": "willis towers watson", "continent": "Europe", "local_logo": "willis_towers_watson.png", "aliases": "Willis Towers Watson PLC; Willis Towers Watson Public Limited Company", "permid_links": [{"text": 4295899509, "url": "https://permid.org/1-4295899509"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:WTW", "url": "https://www.google.com/finance/quote/nasdaq:wtw"}], "market_full": [{"text": "LSE:0Y4Q", "url": "https://www.google.com/finance/quote/0y4q:lse"}, {"text": "MUN:WTY", "url": "https://www.google.com/finance/quote/mun:wty"}, {"text": "BER:WTY", "url": "https://www.google.com/finance/quote/ber:wty"}, {"text": "DEU:WTY", "url": "https://www.google.com/finance/quote/deu:wty"}, {"text": "DUS:WTY", "url": "https://www.google.com/finance/quote/dus:wty"}, {"text": "FRA:WTY", "url": "https://www.google.com/finance/quote/fra:wty"}, {"text": "STU:WTY", "url": "https://www.google.com/finance/quote/stu:wty"}, {"text": "SAO:W1LT34", "url": "https://www.google.com/finance/quote/sao:w1lt34"}, {"text": "NASDAQ:WTW", "url": "https://www.google.com/finance/quote/nasdaq:wtw"}], "crunchbase_description": "Willis Towers Watson is a global advisory and solutions company that helps clients around the world turn risk into a path for growth.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Ground truth", "field_count": 1}, {"field_name": "Multispectral image", "field_count": 1}], "clusters": [{"cluster_id": 4597, "cluster_count": 3}, {"cluster_id": 83977, "cluster_count": 1}, {"cluster_id": 44598, "cluster_count": 1}, {"cluster_id": 123267, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2545, "referenced_count": 2}], "tasks": [{"referent": "pattern_classification", "task_count": 2}, {"referent": "table_detection", "task_count": 2}, {"referent": "artificial_life", "task_count": 1}, {"referent": "remote_sensing", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "vqa_models", "method_count": 2}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [20, 25, 13, 20, 18, 21, 15, 20, 19, 9, 0], "total": 180, "isTopResearch": false, "rank": 423, "fortune500_rank": 163}, "ai_publications": {"counts": [0, 0, 1, 2, 0, 0, 0, 2, 1, 0, 0], "total": 6, "isTopResearch": false, "rank": 514, "fortune500_rank": 139}, "ai_publications_growth": {"counts": [], "total": -75.0, "isTopResearch": false, "rank": 1526, "fortune500_rank": 435}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 1, 6, 10, 9, 17, 24, 19, 4], "total": 90, "isTopResearch": false, "rank": 522, "fortune500_rank": 144}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0.0, 0.5, 0, 0, 0, 8.5, 24.0, 0, 0], "total": 15.0, "isTopResearch": false, "rank": 404, "fortune500_rank": 123}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1965, "rank": 234, "fortune500_rank": 130}, "ai_jobs": {"counts": null, "total": 363, "rank": 153, "fortune500_rank": 83}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2626, "country": "United States", "website": "https://home.kpmg/", "crunchbase": {"text": "4791bb73-2eff-bd6f-bdcd-232f7d2ed445", "url": "https://www.crunchbase.com/organization/kpmg"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kpmg-us"], "stage": "Unknown", "name": "KPMG LLP/New York", "patent_name": "kpmg llp/new york", "continent": "North America", "local_logo": "kpmg_llp_new_york.png", "aliases": "KPMG; KPMG International; Klynveld Peat Marwick Goerdeler; Kpmg International Cooperative; Kpmg Llp", "permid_links": [{"text": 5000779792, "url": "https://permid.org/1-5000779792"}, {"text": 4298219207, "url": "https://permid.org/1-4298219207"}], "parent_info": null, "agg_child_info": "KPMG US", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "KPMG is a network of independent member firms offering audit, tax and advisory services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 4}, {"field_name": "Big data", "field_count": 3}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Ground truth", "field_count": 1}, {"field_name": "Ontology (information science)", "field_count": 1}, {"field_name": "Decision support system", "field_count": 1}, {"field_name": "Linear discriminant analysis", "field_count": 1}, {"field_name": "Fuzzy logic", "field_count": 1}, {"field_name": "Matching (graph theory)", "field_count": 1}, {"field_name": "Prognostics", "field_count": 1}], "clusters": [{"cluster_id": 23924, "cluster_count": 2}, {"cluster_id": 41154, "cluster_count": 1}, {"cluster_id": 1386, "cluster_count": 1}, {"cluster_id": 13227, "cluster_count": 1}, {"cluster_id": 53859, "cluster_count": 1}, {"cluster_id": 4607, "cluster_count": 1}, {"cluster_id": 65, "cluster_count": 1}, {"cluster_id": 1038, "cluster_count": 1}, {"cluster_id": 50325, "cluster_count": 1}, {"cluster_id": 8220, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 22}, {"ref_CSET_id": 163, "referenced_count": 12}, {"ref_CSET_id": 115, "referenced_count": 10}, {"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 21, "referenced_count": 3}, {"ref_CSET_id": 1126, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 795, "referenced_count": 1}, {"ref_CSET_id": 663, "referenced_count": 1}, {"ref_CSET_id": 161, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 8}, {"referent": "classification", "task_count": 7}, {"referent": "image_processing", "task_count": 4}, {"referent": "disease_detection", "task_count": 4}, {"referent": "image_analysis", "task_count": 3}, {"referent": "decision_making", "task_count": 3}, {"referent": "portfolio_optimization", "task_count": 3}, {"referent": "mobile_security", "task_count": 2}, {"referent": "topological_data_analysis", "task_count": 2}, {"referent": "jsoniq_query_execution", "task_count": 2}], "methods": [{"referent": "mad_learning", "method_count": 5}, {"referent": "natural_language_processing", "method_count": 4}, {"referent": "localization_models", "method_count": 3}, {"referent": "q_learning", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "q_learning_networks", "method_count": 2}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "hri_pipeline", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [96, 107, 93, 114, 120, 135, 95, 124, 103, 81, 3], "total": 1071, "isTopResearch": false, "rank": 187}, "ai_publications": {"counts": [1, 1, 0, 0, 3, 13, 5, 10, 5, 5, 0], "total": 43, "isTopResearch": false, "rank": 195}, "ai_publications_growth": {"counts": [], "total": 16.666666666666668, "isTopResearch": false, "rank": 124}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 1, 3, 2, 2, 6, 11, 18, 55, 56, 3], "total": 157, "isTopResearch": false, "rank": 434}, "cv_pubs": {"counts": [0, 1, 0, 0, 1, 4, 0, 1, 0, 0, 0], "total": 7, "isTopResearch": true, "rank": 252}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 1, 0, 1, 2, 2, 0], "total": 7, "isTopResearch": true, "rank": 117}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0.0, 1.0, 0, 0, 0.6666666666666666, 0.46153846153846156, 2.2, 1.8, 11.0, 11.2, 0], "total": 3.6511627906976742, "isTopResearch": false, "rank": 763}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 3, 0, 8, 5, 0, 0, 0], "total": 16, "table": null, "rank": 348}, "ai_patents_growth": {"counts": [], "total": -68.75, "table": null, "rank": 1560}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 30, 0, 80, 50, 0, 0, 0], "total": 160, "table": null, "rank": 348}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0], "total": 5, "table": "industry", "rank": 128}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 3, 0, 6, 3, 0, 0, 0], "total": 12, "table": "industry", "rank": 240}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0], "total": 5, "table": "industry", "rank": 103}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 249}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 233}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 2, 0, 3, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 126}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 198}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1945, "rank": 235}, "ai_jobs": {"counts": null, "total": 398, "rank": 143}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 1794, "country": "United States", "website": "https://www.mckesson.com/", "crunchbase": {"text": "1c41f4ce-92b4-371f-717b-69f7b8386dd0", "url": "https://www.crunchbase.com/organization/mckesson"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mckesson"], "stage": "Mature", "name": "McKesson Corp", "patent_name": "mckesson corp", "continent": "North America", "local_logo": "mckesson_corp.png", "aliases": "Mckesson; Mckesson Corporation", "permid_links": [{"text": 4295912188, "url": "https://permid.org/1-4295912188"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MCK", "url": "https://www.google.com/finance/quote/mck:nyse"}], "market_full": [{"text": "DUS:MCK", "url": "https://www.google.com/finance/quote/dus:mck"}, {"text": "FRA:MCK", "url": "https://www.google.com/finance/quote/fra:mck"}, {"text": "NYQ:MCK", "url": "https://www.google.com/finance/quote/mck:nyq"}, {"text": "NYSE:MCK", "url": "https://www.google.com/finance/quote/mck:nyse"}, {"text": "LSE:0JZU", "url": "https://www.google.com/finance/quote/0jzu:lse"}, {"text": "BRN:MCK", "url": "https://www.google.com/finance/quote/brn:mck"}, {"text": "ASE:MCK", "url": "https://www.google.com/finance/quote/ase:mck"}, {"text": "MUN:MCK", "url": "https://www.google.com/finance/quote/mck:mun"}, {"text": "STU:MCK", "url": "https://www.google.com/finance/quote/mck:stu"}, {"text": "BER:MCK", "url": "https://www.google.com/finance/quote/ber:mck"}, {"text": "MEX:MCK*", "url": "https://www.google.com/finance/quote/mck*:mex"}, {"text": "DEU:MCK", "url": "https://www.google.com/finance/quote/deu:mck"}], "crunchbase_description": "McKesson distributes medical supplies, information technology, and care management products and services.", "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [8, 7, 11, 6, 9, 6, 8, 10, 10, 30, 0], "total": 105, "isTopResearch": false, "rank": 507, "sp500_rank": 292, "fortune500_rank": 188}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [1, 0, 1, 0, 0, 0, 2, 1, 1, 0, 0], "total": 6, "table": null, "rank": 487, "sp500_rank": 216, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "sp500_rank": 444, "fortune500_rank": 438}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 10, 0, 0, 0, 20, 10, 10, 0, 0], "total": 60, "table": null, "rank": 487, "sp500_rank": 216, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [1, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 139, "sp500_rank": 85, "fortune500_rank": 59}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0], "total": 4, "table": "industry", "rank": 233, "sp500_rank": 145, "fortune500_rank": 77}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0], "total": 4, "table": "application", "rank": 198, "sp500_rank": 131, "fortune500_rank": 68}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1941, "rank": 236, "sp500_rank": 137, "fortune500_rank": 131}, "ai_jobs": {"counts": null, "total": 227, "rank": 219, "sp500_rank": 142, "fortune500_rank": 118}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "McKesson Corporation is an American company distributing pharmaceuticals and providing health information technology, medical supplies, and care management tools. The company had revenues of $231.1 billion in 2020.", "wikipedia_link": "https://en.wikipedia.org/wiki/McKesson_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 427, "country": "Ireland", "website": "http://www.eaton.com", "crunchbase": {"text": "87080248-e519-1749-3b6b-4899f197f358", "url": "https://www.crunchbase.com/organization/eaton"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/eaton"], "stage": "Mature", "name": "Eaton Corp PLC", "patent_name": "eaton corp plc", "continent": "Europe", "local_logo": "eaton_corp_plc.png", "aliases": "Eaton; Eaton Corp; Eaton Corporation; Eaton Corporation Inc; Eaton Corporation Plc", "permid_links": [{"text": 5037629126, "url": "https://permid.org/1-5037629126"}], "parent_info": "Danfoss (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ETN", "url": "https://www.google.com/finance/quote/etn:nyse"}], "market_full": [{"text": "FRA:3EC", "url": "https://www.google.com/finance/quote/3ec:fra"}, {"text": "NYSE:ETN", "url": "https://www.google.com/finance/quote/etn:nyse"}, {"text": "LSE:0Y3K", "url": "https://www.google.com/finance/quote/0y3k:lse"}], "crunchbase_description": "Eaton Corporation is a diversified power management company for electrical, hydraulic, and mechanical applications.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Genetic programming", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}], "clusters": [{"cluster_id": 57595, "cluster_count": 3}, {"cluster_id": 10587, "cluster_count": 2}, {"cluster_id": 12084, "cluster_count": 1}, {"cluster_id": 303, "cluster_count": 1}, {"cluster_id": 17480, "cluster_count": 1}, {"cluster_id": 9480, "cluster_count": 1}, {"cluster_id": 446, "cluster_count": 1}, {"cluster_id": 2972, "cluster_count": 1}, {"cluster_id": 104674, "cluster_count": 1}, {"cluster_id": 24482, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 9}, {"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 427, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 785, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 1}, {"ref_CSET_id": 456, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 2032, "referenced_count": 1}], "tasks": [{"referent": "vehicle_detection", "task_count": 3}, {"referent": "image_analysis", "task_count": 2}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "steering_control", "task_count": 2}, {"referent": "anomaly_detection", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "building_extraction", "task_count": 1}, {"referent": "speaker_separation", "task_count": 1}, {"referent": "portfolio_optimization", "task_count": 1}], "methods": [{"referent": "heuristic_search_algorithms", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "sequential", "method_count": 1}, {"referent": "graph_models", "method_count": 1}, {"referent": "ghost_module", "method_count": 1}, {"referent": "csgld", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [164, 122, 146, 134, 122, 121, 159, 100, 127, 105, 1], "total": 1301, "isTopResearch": false, "rank": 163, "fortune500_rank": 61}, "ai_publications": {"counts": [4, 1, 2, 1, 0, 3, 4, 5, 3, 0, 0], "total": 23, "isTopResearch": false, "rank": 280, "fortune500_rank": 85}, "ai_publications_growth": {"counts": [], "total": -38.333333333333336, "isTopResearch": false, "rank": 1421, "fortune500_rank": 409}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "fortune500_rank": 59}, "citation_counts": {"counts": [43, 48, 42, 56, 62, 70, 63, 54, 69, 54, 2], "total": 563, "isTopResearch": false, "rank": 255, "fortune500_rank": 76}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 214, "fortune500_rank": 57}, "citations_per_article": {"counts": [10.75, 48.0, 21.0, 56.0, 0, 23.333333333333332, 15.75, 10.8, 23.0, 0, 0], "total": 24.47826086956522, "isTopResearch": false, "rank": 247, "fortune500_rank": 79}}, "patents": {"ai_patents": {"counts": [1, 1, 1, 1, 0, 1, 3, 3, 2, 0, 0], "total": 13, "table": null, "rank": 372, "fortune500_rank": 123}, "ai_patents_growth": {"counts": [], "total": 100.0, "table": null, "rank": 116, "fortune500_rank": 24}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 10, 10, 10, 0, 10, 30, 30, 20, 0, 0], "total": 130, "table": null, "rank": 372, "fortune500_rank": 123}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "fortune500_rank": 39}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212, "fortune500_rank": 73}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 1, 0, 1, 0, 0, 0, 0, 1, 0, 0], "total": 3, "table": "application", "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1940, "rank": 237, "fortune500_rank": 132}, "ai_jobs": {"counts": null, "total": 150, "rank": 273, "fortune500_rank": 145}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Eaton Corporation plc is an American Irish-domiciled multinational power management company with 2018 sales of $21.6 billion, founded in the United States with corporate headquarters in Dublin, Ireland, and operational headquarters in Beachwood, Ohio. Eaton has approximately 95,000 employees and sells products to customers in more than 175 countries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Eaton_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 331, "country": "United States", "website": "http://www.analog.com", "crunchbase": {"text": "f465ec61-90a8-adcf-3190-a3ccd2a0e2f5", "url": "https://www.crunchbase.com/organization/analog-devices"}, "child_crunchbase": [{"text": "cfc22347-830c-2ce3-313b-567e7cb370bc", "url": "https://www.crunchbase.com/organization/maxim-integrated"}], "linkedin": ["https://www.linkedin.com/company/maxim-integrated", "https://www.linkedin.com/company/analog-devices"], "stage": "Mature", "name": "Analog Devices", "patent_name": "analog devices", "continent": "North America", "local_logo": "analog_devices.png", "aliases": "Analog Devices Inc; Analog Devices International; Linear Semiconductor Sdn. Bhd", "permid_links": [{"text": 5000047367, "url": "https://permid.org/1-5000047367"}, {"text": 4295903393, "url": "https://permid.org/1-4295903393"}], "parent_info": null, "agg_child_info": "Maxim Integrated Products Inc", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ADI", "url": "https://www.google.com/finance/quote/adi:nasdaq"}], "market_full": [{"text": "FWB:ANL", "url": "https://www.google.com/finance/quote/anl:fwb"}, {"text": "MOEX:ADI-RM", "url": "https://www.google.com/finance/quote/adi-rm:moex"}, {"text": "MUN:ANL", "url": "https://www.google.com/finance/quote/anl:mun"}, {"text": "HAM:ANL", "url": "https://www.google.com/finance/quote/anl:ham"}, {"text": "HAN:ANL", "url": "https://www.google.com/finance/quote/anl:han"}, {"text": "BMV:ADI", "url": "https://www.google.com/finance/quote/adi:bmv"}, {"text": "BER:ANL", "url": "https://www.google.com/finance/quote/anl:ber"}, {"text": "DUS:ANL", "url": "https://www.google.com/finance/quote/anl:dus"}, {"text": "VIE:ANL", "url": "https://www.google.com/finance/quote/anl:vie"}, {"text": "NASDAQ:ADI", "url": "https://www.google.com/finance/quote/adi:nasdaq"}, {"text": "BCBA:ANL", "url": "https://www.google.com/finance/quote/anl:bcba"}, {"text": "XETR:ANL", "url": "https://www.google.com/finance/quote/anl:xetr"}, {"text": "FRA:ANL", "url": "https://www.google.com/finance/quote/anl:fra"}], "crunchbase_description": "Analog Devices (NYSE: ADI) defines innovation and excellence in signal processing. ADI's analog, mixed-signal, and digital signal", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Inertial measurement unit", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Dynamic range", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Noise reduction", "field_count": 1}, {"field_name": "Feature extraction", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Hyperparameter", "field_count": 1}], "clusters": [{"cluster_id": 116039, "cluster_count": 3}, {"cluster_id": 2381, "cluster_count": 2}, {"cluster_id": 20127, "cluster_count": 2}, {"cluster_id": 631, "cluster_count": 2}, {"cluster_id": 1753, "cluster_count": 2}, {"cluster_id": 5339, "cluster_count": 1}, {"cluster_id": 7209, "cluster_count": 1}, {"cluster_id": 5685, "cluster_count": 1}, {"cluster_id": 19841, "cluster_count": 1}, {"cluster_id": 85688, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 115, "referenced_count": 7}, {"ref_CSET_id": 331, "referenced_count": 3}, {"ref_CSET_id": 6, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 37, "referenced_count": 3}, {"ref_CSET_id": 671, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 1784, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 7}, {"referent": "image_processing", "task_count": 2}, {"referent": "image_restoration", "task_count": 2}, {"referent": "gesture_recognition", "task_count": 2}, {"referent": "video_surveillance", "task_count": 2}, {"referent": "mobile_security", "task_count": 2}, {"referent": "portfolio_optimization", "task_count": 2}, {"referent": "disease_detection", "task_count": 2}, {"referent": "network_pruning", "task_count": 2}, {"referent": "visual_social_relationship_recognition", "task_count": 2}], "methods": [{"referent": "impala", "method_count": 3}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "feature_extractors", "method_count": 2}, {"referent": "subword_segmentation", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "3d_reconstruction", "method_count": 1}, {"referent": "linear_regression", "method_count": 1}, {"referent": "atss", "method_count": 1}, {"referent": "esp", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [144, 153, 151, 138, 166, 184, 152, 114, 118, 89, 1], "total": 1410, "isTopResearch": false, "rank": 152, "fortune500_rank": 56}, "ai_publications": {"counts": [2, 1, 4, 0, 3, 2, 7, 7, 11, 3, 0], "total": 40, "isTopResearch": false, "rank": 207, "fortune500_rank": 66}, "ai_publications_growth": {"counts": [], "total": -5.194805194805196, "isTopResearch": false, "rank": 1233, "fortune500_rank": 355}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "fortune500_rank": 59}, "citation_counts": {"counts": [13, 21, 18, 20, 25, 39, 54, 80, 137, 148, 4], "total": 559, "isTopResearch": false, "rank": 257, "fortune500_rank": 77}, "cv_pubs": {"counts": [2, 1, 0, 0, 0, 0, 0, 1, 4, 1, 0], "total": 9, "isTopResearch": true, "rank": 217, "fortune500_rank": 62}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 2, 1, 2, 2, 0, 0], "total": 8, "isTopResearch": true, "rank": 135, "fortune500_rank": 38}, "citations_per_article": {"counts": [6.5, 21.0, 4.5, 0, 8.333333333333334, 19.5, 7.714285714285714, 11.428571428571429, 12.454545454545455, 49.333333333333336, 0], "total": 13.975, "isTopResearch": false, "rank": 431, "fortune500_rank": 132}}, "patents": {"ai_patents": {"counts": [2, 3, 1, 0, 1, 7, 11, 6, 4, 0, 0], "total": 35, "table": null, "rank": 258, "fortune500_rank": 85}, "ai_patents_growth": {"counts": [], "total": 203.89610389610388, "table": null, "rank": 38, "fortune500_rank": 5}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [20, 30, 10, 0, 10, 70, 110, 60, 40, 0, 0], "total": 350, "table": null, "rank": 258, "fortune500_rank": 85}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 139, "fortune500_rank": 59}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 157, "fortune500_rank": 58}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 116, "fortune500_rank": 38}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 1, 4, 5, 1, 2, 0, 0], "total": 14, "table": "industry", "rank": 226, "fortune500_rank": 82}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 1, 0, 0, 2, 5, 0, 0, 0, 0], "total": 8, "table": "industry", "rank": 185, "fortune500_rank": 67}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 160, "fortune500_rank": 48}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 0, 0, 4, 3, 1, 1, 0, 0], "total": 10, "table": "application", "rank": 241, "fortune500_rank": 73}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 4, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 160, "fortune500_rank": 66}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 2, 3, 2, 0, 0, 0], "total": 7, "table": "application", "rank": 147, "fortune500_rank": 45}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1932, "rank": 238, "fortune500_rank": 133}, "ai_jobs": {"counts": null, "total": 55, "rank": 461, "fortune500_rank": 245}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Analog Devices, Inc. (ADI), also known simply as Analog, is an American multinational semiconductor company specializing in data conversion, signal processing and power management technology, headquartered in Wilmington, Massachusetts. In 2012, Analog Devices led the worldwide data converter market with a 48.5% share, according to analyst firm Databeans.", "wikipedia_link": "https://en.wikipedia.org/wiki/Analog_Devices", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1995, "country": "United States", "website": "https://www.bestbuy.com/", "crunchbase": {"text": " b1c5d726-1242-7ae0-98d3-71e4f0c6578d", "url": " https://www.crunchbase.com/organization/bestbuy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/best-buy"], "stage": "Mature", "name": "Best Buy", "patent_name": "Best Buy", "continent": "North America", "local_logo": null, "aliases": "Best Buy; Best Buy Co. Inc", "permid_links": [{"text": 4295903556, "url": "https://permid.org/1-4295903556"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BBY", "url": "https://www.google.com/finance/quote/BBY:NYSE"}], "market_full": [{"text": "MCX:BBY-RM", "url": "https://www.google.com/finance/quote/BBY-RM:MCX"}, {"text": "NYQ:BBY", "url": "https://www.google.com/finance/quote/BBY:NYQ"}, {"text": "STU:BUY", "url": "https://www.google.com/finance/quote/BUY:STU"}, {"text": "HAN:BUY", "url": "https://www.google.com/finance/quote/BUY:HAN"}, {"text": "DEU:BBY", "url": "https://www.google.com/finance/quote/BBY:DEU"}, {"text": "ASE:BBY", "url": "https://www.google.com/finance/quote/ASE:BBY"}, {"text": "MUN:BUY", "url": "https://www.google.com/finance/quote/BUY:MUN"}, {"text": "NYSE:BBY", "url": "https://www.google.com/finance/quote/BBY:NYSE"}, {"text": "LSE:0R18", "url": "https://www.google.com/finance/quote/0R18:LSE"}, {"text": "MEX:BBY", "url": "https://www.google.com/finance/quote/BBY:MEX"}, {"text": "DUS:BUY", "url": "https://www.google.com/finance/quote/BUY:DUS"}, {"text": "BER:BUY", "url": "https://www.google.com/finance/quote/BER:BUY"}, {"text": "FRA:BUY", "url": "https://www.google.com/finance/quote/BUY:FRA"}, {"text": "SAO:BBYY34", "url": "https://www.google.com/finance/quote/BBYY34:SAO"}, {"text": "BRN:BUY", "url": "https://www.google.com/finance/quote/BRN:BUY"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 2, 1, 1, 2, 0, 0, 2, 1, 2, 0], "total": 11, "isTopResearch": false, "rank": 924, "sp500_rank": 389, "fortune500_rank": 321}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 565, "sp500_rank": 235, "fortune500_rank": 176}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [20, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0], "total": 40, "table": null, "rank": 565, "sp500_rank": 235, "fortune500_rank": 176}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 78, "sp500_rank": 54, "fortune500_rank": 34}, "Business": {"counts": [2, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 252, "sp500_rank": 151, "fortune500_rank": 82}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1930, "rank": 239, "sp500_rank": 138, "fortune500_rank": 134}, "ai_jobs": {"counts": null, "total": 180, "rank": 242, "sp500_rank": 151, "fortune500_rank": 129}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers"}, {"cset_id": 2383, "country": "United States", "website": "https://www.keysight.com/us/en/home.html", "crunchbase": {"text": "60b3a502-7cc6-94ce-a162-13d6155cd9b3", "url": "https://www.crunchbase.com/organization/keysight-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/keysight-technologies"], "stage": "Mature", "name": "Keysight Technologies", "patent_name": "keysight technologies", "continent": "North America", "local_logo": "keysight_technologies.png", "aliases": "Keysight; Keysight Technologies Inc", "permid_links": [{"text": 5041978269, "url": "https://permid.org/1-5041978269"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:KEYS", "url": "https://www.google.com/finance/quote/keys:nyse"}], "market_full": [{"text": "MOEX:KEYS-RM", "url": "https://www.google.com/finance/quote/keys-rm:moex"}, {"text": "NYSE:KEYS", "url": "https://www.google.com/finance/quote/keys:nyse"}, {"text": "XETR:1KT", "url": "https://www.google.com/finance/quote/1kt:xetr"}, {"text": "HAN:1KT", "url": "https://www.google.com/finance/quote/1kt:han"}, {"text": "FRA:1KT", "url": "https://www.google.com/finance/quote/1kt:fra"}, {"text": "BER:1KT", "url": "https://www.google.com/finance/quote/1kt:ber"}, {"text": "BMV:KEYS", "url": "https://www.google.com/finance/quote/bmv:keys"}, {"text": "FWB:1KT", "url": "https://www.google.com/finance/quote/1kt:fwb"}, {"text": "LSE:0A7N", "url": "https://www.google.com/finance/quote/0a7n:lse"}, {"text": "DUS:1KT", "url": "https://www.google.com/finance/quote/1kt:dus"}], "crunchbase_description": "Keysight Technologies is an electronic measurement company.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Region of interest", "field_count": 1}, {"field_name": "Pixel", "field_count": 1}, {"field_name": "Sharpening", "field_count": 1}, {"field_name": "Object (computer science)", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}], "clusters": [{"cluster_id": 2149, "cluster_count": 2}, {"cluster_id": 17945, "cluster_count": 2}, {"cluster_id": 100126, "cluster_count": 2}, {"cluster_id": 41154, "cluster_count": 1}, {"cluster_id": 13759, "cluster_count": 1}, {"cluster_id": 55619, "cluster_count": 1}, {"cluster_id": 3797, "cluster_count": 1}, {"cluster_id": 8066, "cluster_count": 1}, {"cluster_id": 2410, "cluster_count": 1}, {"cluster_id": 1191, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 3137, "referenced_count": 2}, {"ref_CSET_id": 2045, "referenced_count": 2}, {"ref_CSET_id": 52, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 735, "referenced_count": 1}, {"ref_CSET_id": 319, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "image_processing", "task_count": 3}, {"referent": "defect_detection", "task_count": 2}, {"referent": "manufacturing_quality_control", "task_count": 2}, {"referent": "x_ray", "task_count": 2}, {"referent": "image_classification_tasks", "task_count": 2}, {"referent": "image_analysis", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "crack_detection", "task_count": 1}, {"referent": "road_damage_detection", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "twin_networks", "method_count": 3}, {"referent": "mad_learning", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "pixelcnn", "method_count": 2}, {"referent": "wgan_gp", "method_count": 2}, {"referent": "q_learning", "method_count": 1}, {"referent": "clusterfit", "method_count": 1}, {"referent": "gan", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 22, 77, 109, 130, 106, 84, 110, 83, 95, 2], "total": 818, "isTopResearch": false, "rank": 210, "fortune500_rank": 78}, "ai_publications": {"counts": [0, 0, 0, 3, 4, 2, 5, 4, 4, 2, 0], "total": 24, "isTopResearch": false, "rank": 273, "fortune500_rank": 82}, "ai_publications_growth": {"counts": [], "total": -23.333333333333332, "isTopResearch": false, "rank": 1353, "fortune500_rank": 394}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 1, 3, 9, 15, 29, 51, 36, 3], "total": 147, "isTopResearch": false, "rank": 444, "fortune500_rank": 130}, "cv_pubs": {"counts": [0, 0, 0, 1, 1, 0, 3, 1, 1, 1, 0], "total": 8, "isTopResearch": true, "rank": 229, "fortune500_rank": 67}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "fortune500_rank": 61}, "robotics_pubs": {"counts": [0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 214, "fortune500_rank": 57}, "citations_per_article": {"counts": [0, 0, 0, 0.3333333333333333, 0.75, 4.5, 3.0, 7.25, 12.75, 18.0, 0], "total": 6.125, "isTopResearch": false, "rank": 679, "fortune500_rank": 196}}, "patents": {"ai_patents": {"counts": [1, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525, "fortune500_rank": 169}, "ai_patents_growth": {"counts": [], "total": -33.333333333333336, "table": null, "rank": 1491, "fortune500_rank": 432}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 10, 0, 10, 10, 10, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525, "fortune500_rank": 169}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 363, "fortune500_rank": 124}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1911, "rank": 240, "fortune500_rank": 135}, "ai_jobs": {"counts": null, "total": 41, "rank": 520, "fortune500_rank": 270}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Keysight Technologies, or Keysight, is an American company that manufactures electronics test and measurement equipment and software. In 2014, Keysight was spun off from Agilent Technologies, taking with it the product lines focused on electronics and radio, leaving Agilent with the chemical and bio-analytical products.", "wikipedia_link": "https://en.wikipedia.org/wiki/Keysight", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2290, "country": "United States", "website": "https://www.dominionenergy.com/", "crunchbase": {"text": "b0e8f0c3-0283-22b4-0e45-75101523bcf2", "url": "https://www.crunchbase.com/organization/dominion-resources-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dominionenergy"], "stage": "Mature", "name": "Dominion Energy", "patent_name": "dominion energy", "continent": "North America", "local_logo": "dominion_energy.png", "aliases": "Dominion Energy Inc; Dominion Energy Technologies", "permid_links": [{"text": 5001437767, "url": "https://permid.org/1-5001437767"}], "parent_info": "Berkshire Hathaway Energy (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:D", "url": "https://www.google.com/finance/quote/d:nyse"}], "market_full": [{"text": "STU:DOD", "url": "https://www.google.com/finance/quote/dod:stu"}, {"text": "LSE:0IC9", "url": "https://www.google.com/finance/quote/0ic9:lse"}, {"text": "ASE:D", "url": "https://www.google.com/finance/quote/ase:d"}, {"text": "SAO:D1OM34", "url": "https://www.google.com/finance/quote/d1om34:sao"}, {"text": "MUN:DOD", "url": "https://www.google.com/finance/quote/dod:mun"}, {"text": "BER:DOD", "url": "https://www.google.com/finance/quote/ber:dod"}, {"text": "BRN:DOD", "url": "https://www.google.com/finance/quote/brn:dod"}, {"text": "DEU:D", "url": "https://www.google.com/finance/quote/d:deu"}, {"text": "NYQ:D", "url": "https://www.google.com/finance/quote/d:nyq"}, {"text": "GER:DODX", "url": "https://www.google.com/finance/quote/dodx:ger"}, {"text": "DUS:DOD", "url": "https://www.google.com/finance/quote/dod:dus"}, {"text": "NYSE:D", "url": "https://www.google.com/finance/quote/d:nyse"}, {"text": "VIE:DOEN", "url": "https://www.google.com/finance/quote/doen:vie"}, {"text": "MEX:D*", "url": "https://www.google.com/finance/quote/d*:mex"}, {"text": "FRA:DOD", "url": "https://www.google.com/finance/quote/dod:fra"}, {"text": "MOEX:D-RM", "url": "https://www.google.com/finance/quote/d-rm:moex"}], "crunchbase_description": "Dominion is an electric power and natural gas company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 51883, "cluster_count": 1}, {"cluster_id": 6879, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "portfolio_optimization", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "sports_analytics", "task_count": 1}], "methods": [{"referent": "ae", "method_count": 1}, {"referent": "denoising_autoencoder", "method_count": 1}, {"referent": "3d_reconstruction", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 4, 15, 15, 16, 15, 0], "total": 66, "isTopResearch": false, "rank": 574, "fortune500_rank": 213}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "fortune500_rank": 419}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 3, 2, 0], "total": 6, "isTopResearch": false, "rank": 805, "fortune500_rank": 220}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 1.0, 0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779, "fortune500_rank": 213}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1884, "rank": 241, "fortune500_rank": 136}, "ai_jobs": {"counts": null, "total": 117, "rank": 311, "fortune500_rank": 170}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2514, "country": "United States", "website": "https://www.thepremierfinancialinstitution.com/", "crunchbase": {"text": "344fc28d-121a-47b5-905d-34e553f8176a", "url": "https://www.crunchbase.com/organization/truist-financial"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/truistfinancialcorporation"], "stage": "Mature", "name": "Truist Financial", "patent_name": "truist financial", "continent": "North America", "local_logo": "truist_financial.png", "aliases": "Truist; Truist Financial Corp; Truist Financial Corporation", "permid_links": [{"text": 4295903505, "url": "https://permid.org/1-4295903505"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TFC.PRR", "url": "https://www.google.com/finance/quote/nyse:tfc.prr"}, {"text": "NYSE:TFC.PRI", "url": "https://www.google.com/finance/quote/nyse:tfc.pri"}, {"text": "NYSE:TFC", "url": "https://www.google.com/finance/quote/nyse:tfc"}, {"text": "NYSE:TFC.PRO", "url": "https://www.google.com/finance/quote/nyse:tfc.pro"}], "market_full": [{"text": "BRN:BBK", "url": "https://www.google.com/finance/quote/bbk:brn"}, {"text": "DEU:BBT", "url": "https://www.google.com/finance/quote/bbt:deu"}, {"text": "DUS:BBK", "url": "https://www.google.com/finance/quote/bbk:dus"}, {"text": "HAN:BBK", "url": "https://www.google.com/finance/quote/bbk:han"}, {"text": "NYQ:TFC.PRR", "url": "https://www.google.com/finance/quote/nyq:tfc.prr"}, {"text": "FRA:BBK", "url": "https://www.google.com/finance/quote/bbk:fra"}, {"text": "SAO:B1BT34", "url": "https://www.google.com/finance/quote/b1bt34:sao"}, {"text": "VIE:TFC", "url": "https://www.google.com/finance/quote/tfc:vie"}, {"text": "NYQ:TFC", "url": "https://www.google.com/finance/quote/nyq:tfc"}, {"text": "ASE:TFC.PRR", "url": "https://www.google.com/finance/quote/ase:tfc.prr"}, {"text": "NYSE:TFC.PRR", "url": "https://www.google.com/finance/quote/nyse:tfc.prr"}, {"text": "STU:BBK", "url": "https://www.google.com/finance/quote/bbk:stu"}, {"text": "ASE:TFC", "url": "https://www.google.com/finance/quote/ase:tfc"}, {"text": "ASE:TFC.PRO", "url": "https://www.google.com/finance/quote/ase:tfc.pro"}, {"text": "ASE:TFC.PRI", "url": "https://www.google.com/finance/quote/ase:tfc.pri"}, {"text": "NYQ:TFC.PRO", "url": "https://www.google.com/finance/quote/nyq:tfc.pro"}, {"text": "BER:BBK", "url": "https://www.google.com/finance/quote/bbk:ber"}, {"text": "GER:BBKX", "url": "https://www.google.com/finance/quote/bbkx:ger"}, {"text": "NYSE:TFC.PRI", "url": "https://www.google.com/finance/quote/nyse:tfc.pri"}, {"text": "MUN:BBK", "url": "https://www.google.com/finance/quote/bbk:mun"}, {"text": "MEX:TFC*", "url": "https://www.google.com/finance/quote/mex:tfc*"}, {"text": "NYSE:TFC", "url": "https://www.google.com/finance/quote/nyse:tfc"}, {"text": "NYSE:TFC.PRO", "url": "https://www.google.com/finance/quote/nyse:tfc.pro"}, {"text": "NYQ:TFC.PRI", "url": "https://www.google.com/finance/quote/nyq:tfc.pri"}, {"text": "MCX:TFC-RM", "url": "https://www.google.com/finance/quote/mcx:tfc-rm"}], "crunchbase_description": "Truist is the sixth-largest commercial bank in the U.S.", "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "isTopResearch": false, "rank": 1210, "sp500_rank": 439, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1882, "rank": 242, "sp500_rank": 139, "fortune500_rank": 137}, "ai_jobs": {"counts": null, "total": 313, "rank": 176, "sp500_rank": 114, "fortune500_rank": 97}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Truist Financial Corporation is an American bank holding company headquartered in Charlotte, North Carolina. The company was formed in December 2019 as the result of the merger of BB&T (Branch Banking and Trust Company) and SunTrust Banks. Its bank operates 2,049 branches in 15 states and Washington, D.C., and offers consumer and commercial banking, securities brokerage, asset management, mortgage, and insurance products and services. It is on the list of largest banks in the United States by assets. Its subsidiary, McGriff Insurance Services (formerly known as BB&T Insurance Services), was one of the largest insurance brokers in the world. In its history, it has made 106 mergers and acquisitions. Since it took over Southern National Bank in 1995, it has made 43 deals.", "wikipedia_link": "https://en.wikipedia.org/wiki/Special:Search?search=truist+financial", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 1807, "country": "United States", "website": "https://www.cardinalhealth.com/en.html", "crunchbase": {"text": "34fb1fce-6082-b01c-f8fa-c3a7574aab7d", "url": "https://www.crunchbase.com/organization/cardinal-health"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cardinal-health"], "stage": "Mature", "name": "Cardinal Health Inc", "patent_name": "cardinal health inc", "continent": "North America", "local_logo": "cardinal_health_inc.png", "aliases": "Cardinal Health; Cardinal Health, Inc", "permid_links": [{"text": 4295903651, "url": "https://permid.org/1-4295903651"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CAH", "url": "https://www.google.com/finance/quote/cah:nyse"}], "market_full": [{"text": "NYSE:CAH", "url": "https://www.google.com/finance/quote/cah:nyse"}, {"text": "SAO:C1AH34", "url": "https://www.google.com/finance/quote/c1ah34:sao"}, {"text": "DEU:CAH", "url": "https://www.google.com/finance/quote/cah:deu"}, {"text": "BER:CLH", "url": "https://www.google.com/finance/quote/ber:clh"}, {"text": "MEX:CAH*", "url": "https://www.google.com/finance/quote/cah*:mex"}, {"text": "BRN:CLH", "url": "https://www.google.com/finance/quote/brn:clh"}, {"text": "ASE:CAH", "url": "https://www.google.com/finance/quote/ase:cah"}, {"text": "LSE:0HTG", "url": "https://www.google.com/finance/quote/0htg:lse"}, {"text": "DUS:CLH", "url": "https://www.google.com/finance/quote/clh:dus"}, {"text": "BUE:CAH3", "url": "https://www.google.com/finance/quote/bue:cah3"}, {"text": "MUN:CLH", "url": "https://www.google.com/finance/quote/clh:mun"}, {"text": "STU:CLH", "url": "https://www.google.com/finance/quote/clh:stu"}, {"text": "FRA:CLH", "url": "https://www.google.com/finance/quote/clh:fra"}, {"text": "NYQ:CAH", "url": "https://www.google.com/finance/quote/cah:nyq"}], "crunchbase_description": "Cardinal Health is a company that improves the cost-effectiveness of health care.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 1683, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 789, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 1}, {"referent": "automated_writing_evaluation", "task_count": 1}], "methods": [{"referent": "automl", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [15, 11, 27, 29, 55, 65, 60, 63, 75, 58, 0], "total": 458, "isTopResearch": false, "rank": 288, "sp500_rank": 193, "fortune500_rank": 113}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 13, 11, 0], "total": 26, "isTopResearch": false, "rank": 656, "sp500_rank": 277, "fortune500_rank": 179}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 2.0, 0, 0, 0], "total": 26.0, "isTopResearch": false, "rank": 223, "sp500_rank": 63, "fortune500_rank": 69}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1862, "rank": 243, "sp500_rank": 140, "fortune500_rank": 138}, "ai_jobs": {"counts": null, "total": 289, "rank": 188, "sp500_rank": 123, "fortune500_rank": 106}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Cardinal Health, Inc. is an American multinational health care services company, and the 14th highest revenue generating company in the United States. Its headquarters are based in Dublin, Ohio and Dublin, Ireland (EMEA). The company specializes in the distribution of pharmaceuticals and medical products, serving more than 100,000 locations. The company also manufactures medical and surgical products, including gloves, surgical apparel, and fluid management products. In addition, it operates the largest network of radiopharmacies in the U.S. Cardinal Health provides medical products to over 75 percent of hospitals in the United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Cardinal_Health", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 3144, "country": "Canada", "website": "https://www.sunlife.com/", "crunchbase": {"text": " 02338d6c-0998-4dab-8980-f242c9866780", "url": " https://www.crunchbase.com/organization/sun-life-financial-of-canada"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sun-life-financial"], "stage": "Mature", "name": "Sun Life Financial", "patent_name": "Sun Life Financial", "continent": "North America", "local_logo": null, "aliases": "Sun Life Financial; Sun Life Financial Of Canada", "permid_links": [{"text": 4295861241, "url": "https://permid.org/1-4295861241"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SLF", "url": "https://www.google.com/finance/quote/NYSE:SLF"}], "market_full": [{"text": "MUN:LIE", "url": "https://www.google.com/finance/quote/LIE:MUN"}, {"text": "STU:LIE", "url": "https://www.google.com/finance/quote/LIE:STU"}, {"text": "DUS:LIE", "url": "https://www.google.com/finance/quote/DUS:LIE"}, {"text": "PKC:SUNFF", "url": "https://www.google.com/finance/quote/PKC:SUNFF"}, {"text": "NYQ:SLF", "url": "https://www.google.com/finance/quote/NYQ:SLF"}, {"text": "NYSE:SLF", "url": "https://www.google.com/finance/quote/NYSE:SLF"}, {"text": "PKC:SLFIF", "url": "https://www.google.com/finance/quote/PKC:SLFIF"}, {"text": "MEX:SLFN", "url": "https://www.google.com/finance/quote/MEX:SLFN"}, {"text": "FRA:LIE", "url": "https://www.google.com/finance/quote/FRA:LIE"}, {"text": "TOR:SLF.PR.D", "url": "https://www.google.com/finance/quote/SLF.PR.D:TOR"}, {"text": "TOR:SLF.PR.H", "url": "https://www.google.com/finance/quote/SLF.PR.H:TOR"}, {"text": "TOR:SLF.PR.J", "url": "https://www.google.com/finance/quote/SLF.PR.J:TOR"}, {"text": "TOR:SLF", "url": "https://www.google.com/finance/quote/SLF:TOR"}, {"text": "PHS:SLF", "url": "https://www.google.com/finance/quote/PHS:SLF"}, {"text": "TOR:SLF.PR.C", "url": "https://www.google.com/finance/quote/SLF.PR.C:TOR"}, {"text": "TOR:SLF.PR.G", "url": "https://www.google.com/finance/quote/SLF.PR.G:TOR"}, {"text": "TOR:SLF.PR.K", "url": "https://www.google.com/finance/quote/SLF.PR.K:TOR"}, {"text": "LSE:0VJA", "url": "https://www.google.com/finance/quote/0VJA:LSE"}, {"text": "DEU:SLC", "url": "https://www.google.com/finance/quote/DEU:SLC"}, {"text": "ASE:SLF", "url": "https://www.google.com/finance/quote/ASE:SLF"}, {"text": "BER:LIE", "url": "https://www.google.com/finance/quote/BER:LIE"}, {"text": "TOR:SLF.PR.E", "url": "https://www.google.com/finance/quote/SLF.PR.E:TOR"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Active learning (machine learning)", "field_count": 1}, {"field_name": "Explicit knowledge", "field_count": 1}, {"field_name": "Feature extraction", "field_count": 1}], "clusters": [{"cluster_id": 23422, "cluster_count": 2}, {"cluster_id": 28256, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 3144, "referenced_count": 1}, {"ref_CSET_id": 1132, "referenced_count": 1}], "tasks": [{"referent": "data_classification", "task_count": 2}, {"referent": "active_learning", "task_count": 1}, {"referent": "network_anomaly_detection", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "image_fusion", "task_count": 1}, {"referent": "cyber_attack_detection", "task_count": 1}, {"referent": "model_selection", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}, {"referent": "impala", "method_count": 2}, {"referent": "alp_gmm", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [4, 1, 3, 3, 3, 2, 0, 3, 3, 0, 0], "total": 22, "isTopResearch": false, "rank": 784, "sp500_rank": 367}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "sp500_rank": 285}, "ai_publications_growth": {"counts": [], "total": -75.0, "isTopResearch": false, "rank": 1526, "sp500_rank": 435}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0], "total": 4, "isTopResearch": false, "rank": 833, "sp500_rank": 338}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0.0, 3.0, 0, 0], "total": 1.3333333333333333, "isTopResearch": false, "rank": 865, "sp500_rank": 343}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1809, "rank": 244, "sp500_rank": 141}, "ai_jobs": {"counts": null, "total": 197, "rank": 231, "sp500_rank": 147}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2496, "country": "United States", "website": "https://www.starbucks.com/", "crunchbase": {"text": "68dd3433-e24d-1885-e987-d769d8ab9b21", "url": "https://www.crunchbase.com/organization/starbucks"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/starbucks"], "stage": "Mature", "name": "Starbucks Corp.", "patent_name": "starbucks corp.", "continent": "North America", "local_logo": "starbucks_corp.png", "aliases": "Starbucks; Starbucks Coffee Company; Starbucks Corporation", "permid_links": [{"text": 4295908005, "url": "https://permid.org/1-4295908005"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:4337", "url": "https://www.google.com/finance/quote/4337:hkg"}, {"text": "NASDAQ:SBUX", "url": "https://www.google.com/finance/quote/nasdaq:sbux"}], "market_full": [{"text": "SGO:SBUX", "url": "https://www.google.com/finance/quote/sbux:sgo"}, {"text": "BRN:SRB", "url": "https://www.google.com/finance/quote/brn:srb"}, {"text": "MCX:SBUX-RM", "url": "https://www.google.com/finance/quote/mcx:sbux-rm"}, {"text": "BER:SRB", "url": "https://www.google.com/finance/quote/ber:srb"}, {"text": "SGO:SBUXCL", "url": "https://www.google.com/finance/quote/sbuxcl:sgo"}, {"text": "HKG:4337", "url": "https://www.google.com/finance/quote/4337:hkg"}, {"text": "NASDAQ:SBUX", "url": "https://www.google.com/finance/quote/nasdaq:sbux"}, {"text": "FRA:SRB", "url": "https://www.google.com/finance/quote/fra:srb"}, {"text": "HAN:SRB", "url": "https://www.google.com/finance/quote/han:srb"}, {"text": "SAO:SBUB34", "url": "https://www.google.com/finance/quote/sao:sbub34"}, {"text": "BUE:SBUX3", "url": "https://www.google.com/finance/quote/bue:sbux3"}, {"text": "SWX:SBUX", "url": "https://www.google.com/finance/quote/sbux:swx"}, {"text": "MUN:SRB", "url": "https://www.google.com/finance/quote/mun:srb"}, {"text": "DEU:SBUX", "url": "https://www.google.com/finance/quote/deu:sbux"}, {"text": "STU:SRB", "url": "https://www.google.com/finance/quote/srb:stu"}, {"text": "DUS:SRB", "url": "https://www.google.com/finance/quote/dus:srb"}, {"text": "MEX:SBUX*", "url": "https://www.google.com/finance/quote/mex:sbux*"}, {"text": "UAX:SBUX", "url": "https://www.google.com/finance/quote/sbux:uax"}, {"text": "HAM:SRB", "url": "https://www.google.com/finance/quote/ham:srb"}, {"text": "LSE:0QZH", "url": "https://www.google.com/finance/quote/0qzh:lse"}, {"text": "MIL:SBUX", "url": "https://www.google.com/finance/quote/mil:sbux"}, {"text": "GER:SRBX", "url": "https://www.google.com/finance/quote/ger:srbx"}, {"text": "VIE:SBUX", "url": "https://www.google.com/finance/quote/sbux:vie"}], "crunchbase_description": "Starbucks is an international restaurant chain that retails handcrafted coffee, tea, and fresh food items.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 3, 7, 8, 2, 6, 2, 0, 1, 0], "total": 30, "isTopResearch": false, "rank": 713, "fortune500_rank": 255}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1793, "rank": 245, "fortune500_rank": 139}, "ai_jobs": {"counts": null, "total": 146, "rank": 275, "fortune500_rank": 147}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Starbucks Corporation is an American multinational chain of coffeehouses and roastery reserves headquartered in Seattle, Washington. As the world's largest coffeehouse chain, Starbucks is seen to be the main representation of the United States' second wave of coffee culture. As of early 2020, the company operates over 30,000 locations worldwide in more than 70 countries. Starbucks locations serve hot and cold drinks, whole-bean coffee, microground instant coffee known as VIA, espresso, caffe latte, full- and loose-leaf teas including Teavana tea products, Evolution Fresh juices, Frappuccino beverages, La Boulange pastries, and snacks including items such as chips and crackers; some offerings (including their annual fall launch of the Pumpkin Spice Latte) are seasonal or specific to the locality of the store.", "wikipedia_link": "https://en.wikipedia.org/wiki/Starbucks", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 381, "country": "United States", "website": "http://www.chegg.com/", "crunchbase": {"text": "9bcbd28c-d50b-41cd-357a-29bd1f2193c4", "url": "https://www.crunchbase.com/organization/chegg"}, "child_crunchbase": [{"text": "608b5485-a206-2e0b-bf90-dd114babed3f", "url": "https://www.crunchbase.com/organization/thinkful"}], "linkedin": ["https://www.linkedin.com/company/chegg-inc-", "https://www.linkedin.com/company/thinkful"], "stage": "Mature", "name": "Chegg Inc.", "patent_name": "chegg inc.", "continent": "North America", "local_logo": "chegg_inc.png", "aliases": "Chegg; Chegg Inc; Chegg, Inc", "permid_links": [{"text": 4297678774, "url": "https://permid.org/1-4297678774"}, {"text": 5037968236, "url": "https://permid.org/1-5037968236"}], "parent_info": null, "agg_child_info": "Thinkful", "unagg_child_info": null, "market_filt": [{"text": "NYSE:CHGG", "url": "https://www.google.com/finance/quote/chgg:nyse"}], "market_full": [{"text": "MUN:0CG", "url": "https://www.google.com/finance/quote/0cg:mun"}, {"text": "NYSE:CHGG", "url": "https://www.google.com/finance/quote/chgg:nyse"}, {"text": "ASE:CHGG", "url": "https://www.google.com/finance/quote/ase:chgg"}, {"text": "FWB:0CG", "url": "https://www.google.com/finance/quote/0cg:fwb"}, {"text": "FRA:CHGG", "url": "https://www.google.com/finance/quote/chgg:fra"}, {"text": "DUS:0CG", "url": "https://www.google.com/finance/quote/0cg:dus"}, {"text": "BMV:CHGG", "url": "https://www.google.com/finance/quote/bmv:chgg"}, {"text": "LON:0A4Z", "url": "https://www.google.com/finance/quote/0a4z:lon"}, {"text": "XETR:0CG", "url": "https://www.google.com/finance/quote/0cg:xetr"}, {"text": "BER:0CG", "url": "https://www.google.com/finance/quote/0cg:ber"}], "crunchbase_description": "Chegg is a student media learning platform offering services to universities and community colleges.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Knowledge base", "field_count": 1}, {"field_name": "Knowledge representation and reasoning", "field_count": 1}, {"field_name": "Automatic summarization", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Unsupervised learning", "field_count": 1}, {"field_name": "Pattern recognition (psychology)", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}, {"field_name": "Taxonomy (general)", "field_count": 1}], "clusters": [{"cluster_id": 13724, "cluster_count": 1}, {"cluster_id": 5438, "cluster_count": 1}, {"cluster_id": 69270, "cluster_count": 1}, {"cluster_id": 46953, "cluster_count": 1}, {"cluster_id": 46075, "cluster_count": 1}, {"cluster_id": 2505, "cluster_count": 1}, {"cluster_id": 64916, "cluster_count": 1}, {"cluster_id": 51467, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 19}, {"ref_CSET_id": 115, "referenced_count": 8}, {"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 671, "referenced_count": 2}, {"ref_CSET_id": 110, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 170, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 530, "referenced_count": 1}], "tasks": [{"referent": "recommendation", "task_count": 2}, {"referent": "intent_detection", "task_count": 2}, {"referent": "nli", "task_count": 1}, {"referent": "precision_agriculture", "task_count": 1}, {"referent": "land_cover_classification", "task_count": 1}, {"referent": "remote_sensing", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "summarization", "task_count": 1}, {"referent": "representation_learning", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 3}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "group_normalization", "method_count": 1}, {"referent": "generalized_mean_pooling", "method_count": 1}, {"referent": "weight_tying", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "neural_cache", "method_count": 1}, {"referent": "document_embeddings", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 2, 4, 1, 7, 5, 4, 0, 6, 0], "total": 29, "isTopResearch": false, "rank": 719}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 4, 2, 4, 0, 1, 0], "total": 12, "isTopResearch": false, "rank": 384}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 0, 10, 10, 11, 0], "total": 32, "isTopResearch": false, "rank": 647}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 161}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0.25, 0.0, 2.5, 0, 11.0, 0], "total": 2.6666666666666665, "isTopResearch": false, "rank": 807}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1782, "rank": 246}, "ai_jobs": {"counts": null, "total": 406, "rank": 139}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Chegg, Inc., is an American education technology company based in Santa Clara, California. It provides digital and physical textbook rentals, online tutoring, and other student services.", "wikipedia_link": "https://en.wikipedia.org/wiki/Chegg", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2551, "country": "United States", "website": "https://www.zebra.com/", "crunchbase": {"text": "350f3ee6-b803-be64-7191-dc4ecbe63acd", "url": "https://www.crunchbase.com/organization/zebra-technologies"}, "child_crunchbase": [{"text": "a1ef599d-ca80-6c2e-c182-0370be331905", "url": "https://www.crunchbase.com/organization/antuit"}], "linkedin": ["https://www.linkedin.com/company/zebra-technologies", "https://www.linkedin.com/company/antuitai"], "stage": "Mature", "name": "Zebra Technologies", "patent_name": "zebra technologies", "continent": "North America", "local_logo": "zebra_technologies.png", "aliases": "Zebra; Zebra Technologies Corp; Zebra Technologies Corporation", "permid_links": [{"text": 4295908523, "url": "https://permid.org/1-4295908523"}, {"text": 5045852200, "url": "https://permid.org/1-5045852200"}], "parent_info": null, "agg_child_info": "Antuit", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ZBRA", "url": "https://www.google.com/finance/quote/nasdaq:zbra"}], "market_full": [{"text": "DUS:ZT1A", "url": "https://www.google.com/finance/quote/dus:zt1a"}, {"text": "BER:ZT1A", "url": "https://www.google.com/finance/quote/ber:zt1a"}, {"text": "FRA:ZT1A", "url": "https://www.google.com/finance/quote/fra:zt1a"}, {"text": "GER:ZT1X.A", "url": "https://www.google.com/finance/quote/ger:zt1x.a"}, {"text": "MCX:ZBRA-RM", "url": "https://www.google.com/finance/quote/mcx:zbra-rm"}, {"text": "DEU:ZBRA", "url": "https://www.google.com/finance/quote/deu:zbra"}, {"text": "MEX:ZBRA*", "url": "https://www.google.com/finance/quote/mex:zbra*"}, {"text": "SAO:Z1BR34", "url": "https://www.google.com/finance/quote/sao:z1br34"}, {"text": "NASDAQ:ZBRA", "url": "https://www.google.com/finance/quote/nasdaq:zbra"}, {"text": "BRN:ZT1A", "url": "https://www.google.com/finance/quote/brn:zt1a"}, {"text": "STU:ZT1A", "url": "https://www.google.com/finance/quote/stu:zt1a"}, {"text": "HAN:ZT1A", "url": "https://www.google.com/finance/quote/han:zt1a"}, {"text": "MUN:ZT1A", "url": "https://www.google.com/finance/quote/mun:zt1a"}], "crunchbase_description": "Zebra Technologies is a global leader in barcode printing and RTLS technology including printers, RFID, software and supplies.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Sparse approximation", "field_count": 1}, {"field_name": "Encoding (memory)", "field_count": 1}, {"field_name": "Classifier (UML)", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Video processing", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Feature vector", "field_count": 1}, {"field_name": "Video camera", "field_count": 1}, {"field_name": "Pose", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 4473, "cluster_count": 2}, {"cluster_id": 981, "cluster_count": 2}, {"cluster_id": 214, "cluster_count": 1}, {"cluster_id": 7227, "cluster_count": 1}, {"cluster_id": 10587, "cluster_count": 1}, {"cluster_id": 35124, "cluster_count": 1}, {"cluster_id": 2410, "cluster_count": 1}, {"cluster_id": 75162, "cluster_count": 1}, {"cluster_id": 28239, "cluster_count": 1}, {"cluster_id": 16647, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 23}, {"ref_CSET_id": 101, "referenced_count": 14}, {"ref_CSET_id": 87, "referenced_count": 13}, {"ref_CSET_id": 1126, "referenced_count": 4}, {"ref_CSET_id": 23, "referenced_count": 4}, {"ref_CSET_id": 112, "referenced_count": 3}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 1897, "referenced_count": 2}, {"ref_CSET_id": 734, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}], "tasks": [{"referent": "video_surveillance", "task_count": 3}, {"referent": "classification", "task_count": 3}, {"referent": "spatio_temporal_forecasting", "task_count": 3}, {"referent": "safety_perception_recognition", "task_count": 2}, {"referent": "human_activity_recognition", "task_count": 2}, {"referent": "network_traffic_classification", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}, {"referent": "breast_cancer_detection", "task_count": 1}, {"referent": "motion_capture", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 3}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "image_representations", "method_count": 2}, {"referent": "clustering", "method_count": 2}, {"referent": "discriminators", "method_count": 2}, {"referent": "hard_swish", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "stochastic_optimization", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 4, 1, 3, 1, 2, 8, 2, 4, 0], "total": 25, "isTopResearch": false, "rank": 754, "fortune500_rank": 269}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 2, 7, 2, 2, 0], "total": 14, "isTopResearch": false, "rank": 359, "fortune500_rank": 109}, "ai_publications_growth": {"counts": [], "total": 59.52380952380952, "isTopResearch": false, "rank": 55, "fortune500_rank": 15}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 2, 25, 63, 58, 5], "total": 153, "isTopResearch": false, "rank": 438, "fortune500_rank": 127}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 6, 2, 0, 0], "total": 10, "isTopResearch": true, "rank": 202, "fortune500_rank": 55}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 1.0, 3.5714285714285716, 31.5, 29.0, 0], "total": 10.928571428571429, "isTopResearch": false, "rank": 508, "fortune500_rank": 151}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 1, 2, 16, 6, 14, 4, 0, 0], "total": 45, "table": null, "rank": 227, "fortune500_rank": 73}, "ai_patents_growth": {"counts": [], "total": 256.94444444444446, "table": null, "rank": 31, "fortune500_rank": 2}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [20, 0, 0, 10, 20, 160, 60, 140, 40, 0, 0], "total": 450, "table": null, "rank": 227, "fortune500_rank": 73}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0], "total": 3, "table": null, "rank": 157, "fortune500_rank": 58}, "Transportation": {"counts": [0, 0, 0, 0, 2, 3, 0, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 123, "fortune500_rank": 37}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "total": 5, "table": "industry", "rank": 104, "fortune500_rank": 31}, "Education": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [2, 0, 0, 1, 0, 7, 2, 6, 2, 0, 0], "total": 20, "table": "industry", "rank": 188, "fortune500_rank": 70}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0], "total": 3, "table": null, "rank": 141, "fortune500_rank": 50}, "Telecommunications": {"counts": [1, 0, 0, 0, 1, 2, 2, 1, 2, 0, 0], "total": 9, "table": "industry", "rank": 174, "fortune500_rank": 64}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 3, 2, 2, 0, 0, 0], "total": 7, "table": "industry", "rank": 183, "fortune500_rank": 61}, "Energy_Management": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 3, 0, 2, 0, 0, 0], "total": 5, "table": "application", "rank": 56, "fortune500_rank": 31}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], "total": 6, "table": "application", "rank": 163, "fortune500_rank": 55}, "Control": {"counts": [2, 0, 0, 0, 2, 3, 0, 0, 1, 0, 0], "total": 8, "table": "application", "rank": 150, "fortune500_rank": 50}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "fortune500_rank": 8}, "Computer_Vision": {"counts": [1, 0, 0, 0, 0, 7, 4, 11, 1, 0, 0], "total": 24, "table": "application", "rank": 171, "fortune500_rank": 48}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 2, 0, 2, 1, 0, 0], "total": 6, "table": "application", "rank": 158, "fortune500_rank": 51}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1778, "rank": 247, "fortune500_rank": 140}, "ai_jobs": {"counts": null, "total": 154, "rank": 267, "fortune500_rank": 141}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Zebra Technologies Corporation is an American company that manufactures and sells marking, tracking and computer printing technologies. Its products include thermal barcode label and receipt printers, RFID smart label printers/encoders/fixed & handheld readers/antennas, and card and kiosk printers that are used for barcode labeling, personal identification and specialty printing principally in the manufacturing supply chain, retail, healthcare and government sectors. In 2018, the company had sales of $4.218 billion and had a market capitalization of $12.55 billion.", "wikipedia_link": "https://en.wikipedia.org/wiki/Zebra_Technologies", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2084, "country": "Switzerland", "website": "https://www.chubb.com/", "crunchbase": {"text": " d97b42a8-154a-d344-2e91-3d9cdde02af2", "url": " https://www.crunchbase.com/organization/chubb-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/chubb"], "stage": "Mature", "name": "Chubb", "patent_name": "Chubb", "continent": "Europe", "local_logo": null, "aliases": "Ace Limited; Chubb", "permid_links": [{"text": 5000709065, "url": "https://permid.org/1-5000709065"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CB", "url": "https://www.google.com/finance/quote/CB:NYSE"}], "market_full": [{"text": "DEU:ACEL", "url": "https://www.google.com/finance/quote/ACEL:DEU"}, {"text": "STU:AEX", "url": "https://www.google.com/finance/quote/AEX:STU"}, {"text": "MEX:CBN", "url": "https://www.google.com/finance/quote/CBN:MEX"}, {"text": "ASE:CB", "url": "https://www.google.com/finance/quote/ASE:CB"}, {"text": "FRA:AEX", "url": "https://www.google.com/finance/quote/AEX:FRA"}, {"text": "SAO:C1BL34", "url": "https://www.google.com/finance/quote/C1BL34:SAO"}, {"text": "MUN:AEX", "url": "https://www.google.com/finance/quote/AEX:MUN"}, {"text": "BRN:AEX", "url": "https://www.google.com/finance/quote/AEX:BRN"}, {"text": "NYSE:CB", "url": "https://www.google.com/finance/quote/CB:NYSE"}, {"text": "NYQ:CB", "url": "https://www.google.com/finance/quote/CB:NYQ"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105, "sp500_rank": 421, "fortune500_rank": 368}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1759, "rank": 248, "sp500_rank": 142, "fortune500_rank": 141}, "ai_jobs": {"counts": null, "total": 291, "rank": 184, "sp500_rank": 120, "fortune500_rank": 102}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 718, "country": "United States", "website": "https://www.bcg.com/", "crunchbase": {"text": "22eef412-8f8c-2d0b-a80f-1e7936f0399c", "url": "https://www.crunchbase.com/organization/boston-consulting-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/boston-consulting-group"], "stage": "Unknown", "name": "The Boston Consulting Group (BCG)", "patent_name": "the boston consulting group (bcg)", "continent": "North America", "local_logo": "the_boston_consulting_group_bcg.png", "aliases": "Bcg; Boston Consulting Group; Boston Consulting Group Inc; The Boston Consulting Group", "permid_links": [{"text": 4296562358, "url": "https://permid.org/1-4296562358"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "The Boston Consulting Group is a global management consulting firm and an advisor on business strategy.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Big data", "field_count": 1}, {"field_name": "Data stream mining", "field_count": 1}, {"field_name": "Information extraction", "field_count": 1}, {"field_name": "Swarm behaviour", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Knowledge extraction", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}, {"field_name": "Pose", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}], "clusters": [{"cluster_id": 4179, "cluster_count": 3}, {"cluster_id": 1745, "cluster_count": 2}, {"cluster_id": 26, "cluster_count": 1}, {"cluster_id": 5109, "cluster_count": 1}, {"cluster_id": 25062, "cluster_count": 1}, {"cluster_id": 30063, "cluster_count": 1}, {"cluster_id": 5175, "cluster_count": 1}, {"cluster_id": 11988, "cluster_count": 1}, {"cluster_id": 44849, "cluster_count": 1}, {"cluster_id": 18418, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 1835, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 718, "referenced_count": 3}, {"ref_CSET_id": 796, "referenced_count": 1}, {"ref_CSET_id": 2603, "referenced_count": 1}, {"ref_CSET_id": 1928, "referenced_count": 1}, {"ref_CSET_id": 1395, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "image_analysis", "task_count": 2}, {"referent": "one_class_classifier", "task_count": 2}, {"referent": "segmentation", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}, {"referent": "3d_human_pose_estimation", "task_count": 1}, {"referent": "6d_pose_estimation", "task_count": 1}, {"referent": "future_prediction", "task_count": 1}, {"referent": "image_processing", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 2}, {"referent": "clustering", "method_count": 2}, {"referent": "q_learning", "method_count": 1}, {"referent": "residual_normal_distribution", "method_count": 1}, {"referent": "dac", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "fourier_related_transforms", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}, {"referent": "deep_voice_3", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [33, 32, 32, 33, 46, 42, 52, 81, 48, 36, 2], "total": 437, "isTopResearch": false, "rank": 294}, "ai_publications": {"counts": [1, 0, 1, 0, 0, 2, 3, 2, 3, 3, 0], "total": 15, "isTopResearch": false, "rank": 346}, "ai_publications_growth": {"counts": [], "total": 5.5555555555555545, "isTopResearch": false, "rank": 173}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [1, 5, 7, 8, 3, 10, 20, 83, 85, 82, 3], "total": 307, "isTopResearch": false, "rank": 328}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [1.0, 0, 7.0, 0, 0, 5.0, 6.666666666666667, 41.5, 28.333333333333332, 27.333333333333332, 0], "total": 20.466666666666665, "isTopResearch": false, "rank": 306}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 4, 3, 2, 1, 0, 0], "total": 11, "table": null, "rank": 394}, "ai_patents_growth": {"counts": [], "total": 80.55555555555556, "table": null, "rank": 145}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 40, 30, 20, 10, 0, 0], "total": 110, "table": null, "rank": 394}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 1, 0, 0], "total": 4, "table": "industry", "rank": 363}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 1, 2, 2, 2, 1, 0, 0], "total": 8, "table": "industry", "rank": 168}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 214}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1757, "rank": 249}, "ai_jobs": {"counts": null, "total": 813, "rank": 58}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Boston Consulting Group (BCG) is an American management consulting firm founded in 1963, headquartered in Boston, Massachusetts. The firm is the second largest consulting firm by revenue and one of the most prestigious in the world. BCG has been recognized by Consulting Magazine as the best Consulting firm to work for. It is part of the elite Big Three (management consultancies), along with Bain & Company and McKinsey & Company.", "wikipedia_link": "https://en.wikipedia.org/wiki/Boston_Consulting_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 557, "country": "United States", "website": "http://lyft.com", "crunchbase": {"text": "33a97e70-f137-e90f-8d68-950a043ee09f", "url": "https://www.crunchbase.com/organization/lyft"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lyft"], "stage": "Mature", "name": "Lyft", "patent_name": "lyft", "continent": "North America", "local_logo": "lyft.png", "aliases": "Lyft Inc; Lyft, Inc", "permid_links": [{"text": 5036653793, "url": "https://permid.org/1-5036653793"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:LYFT", "url": "https://www.google.com/finance/quote/lyft:nasdaq"}], "market_full": [{"text": "BER:LY0", "url": "https://www.google.com/finance/quote/ber:ly0"}, {"text": "FWB:LY0", "url": "https://www.google.com/finance/quote/fwb:ly0"}, {"text": "MOEX:LYFT-RM", "url": "https://www.google.com/finance/quote/lyft-rm:moex"}, {"text": "DUS:LY0", "url": "https://www.google.com/finance/quote/dus:ly0"}, {"text": "BMV:LYFT", "url": "https://www.google.com/finance/quote/bmv:lyft"}, {"text": "NASDAQ:LYFT", "url": "https://www.google.com/finance/quote/lyft:nasdaq"}, {"text": "XETR:LY0", "url": "https://www.google.com/finance/quote/ly0:xetr"}, {"text": "MUN:LY0", "url": "https://www.google.com/finance/quote/ly0:mun"}], "crunchbase_description": "Lyft designs, markets, and operates a mobile application that matches drivers with passengers who request rides.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 5}, {"field_name": "Segmentation", "field_count": 3}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 1}, {"field_name": "Hidden Markov model", "field_count": 1}, {"field_name": "Point cloud", "field_count": 1}, {"field_name": "Six degrees of freedom", "field_count": 1}, {"field_name": "Intelligent decision support system", "field_count": 1}], "clusters": [{"cluster_id": 2505, "cluster_count": 2}, {"cluster_id": 28082, "cluster_count": 1}, {"cluster_id": 6910, "cluster_count": 1}, {"cluster_id": 25918, "cluster_count": 1}, {"cluster_id": 24799, "cluster_count": 1}, {"cluster_id": 29152, "cluster_count": 1}, {"cluster_id": 17094, "cluster_count": 1}, {"cluster_id": 38350, "cluster_count": 1}, {"cluster_id": 49127, "cluster_count": 1}, {"cluster_id": 1683, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 557, "referenced_count": 35}, {"ref_CSET_id": 101, "referenced_count": 29}, {"ref_CSET_id": 163, "referenced_count": 26}, {"ref_CSET_id": 87, "referenced_count": 20}, {"ref_CSET_id": 3116, "referenced_count": 10}, {"ref_CSET_id": 487, "referenced_count": 6}, {"ref_CSET_id": 184, "referenced_count": 5}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 2}], "tasks": [{"referent": "motion_planning", "task_count": 5}, {"referent": "autonomous_driving", "task_count": 5}, {"referent": "computer_vision", "task_count": 5}, {"referent": "classification", "task_count": 4}, {"referent": "image_processing", "task_count": 4}, {"referent": "safety_perception_recognition", "task_count": 3}, {"referent": "breast_cancer_detection", "task_count": 3}, {"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "semantic_segmentation", "task_count": 2}, {"referent": "segmentation", "task_count": 2}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 11}, {"referent": "auto_classifier", "method_count": 3}, {"referent": "1d_cnn", "method_count": 3}, {"referent": "global_convolutional_network", "method_count": 3}, {"referent": "computer_vision", "method_count": 2}, {"referent": "polya_gamma_augmentation", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "twin_networks", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "sm3", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 1, 2, 0, 6, 18, 23, 6, 19, 13, 0], "total": 89, "isTopResearch": false, "rank": 527}, "ai_publications": {"counts": [0, 0, 0, 0, 3, 14, 6, 0, 6, 2, 0], "total": 31, "isTopResearch": false, "rank": 235}, "ai_publications_growth": {"counts": [], "total": -83.33333333333334, "isTopResearch": false, "rank": 1540}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 4, 2, 0, 1, 1, 0], "total": 8, "isTopResearch": false, "rank": 127}, "citation_counts": {"counts": [0, 0, 0, 0, 4, 53, 255, 432, 615, 551, 24], "total": 1934, "isTopResearch": false, "rank": 141}, "cv_pubs": {"counts": [0, 0, 0, 0, 2, 11, 2, 0, 1, 0, 0], "total": 16, "isTopResearch": true, "rank": 158}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 2, 0, 0], "total": 6, "isTopResearch": true, "rank": 156}, "citations_per_article": {"counts": [0, 0, 0, 0, 1.3333333333333333, 3.7857142857142856, 42.5, 0, 102.5, 275.5, 0], "total": 62.38709677419355, "isTopResearch": false, "rank": 69}}, "patents": {"ai_patents": {"counts": [1, 0, 2, 2, 13, 18, 37, 9, 1, 0, 0], "total": 83, "table": null, "rank": 172}, "ai_patents_growth": {"counts": [], "total": 22.78047278047278, "table": null, "rank": 296}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 0, 20, 20, 130, 180, 370, 90, 10, 0, 0], "total": 830, "table": null, "rank": 172}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 125}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [1, 0, 2, 2, 8, 8, 24, 3, 1, 0, 0], "total": 49, "table": "industry", "rank": 44}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 2, 4, 10, 2, 0, 0, 0], "total": 19, "table": "industry", "rank": 195}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 2, 1, 5, 1, 0, 0, 0], "total": 9, "table": "industry", "rank": 80}, "Telecommunications": {"counts": [1, 0, 0, 1, 8, 6, 9, 4, 0, 0, 0], "total": 29, "table": "industry", "rank": 112}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 1, 7, 5, 10, 4, 0, 0, 0], "total": 27, "table": "industry", "rank": 83}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 3, 1, 3, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 102}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 7, 5, 6, 4, 0, 0, 0], "total": 23, "table": "application", "rank": 76}, "Control": {"counts": [0, 0, 2, 2, 6, 9, 18, 1, 1, 0, 0], "total": 39, "table": "application", "rank": 64}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 1, 1, 9, 15, 5, 0, 0, 0], "total": 31, "table": "application", "rank": 150}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 223}, "Measuring_and_Testing": {"counts": [1, 0, 0, 2, 5, 5, 12, 2, 1, 0, 0], "total": 28, "table": "application", "rank": 63}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1753, "rank": 250}, "ai_jobs": {"counts": null, "total": 343, "rank": 162}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Lyft, Inc. develops, markets, and operates a mobile app, offering vehicles for hire, motorized scooters, a bicycle-sharing system, and food delivery. The company is based in San Francisco, California and operates in 644 cities in the United States and 12 cities in Canada.", "wikipedia_link": "https://en.wikipedia.org/wiki/Lyft", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2249, "country": "United States", "website": "https://www.cbre.us", "crunchbase": {"text": "acc267bc-355e-2692-8429-42bb3d8da5c2", "url": "https://www.crunchbase.com/organization/cbre-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cbre"], "stage": "Mature", "name": "CBRE Group", "patent_name": "cbre group", "continent": "North America", "local_logo": "cbre_group.png", "aliases": "Cbre Group, Inc; cbre", "permid_links": [{"text": 4295899323, "url": "https://permid.org/1-4295899323"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CBRE", "url": "https://www.google.com/finance/quote/cbre:nyse"}], "market_full": [{"text": "BER:RF6", "url": "https://www.google.com/finance/quote/ber:rf6"}, {"text": "LSE:0HQP", "url": "https://www.google.com/finance/quote/0hqp:lse"}, {"text": "MUN:RF6", "url": "https://www.google.com/finance/quote/mun:rf6"}, {"text": "DEU:RF6", "url": "https://www.google.com/finance/quote/deu:rf6"}, {"text": "BRN:RF6", "url": "https://www.google.com/finance/quote/brn:rf6"}, {"text": "NYSE:CBRE", "url": "https://www.google.com/finance/quote/cbre:nyse"}, {"text": "MEX:CBRE*", "url": "https://www.google.com/finance/quote/cbre*:mex"}, {"text": "DUS:RF6", "url": "https://www.google.com/finance/quote/dus:rf6"}, {"text": "STU:RF6", "url": "https://www.google.com/finance/quote/rf6:stu"}, {"text": "ASE:CBRE", "url": "https://www.google.com/finance/quote/ase:cbre"}, {"text": "FRA:RF6", "url": "https://www.google.com/finance/quote/fra:rf6"}, {"text": "SAO:C1BR34", "url": "https://www.google.com/finance/quote/c1br34:sao"}, {"text": "NYQ:CBRE", "url": "https://www.google.com/finance/quote/cbre:nyq"}, {"text": "HAN:RF6", "url": "https://www.google.com/finance/quote/han:rf6"}], "crunchbase_description": "CBRE Group is a holding company that conducts all of its operations through its indirect subsidiaries.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 6, 4, 1, 9, 4, 4, 1, 3, 1, 0], "total": 33, "isTopResearch": false, "rank": 694, "fortune500_rank": 250}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1731, "rank": 251, "fortune500_rank": 142}, "ai_jobs": {"counts": null, "total": 314, "rank": 174, "fortune500_rank": 95}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "CBRE Group, Inc. is an American commercial real estate services and investment firm. The abbreviation CBRE stands for Coldwell Banker Richard Ellis. It is the largest commercial real estate services company in the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/CBRE_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2462, "country": "United States", "website": "https://www.principal.com/", "crunchbase": {"text": "82f9cda0-bec2-957a-25e9-2b9bbbd279b6", "url": "https://www.crunchbase.com/organization/principal-financial-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/principalfinancialgroup"], "stage": "Mature", "name": "Principal Financial Group", "patent_name": "principal financial group", "continent": "North America", "local_logo": "principal_financial_group.png", "aliases": "Principal; Principal Financial Group Inc; Principal Financial Services, Inc", "permid_links": [{"text": 4295901744, "url": "https://permid.org/1-4295901744"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:PFG", "url": "https://www.google.com/finance/quote/nasdaq:pfg"}], "market_full": [{"text": "MUN:PG4", "url": "https://www.google.com/finance/quote/mun:pg4"}, {"text": "BRN:PG4", "url": "https://www.google.com/finance/quote/brn:pg4"}, {"text": "BER:PG4", "url": "https://www.google.com/finance/quote/ber:pg4"}, {"text": "DEU:PFGF", "url": "https://www.google.com/finance/quote/deu:pfgf"}, {"text": "MCX:PFG-RM", "url": "https://www.google.com/finance/quote/mcx:pfg-rm"}, {"text": "HAN:PG4", "url": "https://www.google.com/finance/quote/han:pg4"}, {"text": "LSE:0KO5", "url": "https://www.google.com/finance/quote/0ko5:lse"}, {"text": "SAO:P1FG34", "url": "https://www.google.com/finance/quote/p1fg34:sao"}, {"text": "FRA:PG4", "url": "https://www.google.com/finance/quote/fra:pg4"}, {"text": "STU:PG4", "url": "https://www.google.com/finance/quote/pg4:stu"}, {"text": "MEX:PFG*", "url": "https://www.google.com/finance/quote/mex:pfg*"}, {"text": "NASDAQ:PFG", "url": "https://www.google.com/finance/quote/nasdaq:pfg"}, {"text": "DUS:PG4", "url": "https://www.google.com/finance/quote/dus:pg4"}], "crunchbase_description": "Principal Financial Group provides retirement savings, investment, and insurance products and services worldwide.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 0, 10, 0, 3, 1, 3, 0], "total": 18, "isTopResearch": false, "rank": 825, "fortune500_rank": 292}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1731, "rank": 251, "fortune500_rank": 142}, "ai_jobs": {"counts": null, "total": 181, "rank": 241, "fortune500_rank": 128}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Principal Financial Group is a global financial investment management and insurance company headquartered in Des Moines, Iowa, U.S.A.", "wikipedia_link": "https://en.wikipedia.org/wiki/Principal_Financial_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2499, "country": "United States", "website": "https://www.stryker.com/", "crunchbase": {"text": "0ddcc0a7-8f74-6985-0638-dacdbb5ef503", "url": "https://www.crunchbase.com/organization/stryker"}, "child_crunchbase": [{"text": "ca464384-7169-60cc-99c8-4ccf61509c5c", "url": "https://www.crunchbase.com/organization/gauss-surgical"}], "linkedin": ["https://www.linkedin.com/company/stryker", "https://www.linkedin.com/company/gauss-surgical"], "stage": "Mature", "name": "Stryker Corp.", "patent_name": "stryker corp.", "continent": "North America", "local_logo": "stryker_corp.png", "aliases": "Stryker; Stryker Iberia, Sl", "permid_links": [{"text": 4295904996, "url": "https://permid.org/1-4295904996"}, {"text": 5040268019, "url": "https://permid.org/1-5040268019"}], "parent_info": null, "agg_child_info": "Gauss Surgical", "unagg_child_info": null, "market_filt": [{"text": "NYSE:SYK", "url": "https://www.google.com/finance/quote/nyse:syk"}], "market_full": [{"text": "NYSE:SYK", "url": "https://www.google.com/finance/quote/nyse:syk"}, {"text": "STU:SYK", "url": "https://www.google.com/finance/quote/stu:syk"}, {"text": "LSE:0R2S", "url": "https://www.google.com/finance/quote/0r2s:lse"}, {"text": "BER:SYK", "url": "https://www.google.com/finance/quote/ber:syk"}, {"text": "FRA:SYK", "url": "https://www.google.com/finance/quote/fra:syk"}, {"text": "VIE:SYK", "url": "https://www.google.com/finance/quote/syk:vie"}, {"text": "DUS:SYK", "url": "https://www.google.com/finance/quote/dus:syk"}, {"text": "DEU:SYK", "url": "https://www.google.com/finance/quote/deu:syk"}, {"text": "MEX:SYK*", "url": "https://www.google.com/finance/quote/mex:syk*"}, {"text": "SAO:S1YK34", "url": "https://www.google.com/finance/quote/s1yk34:sao"}, {"text": "MUN:SYK", "url": "https://www.google.com/finance/quote/mun:syk"}, {"text": "ASE:SYK", "url": "https://www.google.com/finance/quote/ase:syk"}, {"text": "BRN:SYK", "url": "https://www.google.com/finance/quote/brn:syk"}, {"text": "MCX:SYK", "url": "https://www.google.com/finance/quote/mcx:syk"}, {"text": "NYQ:SYK", "url": "https://www.google.com/finance/quote/nyq:syk"}, {"text": "GER:SYKX", "url": "https://www.google.com/finance/quote/ger:sykx"}], "crunchbase_description": "Stryker is a medical technology company that offers products and services in orthopaedics.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Segmentation", "field_count": 2}, {"field_name": "Linear discriminant analysis", "field_count": 1}, {"field_name": "Haptic technology", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}], "clusters": [{"cluster_id": 616, "cluster_count": 2}, {"cluster_id": 2202, "cluster_count": 1}, {"cluster_id": 25016, "cluster_count": 1}, {"cluster_id": 4404, "cluster_count": 1}, {"cluster_id": 20557, "cluster_count": 1}, {"cluster_id": 3763, "cluster_count": 1}, {"cluster_id": 7796, "cluster_count": 1}, {"cluster_id": 8609, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 127, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 785, "referenced_count": 3}, {"ref_CSET_id": 2499, "referenced_count": 3}, {"ref_CSET_id": 839, "referenced_count": 2}, {"ref_CSET_id": 201, "referenced_count": 2}, {"ref_CSET_id": 789, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "segmentation", "task_count": 3}, {"referent": "brain_tumor_segmentation", "task_count": 2}, {"referent": "semantic_segmentation", "task_count": 2}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "unmanned_aerial_vehicles", "task_count": 1}, {"referent": "transfer_learning", "task_count": 1}, {"referent": "prostate_cancer", "task_count": 1}, {"referent": "prostate_segmentation", "task_count": 1}, {"referent": "super_resolution", "task_count": 1}, {"referent": "knee_osteoarthritis_prediction", "task_count": 1}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "vqa_models", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}, {"referent": "densenet", "method_count": 1}, {"referent": "global_convolutional_network", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "mas", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [44, 41, 29, 35, 42, 64, 36, 42, 32, 34, 0], "total": 399, "isTopResearch": false, "rank": 314, "fortune500_rank": 121}, "ai_publications": {"counts": [1, 0, 0, 1, 0, 4, 0, 3, 1, 1, 0], "total": 11, "isTopResearch": false, "rank": 397, "fortune500_rank": 116}, "ai_publications_growth": {"counts": [], "total": -33.333333333333336, "isTopResearch": false, "rank": 1404, "fortune500_rank": 406}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [5, 14, 18, 30, 35, 91, 199, 343, 326, 124, 2], "total": 1187, "isTopResearch": false, "rank": 178, "fortune500_rank": 54}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 2, 0, 2, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 171, "fortune500_rank": 44}, "citations_per_article": {"counts": [5.0, 0, 0, 30.0, 0, 22.75, 0, 114.33333333333333, 326.0, 124.0, 0], "total": 107.9090909090909, "isTopResearch": false, "rank": 31, "fortune500_rank": 7}}, "patents": {"ai_patents": {"counts": [0, 3, 1, 3, 3, 6, 5, 14, 1, 0, 0], "total": 36, "table": null, "rank": 252, "fortune500_rank": 81}, "ai_patents_growth": {"counts": [], "total": 87.77777777777777, "table": null, "rank": 130, "fortune500_rank": 28}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 30, 10, 30, 30, 60, 50, 140, 10, 0, 0], "total": 360, "table": null, "rank": 252, "fortune500_rank": 81}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 3, 1, 3, 3, 5, 5, 11, 1, 0, 0], "total": 32, "table": "industry", "rank": 31, "fortune500_rank": 13}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 147, "fortune500_rank": 45}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 50, "fortune500_rank": 15}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 3, 0, 1, 0, 3, 0, 1, 0, 0, 0], "total": 8, "table": "industry", "rank": 273, "fortune500_rank": 99}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "fortune500_rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 166, "fortune500_rank": 57}, "Distributed_AI": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 14, "fortune500_rank": 6}, "Computer_Vision": {"counts": [0, 0, 0, 2, 2, 5, 1, 6, 1, 0, 0], "total": 17, "table": "application", "rank": 200, "fortune500_rank": 57}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 2, 0, 3, 2, 1, 0, 0, 0], "total": 8, "table": "application", "rank": 131, "fortune500_rank": 55}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1730, "rank": 253, "fortune500_rank": 144}, "ai_jobs": {"counts": null, "total": 137, "rank": 287, "fortune500_rank": 156}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Stryker Corporation is an American multinational medical technologies corporation based in Kalamazoo, Michigan. Stryker's products include implants used in joint replacement and trauma surgeries; surgical equipment and surgical navigation systems; endoscopic and communications systems; patient handling and emergency medical equipment; neurosurgical, neurovascular and spinal devices; as well as other medical device products used in a variety of medical specialties.", "wikipedia_link": "https://en.wikipedia.org/wiki/Stryker_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1851, "country": "United Kingdom", "website": "https://www.tesco.com/", "crunchbase": {"text": " 25c20dcc-2393-84dd-a309-a041aa5ec193 ", "url": " https://www.crunchbase.com/organization/tesco "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/-tesco"], "stage": "Mature", "name": "Tesco", "patent_name": "Tesco", "continent": "Europe", "local_logo": null, "aliases": "Tesco; Tesco Plc; Tesco Stores Limited", "permid_links": [{"text": 4295895258, "url": "https://permid.org/1-4295895258"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "SWX:TSCO", "url": "https://www.google.com/finance/quote/SWX:TSCO"}, {"text": "BRN:TCO0", "url": "https://www.google.com/finance/quote/BRN:TCO0"}, {"text": "QXI:TSCDF", "url": "https://www.google.com/finance/quote/QXI:TSCDF"}, {"text": "DEU:TCO0", "url": "https://www.google.com/finance/quote/DEU:TCO0"}, {"text": "QXI:TSCDY", "url": "https://www.google.com/finance/quote/QXI:TSCDY"}, {"text": "SAO:TCCO34", "url": "https://www.google.com/finance/quote/SAO:TCCO34"}, {"text": "DUS:TCO0", "url": "https://www.google.com/finance/quote/DUS:TCO0"}, {"text": "STU:TCO0", "url": "https://www.google.com/finance/quote/STU:TCO0"}, {"text": "MUN:TCO2", "url": "https://www.google.com/finance/quote/MUN:TCO2"}, {"text": "GER:TCO0X", "url": "https://www.google.com/finance/quote/GER:TCO0X"}, {"text": "FRA:TCO2", "url": "https://www.google.com/finance/quote/FRA:TCO2"}, {"text": "LSE:TSCI", "url": "https://www.google.com/finance/quote/LSE:TSCI"}, {"text": "HAN:TCO0", "url": "https://www.google.com/finance/quote/HAN:TCO0"}, {"text": "FRA:TCO0", "url": "https://www.google.com/finance/quote/FRA:TCO0"}, {"text": "DEU:TCO2", "url": "https://www.google.com/finance/quote/DEU:TCO2"}, {"text": "MEX:TSCON", "url": "https://www.google.com/finance/quote/MEX:TSCON"}, {"text": "MUN:TCO0", "url": "https://www.google.com/finance/quote/MUN:TCO0"}, {"text": "BER:TCO0", "url": "https://www.google.com/finance/quote/BER:TCO0"}, {"text": "HAM:TCO0", "url": "https://www.google.com/finance/quote/HAM:TCO0"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Topic model", "field_count": 2}, {"field_name": "Pose", "field_count": 1}], "clusters": [{"cluster_id": 22859, "cluster_count": 1}, {"cluster_id": 67007, "cluster_count": 1}, {"cluster_id": 67484, "cluster_count": 1}, {"cluster_id": 916, "cluster_count": 1}, {"cluster_id": 52972, "cluster_count": 1}, {"cluster_id": 35671, "cluster_count": 1}, {"cluster_id": 23818, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 1851, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 2079, "referenced_count": 1}], "tasks": [{"referent": "head_pose_estimation", "task_count": 1}, {"referent": "continuous_object_recognition", "task_count": 1}, {"referent": "facial_expression_recognition", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "emotion_recognition", "task_count": 1}, {"referent": "keypoint_detection", "task_count": 1}, {"referent": "structured_prediction", "task_count": 1}, {"referent": "retrieval", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}, {"referent": "non_parametric_regression", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "linear_regression", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [3, 11, 4, 6, 6, 6, 7, 10, 8, 5, 0], "total": 66, "isTopResearch": false, "rank": 574, "sp500_rank": 316}, "ai_publications": {"counts": [1, 0, 1, 0, 0, 1, 1, 0, 0, 2, 0], "total": 6, "isTopResearch": false, "rank": 514, "sp500_rank": 255}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [1, 0, 0, 0, 0, 0, 1, 5, 6, 4, 0], "total": 17, "isTopResearch": false, "rank": 700, "sp500_rank": 291}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [1.0, 0, 0.0, 0, 0, 0.0, 1.0, 0, 0, 2.0, 0], "total": 2.8333333333333335, "isTopResearch": false, "rank": 805, "sp500_rank": 319}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 3, 2, 0, 1, 0, 0], "total": 7, "table": null, "rank": 464, "sp500_rank": 209}, "ai_patents_growth": {"counts": [], "total": -66.66666666666667, "table": null, "rank": 1550, "sp500_rank": 456}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 30, 20, 0, 10, 0, 0], "total": 70, "table": null, "rank": 464, "sp500_rank": 209}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "sp500_rank": 134}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1729, "rank": 254, "sp500_rank": 143}, "ai_jobs": {"counts": null, "total": 183, "rank": 238, "sp500_rank": 150}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 2220, "country": "United States", "website": "https://www.arista.com/en/", "crunchbase": {"text": "a2b47f3b-752a-1dbb-3ef2-f2a7c45b3a36", "url": "https://www.crunchbase.com/organization/arista-networks"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/arista-networks-inc"], "stage": "Mature", "name": "Arista Networks", "patent_name": "arista networks", "continent": "North America", "local_logo": "arista_networks.png", "aliases": "Arastra; Arista; Arista Networks, Inc", "permid_links": [{"text": 5042238586, "url": "https://permid.org/1-5042238586"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ANET", "url": "https://www.google.com/finance/quote/anet:nyse"}], "market_full": [{"text": "BRN:117", "url": "https://www.google.com/finance/quote/117:brn"}, {"text": "BER:117", "url": "https://www.google.com/finance/quote/117:ber"}, {"text": "ASE:ANET", "url": "https://www.google.com/finance/quote/anet:ase"}, {"text": "MEX:ANET*", "url": "https://www.google.com/finance/quote/anet*:mex"}, {"text": "STU:117", "url": "https://www.google.com/finance/quote/117:stu"}, {"text": "VIE:ANET", "url": "https://www.google.com/finance/quote/anet:vie"}, {"text": "DEU:117", "url": "https://www.google.com/finance/quote/117:deu"}, {"text": "FRA:117", "url": "https://www.google.com/finance/quote/117:fra"}, {"text": "MCX:ANET-RM", "url": "https://www.google.com/finance/quote/anet-rm:mcx"}, {"text": "LSE:0HHR", "url": "https://www.google.com/finance/quote/0hhr:lse"}, {"text": "NYSE:ANET", "url": "https://www.google.com/finance/quote/anet:nyse"}, {"text": "HAN:117", "url": "https://www.google.com/finance/quote/117:han"}, {"text": "NYQ:ANET", "url": "https://www.google.com/finance/quote/anet:nyq"}, {"text": "DUS:117", "url": "https://www.google.com/finance/quote/117:dus"}, {"text": "MUN:117", "url": "https://www.google.com/finance/quote/117:mun"}, {"text": "SAO:A1NE34", "url": "https://www.google.com/finance/quote/a1ne34:sao"}], "crunchbase_description": "Arista Networks is a computer networking\u00a0firm delivering cloud networking solutions for large data center and computer environments.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 12150, "cluster_count": 1}, {"cluster_id": 2702, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 1425, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [], "methods": [{"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 2, 4, 9, 8, 6, 2, 2, 4, 6, 0], "total": 48, "isTopResearch": false, "rank": 622, "fortune500_rank": 231}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 901, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0.0, 0], "total": 0.5, "isTopResearch": false, "rank": 905, "fortune500_rank": 253}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 2, 2, 0, 1, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "fortune500_rank": 438}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 20, 20, 0, 10, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 1, 0, 0, 2, 2, 0, 1, 0, 0], "total": 6, "table": "industry", "rank": 204, "fortune500_rank": 77}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1729, "rank": 254, "fortune500_rank": 145}, "ai_jobs": {"counts": null, "total": 20, "rank": 692, "fortune500_rank": 349}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Arista Networks (formerly Arastra) is an American computer networking company headquartered in Santa Clara, California. The company designs and sells multilayer network switches to deliver software-defined networking (SDN) solutions for large datacenter, cloud computing, high-performance computing, and high-frequency trading environments. These products include an array of 10/25/40/50/100 Gigabit Ethernet low-latency cut-through switches, including the 7124SX, which remained the fastest switch using SFP+ optics through September 2012, with its sub-500 nanosecond (ns) latency, and the 7500 series, Arista's modular 10G/40G/100Gbit/s switch. Arista's own Linux-based network operating system, Extensible Operating System (EOS), runs on all Arista products.", "wikipedia_link": "https://en.wikipedia.org/wiki/Arista_Networks", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2009, "country": "United States", "website": "https://ir.united.com/", "crunchbase": {"text": " 9ec60f0b-348b-68eb-8c99-51e59be50ea3", "url": " https://www.crunchbase.com/organization/united-airlines"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/united-airlines"], "stage": "Mature", "name": "United Airlines Holdings", "patent_name": "United Airlines Holdings", "continent": "North America", "local_logo": null, "aliases": "United Airlines Holdings; United Airlines, Inc; United Continental Holdings, Inc", "permid_links": [{"text": 4295905139, "url": "https://permid.org/1-4295905139"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:UAL", "url": "https://www.google.com/finance/quote/NASDAQ:UAL"}], "market_full": [{"text": "DEU:UAL*", "url": "https://www.google.com/finance/quote/DEU:UAL*"}, {"text": "MCX:UAL-RM", "url": "https://www.google.com/finance/quote/MCX:UAL-RM"}, {"text": "STU:UAL1", "url": "https://www.google.com/finance/quote/STU:UAL1"}, {"text": "NASDAQ:UAL", "url": "https://www.google.com/finance/quote/NASDAQ:UAL"}, {"text": "LSE:0LIU", "url": "https://www.google.com/finance/quote/0LIU:LSE"}, {"text": "GER:UALX.A", "url": "https://www.google.com/finance/quote/GER:UALX.A"}, {"text": "BER:UAL1", "url": "https://www.google.com/finance/quote/BER:UAL1"}, {"text": "MUN:UAL1", "url": "https://www.google.com/finance/quote/MUN:UAL1"}, {"text": "HAN:UAL1", "url": "https://www.google.com/finance/quote/HAN:UAL1"}, {"text": "FRA:UAL1", "url": "https://www.google.com/finance/quote/FRA:UAL1"}, {"text": "SAO:U1AL34", "url": "https://www.google.com/finance/quote/SAO:U1AL34"}, {"text": "DUS:UAL1", "url": "https://www.google.com/finance/quote/DUS:UAL1"}, {"text": "HAM:UAL*", "url": "https://www.google.com/finance/quote/HAM:UAL*"}, {"text": "BRN:UAL1", "url": "https://www.google.com/finance/quote/BRN:UAL1"}, {"text": "MEX:UAL*", "url": "https://www.google.com/finance/quote/MEX:UAL*"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1728, "rank": 256, "fortune500_rank": 146}, "ai_jobs": {"counts": null, "total": 206, "rank": 226, "fortune500_rank": 121}}, "sector": "Industrials", "business_sector": "Transportation"}, {"cset_id": 1688, "country": "United States", "website": "http://www.palantir.com", "crunchbase": {"text": "4b9df299-4ef2-1fad-607e-278d90eb69ab", "url": "https://www.crunchbase.com/organization/palantir-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/palantir-technologies"], "stage": "Mature", "name": "Palantir Technologies", "patent_name": "palantir technologies", "continent": "North America", "local_logo": "palantir_technologies.png", "aliases": "Palantir", "permid_links": [{"text": 4295968965, "url": "https://permid.org/1-4295968965"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PLTR", "url": "https://www.google.com/finance/quote/nyse:pltr"}], "market_full": [{"text": "MUN:PTX", "url": "https://www.google.com/finance/quote/mun:ptx"}, {"text": "DUS:PTX", "url": "https://www.google.com/finance/quote/dus:ptx"}, {"text": "SAO:P2LT34", "url": "https://www.google.com/finance/quote/p2lt34:sao"}, {"text": "DEU:PTXG", "url": "https://www.google.com/finance/quote/deu:ptxg"}, {"text": "HAM:PTX", "url": "https://www.google.com/finance/quote/ham:ptx"}, {"text": "FRA:PTX", "url": "https://www.google.com/finance/quote/fra:ptx"}, {"text": "ASE:PLTR", "url": "https://www.google.com/finance/quote/ase:pltr"}, {"text": "NYSE:PLTR", "url": "https://www.google.com/finance/quote/nyse:pltr"}, {"text": "BRN:PTX", "url": "https://www.google.com/finance/quote/brn:ptx"}, {"text": "MEX:PLTR*", "url": "https://www.google.com/finance/quote/mex:pltr*"}, {"text": "BER:PTX", "url": "https://www.google.com/finance/quote/ber:ptx"}, {"text": "LSE:0A7R", "url": "https://www.google.com/finance/quote/0a7r:lse"}, {"text": "STU:PTX", "url": "https://www.google.com/finance/quote/ptx:stu"}, {"text": "MCX:PLTR-RM", "url": "https://www.google.com/finance/quote/mcx:pltr-rm"}, {"text": "GER:PTXX", "url": "https://www.google.com/finance/quote/ger:ptxx"}, {"text": "VIE:PLTR", "url": "https://www.google.com/finance/quote/pltr:vie"}], "crunchbase_description": "Palantir offers software applications designed for integrating, visualizing, analyzing data, and fighting fraud.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 15659, "cluster_count": 1}, {"cluster_id": 7962, "cluster_count": 1}, {"cluster_id": 7209, "cluster_count": 1}, {"cluster_id": 8196, "cluster_count": 1}, {"cluster_id": 57111, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 3}], "tasks": [{"referent": "action_localization", "task_count": 1}, {"referent": "object_localization", "task_count": 1}, {"referent": "automl", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "fraud_detection", "task_count": 1}, {"referent": "mobile_security", "task_count": 1}, {"referent": "out_of_distribution_detection", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "hierarchical_clustering", "task_count": 1}], "methods": [{"referent": "natural_language_processing", "method_count": 1}, {"referent": "sdne", "method_count": 1}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "npid", "method_count": 1}, {"referent": "atss", "method_count": 1}, {"referent": "annealing_snnl", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 1, 3, 13, 2, 3, 6, 19, 21, 23, 0], "total": 93, "isTopResearch": false, "rank": 520}, "ai_publications": {"counts": [1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [29, 51, 76, 87, 110, 97, 67, 88, 54, 33, 0], "total": 692, "isTopResearch": false, "rank": 230}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [29.0, 0, 76.0, 0, 110.0, 97.0, 0, 0, 0, 0, 0], "total": 173.0, "isTopResearch": false, "rank": 15}}, "patents": {"ai_patents": {"counts": [2, 5, 7, 10, 5, 8, 5, 3, 0, 0, 0], "total": 45, "table": null, "rank": 227}, "ai_patents_growth": {"counts": [], "total": -5.833333333333333, "table": null, "rank": 1435}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [20, 50, 70, 100, 50, 80, 50, 30, 0, 0, 0], "total": 450, "table": null, "rank": 227}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 193}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48}, "Personal_Devices_and_Computing": {"counts": [2, 5, 5, 9, 3, 6, 4, 1, 0, 0, 0], "total": 35, "table": "industry", "rank": 140}, "Banking_and_Finance": {"counts": [1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 141}, "Telecommunications": {"counts": [0, 1, 1, 0, 1, 1, 3, 2, 0, 0, 0], "total": 9, "table": "industry", "rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [1, 2, 2, 3, 1, 2, 0, 0, 0, 0, 0], "total": 11, "table": "industry", "rank": 148}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55}, "Language_Processing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 2, 1, 1, 1, 3, 0, 0, 0, 0], "total": 8, "table": "application", "rank": 88}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 3, 1, 2, 0, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 153}, "Control": {"counts": [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 2, 0, 2, 2, 1, 0, 0, 0], "total": 7, "table": "application", "rank": 288}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 209}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1716, "rank": 257}, "ai_jobs": {"counts": null, "total": 357, "rank": 156}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Palantir Technologies is a public American software company that specializes in big data analytics. Headquartered in Denver, Colorado, it was founded by Peter Thiel, Nathan Gettings, Joe Lonsdale, Stephen Cohen, and Alex Karp in 2003. The company's name is derived from The Lord of the Rings where the magical palant\u00edri were \"seeing-stones,\" described as indestructible balls of crystal used for communication and to see events in other parts of the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/Palantir_Technologies", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2294, "country": "United States", "website": "https://www.duke-energy.com/", "crunchbase": {"text": "d7f73924-27fe-243c-f322-b62e9646b6f7", "url": "https://www.crunchbase.com/organization/duke-energy-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/duke-energy-corporation"], "stage": "Mature", "name": "Duke Energy", "patent_name": "duke energy", "continent": "North America", "local_logo": "duke_energy.png", "aliases": "Duke Energy Corp; Duke Energy Corporation", "permid_links": [{"text": 4295903896, "url": "https://permid.org/1-4295903896"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DUK", "url": "https://www.google.com/finance/quote/duk:nyse"}], "market_full": [{"text": "HAN:D2MN", "url": "https://www.google.com/finance/quote/d2mn:han"}, {"text": "BRN:D2MN", "url": "https://www.google.com/finance/quote/brn:d2mn"}, {"text": "HAM:D2MN", "url": "https://www.google.com/finance/quote/d2mn:ham"}, {"text": "STU:D2MN", "url": "https://www.google.com/finance/quote/d2mn:stu"}, {"text": "MOEX:DUK-RM", "url": "https://www.google.com/finance/quote/duk-rm:moex"}, {"text": "DUS:D2MN", "url": "https://www.google.com/finance/quote/d2mn:dus"}, {"text": "ASE:DUK", "url": "https://www.google.com/finance/quote/ase:duk"}, {"text": "VIE:DUKE", "url": "https://www.google.com/finance/quote/duke:vie"}, {"text": "DEU:D2MN", "url": "https://www.google.com/finance/quote/d2mn:deu"}, {"text": "MEX:DUK*", "url": "https://www.google.com/finance/quote/duk*:mex"}, {"text": "SAO:DUKB34", "url": "https://www.google.com/finance/quote/dukb34:sao"}, {"text": "FRA:D2MN", "url": "https://www.google.com/finance/quote/d2mn:fra"}, {"text": "LSE:0ID1", "url": "https://www.google.com/finance/quote/0id1:lse"}, {"text": "NYSE:DUK", "url": "https://www.google.com/finance/quote/duk:nyse"}, {"text": "NYQ:DUK", "url": "https://www.google.com/finance/quote/duk:nyq"}, {"text": "MUN:D2MN", "url": "https://www.google.com/finance/quote/d2mn:mun"}, {"text": "BER:D2MN", "url": "https://www.google.com/finance/quote/ber:d2mn"}, {"text": "GER:D2MNX", "url": "https://www.google.com/finance/quote/d2mnx:ger"}], "crunchbase_description": "Duke Energy makes life better for every day by providing electric and gas services in a sustainable way \u2013 affordable, reliable and clean.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 446, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [{"referent": "rule_based_systems", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 12, 11, 40, 12, 29, 16, 14, 19, 7, 0], "total": 169, "isTopResearch": false, "rank": 432, "fortune500_rank": 167}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], "total": 3, "isTopResearch": false, "rank": 857, "fortune500_rank": 236}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 3.0, 0], "total": 1.5, "isTopResearch": false, "rank": 855, "fortune500_rank": 232}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1692, "rank": 258, "fortune500_rank": 147}, "ai_jobs": {"counts": null, "total": 170, "rank": 250, "fortune500_rank": 133}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Duke Energy Corporation is an American electric power holding company headquartered in Charlotte, North Carolina.", "wikipedia_link": "https://en.wikipedia.org/wiki/Duke_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2402, "country": "United States", "website": "https://www.mtb.com/", "crunchbase": {"text": "ecad76dc-a17e-1fe2-b7a7-4f31c32326b0", "url": "https://www.crunchbase.com/organization/m-t-bank"}, "child_crunchbase": [{"text": "b7aa1de2-4228-2680-5f52-a94ae39e56e3", "url": "https://www.crunchbase.com/organization/people-s-united-financial"}], "linkedin": ["https://www.linkedin.com/company/m&t-bank", "https://www.linkedin.com/company/people's-united-bank"], "stage": "Mature", "name": "M&T Bank Corp.", "patent_name": "m&t bank corp.", "continent": "North America", "local_logo": "m&t_bank_corp.png", "aliases": "First Empire State Corporation; M&T Bank; M&T Bank Corp; M&T Bank Corporation; Manufacturers And Traders Bank; Manufacturers And Traders Trust Company", "permid_links": [{"text": 4295904442, "url": "https://permid.org/1-4295904442"}, {"text": 5000036568, "url": "https://permid.org/1-5000036568"}], "parent_info": null, "agg_child_info": "People's United Financial", "unagg_child_info": null, "market_filt": [{"text": "NYSE:MTB", "url": "https://www.google.com/finance/quote/mtb:nyse"}], "market_full": [{"text": "NYQ:MTB", "url": "https://www.google.com/finance/quote/mtb:nyq"}, {"text": "BRN:MTZ", "url": "https://www.google.com/finance/quote/brn:mtz"}, {"text": "GER:MTZX", "url": "https://www.google.com/finance/quote/ger:mtzx"}, {"text": "NYSE:MTB", "url": "https://www.google.com/finance/quote/mtb:nyse"}, {"text": "STU:MTZ", "url": "https://www.google.com/finance/quote/mtz:stu"}, {"text": "MOEX:MTB-RM", "url": "https://www.google.com/finance/quote/moex:mtb-rm"}, {"text": "ASE:MTB", "url": "https://www.google.com/finance/quote/ase:mtb"}, {"text": "LSE:0JW2", "url": "https://www.google.com/finance/quote/0jw2:lse"}, {"text": "MUN:MTZ", "url": "https://www.google.com/finance/quote/mtz:mun"}, {"text": "DUS:MTZ", "url": "https://www.google.com/finance/quote/dus:mtz"}, {"text": "FRA:MTZ", "url": "https://www.google.com/finance/quote/fra:mtz"}, {"text": "DEU:MTBU", "url": "https://www.google.com/finance/quote/deu:mtbu"}, {"text": "SAO:M1TB34", "url": "https://www.google.com/finance/quote/m1tb34:sao"}], "crunchbase_description": "M&T Bank is a financial holding company headquartered in Buffalo, New York.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 2, 0, 0, 3, 1, 0, 1, 0, 0, 0], "total": 7, "isTopResearch": false, "rank": 1006, "fortune500_rank": 339}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1692, "rank": 258, "fortune500_rank": 147}, "ai_jobs": {"counts": null, "total": 96, "rank": 344, "fortune500_rank": 184}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "M&T Bank Corporation is an American bank holding company headquartered in Buffalo, New York. It operates 780 branches in New York, New Jersey, Pennsylvania, Maryland, Delaware, Virginia, West Virginia, Washington, D.C., and Connecticut. M&T is ranked 462nd on the Fortune 500. Until May 1998, it was named First Empire State Corporation.", "wikipedia_link": "https://en.wikipedia.org/wiki/M%26T_Bank", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 434, "country": "United States", "website": "http://www.lilly.com/", "crunchbase": {"text": "f9ef7e3e-320c-3e5f-d039-4d11663d6eeb", "url": "https://www.crunchbase.com/organization/eli-lilly"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/eli-lilly-and-company"], "stage": "Mature", "name": "Eli Lilly And Company", "patent_name": "eli lilly and company", "continent": "North America", "local_logo": "eli_lilly_and_company.png", "aliases": "Eli Lilly and Co", "permid_links": [{"text": 4295904414, "url": "https://permid.org/1-4295904414"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LLY", "url": "https://www.google.com/finance/quote/lly:nyse"}], "market_full": [{"text": "NYSE:LLY", "url": "https://www.google.com/finance/quote/lly:nyse"}, {"text": "EPA:LLY", "url": "https://www.google.com/finance/quote/epa:lly"}, {"text": "BMV:LLY", "url": "https://www.google.com/finance/quote/bmv:lly"}, {"text": "XETR:LLY", "url": "https://www.google.com/finance/quote/lly:xetr"}, {"text": "MEX:LLY", "url": "https://www.google.com/finance/quote/lly:mex"}, {"text": "MOEX:LLY-RM", "url": "https://www.google.com/finance/quote/lly-rm:moex"}, {"text": "FRA:LLY", "url": "https://www.google.com/finance/quote/fra:lly"}, {"text": "LON:0Q1G", "url": "https://www.google.com/finance/quote/0q1g:lon"}], "crunchbase_description": "Eli Lilly engages in the discovery, development, manufacture, and sale of products in pharmaceutical products business segment.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Bayesian probability", "field_count": 4}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Test set", "field_count": 2}, {"field_name": "Graphical model", "field_count": 2}, {"field_name": "Appropriate Use Criteria", "field_count": 1}, {"field_name": "Boosting (machine learning)", "field_count": 1}, {"field_name": "Recursive partitioning", "field_count": 1}, {"field_name": "Semantic Web", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}], "clusters": [{"cluster_id": 35740, "cluster_count": 13}, {"cluster_id": 298, "cluster_count": 11}, {"cluster_id": 5940, "cluster_count": 4}, {"cluster_id": 8655, "cluster_count": 4}, {"cluster_id": 6515, "cluster_count": 3}, {"cluster_id": 30616, "cluster_count": 3}, {"cluster_id": 7785, "cluster_count": 3}, {"cluster_id": 23169, "cluster_count": 2}, {"cluster_id": 9412, "cluster_count": 2}, {"cluster_id": 9662, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 434, "referenced_count": 55}, {"ref_CSET_id": 101, "referenced_count": 28}, {"ref_CSET_id": 163, "referenced_count": 13}, {"ref_CSET_id": 115, "referenced_count": 11}, {"ref_CSET_id": 785, "referenced_count": 9}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 1797, "referenced_count": 4}, {"ref_CSET_id": 663, "referenced_count": 4}, {"ref_CSET_id": 3108, "referenced_count": 4}, {"ref_CSET_id": 341, "referenced_count": 4}], "tasks": [{"referent": "alzheimer's_disease_diagnosis", "task_count": 19}, {"referent": "classification", "task_count": 14}, {"referent": "adl", "task_count": 11}, {"referent": "parkinson_'s_disease", "task_count": 11}, {"referent": "disease_detection", "task_count": 9}, {"referent": "image_analysis", "task_count": 8}, {"referent": "diabetes_prediction", "task_count": 7}, {"referent": "developmental_learning", "task_count": 6}, {"referent": "drug_discovery", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}], "methods": [{"referent": "q_learning", "method_count": 13}, {"referent": "bpnet", "method_count": 8}, {"referent": "mad_learning", "method_count": 7}, {"referent": "vqa_models", "method_count": 7}, {"referent": "meta_learning_algorithms", "method_count": 6}, {"referent": "double_q_learning", "method_count": 6}, {"referent": "graph_models", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "griffin_lim_algorithm", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1516, 1645, 1644, 1943, 1813, 1649, 1647, 1834, 1609, 1491, 5], "total": 16796, "isTopResearch": false, "rank": 24, "sp500_rank": 22, "fortune500_rank": 8}, "ai_publications": {"counts": [8, 11, 12, 10, 11, 9, 11, 17, 18, 6, 0], "total": 113, "isTopResearch": false, "rank": 113, "sp500_rank": 81, "fortune500_rank": 35}, "ai_publications_growth": {"counts": [], "total": -2.079619726678551, "isTopResearch": false, "rank": 1219, "sp500_rank": 290, "fortune500_rank": 350}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 188, "sp500_rank": 92, "fortune500_rank": 54}, "citation_counts": {"counts": [834, 964, 1290, 1298, 1611, 1741, 2363, 2774, 3248, 2985, 74], "total": 19182, "isTopResearch": false, "rank": 35, "sp500_rank": 23, "fortune500_rank": 15}, "cv_pubs": {"counts": [0, 1, 1, 0, 3, 0, 2, 1, 3, 1, 0], "total": 12, "isTopResearch": true, "rank": 188, "sp500_rank": 109, "fortune500_rank": 49}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115, "fortune500_rank": 61}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [104.25, 87.63636363636364, 107.5, 129.8, 146.45454545454547, 193.44444444444446, 214.8181818181818, 163.1764705882353, 180.44444444444446, 497.5, 0], "total": 169.75221238938053, "isTopResearch": false, "rank": 16, "sp500_rank": 3, "fortune500_rank": 4}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": null, "rank": 606, "sp500_rank": 248, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 20, 10, 0, 0], "total": 30, "table": null, "rank": 606, "sp500_rank": 248, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "sp500_rank": 114, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1689, "rank": 260, "sp500_rank": 144, "fortune500_rank": 149}, "ai_jobs": {"counts": null, "total": 475, "rank": 119, "sp500_rank": 77, "fortune500_rank": 66}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Eli Lilly and Company is an American pharmaceutical company headquartered in Indianapolis, Indiana, with offices in 18 countries. Its products are sold in approximately 125 countries. The company was founded in 1876 by, and named after, Col. Eli Lilly, a pharmaceutical chemist and veteran of the American Civil War.", "wikipedia_link": "https://en.wikipedia.org/wiki/Eli_Lilly_and_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2485, "country": "United States", "website": "https://www.seagate.com/", "crunchbase": {"text": "7643525c-2157-d3e7-39ac-372cbe75f4c9", "url": "https://www.crunchbase.com/organization/seagate"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/seagate-technology"], "stage": "Mature", "name": "Seagate Technology", "patent_name": "seagate technology", "continent": "North America", "local_logo": "seagate_technology.png", "aliases": "Seagate; Seagate Technology Llc; Seagate Technology PLC; Seagate Technology Plc", "permid_links": [{"text": 5000785212, "url": "https://permid.org/1-5000785212"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:STX", "url": "https://www.google.com/finance/quote/nasdaq:stx"}], "market_full": [{"text": "MUN:847", "url": "https://www.google.com/finance/quote/847:mun"}, {"text": "MEX:STXN", "url": "https://www.google.com/finance/quote/mex:stxn"}, {"text": "FRA:847", "url": "https://www.google.com/finance/quote/847:fra"}, {"text": "BER:847", "url": "https://www.google.com/finance/quote/847:ber"}, {"text": "DUS:847", "url": "https://www.google.com/finance/quote/847:dus"}, {"text": "VIE:STXH", "url": "https://www.google.com/finance/quote/stxh:vie"}, {"text": "HAN:847", "url": "https://www.google.com/finance/quote/847:han"}, {"text": "NASDAQ:STX", "url": "https://www.google.com/finance/quote/nasdaq:stx"}, {"text": "STU:847", "url": "https://www.google.com/finance/quote/847:stu"}, {"text": "FRA:STT", "url": "https://www.google.com/finance/quote/fra:stt"}, {"text": "HAM:847", "url": "https://www.google.com/finance/quote/847:ham"}, {"text": "SAO:S1TX34", "url": "https://www.google.com/finance/quote/s1tx34:sao"}, {"text": "DEU:847", "url": "https://www.google.com/finance/quote/847:deu"}], "crunchbase_description": "Seagate offers consumers and businesses with data storage solutions to create, share, and preserve digital content.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Hidden Markov model", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Big data", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Random forest", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Search engine indexing", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Visualization", "field_count": 1}], "clusters": [{"cluster_id": 14668, "cluster_count": 5}, {"cluster_id": 91144, "cluster_count": 2}, {"cluster_id": 7377, "cluster_count": 1}, {"cluster_id": 148, "cluster_count": 1}, {"cluster_id": 2983, "cluster_count": 1}, {"cluster_id": 105898, "cluster_count": 1}, {"cluster_id": 20777, "cluster_count": 1}, {"cluster_id": 916, "cluster_count": 1}, {"cluster_id": 12070, "cluster_count": 1}, {"cluster_id": 86520, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 37}, {"ref_CSET_id": 2485, "referenced_count": 27}, {"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 87, "referenced_count": 9}, {"ref_CSET_id": 115, "referenced_count": 7}, {"ref_CSET_id": 37, "referenced_count": 6}, {"ref_CSET_id": 792, "referenced_count": 4}, {"ref_CSET_id": 223, "referenced_count": 4}, {"ref_CSET_id": 184, "referenced_count": 3}, {"ref_CSET_id": 6, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "point_processes", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "speech_production", "task_count": 2}, {"referent": "multi_task_learning", "task_count": 2}, {"referent": "defect_detection", "task_count": 2}, {"referent": "video_surveillance", "task_count": 2}, {"referent": "steering_control", "task_count": 2}, {"referent": "building_extraction", "task_count": 1}, {"referent": "underwater_3d_scene_reconstruction", "task_count": 1}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 5}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "bp_transformer", "method_count": 3}, {"referent": "autoencoder", "method_count": 3}, {"referent": "auto_classifier", "method_count": 3}, {"referent": "q_learning", "method_count": 2}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "adamw", "method_count": 2}, {"referent": "clustering", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [76, 77, 75, 71, 78, 75, 41, 53, 55, 28, 1], "total": 630, "isTopResearch": false, "rank": 244, "fortune500_rank": 95}, "ai_publications": {"counts": [1, 3, 1, 3, 1, 2, 2, 1, 14, 0, 0], "total": 28, "isTopResearch": false, "rank": 254, "fortune500_rank": 76}, "ai_publications_growth": {"counts": [], "total": 383.3333333333333, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [8, 5, 8, 14, 22, 29, 54, 33, 68, 43, 1], "total": 285, "isTopResearch": false, "rank": 338, "fortune500_rank": 100}, "cv_pubs": {"counts": [1, 1, 0, 0, 0, 0, 1, 1, 4, 0, 0], "total": 8, "isTopResearch": true, "rank": 229, "fortune500_rank": 67}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [8.0, 1.6666666666666667, 8.0, 4.666666666666667, 22.0, 14.5, 27.0, 33.0, 4.857142857142857, 0, 0], "total": 10.178571428571429, "isTopResearch": false, "rank": 531, "fortune500_rank": 157}}, "patents": {"ai_patents": {"counts": [3, 5, 1, 0, 5, 7, 5, 7, 2, 0, 0], "total": 35, "table": null, "rank": 258, "fortune500_rank": 85}, "ai_patents_growth": {"counts": [], "total": 17.142857142857142, "table": null, "rank": 303, "fortune500_rank": 94}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 50, 10, 0, 50, 70, 50, 70, 20, 0, 0], "total": 350, "table": null, "rank": 258, "fortune500_rank": 85}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 141, "fortune500_rank": 51}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [2, 2, 0, 0, 4, 6, 4, 4, 2, 0, 0], "total": 24, "table": "industry", "rank": 175, "fortune500_rank": 65}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [1, 1, 0, 0, 1, 1, 0, 3, 1, 0, 0], "total": 8, "table": "industry", "rank": 185, "fortune500_rank": 67}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "fortune500_rank": 23}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 2, 2, 2, 0, 0, 0], "total": 8, "table": "application", "rank": 269, "fortune500_rank": 82}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 158, "fortune500_rank": 51}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1686, "rank": 261, "fortune500_rank": 150}, "ai_jobs": {"counts": null, "total": 140, "rank": 283, "fortune500_rank": 153}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Seagate Technology PLC (commonly referred to as Seagate) is an American data storage company. It was incorporated in 1978 as Shugart Technology and commenced business in 1979. Since 2010, the company is incorporated in Dublin, Ireland, with operational headquarters in Fremont, California, United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Seagate_Technology", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2182, "country": "France", "website": "http://www.safran-group.com/", "crunchbase": {"text": "591df276-a9a0-21b3-6cf6-36fa4afe036d", "url": "https://www.crunchbase.com/organization/safran"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/safran"], "stage": "Mature", "name": "Safran SA", "patent_name": "safran sa", "continent": "Europe", "local_logo": "safran_sa.png", "aliases": "Safran", "permid_links": [{"text": 4295867343, "url": "https://permid.org/1-4295867343"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PKL:SAFRF", "url": "https://www.google.com/finance/quote/pkl:safrf"}, {"text": "MUN:SEJ1", "url": "https://www.google.com/finance/quote/mun:sej1"}, {"text": "HAM:SEJ1", "url": "https://www.google.com/finance/quote/ham:sej1"}, {"text": "EBT:SAFP", "url": "https://www.google.com/finance/quote/ebt:safp"}, {"text": "FRA:SEJ1", "url": "https://www.google.com/finance/quote/fra:sej1"}, {"text": "PNK:SAFRY", "url": "https://www.google.com/finance/quote/pnk:safry"}, {"text": "FRA:SEJU", "url": "https://www.google.com/finance/quote/fra:seju"}, {"text": "GER:SEJX.A", "url": "https://www.google.com/finance/quote/ger:sejx.a"}, {"text": "PAR:SAF", "url": "https://www.google.com/finance/quote/par:saf"}, {"text": "HAN:SEJ1", "url": "https://www.google.com/finance/quote/han:sej1"}, {"text": "DUS:SEJ1", "url": "https://www.google.com/finance/quote/dus:sej1"}, {"text": "BER:SEJ1", "url": "https://www.google.com/finance/quote/ber:sej1"}, {"text": "STU:SEJ1", "url": "https://www.google.com/finance/quote/sej1:stu"}, {"text": "LSE:0IU8", "url": "https://www.google.com/finance/quote/0iu8:lse"}, {"text": "MEX:SAFN", "url": "https://www.google.com/finance/quote/mex:safn"}, {"text": "VIE:SAF", "url": "https://www.google.com/finance/quote/saf:vie"}, {"text": "MIL:SAF", "url": "https://www.google.com/finance/quote/mil:saf"}, {"text": "DEU:SEJU", "url": "https://www.google.com/finance/quote/deu:seju"}, {"text": "DEU:SAF", "url": "https://www.google.com/finance/quote/deu:saf"}, {"text": "STU:SEJU", "url": "https://www.google.com/finance/quote/seju:stu"}], "crunchbase_description": "Safran is an international technology group with three core businesses: aerospace, defense, and security.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Anomaly detection", "field_count": 5}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Compressed sensing", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Face (geometry)", "field_count": 1}, {"field_name": "Modality (human\u2013computer interaction)", "field_count": 1}, {"field_name": "Robot", "field_count": 1}], "clusters": [{"cluster_id": 70536, "cluster_count": 4}, {"cluster_id": 14903, "cluster_count": 3}, {"cluster_id": 22175, "cluster_count": 3}, {"cluster_id": 54075, "cluster_count": 2}, {"cluster_id": 1611, "cluster_count": 2}, {"cluster_id": 1753, "cluster_count": 2}, {"cluster_id": 4110, "cluster_count": 2}, {"cluster_id": 1298, "cluster_count": 2}, {"cluster_id": 698, "cluster_count": 2}, {"cluster_id": 31350, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 46}, {"ref_CSET_id": 163, "referenced_count": 20}, {"ref_CSET_id": 87, "referenced_count": 18}, {"ref_CSET_id": 223, "referenced_count": 7}, {"ref_CSET_id": 2182, "referenced_count": 6}, {"ref_CSET_id": 112, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 1126, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 11}, {"referent": "anomaly_detection", "task_count": 6}, {"referent": "target_recognition", "task_count": 3}, {"referent": "face_recognition", "task_count": 3}, {"referent": "fr", "task_count": 3}, {"referent": "robots", "task_count": 3}, {"referent": "few_shot_learning", "task_count": 3}, {"referent": "image_restoration", "task_count": 2}, {"referent": "hyperspectral", "task_count": 2}, {"referent": "vehicle_detection", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "vqa_models", "method_count": 4}, {"referent": "auto_classifier", "method_count": 4}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "optimization", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "foveabox", "method_count": 2}, {"referent": "gts", "method_count": 2}, {"referent": "clustering", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [83, 86, 100, 104, 53, 47, 40, 35, 31, 20, 0], "total": 599, "isTopResearch": false, "rank": 252}, "ai_publications": {"counts": [3, 10, 8, 5, 5, 6, 6, 5, 4, 0, 0], "total": 52, "isTopResearch": false, "rank": 178}, "ai_publications_growth": {"counts": [], "total": -45.555555555555564, "isTopResearch": false, "rank": 1436}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 169}, "citation_counts": {"counts": [4, 6, 24, 51, 69, 108, 208, 309, 317, 238, 7], "total": 1341, "isTopResearch": false, "rank": 170}, "cv_pubs": {"counts": [0, 4, 2, 3, 1, 2, 2, 2, 2, 0, 0], "total": 18, "isTopResearch": true, "rank": 148}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 2, 0, 1, 1, 2, 0, 0, 0, 0], "total": 6, "isTopResearch": true, "rank": 156}, "citations_per_article": {"counts": [1.3333333333333333, 0.6, 3.0, 10.2, 13.8, 18.0, 34.666666666666664, 61.8, 79.25, 0, 0], "total": 25.78846153846154, "isTopResearch": false, "rank": 228}}, "patents": {"ai_patents": {"counts": [1, 3, 2, 3, 3, 4, 6, 9, 8, 0, 0], "total": 39, "table": null, "rank": 242}, "ai_patents_growth": {"counts": [], "total": 44.44444444444445, "table": null, "rank": 228}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 30, 20, 30, 30, 40, 60, 90, 80, 0, 0], "total": 390, "table": null, "rank": 242}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 105}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240}, "Transportation": {"counts": [1, 0, 1, 1, 0, 3, 2, 1, 0, 0, 0], "total": 9, "table": "industry", "rank": 102}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 165}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 2, 0, 0], "total": 5, "table": "industry", "rank": 336}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345}, "Energy_Management": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 119}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298}, "Control": {"counts": [1, 1, 1, 2, 1, 3, 1, 2, 0, 0, 0], "total": 12, "table": "application", "rank": 124}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 2, 1, 1, 1, 0, 4, 2, 6, 0, 0], "total": 17, "table": "application", "rank": 200}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], "total": 4, "table": "application", "rank": 173}, "Measuring_and_Testing": {"counts": [0, 0, 1, 2, 1, 1, 4, 1, 0, 0, 0], "total": 10, "table": "application", "rank": 121}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1683, "rank": 262}, "ai_jobs": {"counts": null, "total": 115, "rank": 314}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Safran S.A. is a French multinational aircraft engine, rocket engine, aerospace-component and defense company. It was formed by a merger between the aircraft and rocket engine manufacturer and aerospace component manufacturer group SNECMA and the security company SAGEM in 2005. In 2018 Safran took control of Zodiac Aerospace, significantly expanding its aircraft equipment activities. Its headquarters are located in Paris.", "wikipedia_link": "https://en.wikipedia.org/wiki/Safran", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3162, "country": "United States", "website": "https://wbd.com/", "crunchbase": {"text": "c626d079-467c-fb28-bf13-e7f40f9138bd", "url": "https://www.crunchbase.com/organization/discovery-inc"}, "child_crunchbase": [{"text": "1bd1698c-cd0f-37bb-581b-1a4b6dd1c772", "url": "https://www.crunchbase.com/organization/timewarner"}], "linkedin": ["https://www.linkedin.com/company/warner-bros-discovery", "https://www.linkedin.com/company/discoveryinc"], "stage": "Mature", "name": "Warner Bros. Discovery", "patent_name": "Warner Bros. Discovery", "continent": "North America", "local_logo": "warner_bros_discovery.png", "aliases": "Warner Bros. Discovery; Warner Bros. Discovery, Inc", "permid_links": [{"text": 4295907310, "url": "https://permid.org/1-4295907310"}], "parent_info": null, "agg_child_info": "Discovery Inc. Class C", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:WBD", "url": "https://www.google.com/finance/quote/NASDAQ:WBD"}], "market_full": [{"text": "DUS:JSA", "url": "https://www.google.com/finance/quote/DUS:JSA"}, {"text": "BRN:JSA", "url": "https://www.google.com/finance/quote/BRN:JSA"}, {"text": "STU:JSA", "url": "https://www.google.com/finance/quote/JSA:STU"}, {"text": "SAO:DCVY34D1", "url": "https://www.google.com/finance/quote/DCVY34D1:SAO"}, {"text": "FRA:JSA", "url": "https://www.google.com/finance/quote/FRA:JSA"}, {"text": "MEX:WBD*", "url": "https://www.google.com/finance/quote/MEX:WBD*"}, {"text": "DEU:JSA", "url": "https://www.google.com/finance/quote/DEU:JSA"}, {"text": "MUN:JSA", "url": "https://www.google.com/finance/quote/JSA:MUN"}, {"text": "BER:JSA", "url": "https://www.google.com/finance/quote/BER:JSA"}, {"text": "SAO:W1BD34", "url": "https://www.google.com/finance/quote/SAO:W1BD34"}, {"text": "HAN:JSA", "url": "https://www.google.com/finance/quote/HAN:JSA"}, {"text": "GER:JSAX", "url": "https://www.google.com/finance/quote/GER:JSAX"}, {"text": "HAM:JSA", "url": "https://www.google.com/finance/quote/HAM:JSA"}, {"text": "NASDAQ:WBD", "url": "https://www.google.com/finance/quote/NASDAQ:WBD"}], "crunchbase_description": "Discovery is a multinational mass media factual television company covering science, history, geography, survival, and more.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Robot", "field_count": 2}], "clusters": [{"cluster_id": 82025, "cluster_count": 1}, {"cluster_id": 11030, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "industrial_robots", "task_count": 3}, {"referent": "robots", "task_count": 3}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "dr", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "image_manipulation", "task_count": 1}, {"referent": "mobile_robot", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}, {"referent": "mobile_security", "task_count": 1}, {"referent": "data_mining", "task_count": 1}], "methods": [{"referent": "csgld", "method_count": 1}, {"referent": "root", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 1, 9, 2, 3, 16, 2, 0, 4, 2, 0], "total": 41, "isTopResearch": false, "rank": 653, "fortune500_rank": 241}, "ai_publications": {"counts": [0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 881, "fortune500_rank": 245}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 214, "fortune500_rank": 57}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0.0, 0.0, 0, 0, 0, 0, 0], "total": 0.6666666666666666, "isTopResearch": false, "rank": 902, "fortune500_rank": 251}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0], "total": 4, "table": null, "rank": 565, "fortune500_rank": 176}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 20, 10, 0, 0], "total": 40, "table": null, "rank": 565, "fortune500_rank": 176}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1680, "rank": 263, "fortune500_rank": 151}, "ai_jobs": {"counts": null, "total": 205, "rank": 227, "fortune500_rank": 122}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services"}, {"cset_id": 2772, "country": "United States", "website": "http://www.wwt.com/", "crunchbase": {"text": "70226289-57eb-2b82-4d77-350a4a275d4a", "url": "https://www.crunchbase.com/organization/world-wide-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/world-wide-technology"], "stage": "Mature", "name": "World Wide Technology Holding Co Inc", "patent_name": "world wide technology holding co inc", "continent": "North America", "local_logo": "world_wide_technology_holding_co_inc.png", "aliases": "World Wide Technology; World Wide Technology, Inc; Wwt", "permid_links": [{"text": 4297159281, "url": "https://permid.org/1-4297159281"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "World Wide Technology is a systems integrator, provides information technology and supply chain solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 30, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1671, "rank": 264}, "ai_jobs": {"counts": null, "total": 85, "rank": 367}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "The ATC is a collaborative ecosystem to design, build, educate, demonstrate and deploy innovative technology products and integrated architectural solutions for World Wide Technology customers.", "company_site_link": "http://www.wwt.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1854, "country": "India", "website": "https://www.ril.com/", "crunchbase": {"text": " 90527fe9-6708-8591-948f-824e0653b795", "url": " https://www.crunchbase.com/organization/reliance-industries"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/reliance"], "stage": "Mature", "name": "Reliance Industries", "patent_name": "Reliance Industries", "continent": "Asia", "local_logo": null, "aliases": "Reliance; Reliance Industries; Reliance Industries Limited", "permid_links": [{"text": 4295872979, "url": "https://permid.org/1-4295872979"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:RIGD", "url": "https://www.google.com/finance/quote/LSE:RIGD"}, {"text": "PKL:RLNIY", "url": "https://www.google.com/finance/quote/PKL:RLNIY"}, {"text": "VIE:RLI", "url": "https://www.google.com/finance/quote/RLI:VIE"}, {"text": "STU:RLI", "url": "https://www.google.com/finance/quote/RLI:STU"}, {"text": "NSI:RELIANCE", "url": "https://www.google.com/finance/quote/NSI:RELIANCE"}, {"text": "MUN:RLI", "url": "https://www.google.com/finance/quote/MUN:RLI"}, {"text": "BER:RLI", "url": "https://www.google.com/finance/quote/BER:RLI"}, {"text": "BRN:RLI", "url": "https://www.google.com/finance/quote/BRN:RLI"}, {"text": "FRA:RLI", "url": "https://www.google.com/finance/quote/FRA:RLI"}, {"text": "DEU:RLI", "url": "https://www.google.com/finance/quote/DEU:RLI"}, {"text": "DUS:RLI", "url": "https://www.google.com/finance/quote/DUS:RLI"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature extraction", "field_count": 1}, {"field_name": "Sentiment analysis", "field_count": 1}, {"field_name": "Expert system", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Visualization", "field_count": 1}], "clusters": [{"cluster_id": 43404, "cluster_count": 3}, {"cluster_id": 33, "cluster_count": 1}, {"cluster_id": 69790, "cluster_count": 1}, {"cluster_id": 34181, "cluster_count": 1}, {"cluster_id": 99427, "cluster_count": 1}, {"cluster_id": 22921, "cluster_count": 1}, {"cluster_id": 46586, "cluster_count": 1}, {"cluster_id": 29375, "cluster_count": 1}, {"cluster_id": 90480, "cluster_count": 1}, {"cluster_id": 60922, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 201, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 1854, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "speech_production", "task_count": 3}, {"referent": "motion_planning", "task_count": 2}, {"referent": "visual_localization", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "review_generation", "task_count": 1}, {"referent": "stock_price_prediction", "task_count": 1}, {"referent": "direction_of_arrival_estimation", "task_count": 1}, {"referent": "future_prediction", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}], "methods": [{"referent": "momentum_rules", "method_count": 2}, {"referent": "rule_based_systems", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "automl", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "pixelcnn", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [44, 36, 42, 45, 51, 64, 67, 87, 101, 88, 2], "total": 627, "isTopResearch": false, "rank": 245, "sp500_rank": 168}, "ai_publications": {"counts": [0, 0, 0, 3, 4, 0, 1, 3, 2, 0, 0], "total": 13, "isTopResearch": false, "rank": 375, "sp500_rank": 202}, "ai_publications_growth": {"counts": [], "total": 22.222222222222218, "isTopResearch": false, "rank": 111, "sp500_rank": 54}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [1, 0, 0, 0, 5, 5, 5, 7, 13, 12, 1], "total": 49, "isTopResearch": false, "rank": 586, "sp500_rank": 254}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 1.25, 0, 5.0, 2.3333333333333335, 6.5, 0, 0], "total": 3.769230769230769, "isTopResearch": false, "rank": 759, "sp500_rank": 300}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1637, "rank": 265, "sp500_rank": 145}, "ai_jobs": {"counts": null, "total": 99, "rank": 336, "sp500_rank": 181}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2096, "country": "United States", "website": "https://www.coca-colacompany.com/", "crunchbase": {"text": " e9b8ac17-508c-89ee-31a7-a2c4228da896", "url": " https://www.crunchbase.com/organization/the-coca-cola-company"}, "child_crunchbase": [{"text": "871e3c93-a5cf-c267-e4bd-2c8b1cd95402", "url": "https://www.crunchbase.com/organization/lilt"}], "linkedin": ["https://www.linkedin.com/company/the-coca-cola-company", "https://www.linkedin.com/company/lilthq"], "stage": "Mature", "name": "Coca-Cola", "patent_name": "Coca-Cola", "continent": "North America", "local_logo": null, "aliases": "Coca-Cola; Coke; The Coca Cola Company", "permid_links": [{"text": 4295903091, "url": "https://permid.org/1-4295903091"}, {"text": 5045949029, "url": "https://permid.org/1-5045949029"}], "parent_info": null, "agg_child_info": "Lilt", "unagg_child_info": null, "market_filt": [{"text": "NYSE:KO", "url": "https://www.google.com/finance/quote/KO:NYSE"}], "market_full": [{"text": "DUS:CCC3", "url": "https://www.google.com/finance/quote/CCC3:DUS"}, {"text": "MEX:KO", "url": "https://www.google.com/finance/quote/KO:MEX"}, {"text": "DEU:KO", "url": "https://www.google.com/finance/quote/DEU:KO"}, {"text": "GER:CCC3X", "url": "https://www.google.com/finance/quote/CCC3X:GER"}, {"text": "SWX:KO", "url": "https://www.google.com/finance/quote/KO:SWX"}, {"text": "NYQ:KO", "url": "https://www.google.com/finance/quote/KO:NYQ"}, {"text": "SGO:KO", "url": "https://www.google.com/finance/quote/KO:SGO"}, {"text": "STU:CCC3", "url": "https://www.google.com/finance/quote/CCC3:STU"}, {"text": "BRN:CCC3", "url": "https://www.google.com/finance/quote/BRN:CCC3"}, {"text": "BUE:DKO3", "url": "https://www.google.com/finance/quote/BUE:DKO3"}, {"text": "MUN:CCC3", "url": "https://www.google.com/finance/quote/CCC3:MUN"}, {"text": "LSE:0QZK", "url": "https://www.google.com/finance/quote/0QZK:LSE"}, {"text": "BER:CCC3", "url": "https://www.google.com/finance/quote/BER:CCC3"}, {"text": "HAM:CCC3", "url": "https://www.google.com/finance/quote/CCC3:HAM"}, {"text": "FRA:CCC3", "url": "https://www.google.com/finance/quote/CCC3:FRA"}, {"text": "SAO:COCA34", "url": "https://www.google.com/finance/quote/COCA34:SAO"}, {"text": "BUE:KO3", "url": "https://www.google.com/finance/quote/BUE:KO3"}, {"text": "NYSE:KO", "url": "https://www.google.com/finance/quote/KO:NYSE"}, {"text": "HAN:CCC3", "url": "https://www.google.com/finance/quote/CCC3:HAN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Stereo camera", "field_count": 1}, {"field_name": "Text processing", "field_count": 1}, {"field_name": "Heuristic", "field_count": 1}, {"field_name": "Automated guided vehicle", "field_count": 1}], "clusters": [{"cluster_id": 8590, "cluster_count": 2}, {"cluster_id": 42930, "cluster_count": 1}, {"cluster_id": 14137, "cluster_count": 1}, {"cluster_id": 57767, "cluster_count": 1}, {"cluster_id": 19500, "cluster_count": 1}, {"cluster_id": 3647, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 2010, "referenced_count": 1}], "tasks": [{"referent": "translation", "task_count": 2}, {"referent": "text_augmentation", "task_count": 2}, {"referent": "adversarial", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "morphological_analysis", "task_count": 1}, {"referent": "automl", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "industrial_robots", "task_count": 1}], "methods": [{"referent": "sentencepiece", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [37, 42, 46, 25, 26, 44, 22, 29, 14, 4, 0], "total": 289, "isTopResearch": false, "rank": 363, "sp500_rank": 234, "fortune500_rank": 138}, "ai_publications": {"counts": [0, 0, 0, 2, 1, 0, 1, 2, 2, 0, 0], "total": 8, "isTopResearch": false, "rank": 455, "sp500_rank": 233, "fortune500_rank": 128}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 3, 12, 18, 14, 12, 1], "total": 61, "isTopResearch": false, "rank": 562, "sp500_rank": 244, "fortune500_rank": 153}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115, "fortune500_rank": 61}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140, "fortune500_rank": 67}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 1.0, 0, 12.0, 9.0, 7.0, 0, 0], "total": 7.625, "isTopResearch": false, "rank": 618, "sp500_rank": 235, "fortune500_rank": 179}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 565, "sp500_rank": 235, "fortune500_rank": 176}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 20, 0, 10, 0, 0, 0, 0], "total": 40, "table": null, "rank": 565, "sp500_rank": 235, "fortune500_rank": 176}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "sp500_rank": 183, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "sp500_rank": 67, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1632, "rank": 266, "sp500_rank": 146, "fortune500_rank": 152}, "ai_jobs": {"counts": null, "total": 250, "rank": 208, "sp500_rank": 135, "fortune500_rank": 114}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages"}, {"cset_id": 2766, "country": "United States", "website": "https://www.insight.com/en_US/home.html", "crunchbase": {"text": "92a024a8-1e2e-e728-c726-98037f11f9d1", "url": "https://www.crunchbase.com/organization/insight"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/insight"], "stage": "Mature", "name": "Insight Enterprises Inc", "patent_name": "insight enterprises inc", "continent": "North America", "local_logo": "insight_enterprises_inc.png", "aliases": "2020 Insight; Insight; Insight Enterprises; Insight Enterprises, Inc", "permid_links": [{"text": 4295906810, "url": "https://permid.org/1-4295906810"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:NSIT", "url": "https://www.google.com/finance/quote/nasdaq:nsit"}], "market_full": [{"text": "DEU:NSIT", "url": "https://www.google.com/finance/quote/deu:nsit"}, {"text": "MUN:IEI", "url": "https://www.google.com/finance/quote/iei:mun"}, {"text": "BER:IEI", "url": "https://www.google.com/finance/quote/ber:iei"}, {"text": "STU:IEI", "url": "https://www.google.com/finance/quote/iei:stu"}, {"text": "MEX:NSIT", "url": "https://www.google.com/finance/quote/mex:nsit"}, {"text": "DUS:IEI", "url": "https://www.google.com/finance/quote/dus:iei"}, {"text": "FRA:IEI", "url": "https://www.google.com/finance/quote/fra:iei"}, {"text": "NASDAQ:NSIT", "url": "https://www.google.com/finance/quote/nasdaq:nsit"}], "crunchbase_description": "Insight empowers organizations with Insight Intelligent Technology Solutions\u2122 and services to maximize the business value of IT.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1628, "rank": 267}, "ai_jobs": {"counts": null, "total": 131, "rank": 292}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Insight Enterprises Inc. is an Arizona-based publicly traded global technology company that focuses on business-to-business and information technology (IT) capabilities for enterprises. Insight focuses on four, primary areas: Supply chain optimization, cloud and data center transformation, connected workforce, and digital innovation. The company is listed on the Fortune 500 and has offices in 19 countries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Insight_Enterprises", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2121, "country": "Italy", "website": "https://www.unicreditgroup.eu/", "crunchbase": {"text": " dffcdb09-9143-0b8f-8c9b-aa56a7ea787f", "url": " https://www.crunchbase.com/organization/unicredit"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/unicredit"], "stage": "Unknown", "name": "Unicredit Group", "patent_name": "UniCredit Group", "continent": "Europe", "local_logo": null, "aliases": "UniCredit Group; Unicredito Italiano S.P.A", "permid_links": [{"text": 4295875726, "url": "https://permid.org/1-4295875726"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Interpretability", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Uncertain data", "field_count": 1}], "clusters": [{"cluster_id": 27624, "cluster_count": 4}, {"cluster_id": 70175, "cluster_count": 2}, {"cluster_id": 57032, "cluster_count": 2}, {"cluster_id": 9371, "cluster_count": 2}, {"cluster_id": 2873, "cluster_count": 1}, {"cluster_id": 494, "cluster_count": 1}, {"cluster_id": 29150, "cluster_count": 1}, {"cluster_id": 1519, "cluster_count": 1}, {"cluster_id": 8217, "cluster_count": 1}, {"cluster_id": 18032, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 792, "referenced_count": 20}, {"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 2121, "referenced_count": 8}, {"ref_CSET_id": 115, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 833, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 201, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}, {"ref_CSET_id": 133, "referenced_count": 1}], "tasks": [{"referent": "clustering", "task_count": 3}, {"referent": "data_clustering", "task_count": 3}, {"referent": "image_processing", "task_count": 2}, {"referent": "natural_language_processing", "task_count": 2}, {"referent": "video_story_qa", "task_count": 2}, {"referent": "event_extraction", "task_count": 2}, {"referent": "uncertainty_estimation", "task_count": 2}, {"referent": "network_pruning", "task_count": 2}, {"referent": "domain_labelling", "task_count": 1}, {"referent": "medical_procedure", "task_count": 1}], "methods": [{"referent": "composite_fields", "method_count": 2}, {"referent": "edgeboxes", "method_count": 2}, {"referent": "dnas", "method_count": 1}, {"referent": "ga", "method_count": 1}, {"referent": "natural_language_processing", "method_count": 1}, {"referent": "multi_attention_network", "method_count": 1}, {"referent": "ensemble_clustering", "method_count": 1}, {"referent": "graphs", "method_count": 1}, {"referent": "attention_mechanisms", "method_count": 1}, {"referent": "optimization", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [17, 16, 33, 36, 31, 19, 12, 15, 1, 4, 0], "total": 184, "isTopResearch": false, "rank": 419, "sp500_rank": 252}, "ai_publications": {"counts": [0, 0, 0, 4, 3, 4, 1, 4, 1, 1, 0], "total": 18, "isTopResearch": false, "rank": 321, "sp500_rank": 178}, "ai_publications_growth": {"counts": [], "total": 75.0, "isTopResearch": false, "rank": 35, "sp500_rank": 19}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 1, 0, 0, 6, 17, 36, 45, 28, 35, 1], "total": 169, "isTopResearch": false, "rank": 410, "sp500_rank": 187}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 2.0, 4.25, 36.0, 11.25, 28.0, 35.0, 0], "total": 9.38888888888889, "isTopResearch": false, "rank": 564, "sp500_rank": 210}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1622, "rank": 268, "sp500_rank": 147}, "ai_jobs": {"counts": null, "total": 129, "rank": 299, "sp500_rank": 169}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2770, "country": "United States", "website": "http://www.viasat.com/", "crunchbase": {"text": "52a3fbf9-15ab-4551-9634-c60389fbfc81", "url": "https://www.crunchbase.com/organization/viasat"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/viasat"], "stage": "Mature", "name": "ViaSat Inc", "patent_name": "viasat inc", "continent": "North America", "local_logo": "viasat_inc.png", "aliases": "Viasat; Viasat Broadcasting; Viasat, Inc", "permid_links": [{"text": 4295908314, "url": "https://permid.org/1-4295908314"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:VSAT", "url": "https://www.google.com/finance/quote/nasdaq:vsat"}], "market_full": [{"text": "DEU:VSAT", "url": "https://www.google.com/finance/quote/deu:vsat"}, {"text": "LSE:0LPE", "url": "https://www.google.com/finance/quote/0lpe:lse"}, {"text": "STU:VS1", "url": "https://www.google.com/finance/quote/stu:vs1"}, {"text": "MUN:VS1", "url": "https://www.google.com/finance/quote/mun:vs1"}, {"text": "BER:VS1", "url": "https://www.google.com/finance/quote/ber:vs1"}, {"text": "NASDAQ:VSAT", "url": "https://www.google.com/finance/quote/nasdaq:vsat"}, {"text": "FRA:VS1", "url": "https://www.google.com/finance/quote/fra:vs1"}, {"text": "DUS:VS1", "url": "https://www.google.com/finance/quote/dus:vs1"}], "crunchbase_description": "Viasat is a TV distributor that offers premium quality satellite TV, IPTV, and online streaming services to customers.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 58654, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "automated_writing_evaluation", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}, {"referent": "face_anti_spoofing", "task_count": 1}, {"referent": "unmanned_aerial_vehicles", "task_count": 1}, {"referent": "presentation_attack_detection", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [12, 17, 11, 9, 11, 9, 9, 5, 12, 11, 0], "total": 106, "isTopResearch": false, "rank": 506}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 0, 11, 5, 4, 3, 0], "total": 24, "isTopResearch": false, "rank": 667}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 1.0, 0, 0, 0, 0, 0, 0], "total": 24.0, "isTopResearch": false, "rank": 254}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 0, 0, 10, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1609, "rank": 269}, "ai_jobs": {"counts": null, "total": 93, "rank": 353}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Viasat Inc. is an American communications company based in Carlsbad, California, with additional operations across the United States and worldwide. Viasat is a provider of high-speed satellite broadband services and secure networking systems covering military and commercial markets.[", "wikipedia_link": "https://en.wikipedia.org/wiki/Viasat_(American_company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2231, "country": "United States", "website": "http://www.bd.com/", "crunchbase": {"text": "392fdecd-e8fb-2391-e13b-980bfa6c818f", "url": "https://www.crunchbase.com/organization/becton-dickinson"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bd1"], "stage": "Mature", "name": "Becton Dickinson", "patent_name": "becton dickinson", "continent": "North America", "local_logo": "becton_dickinson.png", "aliases": "Becton, Dickinson And Co; Becton, Dickinson And Company", "permid_links": [{"text": 4295903533, "url": "https://permid.org/1-4295903533"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BDX", "url": "https://www.google.com/finance/quote/bdx:nyse"}, {"text": "NYSE:BDXB", "url": "https://www.google.com/finance/quote/bdxb:nyse"}], "market_full": [{"text": "DEU:BDX", "url": "https://www.google.com/finance/quote/bdx:deu"}, {"text": "SWX:BDX", "url": "https://www.google.com/finance/quote/bdx:swx"}, {"text": "MUN:BOX", "url": "https://www.google.com/finance/quote/box:mun"}, {"text": "MEX:BDX*", "url": "https://www.google.com/finance/quote/bdx*:mex"}, {"text": "BER:BOX", "url": "https://www.google.com/finance/quote/ber:box"}, {"text": "NYQ:BDX", "url": "https://www.google.com/finance/quote/bdx:nyq"}, {"text": "NYQ:BDXB", "url": "https://www.google.com/finance/quote/bdxb:nyq"}, {"text": "ASE:BDXB", "url": "https://www.google.com/finance/quote/ase:bdxb"}, {"text": "FRA:BOX", "url": "https://www.google.com/finance/quote/box:fra"}, {"text": "NYSE:BDX", "url": "https://www.google.com/finance/quote/bdx:nyse"}, {"text": "MCX:BDX-RM", "url": "https://www.google.com/finance/quote/bdx-rm:mcx"}, {"text": "LSE:0R19", "url": "https://www.google.com/finance/quote/0r19:lse"}, {"text": "STU:BOX", "url": "https://www.google.com/finance/quote/box:stu"}, {"text": "GER:BOXX", "url": "https://www.google.com/finance/quote/boxx:ger"}, {"text": "DUS:BOX", "url": "https://www.google.com/finance/quote/box:dus"}, {"text": "NYSE:BDXB", "url": "https://www.google.com/finance/quote/bdxb:nyse"}, {"text": "VIE:BDX", "url": "https://www.google.com/finance/quote/bdx:vie"}, {"text": "SAO:B1DX34", "url": "https://www.google.com/finance/quote/b1dx34:sao"}, {"text": "ASE:BDX", "url": "https://www.google.com/finance/quote/ase:bdx"}, {"text": "BRN:BOX", "url": "https://www.google.com/finance/quote/box:brn"}], "crunchbase_description": "BD is a global medical technology company that is advancing the world of health by improving medical discovery.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 18713, "cluster_count": 2}, {"cluster_id": 22086, "cluster_count": 1}, {"cluster_id": 34271, "cluster_count": 1}, {"cluster_id": 15, "cluster_count": 1}, {"cluster_id": 33529, "cluster_count": 1}, {"cluster_id": 3240, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 2236, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "developmental_learning", "task_count": 2}, {"referent": "disease_detection", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "decision_making_under_uncertainty", "task_count": 1}, {"referent": "uncertainty_estimation", "task_count": 1}, {"referent": "multi_class_classification", "task_count": 1}, {"referent": "cell_segmentation", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "image_fusion", "task_count": 1}, {"referent": "automl", "task_count": 1}], "methods": [{"referent": "ca", "method_count": 1}, {"referent": "enhanced_fusion_framework", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [55, 56, 74, 81, 78, 90, 122, 106, 85, 112, 0], "total": 859, "isTopResearch": false, "rank": 206, "fortune500_rank": 76}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0], "total": 5, "isTopResearch": false, "rank": 540, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 2, 1, 2, 2, 5, 1, 5, 7, 9, 0], "total": 35, "isTopResearch": false, "rank": 638, "fortune500_rank": 173}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [1.0, 0, 0, 0, 0, 0, 1.0, 5.0, 7.0, 9.0, 0], "total": 7.0, "isTopResearch": false, "rank": 634, "fortune500_rank": 181}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 1, 5, 7, 7, 4, 4, 0, 0], "total": 29, "table": null, "rank": 273, "fortune500_rank": 95}, "ai_patents_growth": {"counts": [], "total": -0.9523809523809513, "table": null, "rank": 1427, "fortune500_rank": 406}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 10, 50, 70, 70, 40, 40, 0, 0], "total": 290, "table": null, "rank": 273, "fortune500_rank": 95}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "fortune500_rank": 39}, "Life_Sciences": {"counts": [1, 0, 0, 1, 5, 5, 5, 1, 4, 0, 0], "total": 22, "table": "industry", "rank": 49, "fortune500_rank": 19}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 157, "fortune500_rank": 58}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 165, "fortune500_rank": 55}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 3, 1, 3, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 287, "fortune500_rank": 104}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 172, "fortune500_rank": 60}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 308, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 233, "fortune500_rank": 77}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 119, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 214, "fortune500_rank": 70}, "Control": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 1, 1, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 318, "fortune500_rank": 96}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 1, 1, 0, 2, 0, 0], "total": 5, "table": "application", "rank": 160, "fortune500_rank": 66}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 2, 3, 1, 2, 0, 0, 0], "total": 8, "table": "application", "rank": 139, "fortune500_rank": 42}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1604, "rank": 270, "fortune500_rank": 153}, "ai_jobs": {"counts": null, "total": 159, "rank": 259, "fortune500_rank": 138}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Becton, Dickinson and Company, commonly known as BD, is an American multinational medical technology company that manufactures and sells medical devices, instrument systems, and reagents. BD also provides consulting and analytics services in certain geographies.", "wikipedia_link": "https://en.wikipedia.org/wiki/BD_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2415, "country": "United States", "website": "http://www.microchip.com/", "crunchbase": {"text": "771ea53a-9289-52f0-b573-69ed67ca2c75", "url": "https://www.crunchbase.com/organization/microchip-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/microchip-technology"], "stage": "Mature", "name": "Microchip Technology", "patent_name": "microchip technology", "continent": "North America", "local_logo": "microchip_technology.png", "aliases": "Microchip; Microchip Technology Inc", "permid_links": [{"text": 4295907171, "url": "https://permid.org/1-4295907171"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:MCHP", "url": "https://www.google.com/finance/quote/mchp:nasdaq"}], "market_full": [{"text": "MEX:MCHP*", "url": "https://www.google.com/finance/quote/mchp*:mex"}, {"text": "FRA:MCP", "url": "https://www.google.com/finance/quote/fra:mcp"}, {"text": "STU:MCP", "url": "https://www.google.com/finance/quote/mcp:stu"}, {"text": "GER:MCPX", "url": "https://www.google.com/finance/quote/ger:mcpx"}, {"text": "HAN:MCP", "url": "https://www.google.com/finance/quote/han:mcp"}, {"text": "SAO:M1CH34", "url": "https://www.google.com/finance/quote/m1ch34:sao"}, {"text": "HAM:MCP", "url": "https://www.google.com/finance/quote/ham:mcp"}, {"text": "NASDAQ:MCHP", "url": "https://www.google.com/finance/quote/mchp:nasdaq"}, {"text": "BRN:MCP", "url": "https://www.google.com/finance/quote/brn:mcp"}, {"text": "VIE:MCHP", "url": "https://www.google.com/finance/quote/mchp:vie"}, {"text": "LSE:0K19", "url": "https://www.google.com/finance/quote/0k19:lse"}, {"text": "DEU:MCHP", "url": "https://www.google.com/finance/quote/deu:mchp"}, {"text": "DUS:MCP", "url": "https://www.google.com/finance/quote/dus:mcp"}, {"text": "MUN:MCP", "url": "https://www.google.com/finance/quote/mcp:mun"}, {"text": "MCX:MCHP-RM", "url": "https://www.google.com/finance/quote/mchp-rm:mcx"}, {"text": "BER:MCP", "url": "https://www.google.com/finance/quote/ber:mcp"}], "crunchbase_description": "Microchip Technology develops and manufactures semiconductor products for various embedded control applications worldwide.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Speech processing", "field_count": 1}, {"field_name": "Hausdorff distance", "field_count": 1}], "clusters": [{"cluster_id": 33529, "cluster_count": 1}, {"cluster_id": 12235, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "face_recognition", "task_count": 1}], "methods": [{"referent": "feature_extractors", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [8, 5, 14, 14, 16, 16, 18, 24, 8, 20, 0], "total": 143, "isTopResearch": false, "rank": 461, "fortune500_rank": 176}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 2, 2, 6, 9, 5, 4, 0], "total": 28, "isTopResearch": false, "rank": 651, "fortune500_rank": 178}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 2.0, 0, 0, 0, 0, 0, 0], "total": 28.0, "isTopResearch": false, "rank": 210, "fortune500_rank": 64}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 2, 6, 18, 16, 23, 12, 0, 0], "total": 78, "table": null, "rank": 177, "fortune500_rank": 55}, "ai_patents_growth": {"counts": [], "total": 77.54629629629629, "table": null, "rank": 147, "fortune500_rank": 32}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 20, 60, 180, 160, 230, 120, 0, 0], "total": 780, "table": null, "rank": 177, "fortune500_rank": 55}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 2, 6, 13, 13, 15, 8, 0, 0], "total": 58, "table": "industry", "rank": 104, "fortune500_rank": 42}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 2, 0, 0], "total": 5, "table": "industry", "rank": 225, "fortune500_rank": 86}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 5, 5, 1, 0, 0, 0, 0], "total": 11, "table": "industry", "rank": 12, "fortune500_rank": 7}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1602, "rank": 271, "fortune500_rank": 154}, "ai_jobs": {"counts": null, "total": 11, "rank": 829, "fortune500_rank": 406}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Microchip Technology Inc. is a publicly-listed American corporation that manufactures microcontroller, mixed-signal, analog and Flash-IP integrated circuits. Its products include microcontrollers (PIC, dsPIC, AVR and SAM), Serial EEPROM devices, Serial SRAM devices, embedded security devices, radio frequency (RF) devices, thermal, power and battery management analog devices, as well as linear, interface and wireless solutions.", "wikipedia_link": "https://en.wikipedia.org/wiki/Microchip_Technology", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1923, "country": "Belgium", "website": "https://www.ab-inbev.com/", "crunchbase": {"text": " d25b9090-3718-70aa-16c0-a297fce8962a", "url": " https://www.crunchbase.com/organization/anheuser-busch"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ab-inbev"], "stage": "Mature", "name": "Anheuser-Busch Inbev", "patent_name": "Anheuser-Busch InBev", "continent": "Europe", "local_logo": null, "aliases": "Anheuser-Busch InBev; Anheuser-Busch Inbev Sa/Nv", "permid_links": [{"text": 4295859326, "url": "https://permid.org/1-4295859326"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BUD", "url": "https://www.google.com/finance/quote/BUD:NYSE"}], "market_full": [{"text": "STU:1NBA", "url": "https://www.google.com/finance/quote/1NBA:STU"}, {"text": "FRA:ITKA", "url": "https://www.google.com/finance/quote/FRA:ITKA"}, {"text": "STU:ITKA", "url": "https://www.google.com/finance/quote/ITKA:STU"}, {"text": "NYQ:BUD", "url": "https://www.google.com/finance/quote/BUD:NYQ"}, {"text": "MEX:ANB*", "url": "https://www.google.com/finance/quote/ANB*:MEX"}, {"text": "BRU:ABI", "url": "https://www.google.com/finance/quote/ABI:BRU"}, {"text": "MUN:1NBA", "url": "https://www.google.com/finance/quote/1NBA:MUN"}, {"text": "MIL:ABI", "url": "https://www.google.com/finance/quote/ABI:MIL"}, {"text": "BRN:1NBA", "url": "https://www.google.com/finance/quote/1NBA:BRN"}, {"text": "PKL:BUDFF", "url": "https://www.google.com/finance/quote/BUDFF:PKL"}, {"text": "DUS:ITKA", "url": "https://www.google.com/finance/quote/DUS:ITKA"}, {"text": "FRA:1NBA", "url": "https://www.google.com/finance/quote/1NBA:FRA"}, {"text": "MUN:ITKA", "url": "https://www.google.com/finance/quote/ITKA:MUN"}, {"text": "ASE:BUD", "url": "https://www.google.com/finance/quote/ASE:BUD"}, {"text": "GER:1NBX.A", "url": "https://www.google.com/finance/quote/1NBX.A:GER"}, {"text": "DEU:ABI", "url": "https://www.google.com/finance/quote/ABI:DEU"}, {"text": "HAM:1NBA", "url": "https://www.google.com/finance/quote/1NBA:HAM"}, {"text": "NYSE:BUD", "url": "https://www.google.com/finance/quote/BUD:NYSE"}, {"text": "EBT:ABIB", "url": "https://www.google.com/finance/quote/ABIb:EBT"}, {"text": "LSE:0RJI", "url": "https://www.google.com/finance/quote/0RJI:LSE"}, {"text": "DEU:ITKA", "url": "https://www.google.com/finance/quote/DEU:ITKA"}, {"text": "HAN:1NBA", "url": "https://www.google.com/finance/quote/1NBA:HAN"}, {"text": "VIE:ABIN", "url": "https://www.google.com/finance/quote/ABIN:VIE"}, {"text": "LSE:0A22", "url": "https://www.google.com/finance/quote/0A22:LSE"}, {"text": "DUS:1NBA", "url": "https://www.google.com/finance/quote/1NBA:DUS"}, {"text": "JNB:ANH", "url": "https://www.google.com/finance/quote/ANH:JNB"}, {"text": "SWX:ABIT", "url": "https://www.google.com/finance/quote/ABIT:SWX"}, {"text": "BER:ITKA", "url": "https://www.google.com/finance/quote/BER:ITKA"}, {"text": "BER:1NBA", "url": "https://www.google.com/finance/quote/1NBA:BER"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Sentiment analysis", "field_count": 1}], "clusters": [{"cluster_id": 33, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1126, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 1}, {"referent": "sentiment_detection", "task_count": 1}], "methods": [{"referent": "neural_probabilistic_language_model", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1, 0, 1, 1, 1, 1, 3, 0, 0, 0, 0], "total": 8, "isTopResearch": false, "rank": 980, "sp500_rank": 400}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 2, 0, 2, 2, 4, 2, 2, 0], "total": 14, "isTopResearch": false, "rank": 724, "sp500_rank": 299}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 14.0, "isTopResearch": false, "rank": 423, "sp500_rank": 142}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1593, "rank": 272, "sp500_rank": 148}, "ai_jobs": {"counts": null, "total": 654, "rank": 80, "sp500_rank": 54}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages"}, {"cset_id": 1393, "country": "Taiwan", "website": "http://www.foxconn.com", "crunchbase": {"text": "cee4abef-8d9f-02e1-682e-d226fcf00106", "url": "https://www.crunchbase.com/organization/foxconn-technology-group"}, "child_crunchbase": [{"text": "894275e4-b7bc-eb25-94b6-7a49136fe7dd", "url": "https://www.crunchbase.com/organization/moran-cognitive-technology"}, {"text": "bb9e18f3-d903-24ff-3ad3-87c6c7d3b7e7", "url": "https://www.crunchbase.com/organization/belkin-international"}], "linkedin": ["https://www.linkedin.com/company/foxconn", "https://www.linkedin.com/company/moran-cognitive-technology-co.-ltd.", "https://www.linkedin.com/company/belkin"], "stage": "Mature", "name": "Foxconn", "patent_name": "foxconn", "continent": "Asia", "local_logo": "foxconn.png", "aliases": "Foxconn Technology Group; Hon Hai Precision Industry Co; Hon Hai Precision Industry Co., Ltd; \u9d3b\u6d77\u7cbe\u5bc6\u5de5\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5000069307, "url": "https://permid.org/1-5000069307"}, {"text": 5053127017, "url": "https://permid.org/1-5053127017"}, {"text": 4296384112, "url": "https://permid.org/1-4296384112"}], "parent_info": null, "agg_child_info": "Moran Cognitive Technology, Belkin", "unagg_child_info": null, "market_filt": [{"text": "TPE:2354", "url": "https://www.google.com/finance/quote/2354:tpe"}], "market_full": [{"text": "OTCPINK:FXCOF", "url": "https://www.google.com/finance/quote/fxcof:otcpink"}, {"text": "TPE:2354", "url": "https://www.google.com/finance/quote/2354:tpe"}], "crunchbase_description": "Foxconn Technology Group, is a Taiwanese multinational electronics contract manufacturing company, headquartered in Tucheng.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Quantization (signal processing)", "field_count": 2}, {"field_name": "Machine vision", "field_count": 2}, {"field_name": "Face (geometry)", "field_count": 1}, {"field_name": "Particle swarm optimization", "field_count": 1}, {"field_name": "Parallax", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Automatic summarization", "field_count": 1}, {"field_name": "Local optimum", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 5141, "cluster_count": 2}, {"cluster_id": 63822, "cluster_count": 2}, {"cluster_id": 122799, "cluster_count": 1}, {"cluster_id": 22321, "cluster_count": 1}, {"cluster_id": 6228, "cluster_count": 1}, {"cluster_id": 34826, "cluster_count": 1}, {"cluster_id": 2079, "cluster_count": 1}, {"cluster_id": 33, "cluster_count": 1}, {"cluster_id": 63380, "cluster_count": 1}, {"cluster_id": 14740, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 1393, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 2067, "referenced_count": 1}, {"ref_CSET_id": 13, "referenced_count": 1}, {"ref_CSET_id": 784, "referenced_count": 1}, {"ref_CSET_id": 161, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "system_identification", "task_count": 3}, {"referent": "image_super_resolution", "task_count": 2}, {"referent": "steering_control", "task_count": 2}, {"referent": "super_resolution", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "fault_detection", "task_count": 2}, {"referent": "video_super_resolution", "task_count": 2}, {"referent": "medical_diagnosis", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "super_resolution_models", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "optimization", "method_count": 2}, {"referent": "fast_r_cnn", "method_count": 1}, {"referent": "adashift", "method_count": 1}, {"referent": "random_erasing", "method_count": 1}, {"referent": "ltls", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [66, 82, 74, 87, 39, 35, 52, 66, 48, 26, 0], "total": 575, "isTopResearch": false, "rank": 257}, "ai_publications": {"counts": [3, 3, 3, 1, 3, 1, 4, 7, 1, 2, 0], "total": 28, "isTopResearch": false, "rank": 254}, "ai_publications_growth": {"counts": [], "total": 29.761904761904763, "isTopResearch": false, "rank": 94}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [9, 19, 26, 19, 25, 27, 32, 54, 63, 55, 5], "total": 334, "isTopResearch": false, "rank": 318}, "cv_pubs": {"counts": [1, 0, 1, 0, 0, 0, 0, 4, 0, 1, 0], "total": 7, "isTopResearch": true, "rank": 252}, "nlp_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [1, 1, 1, 1, 2, 0, 0, 0, 0, 0, 0], "total": 6, "isTopResearch": true, "rank": 156}, "citations_per_article": {"counts": [3.0, 6.333333333333333, 8.666666666666666, 19.0, 8.333333333333334, 27.0, 8.0, 7.714285714285714, 63.0, 27.5, 0], "total": 11.928571428571429, "isTopResearch": false, "rank": 476}}, "patents": {"ai_patents": {"counts": [4, 9, 7, 14, 12, 18, 47, 71, 33, 2, 0], "total": 217, "table": null, "rank": 95}, "ai_patents_growth": {"counts": [], "total": 87.39164696611505, "table": null, "rank": 131}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [40, 90, 70, 140, 120, 180, 470, 710, 330, 20, 0], "total": 2170, "table": null, "rank": 95}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 105}, "Life_Sciences": {"counts": [0, 2, 0, 1, 0, 1, 4, 2, 0, 0, 0], "total": 10, "table": "industry", "rank": 85}, "Security__eg_cybersecurity": {"counts": [0, 1, 1, 0, 0, 1, 2, 2, 1, 0, 0], "total": 8, "table": null, "rank": 103}, "Transportation": {"counts": [3, 3, 5, 10, 2, 1, 1, 1, 0, 0, 0], "total": 26, "table": "industry", "rank": 63}, "Industrial_and_Manufacturing": {"counts": [2, 0, 2, 2, 3, 0, 1, 3, 8, 0, 0], "total": 21, "table": "industry", "rank": 40}, "Education": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 38}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 1, 1, 5, 5, 3, 14, 16, 4, 0, 0], "total": 49, "table": "industry", "rank": 120}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 4, 0, 2, 5, 5, 8, 8, 7, 0, 0], "total": 39, "table": "industry", "rank": 92}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 5, 2, 0, 0, 0], "total": 7, "table": null, "rank": 183}, "Energy_Management": {"counts": [0, 0, 0, 1, 0, 1, 4, 0, 0, 0, 0], "total": 6, "table": null, "rank": 70}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 35}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 1, 1, 5, 0, 0, 0], "total": 8, "table": "application", "rank": 90}, "Knowledge_Representation": {"counts": [0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 137}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0], "total": 6, "table": null, "rank": 163}, "Control": {"counts": [3, 5, 6, 10, 3, 2, 2, 4, 0, 0, 0], "total": 35, "table": "application", "rank": 67}, "Distributed_AI": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47}, "Robotics": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 14}, "Computer_Vision": {"counts": [1, 1, 0, 4, 6, 5, 20, 45, 20, 0, 0], "total": 102, "table": "application", "rank": 67}, "Analytics_and_Algorithms": {"counts": [0, 4, 0, 0, 0, 2, 3, 2, 0, 0, 0], "total": 11, "table": "application", "rank": 105}, "Measuring_and_Testing": {"counts": [2, 2, 0, 4, 0, 1, 4, 6, 2, 0, 0], "total": 21, "table": "application", "rank": 80}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1589, "rank": 273}, "ai_jobs": {"counts": null, "total": 61, "rank": 438}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Hon Hai Precision Industry Co., Ltd., trading as Foxconn Technology Group and better known as Foxconn, is a Taiwanese multinational electronics contract manufacturer with its headquarters in Tucheng, New Taipei City, Taiwan. In 2010, it was the world's largest provider of electronics manufacturing services and the third-largest technology company by revenue. The company is the largest private employer in Taiwan and one of the largest employers worldwide. Terry Gou is the company's founder and chairman.", "wikipedia_link": "https://en.wikipedia.org/wiki/Foxconn", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1946, "country": "Brazil", "website": "https://banco.bradesco", "crunchbase": {"text": " 15e4a4a0-4135-44d7-ea35-706fca41fe7a ", "url": " https://www.crunchbase.com/organization/banco-bradesco "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bradesco"], "stage": "Mature", "name": "Banco Bradesco", "patent_name": "Banco Bradesco", "continent": "South America", "local_logo": null, "aliases": "Banco Bradesco; Banco Bradesco S.A", "permid_links": [{"text": 4295859689, "url": "https://permid.org/1-4295859689"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BBD", "url": "https://www.google.com/finance/quote/BBD:NYSE"}, {"text": "NYSE:BBDO", "url": "https://www.google.com/finance/quote/BBDO:NYSE"}], "market_full": [{"text": "BER:BRE", "url": "https://www.google.com/finance/quote/BER:BRE"}, {"text": "LAT:XBBDC", "url": "https://www.google.com/finance/quote/LAT:XBBDC"}, {"text": "SAO:BBDC3", "url": "https://www.google.com/finance/quote/BBDC3:SAO"}, {"text": "DEU:BREA", "url": "https://www.google.com/finance/quote/BREA:DEU"}, {"text": "ASE:BBDO", "url": "https://www.google.com/finance/quote/ASE:BBDO"}, {"text": "BER:BREA", "url": "https://www.google.com/finance/quote/BER:BREA"}, {"text": "ASE:BBD", "url": "https://www.google.com/finance/quote/ASE:BBD"}, {"text": "SAO:BBDC4", "url": "https://www.google.com/finance/quote/BBDC4:SAO"}, {"text": "NYQ:BBDO", "url": "https://www.google.com/finance/quote/BBDO:NYQ"}, {"text": "DEU:BREC", "url": "https://www.google.com/finance/quote/BREC:DEU"}, {"text": "MEX:BBDN", "url": "https://www.google.com/finance/quote/BBDN:MEX"}, {"text": "NYSE:BBD", "url": "https://www.google.com/finance/quote/BBD:NYSE"}, {"text": "BER:BREC", "url": "https://www.google.com/finance/quote/BER:BREC"}, {"text": "DEU:BRE", "url": "https://www.google.com/finance/quote/BRE:DEU"}, {"text": "FRA:BRE", "url": "https://www.google.com/finance/quote/BRE:FRA"}, {"text": "FRA:BREC", "url": "https://www.google.com/finance/quote/BREC:FRA"}, {"text": "MUN:BREC", "url": "https://www.google.com/finance/quote/BREC:MUN"}, {"text": "LSE:0HL8", "url": "https://www.google.com/finance/quote/0HL8:LSE"}, {"text": "NYSE:BBDO", "url": "https://www.google.com/finance/quote/BBDO:NYSE"}, {"text": "STU:BREC", "url": "https://www.google.com/finance/quote/BREC:STU"}, {"text": "BUE:BBD3", "url": "https://www.google.com/finance/quote/BBD3:BUE"}, {"text": "FRA:BREA", "url": "https://www.google.com/finance/quote/BREA:FRA"}, {"text": "NYQ:BBD", "url": "https://www.google.com/finance/quote/BBD:NYQ"}, {"text": "STU:BRE", "url": "https://www.google.com/finance/quote/BRE:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0], "total": 5, "isTopResearch": false, "rank": 1063, "sp500_rank": 414}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1581, "rank": 274, "sp500_rank": 149}, "ai_jobs": {"counts": null, "total": 508, "rank": 111, "sp500_rank": 69}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 3093, "country": "United States", "website": "https://www.tylertech.com/", "crunchbase": {"text": " 05d014ce-de66-2656-56d2-793e567a994e", "url": " https://www.crunchbase.com/organization/tyler-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tyler-technologies"], "stage": "Mature", "name": "Tyler Technologies", "patent_name": "Tyler Technologies", "continent": "North America", "local_logo": null, "aliases": "Tyler Technologies; Tyler Technologies, Inc", "permid_links": [{"text": 4295912310, "url": "https://permid.org/1-4295912310"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TYL", "url": "https://www.google.com/finance/quote/NYSE:TYL"}], "market_full": [{"text": "SAO:T2YL34", "url": "https://www.google.com/finance/quote/SAO:T2YL34"}, {"text": "NYSE:TYL", "url": "https://www.google.com/finance/quote/NYSE:TYL"}, {"text": "MCX:TYL-RM", "url": "https://www.google.com/finance/quote/MCX:TYL-RM"}, {"text": "DUS:TYP", "url": "https://www.google.com/finance/quote/DUS:TYP"}, {"text": "MUN:TYL*", "url": "https://www.google.com/finance/quote/MUN:TYL*"}, {"text": "STU:TYP", "url": "https://www.google.com/finance/quote/STU:TYP"}, {"text": "FRA:TYP", "url": "https://www.google.com/finance/quote/FRA:TYP"}, {"text": "DEU:TYL", "url": "https://www.google.com/finance/quote/DEU:TYL"}, {"text": "MEX:TYL*", "url": "https://www.google.com/finance/quote/MEX:TYL*"}, {"text": "NYQ:TYL", "url": "https://www.google.com/finance/quote/NYQ:TYL"}, {"text": "ASE:TYL", "url": "https://www.google.com/finance/quote/ASE:TYL"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 88262, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 195, "referenced_count": 1}], "tasks": [{"referent": "lexical_analysis", "task_count": 1}], "methods": [{"referent": "ca", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 2, 0, 0, 1, 0, 0, 0, 1, 0], "total": 4, "isTopResearch": false, "rank": 1105, "fortune500_rank": 368}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8, 0], "total": 8, "isTopResearch": false, "rank": 782, "fortune500_rank": 210}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 8.0, 0], "total": 8.0, "isTopResearch": false, "rank": 595, "fortune500_rank": 171}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1572, "rank": 275, "fortune500_rank": 155}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "fortune500_rank": 294}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 1037, "country": "Germany", "website": "https://www.volkswagenag.com/", "crunchbase": {"text": "8a2b18d2-4cfb-ac17-08b2-07b01d092e2a", "url": "https://www.crunchbase.com/organization/volkswagen-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/volkswagen-ag"], "stage": "Mature", "name": "Volkswagen", "patent_name": "Volkswagen", "continent": "Europe", "local_logo": "volkswagen.png", "aliases": "Volkswagen; Volkswagen Ag", "permid_links": [{"text": 4295869244, "url": "https://permid.org/1-4295869244"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "GER:VOWX", "url": "https://www.google.com/finance/quote/GER:VOWX"}, {"text": "PKC:VWAPY", "url": "https://www.google.com/finance/quote/PKC:VWAPY"}, {"text": "PKC:VLKAF", "url": "https://www.google.com/finance/quote/PKC:VLKAF"}, {"text": "DUS:VOW3", "url": "https://www.google.com/finance/quote/DUS:VOW3"}, {"text": "DEU:VOWB", "url": "https://www.google.com/finance/quote/DEU:VOWB"}, {"text": "STU:VOWA", "url": "https://www.google.com/finance/quote/STU:VOWA"}, {"text": "BRN:VOW", "url": "https://www.google.com/finance/quote/BRN:VOW"}, {"text": "BRN:VOW3", "url": "https://www.google.com/finance/quote/BRN:VOW3"}, {"text": "STU:VOW", "url": "https://www.google.com/finance/quote/STU:VOW"}, {"text": "BER:VOW", "url": "https://www.google.com/finance/quote/BER:VOW"}, {"text": "FRA:VOW", "url": "https://www.google.com/finance/quote/FRA:VOW"}, {"text": "FRA:VOWB", "url": "https://www.google.com/finance/quote/FRA:VOWB"}, {"text": "HAM:VOW3", "url": "https://www.google.com/finance/quote/HAM:VOW3"}, {"text": "BER:VOW3", "url": "https://www.google.com/finance/quote/BER:VOW3"}, {"text": "MEX:VOW3N", "url": "https://www.google.com/finance/quote/MEX:VOW3N"}, {"text": "BER:VOWB", "url": "https://www.google.com/finance/quote/BER:VOWB"}, {"text": "VIE:VOW", "url": "https://www.google.com/finance/quote/VIE:VOW"}, {"text": "MUN:VOW", "url": "https://www.google.com/finance/quote/MUN:VOW"}, {"text": "DEU:VOWG", "url": "https://www.google.com/finance/quote/DEU:VOWG"}, {"text": "MUN:VOWB", "url": "https://www.google.com/finance/quote/MUN:VOWB"}, {"text": "DUS:VOW", "url": "https://www.google.com/finance/quote/DUS:VOW"}, {"text": "DEU:VOWA", "url": "https://www.google.com/finance/quote/DEU:VOWA"}, {"text": "BUD:VOLKSWAGEN", "url": "https://www.google.com/finance/quote/BUD:VOLKSWAGEN"}, {"text": "LSE:0P6N", "url": "https://www.google.com/finance/quote/0P6N:LSE"}, {"text": "HAM:VOW", "url": "https://www.google.com/finance/quote/HAM:VOW"}, {"text": "MIL:VOW3", "url": "https://www.google.com/finance/quote/MIL:VOW3"}, {"text": "FRA:VOW3", "url": "https://www.google.com/finance/quote/FRA:VOW3"}, {"text": "PKC:VWAGY", "url": "https://www.google.com/finance/quote/PKC:VWAGY"}, {"text": "DEU:VOW3", "url": "https://www.google.com/finance/quote/DEU:VOW3"}, {"text": "STU:VOW3", "url": "https://www.google.com/finance/quote/STU:VOW3"}, {"text": "EBT:VOWD", "url": "https://www.google.com/finance/quote/EBT:VOWd"}, {"text": "MUN:VOWA", "url": "https://www.google.com/finance/quote/MUN:VOWA"}, {"text": "BRU:VWA", "url": "https://www.google.com/finance/quote/BRU:VWA"}, {"text": "BRU:VWAP", "url": "https://www.google.com/finance/quote/BRU:VWAP"}, {"text": "FRA:VOWA", "url": "https://www.google.com/finance/quote/FRA:VOWA"}, {"text": "BER:VOWA", "url": "https://www.google.com/finance/quote/BER:VOWA"}, {"text": "GER:VOW3", "url": "https://www.google.com/finance/quote/GER:VOW3"}, {"text": "PKC:VLKPF", "url": "https://www.google.com/finance/quote/PKC:VLKPF"}, {"text": "MUN:VOW3", "url": "https://www.google.com/finance/quote/MUN:VOW3"}, {"text": "EBT:VOW3D", "url": "https://www.google.com/finance/quote/EBT:VOW3d"}, {"text": "HAN:VOW", "url": "https://www.google.com/finance/quote/HAN:VOW"}, {"text": "HAN:VOW3", "url": "https://www.google.com/finance/quote/HAN:VOW3"}, {"text": "STU:VOWB", "url": "https://www.google.com/finance/quote/STU:VOWB"}, {"text": "PRA:VOW", "url": "https://www.google.com/finance/quote/PRA:VOW"}], "crunchbase_description": "Volkswagen Group is a multinational automotive company that manufactures variety of vehicles.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 17}, {"field_name": "Advanced driver assistance systems", "field_count": 15}, {"field_name": "Robot", "field_count": 8}, {"field_name": "Augmented reality", "field_count": 7}, {"field_name": "Reinforcement learning", "field_count": 7}, {"field_name": "Robustness (computer science)", "field_count": 7}, {"field_name": "Driving simulator", "field_count": 4}, {"field_name": "Deep learning", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Decision rule", "field_count": 3}], "clusters": [{"cluster_id": 31686, "cluster_count": 16}, {"cluster_id": 20982, "cluster_count": 13}, {"cluster_id": 29685, "cluster_count": 12}, {"cluster_id": 7095, "cluster_count": 11}, {"cluster_id": 14335, "cluster_count": 9}, {"cluster_id": 2505, "cluster_count": 7}, {"cluster_id": 15989, "cluster_count": 7}, {"cluster_id": 21619, "cluster_count": 6}, {"cluster_id": 2410, "cluster_count": 6}, {"cluster_id": 58127, "cluster_count": 5}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 402}, {"ref_CSET_id": 1037, "referenced_count": 264}, {"ref_CSET_id": 163, "referenced_count": 159}, {"ref_CSET_id": 87, "referenced_count": 128}, {"ref_CSET_id": 800, "referenced_count": 65}, {"ref_CSET_id": 184, "referenced_count": 45}, {"ref_CSET_id": 783, "referenced_count": 38}, {"ref_CSET_id": 127, "referenced_count": 31}, {"ref_CSET_id": 115, "referenced_count": 30}, {"ref_CSET_id": 6, "referenced_count": 24}], "tasks": [{"referent": "autonomous_driving", "task_count": 99}, {"referent": "autonomous_vehicles", "task_count": 59}, {"referent": "classification", "task_count": 45}, {"referent": "vehicle_detection", "task_count": 21}, {"referent": "semantic_segmentation", "task_count": 21}, {"referent": "action_localization", "task_count": 16}, {"referent": "object_detection", "task_count": 15}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 14}, {"referent": "system_identification", "task_count": 13}, {"referent": "steering_control", "task_count": 11}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 38}, {"referent": "vqa_models", "method_count": 20}, {"referent": "mad_learning", "method_count": 18}, {"referent": "double_q_learning", "method_count": 18}, {"referent": "3d_representations", "method_count": 15}, {"referent": "q_learning", "method_count": 12}, {"referent": "autoencoder", "method_count": 12}, {"referent": "auto_classifier", "method_count": 12}, {"referent": "convolutional_neural_networks", "method_count": 11}, {"referent": "adamw", "method_count": 10}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [199, 226, 218, 313, 339, 287, 336, 348, 382, 245, 13], "total": 2906, "isTopResearch": false, "rank": 97, "sp500_rank": 78}, "ai_publications": {"counts": [21, 19, 21, 25, 36, 30, 54, 62, 63, 14, 0], "total": 345, "isTopResearch": false, "rank": 53, "sp500_rank": 42}, "ai_publications_growth": {"counts": [], "total": -20.450019912385503, "isTopResearch": false, "rank": 1329, "sp500_rank": 352}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 8, 5, 5, 2, 0], "total": 21, "isTopResearch": false, "rank": 76, "sp500_rank": 40}, "citation_counts": {"counts": [184, 275, 342, 351, 404, 552, 747, 895, 1121, 806, 24], "total": 5701, "isTopResearch": false, "rank": 69, "sp500_rank": 47}, "cv_pubs": {"counts": [5, 4, 7, 3, 7, 5, 20, 23, 19, 7, 0], "total": 100, "isTopResearch": true, "rank": 54, "sp500_rank": 39}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 0, 2, 2, 2, 0, 0], "total": 7, "isTopResearch": true, "rank": 117, "sp500_rank": 74}, "robotics_pubs": {"counts": [6, 4, 5, 9, 13, 7, 18, 11, 8, 3, 0], "total": 84, "isTopResearch": true, "rank": 36, "sp500_rank": 34}, "citations_per_article": {"counts": [8.761904761904763, 14.473684210526315, 16.285714285714285, 14.04, 11.222222222222221, 18.4, 13.833333333333334, 14.435483870967742, 17.793650793650794, 57.57142857142857, 0], "total": 16.52463768115942, "isTopResearch": false, "rank": 375, "sp500_rank": 123}}, "patents": {"ai_patents": {"counts": [3, 3, 16, 22, 28, 43, 75, 85, 38, 0, 0], "total": 313, "table": null, "rank": 74, "sp500_rank": 58}, "ai_patents_growth": {"counts": [], "total": 47.1077888519749, "table": null, "rank": 220, "sp500_rank": 99}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [30, 30, 160, 220, 280, 430, 750, 850, 380, 0, 0], "total": 3130, "table": null, "rank": 74, "sp500_rank": 58}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 1, 1, 0, 3, 2, 1, 0, 0, 0], "total": 8, "table": null, "rank": 59, "sp500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 1, 3, 1, 1, 0, 0], "total": 7, "table": null, "rank": 104, "sp500_rank": 68}, "Security__eg_cybersecurity": {"counts": [1, 0, 0, 0, 1, 2, 1, 1, 2, 0, 0], "total": 8, "table": null, "rank": 103, "sp500_rank": 73}, "Transportation": {"counts": [3, 3, 16, 16, 22, 31, 34, 29, 21, 0, 0], "total": 175, "table": "industry", "rank": 17, "sp500_rank": 13}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0], "total": 6, "table": null, "rank": 94, "sp500_rank": 65}, "Education": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 1, 0, 2, 4, 7, 12, 13, 4, 0, 0], "total": 44, "table": "industry", "rank": 129, "sp500_rank": 79}, "Banking_and_Finance": {"counts": [0, 0, 1, 3, 0, 2, 4, 4, 3, 0, 0], "total": 17, "table": "industry", "rank": 53, "sp500_rank": 43}, "Telecommunications": {"counts": [0, 0, 3, 3, 5, 8, 10, 10, 4, 0, 0], "total": 43, "table": "industry", "rank": 86, "sp500_rank": 64}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 1, 1, 1, 2, 3, 2, 0, 0, 0], "total": 10, "table": null, "rank": 149, "sp500_rank": 101}, "Energy_Management": {"counts": [0, 1, 3, 4, 4, 2, 3, 7, 1, 0, 0], "total": 25, "table": "industry", "rank": 26, "sp500_rank": 23}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0], "total": 3, "table": null, "rank": 139, "sp500_rank": 81}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 2, 3, 1, 2, 0, 0, 0], "total": 8, "table": null, "rank": 88, "sp500_rank": 59}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 1, 1, 2, 2, 2, 0, 0, 0], "total": 9, "table": "application", "rank": 134, "sp500_rank": 94}, "Control": {"counts": [3, 3, 14, 16, 17, 21, 24, 19, 10, 0, 0], "total": 127, "table": "application", "rank": 29, "sp500_rank": 23}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 4, 6, 7, 12, 24, 15, 7, 0, 0], "total": 75, "table": "application", "rank": 85, "sp500_rank": 58}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 2, 1, 4, 8, 4, 0, 0], "total": 19, "table": "application", "rank": 69, "sp500_rank": 54}, "Measuring_and_Testing": {"counts": [1, 1, 6, 6, 11, 9, 9, 13, 5, 0, 0], "total": 61, "table": "application", "rank": 40, "sp500_rank": 30}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1569, "rank": 276, "sp500_rank": 150}, "ai_jobs": {"counts": null, "total": 89, "rank": 362, "sp500_rank": 191}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 2412, "country": "United States", "website": "https://www.mcdonalds.com/us/en-us.html", "crunchbase": {"text": "ba283768-df4f-49bc-b001-bca7ca6911ee", "url": "https://www.crunchbase.com/organization/mcdonalds"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mcdonald's-corporation"], "stage": "Mature", "name": "McDonald's Corp.", "patent_name": "mcdonald's corp.", "continent": "North America", "local_logo": "mcdonald's_corp.png", "aliases": "McDonald's; Mcdonald'S Corp; Mcdonald'S Corporation", "permid_links": [{"text": 4295904499, "url": "https://permid.org/1-4295904499"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MCD", "url": "https://www.google.com/finance/quote/mcd:nyse"}], "market_full": [{"text": "NYSE:MCD", "url": "https://www.google.com/finance/quote/mcd:nyse"}, {"text": "STU:MDO", "url": "https://www.google.com/finance/quote/mdo:stu"}, {"text": "SGO:MCD", "url": "https://www.google.com/finance/quote/mcd:sgo"}, {"text": "BER:MDO", "url": "https://www.google.com/finance/quote/ber:mdo"}, {"text": "HAN:MDO", "url": "https://www.google.com/finance/quote/han:mdo"}, {"text": "GER:MDOX", "url": "https://www.google.com/finance/quote/ger:mdox"}, {"text": "FRA:MDO", "url": "https://www.google.com/finance/quote/fra:mdo"}, {"text": "DEU:MCD", "url": "https://www.google.com/finance/quote/deu:mcd"}, {"text": "SGO:MCDCL", "url": "https://www.google.com/finance/quote/mcdcl:sgo"}, {"text": "DUS:MDO", "url": "https://www.google.com/finance/quote/dus:mdo"}, {"text": "VIE:MCD", "url": "https://www.google.com/finance/quote/mcd:vie"}, {"text": "BRN:MDO", "url": "https://www.google.com/finance/quote/brn:mdo"}, {"text": "MCX:MCD-RM", "url": "https://www.google.com/finance/quote/mcd-rm:mcx"}, {"text": "ASE:MCD", "url": "https://www.google.com/finance/quote/ase:mcd"}, {"text": "HAM:MDO", "url": "https://www.google.com/finance/quote/ham:mdo"}, {"text": "MUN:MDO", "url": "https://www.google.com/finance/quote/mdo:mun"}, {"text": "SWX:MCD", "url": "https://www.google.com/finance/quote/mcd:swx"}, {"text": "NYQ:MCD", "url": "https://www.google.com/finance/quote/mcd:nyq"}, {"text": "MEX:MCD*", "url": "https://www.google.com/finance/quote/mcd*:mex"}, {"text": "UAX:MCD", "url": "https://www.google.com/finance/quote/mcd:uax"}, {"text": "LSE:0R16", "url": "https://www.google.com/finance/quote/0r16:lse"}, {"text": "BUE:MCD3", "url": "https://www.google.com/finance/quote/bue:mcd3"}, {"text": "SAO:MCDC34", "url": "https://www.google.com/finance/quote/mcdc34:sao"}], "crunchbase_description": "McDonalds CO Ltd is a Food Company that offers the best quality of food and is famous all over the world.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 6, 6, 2, 0, 2, 1, 0, 8, 0, 0], "total": 25, "isTopResearch": false, "rank": 754, "fortune500_rank": 269}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1563, "rank": 277, "fortune500_rank": 156}, "ai_jobs": {"counts": null, "total": 145, "rank": 277, "fortune500_rank": 148}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "McDonald's Corporation is an American fast food company, founded in 1940 as a restaurant operated by Richard and Maurice McDonald, in San Bernardino, California, United States. They rechristened their business as a hamburger stand, and later turned the company into a franchise, with the Golden Arches logo being introduced in 1953 at a location in Phoenix, Arizona. In 1955, Ray Kroc, a businessman, joined the company as a franchise agent and proceeded to purchase the chain from the McDonald brothers. McDonald's had its previous headquarters in Oak Brook, Illinois, but moved its global headquarters to Chicago in June 2018.", "wikipedia_link": "https://en.wikipedia.org/wiki/McDonald%27s", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2239, "country": "United States", "website": "https://www.chrobinson.com/", "crunchbase": {"text": "7a79bb67-ba9e-6695-ea98-51143ca8947a", "url": "https://www.crunchbase.com/organization/c-h-robinson"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/c-h-robinson"], "stage": "Mature", "name": "C. H. Robinson Worldwide", "patent_name": "c. h. robinson worldwide", "continent": "North America", "local_logo": "c_h_robinson_worldwide.png", "aliases": "C.H. Robinson; C.H. Robinson Worldwide, Inc; CH Robinson Worldwide Inc", "permid_links": [{"text": 4295905810, "url": "https://permid.org/1-4295905810"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CHRW", "url": "https://www.google.com/finance/quote/chrw:nasdaq"}], "market_full": [{"text": "HAN:CH1A", "url": "https://www.google.com/finance/quote/ch1a:han"}, {"text": "BER:CH1A", "url": "https://www.google.com/finance/quote/ber:ch1a"}, {"text": "MUN:CH1A", "url": "https://www.google.com/finance/quote/ch1a:mun"}, {"text": "SAO:C1HR34", "url": "https://www.google.com/finance/quote/c1hr34:sao"}, {"text": "STU:CH1A", "url": "https://www.google.com/finance/quote/ch1a:stu"}, {"text": "DUS:CH1A", "url": "https://www.google.com/finance/quote/ch1a:dus"}, {"text": "LSE:0HQW", "url": "https://www.google.com/finance/quote/0hqw:lse"}, {"text": "DEU:CHRW", "url": "https://www.google.com/finance/quote/chrw:deu"}, {"text": "NASDAQ:CHRW", "url": "https://www.google.com/finance/quote/chrw:nasdaq"}, {"text": "BRN:CH1A", "url": "https://www.google.com/finance/quote/brn:ch1a"}, {"text": "HAM:CH1A", "url": "https://www.google.com/finance/quote/ch1a:ham"}, {"text": "FRA:CH1A", "url": "https://www.google.com/finance/quote/ch1a:fra"}, {"text": "GER:CH1X.A", "url": "https://www.google.com/finance/quote/ch1x.a:ger"}, {"text": "MCX:CHRW", "url": "https://www.google.com/finance/quote/chrw:mcx"}], "crunchbase_description": "C.H. Robinson helps companies simplify their global supply chains and understand their landed costs.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105, "fortune500_rank": 368}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1554, "rank": 278, "fortune500_rank": 157}, "ai_jobs": {"counts": null, "total": 153, "rank": 270, "fortune500_rank": 143}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "C.H. Robinson is an American Fortune 500 provider of multimodal transportation services and third-party logistics (3PL). The company offers freight transportation, transportation management, brokerage and warehousing. It offers truckload, less than truckload, air freight, intermodal, and ocean transportation", "wikipedia_link": "https://en.wikipedia.org/wiki/C._H._Robinson", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1895, "country": "United States", "website": "https://www.prudential.com/", "crunchbase": {"text": " 16045545-aab3-f3e7-f1c7-6b64ec20b1ea", "url": " https://www.crunchbase.com/organization/prudential-financial"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/prudential-financial"], "stage": "Mature", "name": "Prudential Financial", "patent_name": "Prudential Financial", "continent": "North America", "local_logo": null, "aliases": "Prudential Financial; The Prudential Insurance Company Of America", "permid_links": [{"text": 4295901925, "url": "https://permid.org/1-4295901925"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PFH", "url": "https://www.google.com/finance/quote/NYSE:PFH"}, {"text": "NYSE:PRS", "url": "https://www.google.com/finance/quote/NYSE:PRS"}, {"text": "NYSE:PRU", "url": "https://www.google.com/finance/quote/NYSE:PRU"}], "market_full": [{"text": "DUS:PLL", "url": "https://www.google.com/finance/quote/DUS:PLL"}, {"text": "NYSE:PFH", "url": "https://www.google.com/finance/quote/NYSE:PFH"}, {"text": "VIE:PRU", "url": "https://www.google.com/finance/quote/PRU:VIE"}, {"text": "DEU:PUFCX", "url": "https://www.google.com/finance/quote/DEU:PUFCX"}, {"text": "NYQ:PFH", "url": "https://www.google.com/finance/quote/NYQ:PFH"}, {"text": "NYSE:PRS", "url": "https://www.google.com/finance/quote/NYSE:PRS"}, {"text": "ASE:PRU", "url": "https://www.google.com/finance/quote/ASE:PRU"}, {"text": "MCX:PRU-RM", "url": "https://www.google.com/finance/quote/MCX:PRU-RM"}, {"text": "BRN:PLL", "url": "https://www.google.com/finance/quote/BRN:PLL"}, {"text": "MUN:PLL", "url": "https://www.google.com/finance/quote/MUN:PLL"}, {"text": "SAO:P1DT34", "url": "https://www.google.com/finance/quote/P1DT34:SAO"}, {"text": "FRA:PLL", "url": "https://www.google.com/finance/quote/FRA:PLL"}, {"text": "HAN:PLL", "url": "https://www.google.com/finance/quote/HAN:PLL"}, {"text": "STU:PLL", "url": "https://www.google.com/finance/quote/PLL:STU"}, {"text": "ASE:PRS", "url": "https://www.google.com/finance/quote/ASE:PRS"}, {"text": "BER:PLL", "url": "https://www.google.com/finance/quote/BER:PLL"}, {"text": "GER:PLLX", "url": "https://www.google.com/finance/quote/GER:PLLX"}, {"text": "NYQ:PRS", "url": "https://www.google.com/finance/quote/NYQ:PRS"}, {"text": "MEX:PRU", "url": "https://www.google.com/finance/quote/MEX:PRU"}, {"text": "ASE:PFH", "url": "https://www.google.com/finance/quote/ASE:PFH"}, {"text": "LSE:0KRX", "url": "https://www.google.com/finance/quote/0KRX:LSE"}, {"text": "NYQ:PRU", "url": "https://www.google.com/finance/quote/NYQ:PRU"}, {"text": "NYSE:PRU", "url": "https://www.google.com/finance/quote/NYSE:PRU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 10, 13, 6, 8, 1, 4, 3, 1, 0, 0], "total": 46, "isTopResearch": false, "rank": 633, "sp500_rank": 334, "fortune500_rank": 237}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1553, "rank": 279, "sp500_rank": 151, "fortune500_rank": 158}, "ai_jobs": {"counts": null, "total": 154, "rank": 267, "sp500_rank": 161, "fortune500_rank": 141}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 76, "country": "China", "website": "https://www.didiglobal.com/#/", "crunchbase": {"text": "eab915a8-f414-64e0-5138-c5f341596a5b", "url": "https://www.crunchbase.com/organization/didi-dache"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/didiglobal"], "stage": "Mature", "name": "Didi Chuxing", "patent_name": "didi chuxing", "continent": "Asia", "local_logo": "didi_chuxing.png", "aliases": "Didi Chuxing; Didi Chuxing Technology Co; Didi Chuxing Technology Co Ltd; \u5317\u4eac\u5c0f\u6854\u79d1\u6280\u6709\u9650\u516c\u53f8; \u6ef4\u6ef4; \u6ef4\u6ef4\u51fa\u884c", "permid_links": [{"text": 5061034199, "url": "https://permid.org/1-5061034199"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Didi is a mobile platform that offers app-based transportation services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 9}, {"field_name": "Feature (computer vision)", "field_count": 9}, {"field_name": "Deep learning", "field_count": 7}, {"field_name": "Convolutional neural network", "field_count": 4}, {"field_name": "Automatic summarization", "field_count": 4}, {"field_name": "Robustness (computer science)", "field_count": 3}, {"field_name": "Bayesian network", "field_count": 2}, {"field_name": "Unsupervised learning", "field_count": 2}, {"field_name": "Time series", "field_count": 2}, {"field_name": "Face (geometry)", "field_count": 2}], "clusters": [{"cluster_id": 12979, "cluster_count": 16}, {"cluster_id": 1027, "cluster_count": 9}, {"cluster_id": 981, "cluster_count": 7}, {"cluster_id": 1989, "cluster_count": 4}, {"cluster_id": 214, "cluster_count": 4}, {"cluster_id": 38398, "cluster_count": 4}, {"cluster_id": 11891, "cluster_count": 4}, {"cluster_id": 50955, "cluster_count": 3}, {"cluster_id": 23307, "cluster_count": 3}, {"cluster_id": 1206, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 344}, {"ref_CSET_id": 163, "referenced_count": 268}, {"ref_CSET_id": 87, "referenced_count": 155}, {"ref_CSET_id": 76, "referenced_count": 95}, {"ref_CSET_id": 115, "referenced_count": 44}, {"ref_CSET_id": 223, "referenced_count": 41}, {"ref_CSET_id": 245, "referenced_count": 37}, {"ref_CSET_id": 6, "referenced_count": 34}, {"ref_CSET_id": 37, "referenced_count": 32}, {"ref_CSET_id": 1126, "referenced_count": 29}], "tasks": [{"referent": "classification", "task_count": 23}, {"referent": "classification_tasks", "task_count": 8}, {"referent": "domain_adaptation", "task_count": 7}, {"referent": "object_detection", "task_count": 7}, {"referent": "system_identification", "task_count": 6}, {"referent": "autonomous_driving", "task_count": 6}, {"referent": "vehicle_detection", "task_count": 6}, {"referent": "decision_making", "task_count": 5}, {"referent": "face_recognition", "task_count": 4}, {"referent": "spatio_temporal_forecasting", "task_count": 4}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 18}, {"referent": "3d_representations", "method_count": 17}, {"referent": "reinforcement_learning", "method_count": 17}, {"referent": "1d_cnn", "method_count": 13}, {"referent": "q_learning", "method_count": 13}, {"referent": "convolutional_neural_networks", "method_count": 11}, {"referent": "double_q_learning", "method_count": 10}, {"referent": "deep_belief_network", "method_count": 9}, {"referent": "symbolic_deep_learning", "method_count": 8}, {"referent": "twin_networks", "method_count": 8}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 2, 4, 24, 54, 71, 59, 24, 0], "total": 238, "isTopResearch": false, "rank": 388}, "ai_publications": {"counts": [0, 0, 0, 2, 3, 12, 38, 47, 38, 9, 0], "total": 149, "isTopResearch": false, "rank": 96}, "ai_publications_growth": {"counts": [], "total": -23.92683837252706, "isTopResearch": false, "rank": 1360}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 1, 6, 18, 28, 14, 2, 0], "total": 70, "isTopResearch": false, "rank": 36}, "citation_counts": {"counts": [0, 0, 0, 2, 17, 78, 374, 938, 1520, 1105, 49], "total": 4083, "isTopResearch": false, "rank": 81}, "cv_pubs": {"counts": [0, 0, 0, 1, 1, 3, 13, 17, 15, 3, 0], "total": 53, "isTopResearch": true, "rank": 79}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 2, 4, 7, 3, 0, 0], "total": 16, "isTopResearch": true, "rank": 76}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 1.0, 5.666666666666667, 6.5, 9.842105263157896, 19.95744680851064, 40.0, 122.77777777777777, 0], "total": 27.40268456375839, "isTopResearch": false, "rank": 213}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 3, 52, 58, 54, 17, 7, 0, 0], "total": 192, "table": null, "rank": 105}, "ai_patents_growth": {"counts": [], "total": -21.2922029013983, "table": null, "rank": 1464}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 30, 520, 580, 540, 170, 70, 0, 0], "total": 1920, "table": null, "rank": 105}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0], "total": 5, "table": null, "rank": 122}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0], "total": 4, "table": null, "rank": 141}, "Transportation": {"counts": [0, 0, 1, 1, 22, 11, 8, 3, 1, 0, 0], "total": 47, "table": "industry", "rank": 45}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 131}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 20}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 2, 12, 16, 13, 5, 2, 0, 0], "total": 51, "table": "industry", "rank": 115}, "Banking_and_Finance": {"counts": [0, 0, 1, 0, 4, 4, 0, 0, 3, 0, 0], "total": 12, "table": "industry", "rank": 67}, "Telecommunications": {"counts": [0, 0, 1, 1, 21, 29, 14, 6, 0, 0, 0], "total": 72, "table": "industry", "rank": 56}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 0, 1, 3, 28, 25, 17, 6, 0, 0, 0], "total": 80, "table": "industry", "rank": 36}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 4, 4, 7, 2, 0, 0, 0], "total": 17, "table": "application", "rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 4, 3, 0, 0, 0, 0, 0], "total": 8, "table": null, "rank": 88}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 3, 23, 18, 13, 5, 0, 0, 0], "total": 63, "table": "application", "rank": 29}, "Control": {"counts": [0, 0, 1, 1, 8, 8, 6, 4, 0, 0, 0], "total": 28, "table": "application", "rank": 75}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 13, 25, 11, 4, 5, 0, 0], "total": 58, "table": "application", "rank": 105}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 1, 1, 21, 10, 9, 3, 1, 0, 0], "total": 46, "table": "application", "rank": 47}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1549, "rank": 280}, "ai_jobs": {"counts": null, "total": 565, "rank": 99}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "Didi Chuxing Technology Co., , formerly named Didi Dache (\u5600\u5600\u6253\u8f66) and Didi Kuaidi (Chinese: \u6ef4\u6ef4\u5feb\u7684), is a Chinese vehicle for hire company headquartered in Beijing with over 550 million users and tens of millions of drivers. The company provides app-based transportation services, including taxi hailing, private car hailing, social ride-sharing and bike sharing; on-demand delivery services; and automobile services, including sales, leasing, financing, maintenance, fleet operation, electric vehicle charging and co-development of vehicles with automakers.", "wikipedia_link": "https://en.wikipedia.org/wiki/DiDi", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2347, "country": "United States", "website": "https://www.thehartford.com/", "crunchbase": {"text": "b58bfdc2-265a-c2c5-2156-4f2f8a98c92b", "url": "https://www.crunchbase.com/organization/the-hartford"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-hartford"], "stage": "Mature", "name": "Hartford Financial Svc.Gp.", "patent_name": "hartford financial svc.gp.", "continent": "North America", "local_logo": "hartford_financial_svcgp.png", "aliases": "Hartford Financial Services Group Inc; Hartford Investment Management Co; The Hartford; The Hartford Financial Services Group, Inc", "permid_links": [{"text": 4295904141, "url": "https://permid.org/1-4295904141"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HIG", "url": "https://www.google.com/finance/quote/hig:nyse"}], "market_full": [{"text": "STU:HFF", "url": "https://www.google.com/finance/quote/hff:stu"}, {"text": "BRN:HFF", "url": "https://www.google.com/finance/quote/brn:hff"}, {"text": "GER:HFFX", "url": "https://www.google.com/finance/quote/ger:hffx"}, {"text": "NYSE:HIG", "url": "https://www.google.com/finance/quote/hig:nyse"}, {"text": "DEU:HIG", "url": "https://www.google.com/finance/quote/deu:hig"}, {"text": "FRA:HFF", "url": "https://www.google.com/finance/quote/fra:hff"}, {"text": "ASE:HIG", "url": "https://www.google.com/finance/quote/ase:hig"}, {"text": "MUN:HFF", "url": "https://www.google.com/finance/quote/hff:mun"}, {"text": "DUS:HFF", "url": "https://www.google.com/finance/quote/dus:hff"}, {"text": "HAN:HFF", "url": "https://www.google.com/finance/quote/han:hff"}, {"text": "BER:HFF", "url": "https://www.google.com/finance/quote/ber:hff"}, {"text": "NYQ:HIG", "url": "https://www.google.com/finance/quote/hig:nyq"}, {"text": "LSE:0J3H", "url": "https://www.google.com/finance/quote/0j3h:lse"}, {"text": "SAO:H1IG34", "url": "https://www.google.com/finance/quote/h1ig34:sao"}, {"text": "MOEX:HIG-RM", "url": "https://www.google.com/finance/quote/hig-rm:moex"}], "crunchbase_description": "The Hartford is an industry leading provider of property and casualty insurance, group benefits and mutual funds.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1547, "rank": 281, "fortune500_rank": 159}, "ai_jobs": {"counts": null, "total": 323, "rank": 171, "fortune500_rank": 93}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "The Hartford Financial Services Group, Inc., usually known as The Hartford, is a United States-based investment and insurance company. The Hartford is a Fortune 500 company headquartered in its namesake city of Hartford, Connecticut. It was ranked 160th in Fortune 500 in the year of 2020. The company's earnings are divided between property-and-casualty operations, group benefits and mutual funds.", "wikipedia_link": "https://en.wikipedia.org/wiki/The_Hartford", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2874, "country": "Sweden", "website": "https://saabgroup.com/", "crunchbase": {"text": "7bef182e-9145-8a5a-978c-963f1ae67113", "url": "https://www.crunchbase.com/organization/saab?utm_source=crunchbase&utm_medium=export&utm_campaign=odm_csv"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/saab"], "stage": "Mature", "name": "Saab Ab", "patent_name": "saab ab", "continent": "Europe", "local_logo": "saab_ab.png", "aliases": "Saabgroup", "permid_links": [{"text": 4295890182, "url": "https://permid.org/1-4295890182"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:SAAB B", "url": "https://www.google.com/finance/quote/nasdaq:saab b"}], "market_full": [{"text": "NASDAQ:SAAB B", "url": "https://www.google.com/finance/quote/nasdaq:saab b"}, {"text": "LSE:0GWL", "url": "https://www.google.com/finance/quote/0gwl:lse"}], "crunchbase_description": "Saab serves the global market with world-leading products, services, and solutions from military defence to civil security.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Anomaly detection", "field_count": 4}, {"field_name": "Tracking (particle physics)", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Inertial measurement unit", "field_count": 2}, {"field_name": "Pose", "field_count": 1}, {"field_name": "Swarm behaviour", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Smoothing", "field_count": 1}], "clusters": [{"cluster_id": 26096, "cluster_count": 4}, {"cluster_id": 59392, "cluster_count": 2}, {"cluster_id": 56590, "cluster_count": 2}, {"cluster_id": 37124, "cluster_count": 2}, {"cluster_id": 32715, "cluster_count": 2}, {"cluster_id": 887, "cluster_count": 2}, {"cluster_id": 51385, "cluster_count": 2}, {"cluster_id": 37872, "cluster_count": 2}, {"cluster_id": 5845, "cluster_count": 2}, {"cluster_id": 44977, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 28}, {"ref_CSET_id": 87, "referenced_count": 16}, {"ref_CSET_id": 163, "referenced_count": 14}, {"ref_CSET_id": 2874, "referenced_count": 8}, {"ref_CSET_id": 245, "referenced_count": 3}, {"ref_CSET_id": 6, "referenced_count": 3}, {"ref_CSET_id": 1126, "referenced_count": 2}, {"ref_CSET_id": 800, "referenced_count": 2}, {"ref_CSET_id": 21, "referenced_count": 2}, {"ref_CSET_id": 694, "referenced_count": 2}], "tasks": [{"referent": "autonomous_navigation", "task_count": 7}, {"referent": "classification", "task_count": 5}, {"referent": "target_recognition", "task_count": 4}, {"referent": "video_surveillance", "task_count": 3}, {"referent": "system_identification", "task_count": 3}, {"referent": "hybrid_positioning", "task_count": 3}, {"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "sar", "task_count": 2}, {"referent": "safety_perception_recognition", "task_count": 2}, {"referent": "unmanned_aerial_vehicles", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "vqa_models", "method_count": 3}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "cgnn", "method_count": 2}, {"referent": "reinforcement_learning", "method_count": 2}, {"referent": "impala", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "sm3", "method_count": 2}, {"referent": "transformer_xl", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [56, 62, 51, 50, 51, 38, 75, 43, 63, 76, 5], "total": 570, "isTopResearch": false, "rank": 259}, "ai_publications": {"counts": [5, 6, 6, 3, 4, 3, 7, 3, 5, 4, 0], "total": 46, "isTopResearch": false, "rank": 191}, "ai_publications_growth": {"counts": [], "total": -3.4920634920634916, "isTopResearch": false, "rank": 1226}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [16, 21, 35, 29, 40, 41, 69, 120, 168, 123, 7], "total": 669, "isTopResearch": false, "rank": 235}, "cv_pubs": {"counts": [2, 0, 2, 0, 0, 1, 1, 0, 1, 1, 0], "total": 8, "isTopResearch": true, "rank": 229}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [1, 1, 3, 2, 3, 1, 3, 1, 1, 1, 0], "total": 17, "isTopResearch": true, "rank": 85}, "citations_per_article": {"counts": [3.2, 3.5, 5.833333333333333, 9.666666666666666, 10.0, 13.666666666666666, 9.857142857142858, 40.0, 33.6, 30.75, 0], "total": 14.543478260869565, "isTopResearch": false, "rank": 414}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1544, "rank": 282}, "ai_jobs": {"counts": null, "total": 14, "rank": 775}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Saab AB (originally About this soundSvenska Aeroplan AB, later just SAAB and Saab Group) is a Swedish aerospace and defence company, founded in 1937. Saab produced automobiles from 1947 until 1990 when the automobile division was spun off as Saab Automobile, a joint venture with General Motors. The joint venture ended in 2000 when GM took complete ownership. Between 1968 and 1995 the company was in a merger with commercial vehicle manufacturer Scania-Vabis, known as Saab-Scania. The two were de-merged in 1995 by the new owners, Investor AB. Despite the demerger, both Saab and Scania share the right to use the griffin logo, which originates from the coat of arms of the Swedish region of Scania.", "wikipedia_link": "https://en.wikipedia.org/wiki/Saab_AB", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2288, "country": "United States", "website": "https://www.dish.com/", "crunchbase": {"text": "b86db88a-10c4-0bdd-b470-614de0e2632d", "url": "https://www.crunchbase.com/organization/dish-network"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dish-network"], "stage": "Mature", "name": "Dish Network", "patent_name": "dish network", "continent": "North America", "local_logo": "dish_network.png", "aliases": "DISH Network Corp; Dish; Dish Network Corporation; Dish Network L.L.C", "permid_links": [{"text": 4295906251, "url": "https://permid.org/1-4295906251"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:DISH", "url": "https://www.google.com/finance/quote/dish:nasdaq"}], "market_full": [{"text": "MOEX:DISH-RM", "url": "https://www.google.com/finance/quote/dish-rm:moex"}, {"text": "MEX:DISH", "url": "https://www.google.com/finance/quote/dish:mex"}, {"text": "VIE:DISH", "url": "https://www.google.com/finance/quote/dish:vie"}, {"text": "NASDAQ:DISH", "url": "https://www.google.com/finance/quote/dish:nasdaq"}], "crunchbase_description": "DISH Network provides television entertainment and technology to customers with its satellite DISH TV and streaming SLING TV services.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Chatbot", "field_count": 1}], "clusters": [{"cluster_id": 69431, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "conversational_response_selection", "task_count": 1}], "methods": [{"referent": "memory_network", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "awd_lstm", "method_count": 1}, {"referent": "language_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 0, 1, 0, 0, 0, 0, 0, 3, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030, "fortune500_rank": 349}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 12, 0], "total": 13, "isTopResearch": false, "rank": 733, "fortune500_rank": 197}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1.0, 0, 0], "total": 13.0, "isTopResearch": false, "rank": 445, "fortune500_rank": 138}}, "patents": {"ai_patents": {"counts": [0, 2, 2, 1, 3, 7, 7, 11, 4, 0, 0], "total": 37, "table": null, "rank": 249, "fortune500_rank": 79}, "ai_patents_growth": {"counts": [], "total": 63.492063492063494, "table": null, "rank": 168, "fortune500_rank": 39}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 20, 20, 10, 30, 70, 70, 110, 40, 0, 0], "total": 370, "table": null, "rank": 249, "fortune500_rank": 79}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 193, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 133, "fortune500_rank": 42}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 1, 2, 0, 3, 2, 0, 0], "total": 9, "table": "industry", "rank": 268, "fortune500_rank": 97}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 2, 0, 0], "total": 4, "table": "industry", "rank": 115, "fortune500_rank": 41}, "Telecommunications": {"counts": [0, 2, 2, 1, 3, 4, 5, 8, 4, 0, 0], "total": 29, "table": "industry", "rank": 112, "fortune500_rank": 46}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 1, 2, 1, 0, 0], "total": 5, "table": "industry", "rank": 213, "fortune500_rank": 72}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 160, "fortune500_rank": 48}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 190, "fortune500_rank": 67}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 2, 2, 1, 1, 0, 2, 4, 2, 0, 0], "total": 14, "table": "application", "rank": 92, "fortune500_rank": 40}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1540, "rank": 283, "fortune500_rank": 160}, "ai_jobs": {"counts": null, "total": 183, "rank": 238, "fortune500_rank": 127}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "DISH Network Corporation is an American television provider based in Englewood, Colorado.:1 It is the owner of the direct-broadcast satellite provider DISH, also still commonly known as DISH Network, and the over-the-top IPTV service Sling TV. DISH also operates DISH Wireless to offer mobile wireless service, currently offering prepaid service to 9.055 million customers with the purchase of Boost Mobile on July 1, 2020 through the Boost brand. DISH intends to offer postpaid service as well in the future. The company has approximately 16,000 employees.", "wikipedia_link": "https://en.wikipedia.org/wiki/Dish_Network", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1492, "country": "United States", "website": "http://www.merck.com", "crunchbase": {"text": "2f9b212a-d3aa-a8c2-6317-516127c8ba88", "url": "https://www.crunchbase.com/organization/merck-co-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/merck"], "stage": "Mature", "name": "Merck", "patent_name": "merck", "continent": "North America", "local_logo": "merck.png", "aliases": "Merck Group, Merck & Co", "permid_links": [{"text": 4295904886, "url": "https://permid.org/1-4295904886"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MRK", "url": "https://www.google.com/finance/quote/mrk:nyse"}], "market_full": [{"text": "HAN:6MK", "url": "https://www.google.com/finance/quote/6mk:han"}, {"text": "BUE:MRK3", "url": "https://www.google.com/finance/quote/bue:mrk3"}, {"text": "BRN:6MK", "url": "https://www.google.com/finance/quote/6mk:brn"}, {"text": "GER:6MKX", "url": "https://www.google.com/finance/quote/6mkx:ger"}, {"text": "BUE:DMRK23", "url": "https://www.google.com/finance/quote/bue:dmrk23"}, {"text": "PAR:MRK", "url": "https://www.google.com/finance/quote/mrk:par"}, {"text": "SGO:MRK", "url": "https://www.google.com/finance/quote/mrk:sgo"}, {"text": "MEX:MRK*", "url": "https://www.google.com/finance/quote/mex:mrk*"}, {"text": "STU:6MK", "url": "https://www.google.com/finance/quote/6mk:stu"}, {"text": "FRA:6MK", "url": "https://www.google.com/finance/quote/6mk:fra"}, {"text": "DEU:MRK", "url": "https://www.google.com/finance/quote/deu:mrk"}, {"text": "SAO:MRCK34", "url": "https://www.google.com/finance/quote/mrck34:sao"}, {"text": "ASE:MRK", "url": "https://www.google.com/finance/quote/ase:mrk"}, {"text": "DUS:6MK", "url": "https://www.google.com/finance/quote/6mk:dus"}, {"text": "HAM:6MK", "url": "https://www.google.com/finance/quote/6mk:ham"}, {"text": "MCX:MRK-RM", "url": "https://www.google.com/finance/quote/mcx:mrk-rm"}, {"text": "EBT:MRKP", "url": "https://www.google.com/finance/quote/ebt:mrkp"}, {"text": "VIE:MRK", "url": "https://www.google.com/finance/quote/mrk:vie"}, {"text": "UAX:MRK", "url": "https://www.google.com/finance/quote/mrk:uax"}, {"text": "BER:6MK", "url": "https://www.google.com/finance/quote/6mk:ber"}, {"text": "MUN:6MK", "url": "https://www.google.com/finance/quote/6mk:mun"}, {"text": "LSE:0QAH", "url": "https://www.google.com/finance/quote/0qah:lse"}, {"text": "NYSE:MRK", "url": "https://www.google.com/finance/quote/mrk:nyse"}, {"text": "SGO:MRKCL", "url": "https://www.google.com/finance/quote/mrkcl:sgo"}, {"text": "SWX:MRK", "url": "https://www.google.com/finance/quote/mrk:swx"}], "crunchbase_description": "Merck is a biopharmaceutical company that offers medicines and vaccines for various diseases.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Feature selection", "field_count": 1}, {"field_name": "Covariate", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Semantic Web", "field_count": 1}, {"field_name": "Information extraction", "field_count": 1}, {"field_name": "Decision support system", "field_count": 1}, {"field_name": "Interpretability", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Cohen's kappa", "field_count": 1}, {"field_name": "Differential privacy", "field_count": 1}], "clusters": [{"cluster_id": 11493, "cluster_count": 3}, {"cluster_id": 29223, "cluster_count": 2}, {"cluster_id": 13641, "cluster_count": 2}, {"cluster_id": 21530, "cluster_count": 2}, {"cluster_id": 2482, "cluster_count": 2}, {"cluster_id": 27318, "cluster_count": 1}, {"cluster_id": 52846, "cluster_count": 1}, {"cluster_id": 1038, "cluster_count": 1}, {"cluster_id": 5669, "cluster_count": 1}, {"cluster_id": 10022, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 17}, {"ref_CSET_id": 1492, "referenced_count": 9}, {"ref_CSET_id": 1797, "referenced_count": 5}, {"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 23, "referenced_count": 4}, {"ref_CSET_id": 341, "referenced_count": 4}, {"ref_CSET_id": 283, "referenced_count": 2}, {"ref_CSET_id": 3116, "referenced_count": 1}, {"ref_CSET_id": 434, "referenced_count": 1}, {"ref_CSET_id": 663, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "protein_function_prediction", "task_count": 2}, {"referent": "multi_task_learning", "task_count": 2}, {"referent": "sar", "task_count": 2}, {"referent": "decision_making", "task_count": 2}, {"referent": "knowledge_base", "task_count": 2}, {"referent": "drug_discovery", "task_count": 2}, {"referent": "graph_ranking", "task_count": 2}, {"referent": "interpretability_techniques_for_deep_learning", "task_count": 1}, {"referent": "conversational_response_selection", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 7}, {"referent": "vqa_models", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "self_supervised_learning", "method_count": 3}, {"referent": "metrix", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "compact_global_descriptor", "method_count": 2}, {"referent": "natural_language_processing", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [402, 381, 379, 449, 495, 608, 543, 558, 576, 388, 2], "total": 4781, "isTopResearch": false, "rank": 70, "sp500_rank": 61, "fortune500_rank": 23}, "ai_publications": {"counts": [1, 4, 1, 0, 3, 1, 5, 0, 9, 3, 0], "total": 27, "isTopResearch": false, "rank": 260, "sp500_rank": 155, "fortune500_rank": 78}, "ai_publications_growth": {"counts": [], "total": -83.33333333333334, "isTopResearch": false, "rank": 1540, "sp500_rank": 442, "fortune500_rank": 437}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [41, 77, 92, 104, 116, 119, 159, 243, 313, 305, 10], "total": 1579, "isTopResearch": false, "rank": 160, "sp500_rank": 94, "fortune500_rank": 48}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102, "fortune500_rank": 54}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [41.0, 19.25, 92.0, 0, 38.666666666666664, 119.0, 31.8, 0, 34.77777777777778, 101.66666666666667, 0], "total": 58.48148148148148, "isTopResearch": false, "rank": 76, "sp500_rank": 12, "fortune500_rank": 17}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 2, 1, 0, 1, 1, 0, 0], "total": 6, "table": null, "rank": 487, "sp500_rank": 216, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561, "sp500_rank": 462, "fortune500_rank": 450}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 20, 10, 0, 10, 10, 0, 0], "total": 60, "table": null, "rank": 487, "sp500_rank": 216, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "sp500_rank": 131, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 38, "sp500_rank": 31, "fortune500_rank": 11}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1516, "rank": 284, "sp500_rank": 152, "fortune500_rank": 161}, "ai_jobs": {"counts": null, "total": 324, "rank": 170, "sp500_rank": 112, "fortune500_rank": 92}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "The Merck Group, branded and commonly known as Merck, is a German multinational science and technology company headquartered in Darmstadt, with about 57,000 employees and present in 66 countries. The group includes around 250 companies; the main company is Merck KGaA in Germany. The company is divided into three business lines: Healthcare, Life Sciences and Performance Materials. Merck was founded in 1668 and is the world's oldest operating chemical and pharmaceutical company, as well as one of the largest pharmaceutical companies in the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/Merck_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 635, "country": "United States", "website": "https://pinterest.com", "crunchbase": {"text": "8f83e283-e00b-8101-d79b-bf2dd6914d6e", "url": "https://www.crunchbase.com/organization/pinterest"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pinterest"], "stage": "Mature", "name": "Pinterest", "patent_name": "pinterest", "continent": "North America", "local_logo": "pinterest.png", "aliases": "Cold Brew Labs Inc; Pinterest Inc", "permid_links": [{"text": 5036190505, "url": "https://permid.org/1-5036190505"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PINS", "url": "https://www.google.com/finance/quote/nyse:pins"}], "market_full": [{"text": "MOEX:PINS-RM", "url": "https://www.google.com/finance/quote/moex:pins-rm"}, {"text": "BMV:PINS", "url": "https://www.google.com/finance/quote/bmv:pins"}, {"text": "NYSE:PINS", "url": "https://www.google.com/finance/quote/nyse:pins"}], "crunchbase_description": "Pinterest is a visual bookmarking tool for saving and discovering creative ideas.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Recommender system", "field_count": 3}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Embedding", "field_count": 3}, {"field_name": "Natural language", "field_count": 2}, {"field_name": "Feature learning", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Visual search", "field_count": 2}, {"field_name": "Conditional random field", "field_count": 1}, {"field_name": "Dimensionality reduction", "field_count": 1}, {"field_name": "Word Association", "field_count": 1}], "clusters": [{"cluster_id": 148, "cluster_count": 7}, {"cluster_id": 25062, "cluster_count": 4}, {"cluster_id": 1989, "cluster_count": 3}, {"cluster_id": 5273, "cluster_count": 2}, {"cluster_id": 5070, "cluster_count": 2}, {"cluster_id": 5760, "cluster_count": 2}, {"cluster_id": 26274, "cluster_count": 2}, {"cluster_id": 1206, "cluster_count": 1}, {"cluster_id": 66016, "cluster_count": 1}, {"cluster_id": 27589, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 164}, {"ref_CSET_id": 163, "referenced_count": 92}, {"ref_CSET_id": 87, "referenced_count": 59}, {"ref_CSET_id": 115, "referenced_count": 33}, {"ref_CSET_id": 635, "referenced_count": 25}, {"ref_CSET_id": 23, "referenced_count": 21}, {"ref_CSET_id": 245, "referenced_count": 20}, {"ref_CSET_id": 21, "referenced_count": 19}, {"ref_CSET_id": 6, "referenced_count": 17}, {"ref_CSET_id": 792, "referenced_count": 15}], "tasks": [{"referent": "recommendation", "task_count": 9}, {"referent": "recommendation_systems", "task_count": 6}, {"referent": "entity_embeddings", "task_count": 4}, {"referent": "classification", "task_count": 3}, {"referent": "time_series", "task_count": 2}, {"referent": "clustering", "task_count": 2}, {"referent": "code_search", "task_count": 2}, {"referent": "environmental_sound_classification", "task_count": 2}, {"referent": "graph_embedding", "task_count": 2}, {"referent": "sequential_recommendation", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "3d_representations", "method_count": 6}, {"referent": "topic_embeddings", "method_count": 5}, {"referent": "q_learning", "method_count": 4}, {"referent": "optimization", "method_count": 4}, {"referent": "fcn", "method_count": 3}, {"referent": "ggs_nns", "method_count": 3}, {"referent": "clustering", "method_count": 3}, {"referent": "attention_mechanisms", "method_count": 3}, {"referent": "1d_cnn", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 2, 7, 12, 14, 14, 11, 24, 13, 21, 0], "total": 119, "isTopResearch": false, "rank": 483}, "ai_publications": {"counts": [0, 1, 3, 4, 4, 7, 4, 16, 9, 7, 0], "total": 55, "isTopResearch": false, "rank": 172}, "ai_publications_growth": {"counts": [], "total": 78.00925925925925, "isTopResearch": false, "rank": 33}, "ai_pubs_top_conf": {"counts": [0, 0, 4, 3, 5, 4, 3, 11, 1, 3, 0], "total": 34, "isTopResearch": false, "rank": 52}, "citation_counts": {"counts": [0, 0, 0, 15, 40, 82, 274, 656, 992, 770, 30], "total": 2859, "isTopResearch": false, "rank": 103}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 3, 0, 5, 5, 1, 0], "total": 15, "isTopResearch": true, "rank": 163}, "nlp_pubs": {"counts": [0, 0, 1, 0, 0, 2, 0, 3, 0, 2, 0], "total": 8, "isTopResearch": true, "rank": 110}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0.0, 0.0, 3.75, 10.0, 11.714285714285714, 68.5, 41.0, 110.22222222222223, 110.0, 0], "total": 51.981818181818184, "isTopResearch": false, "rank": 91}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 3, 2, 5, 1, 1, 0, 0], "total": 13, "table": null, "rank": 372}, "ai_patents_growth": {"counts": [], "total": 12.22222222222222, "table": null, "rank": 324}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 30, 20, 50, 10, 10, 0, 0], "total": 130, "table": null, "rank": 372}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 2, 2, 4, 0, 1, 0, 0], "total": 10, "table": "industry", "rank": 261}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 277}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 233}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1507, "rank": 285}, "ai_jobs": {"counts": null, "total": 287, "rank": 189}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Pinterest is an American image sharing and social media service designed to enable saving and discovery of information (specifically \"ideas\") on the internet using images and, on a smaller scale, animated GIFs and videos, in the form of pinboards. The site was created by Ben Silbermann, Paul Sciarra, and Evan Sharp and had over 400 million monthly active users as of August 2020. It is operated by Pinterest, Inc., based in San Francisco.", "wikipedia_link": "https://en.wikipedia.org/wiki/Pinterest", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2767, "country": "United States", "website": "https://www.serco.com/", "crunchbase": {"text": "3caa0578-6077-f781-d07b-cee7f4f73895", "url": "https://www.crunchbase.com/organization/serco"}, "child_crunchbase": [{"text": "e41df808-46f2-0644-b8ce-dfaffee56fd8", "url": "https://www.crunchbase.com/organization/wbb"}], "linkedin": ["https://www.linkedin.com/company/serco", "https://www.linkedin.com/company/wbbinc"], "stage": "Mature", "name": "Serco Group PLC", "patent_name": "serco group plc", "continent": "North America", "local_logo": "serco_group_plc.png", "aliases": "Serco; Serco Inc; Serco Plc", "permid_links": [{"text": 4295898751, "url": "https://permid.org/1-4295898751"}, {"text": 4297824227, "url": "https://permid.org/1-4297824227"}], "parent_info": null, "agg_child_info": "Whitney Bradley & Brown Inc", "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:SRP", "url": "https://www.google.com/finance/quote/lse:srp"}, {"text": "BER:SEO", "url": "https://www.google.com/finance/quote/ber:seo"}, {"text": "MUN:SEO", "url": "https://www.google.com/finance/quote/mun:seo"}, {"text": "DEU:SRP", "url": "https://www.google.com/finance/quote/deu:srp"}, {"text": "FRA:SEO", "url": "https://www.google.com/finance/quote/fra:seo"}, {"text": "BRN:SEO", "url": "https://www.google.com/finance/quote/brn:seo"}, {"text": "DUS:SEO", "url": "https://www.google.com/finance/quote/dus:seo"}, {"text": "STU:SEO", "url": "https://www.google.com/finance/quote/seo:stu"}, {"text": "PKC:SCGPY", "url": "https://www.google.com/finance/quote/pkc:scgpy"}, {"text": "PKC:SECCF", "url": "https://www.google.com/finance/quote/pkc:seccf"}], "crunchbase_description": "Serco is a provider of professional, technology, and management services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Conditional random field", "field_count": 1}], "clusters": [{"cluster_id": 15221, "cluster_count": 1}, {"cluster_id": 16015, "cluster_count": 1}, {"cluster_id": 15823, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "image_analysis", "task_count": 1}, {"referent": "sequential_pattern_mining", "task_count": 1}, {"referent": "remote_sensing", "task_count": 1}, {"referent": "cloud_detection", "task_count": 1}, {"referent": "action_quality_assessment", "task_count": 1}, {"referent": "sar", "task_count": 1}, {"referent": "multi_task_learning", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "gan_feature_matching", "method_count": 1}, {"referent": "procan", "method_count": 1}, {"referent": "discriminators", "method_count": 1}, {"referent": "pixelcnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [18, 12, 7, 15, 11, 21, 15, 5, 19, 3, 0], "total": 126, "isTopResearch": false, "rank": 476}, "ai_publications": {"counts": [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 2, 1, 1, 3, 1, 6, 2, 0, 0], "total": 16, "isTopResearch": false, "rank": 704}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 1.0, 0, 0, 0, 0, 0, 0], "total": 8.0, "isTopResearch": false, "rank": 595}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1498, "rank": 286}, "ai_jobs": {"counts": null, "total": 221, "rank": 220}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Serco Group plc is a British company with headquarters based in Hook, Hampshire, England. Serco manages over 500 contracts worldwide. The company employs over 50,000 people. Serco operates in the following sectors of public service provision: Health, Transport, Justice, Immigration, Defence, and Citizens Services. Serco primarily derives income as a contractor from the provision of government services.", "wikipedia_link": "https://en.wikipedia.org/wiki/Serco", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 410, "country": "United States", "website": "https://databricks.com", "crunchbase": {"text": "b70eee8a-83db-997a-509c-464724b37278", "url": "https://www.crunchbase.com/organization/databricks"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/databricks"], "stage": "Mature", "name": "Databricks", "patent_name": "databricks", "continent": "North America", "local_logo": "databricks.png", "aliases": "Databricks, Inc", "permid_links": [{"text": 5040256649, "url": "https://permid.org/1-5040256649"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Databricks is a data and AI company that interacts with corporate information stored in the public cloud.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Feature vector", "field_count": 1}, {"field_name": "Singular value decomposition", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}], "clusters": [{"cluster_id": 40901, "cluster_count": 2}, {"cluster_id": 81326, "cluster_count": 1}, {"cluster_id": 1745, "cluster_count": 1}, {"cluster_id": 23094, "cluster_count": 1}, {"cluster_id": 11659, "cluster_count": 1}, {"cluster_id": 3378, "cluster_count": 1}, {"cluster_id": 1149, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 792, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 410, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "classification_tasks", "task_count": 2}, {"referent": "collaborative_filtering", "task_count": 1}, {"referent": "als", "task_count": 1}, {"referent": "matrix_completion", "task_count": 1}, {"referent": "low_rank_compression", "task_count": 1}, {"referent": "end_to_end_speech_recognition", "task_count": 1}, {"referent": "jsoniq_query_execution", "task_count": 1}, {"referent": "incremental_learning", "task_count": 1}, {"referent": "sports_analytics", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 2}, {"referent": "mad_learning", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "stochastic_optimization", "method_count": 1}, {"referent": "generalized_linear_models", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "softplus", "method_count": 1}, {"referent": "ghm_r", "method_count": 1}, {"referent": "als", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 4, 12, 9, 6, 9, 6, 7, 12, 5, 0], "total": 70, "isTopResearch": false, "rank": 566}, "ai_publications": {"counts": [0, 0, 2, 1, 1, 1, 0, 1, 1, 1, 0], "total": 8, "isTopResearch": false, "rank": 455}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [1, 3, 37, 142, 321, 359, 430, 336, 292, 91, 1], "total": 2013, "isTopResearch": false, "rank": 135}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 18.5, 142.0, 321.0, 359.0, 0, 336.0, 292.0, 91.0, 0], "total": 251.625, "isTopResearch": false, "rank": 8}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 10, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1496, "rank": 287}, "ai_jobs": {"counts": null, "total": 166, "rank": 255}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Databricks is a company founded by the original creators of Apache Spark. Databricks grew out of the AMPLab project at University of California, Berkeley that was involved in making Apache Spark, an open-source distributed computing framework built atop Scala. Databricks develops a web-based platform for working with Spark, that provides automated cluster management and IPython-style notebooks. In addition to building the Databricks platform, the company is co-organizing massive open online courses about Spark and runs the largest conference about Spark - Spark Summit.", "wikipedia_link": "https://en.wikipedia.org/wiki/Databricks", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1960, "country": "Switzerland", "website": "https://www.zurich.com/", "crunchbase": {"text": " cf1007bc-3107-edfd-2a89-6e8cf7311e15 ", "url": " https://www.crunchbase.com/organization/zurich-insurance-group "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/zurich-insurance-company-ltd"], "stage": "Mature", "name": "Zurich Insurance Group", "patent_name": "Zurich Insurance Group", "continent": "Europe", "local_logo": null, "aliases": "Zurich Financial Services Ltd; Zurich Insurance Group", "permid_links": [{"text": 4295890717, "url": "https://permid.org/1-4295890717"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MEX:ZURNN", "url": "https://www.google.com/finance/quote/MEX:ZURNN"}, {"text": "MUN:ZFI1", "url": "https://www.google.com/finance/quote/MUN:ZFI1"}, {"text": "BER:ZFIN", "url": "https://www.google.com/finance/quote/BER:ZFIN"}, {"text": "FRA:ZFI1", "url": "https://www.google.com/finance/quote/FRA:ZFI1"}, {"text": "STU:ZFIN", "url": "https://www.google.com/finance/quote/STU:ZFIN"}, {"text": "QXI:ZURVY", "url": "https://www.google.com/finance/quote/QXI:ZURVY"}, {"text": "LSE:0QP2", "url": "https://www.google.com/finance/quote/0QP2:LSE"}, {"text": "BER:ZFI1", "url": "https://www.google.com/finance/quote/BER:ZFI1"}, {"text": "BRN:ZFIN", "url": "https://www.google.com/finance/quote/BRN:ZFIN"}, {"text": "SWX:ZURN", "url": "https://www.google.com/finance/quote/SWX:ZURN"}, {"text": "DEU:ZURN", "url": "https://www.google.com/finance/quote/DEU:ZURN"}, {"text": "STU:ZFI1", "url": "https://www.google.com/finance/quote/STU:ZFI1"}, {"text": "FRA:ZFIN", "url": "https://www.google.com/finance/quote/FRA:ZFIN"}, {"text": "QXI:ZFSVF", "url": "https://www.google.com/finance/quote/QXI:ZFSVF"}, {"text": "HAM:ZFIN", "url": "https://www.google.com/finance/quote/HAM:ZFIN"}, {"text": "DEU:ZFI1", "url": "https://www.google.com/finance/quote/DEU:ZFI1"}, {"text": "MUN:ZFIN", "url": "https://www.google.com/finance/quote/MUN:ZFIN"}, {"text": "DUS:ZFIN", "url": "https://www.google.com/finance/quote/DUS:ZFIN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Random forest", "field_count": 1}, {"field_name": "Curse of dimensionality", "field_count": 1}], "clusters": [{"cluster_id": 10008, "cluster_count": 1}, {"cluster_id": 24950, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 1960, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "voice_conversion", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "carafe", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "wfst", "method_count": 1}, {"referent": "generalized_linear_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [3, 1, 1, 6, 4, 3, 2, 2, 1, 0, 0], "total": 23, "isTopResearch": false, "rank": 777, "sp500_rank": 365}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 2, 0, 0], "total": 6, "isTopResearch": false, "rank": 805, "sp500_rank": 329}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 3.0, 0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779, "sp500_rank": 312}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1493, "rank": 288, "sp500_rank": 153}, "ai_jobs": {"counts": null, "total": 239, "rank": 213, "sp500_rank": 138}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 281, "country": "China", "website": "http://www.mi.com/en/", "crunchbase": {"text": "1ac25206-3b8a-b4a6-48b3-5df4b671e586", "url": "https://www.crunchbase.com/organization/xiaomi"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/xiaomi-technology"], "stage": "Mature", "name": "Xiaomi", "patent_name": "xiaomi", "continent": "Asia", "local_logo": "xiaomi.png", "aliases": "Mi; Xiaomi Corporation; Xiaomi Inc; Xiaomi Keji; Xiaomin Inc; \u5317\u4eac\u5c0f\u7c73\u79d1\u6280\u6709\u9650\u8d23\u4efb\u516c\u53f8; \u5c0f\u7c73; \u5c0f\u7c73\u79d1\u6280", "permid_links": [{"text": 5001435979, "url": "https://permid.org/1-5001435979"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:1810", "url": "https://www.google.com/finance/quote/1810:hkg"}], "market_full": [{"text": "BER:3CP", "url": "https://www.google.com/finance/quote/3cp:ber"}, {"text": "HAM:3CP", "url": "https://www.google.com/finance/quote/3cp:ham"}, {"text": "DUS:3CP", "url": "https://www.google.com/finance/quote/3cp:dus"}, {"text": "BMV:1810/N", "url": "https://www.google.com/finance/quote/1810/n:bmv"}, {"text": "MUN:3CP", "url": "https://www.google.com/finance/quote/3cp:mun"}, {"text": "OTC:XIACF", "url": "https://www.google.com/finance/quote/otc:xiacf"}, {"text": "HAN:3CP", "url": "https://www.google.com/finance/quote/3cp:han"}, {"text": "HKG:1810", "url": "https://www.google.com/finance/quote/1810:hkg"}, {"text": "FWB:3CP", "url": "https://www.google.com/finance/quote/3cp:fwb"}], "crunchbase_description": "Xiaomi is an electronics and software company that focuses on mobile devices and technology.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 6}, {"field_name": "Convolutional neural network", "field_count": 5}, {"field_name": "Cluster analysis", "field_count": 4}, {"field_name": "Keyword spotting", "field_count": 4}, {"field_name": "Recommender system", "field_count": 4}, {"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Feature learning", "field_count": 3}, {"field_name": "Question answering", "field_count": 3}, {"field_name": "Language model", "field_count": 3}, {"field_name": "Reinforcement learning", "field_count": 3}], "clusters": [{"cluster_id": 1989, "cluster_count": 9}, {"cluster_id": 148, "cluster_count": 6}, {"cluster_id": 3886, "cluster_count": 6}, {"cluster_id": 9819, "cluster_count": 5}, {"cluster_id": 3527, "cluster_count": 5}, {"cluster_id": 6386, "cluster_count": 5}, {"cluster_id": 16472, "cluster_count": 5}, {"cluster_id": 25609, "cluster_count": 4}, {"cluster_id": 1206, "cluster_count": 4}, {"cluster_id": 1193, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 509}, {"ref_CSET_id": 163, "referenced_count": 299}, {"ref_CSET_id": 87, "referenced_count": 140}, {"ref_CSET_id": 112, "referenced_count": 90}, {"ref_CSET_id": 281, "referenced_count": 85}, {"ref_CSET_id": 245, "referenced_count": 84}, {"ref_CSET_id": 115, "referenced_count": 72}, {"ref_CSET_id": 37, "referenced_count": 63}, {"ref_CSET_id": 21, "referenced_count": 58}, {"ref_CSET_id": 161, "referenced_count": 36}], "tasks": [{"referent": "classification", "task_count": 12}, {"referent": "classification_tasks", "task_count": 8}, {"referent": "speech_recognition", "task_count": 5}, {"referent": "recommendation", "task_count": 5}, {"referent": "question_answering", "task_count": 5}, {"referent": "image_matching", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "action_generation", "task_count": 4}, {"referent": "graph_embedding", "task_count": 4}, {"referent": "relation_classification", "task_count": 4}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 15}, {"referent": "attention_mechanisms", "method_count": 12}, {"referent": "3d_representations", "method_count": 11}, {"referent": "generative_adversarial_networks", "method_count": 9}, {"referent": "vqa_models", "method_count": 9}, {"referent": "convolutional_neural_networks", "method_count": 9}, {"referent": "bp_transformer", "method_count": 9}, {"referent": "attention", "method_count": 8}, {"referent": "q_learning", "method_count": 8}, {"referent": "autoencoder", "method_count": 7}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 4, 5, 11, 31, 56, 64, 71, 4], "total": 246, "isTopResearch": false, "rank": 382, "sp500_rank": 241}, "ai_publications": {"counts": [0, 0, 0, 1, 1, 7, 29, 46, 45, 24, 1], "total": 154, "isTopResearch": false, "rank": 92, "sp500_rank": 70}, "ai_publications_growth": {"counts": [], "total": 3.260036648342497, "isTopResearch": false, "rank": 186, "sp500_rank": 94}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 4, 12, 12, 13, 0], "total": 42, "isTopResearch": false, "rank": 46, "sp500_rank": 25}, "citation_counts": {"counts": [0, 0, 0, 0, 2, 21, 117, 357, 813, 632, 23], "total": 1965, "isTopResearch": false, "rank": 139, "sp500_rank": 85}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 10, 16, 7, 11, 0], "total": 45, "isTopResearch": true, "rank": 91, "sp500_rank": 62}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 3, 7, 23, 22, 5, 0], "total": 61, "isTopResearch": true, "rank": 42, "sp500_rank": 32}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 2.0, 3.0, 4.0344827586206895, 7.760869565217392, 18.066666666666666, 26.333333333333332, 23.0], "total": 12.75974025974026, "isTopResearch": false, "rank": 453, "sp500_rank": 156}}, "patents": {"ai_patents": {"counts": [2, 6, 31, 36, 75, 27, 66, 116, 58, 41, 0], "total": 458, "table": null, "rank": 61, "sp500_rank": 49}, "ai_patents_growth": {"counts": [], "total": 52.06734006734007, "table": null, "rank": 196, "sp500_rank": 93}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [20, 60, 310, 360, 750, 270, 660, 1160, 580, 410, 0], "total": 4580, "table": null, "rank": 61, "sp500_rank": 49}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 1, 1, 2, 1, 0, 2, 1, 1, 1, 0], "total": 10, "table": "industry", "rank": 90, "sp500_rank": 65}, "Transportation": {"counts": [1, 0, 1, 3, 2, 1, 1, 1, 0, 3, 0], "total": 13, "table": "industry", "rank": 86, "sp500_rank": 67}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 2, 3, 0, 0, 1, 0, 0, 0], "total": 6, "table": null, "rank": 94, "sp500_rank": 65}, "Education": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [0, 3, 11, 6, 7, 4, 27, 49, 24, 4, 0], "total": 135, "table": "industry", "rank": 61, "sp500_rank": 45}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 1, 9, 3, 5, 5, 9, 26, 8, 1, 0], "total": 67, "table": "industry", "rank": 63, "sp500_rank": 52}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [0, 2, 4, 2, 0, 3, 2, 1, 1, 0, 0], "total": 15, "table": "industry", "rank": 123, "sp500_rank": 87}, "Energy_Management": {"counts": [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 119, "sp500_rank": 94}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0], "total": 3, "table": null, "rank": 37, "sp500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 0], "total": 5, "table": null, "rank": 56, "sp500_rank": 41}, "Speech_Processing": {"counts": [0, 0, 1, 1, 2, 0, 1, 15, 9, 4, 0], "total": 33, "table": "application", "rank": 32, "sp500_rank": 24}, "Knowledge_Representation": {"counts": [0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 162, "sp500_rank": 88}, "Planning_and_Scheduling": {"counts": [0, 2, 3, 0, 0, 0, 1, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 163, "sp500_rank": 110}, "Control": {"counts": [0, 0, 2, 3, 2, 1, 1, 0, 1, 0, 0], "total": 10, "table": "application", "rank": 137, "sp500_rank": 96}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14}, "Computer_Vision": {"counts": [0, 2, 14, 19, 39, 17, 31, 52, 31, 16, 0], "total": 221, "table": "application", "rank": 39, "sp500_rank": 29}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 0, 1, 0], "total": 4, "table": null, "rank": 173, "sp500_rank": 114}, "Measuring_and_Testing": {"counts": [1, 0, 1, 1, 1, 2, 1, 6, 4, 1, 0], "total": 18, "table": "application", "rank": 91, "sp500_rank": 68}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1491, "rank": 289, "sp500_rank": 154}, "ai_jobs": {"counts": null, "total": 109, "rank": 324, "sp500_rank": 177}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Xiaomi Communications Co., Ltd. is a Chinese multinational electronics company founded in April 2010 and headquartered in Beijing. Xiaomi makes and invests in smartphones, mobile apps, laptops, home appliances, bags, shoes, consumer electronics, and many other products. Xiaomi is also the fourth company globally after Apple, Samsung and Huawei to have self-developed mobile system-on-chip (SoC) capabilities.", "wikipedia_link": "https://en.wikipedia.org/wiki/Xiaomi", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1963, "country": "United States", "website": "https://hcahealthcare.com/", "crunchbase": {"text": " 9f3d2c46-8b20-4933-9d5e-f042a53c3a5d", "url": " https://www.crunchbase.com/organization/hca-midamerica-division"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hca"], "stage": "Mature", "name": "Hca Healthcare", "patent_name": "HCA Healthcare", "continent": "North America", "local_logo": null, "aliases": "HCA Healthcare; Hca Holdings, Inc; Hca Management Services, L.P; Healthcare Corp Of America; Hospital Corporation Of America", "permid_links": [{"text": 5001208951, "url": "https://permid.org/1-5001208951"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HCA", "url": "https://www.google.com/finance/quote/HCA:NYSE"}], "market_full": [{"text": "BRN:2BH", "url": "https://www.google.com/finance/quote/2BH:BRN"}, {"text": "NYQ:HCA", "url": "https://www.google.com/finance/quote/HCA:NYQ"}, {"text": "DUS:2BH", "url": "https://www.google.com/finance/quote/2BH:DUS"}, {"text": "FRA:2BH", "url": "https://www.google.com/finance/quote/2BH:FRA"}, {"text": "MCX:HCA-RM", "url": "https://www.google.com/finance/quote/HCA-RM:MCX"}, {"text": "NYSE:HCA", "url": "https://www.google.com/finance/quote/HCA:NYSE"}, {"text": "SAO:H1CA34", "url": "https://www.google.com/finance/quote/H1CA34:SAO"}, {"text": "STU:2BH", "url": "https://www.google.com/finance/quote/2BH:STU"}, {"text": "LSE:0J1R", "url": "https://www.google.com/finance/quote/0J1R:LSE"}, {"text": "ASE:HCA", "url": "https://www.google.com/finance/quote/ASE:HCA"}, {"text": "MUN:2BH", "url": "https://www.google.com/finance/quote/2BH:MUN"}, {"text": "DEU:HCA", "url": "https://www.google.com/finance/quote/DEU:HCA"}, {"text": "MEX:HCA", "url": "https://www.google.com/finance/quote/HCA:MEX"}, {"text": "BER:2BH", "url": "https://www.google.com/finance/quote/2BH:BER"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [{"cluster_id": 13295, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 2, 1, 0, 4, 16, 17, 55, 152, 117, 2], "total": 366, "isTopResearch": false, "rank": 330, "sp500_rank": 214, "fortune500_rank": 125}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 901, "sp500_rank": 355, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1.0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "sp500_rank": 345, "fortune500_rank": 237}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606, "sp500_rank": 248, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 20, 0, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606, "sp500_rank": 248, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1489, "rank": 290, "sp500_rank": 155, "fortune500_rank": 162}, "ai_jobs": {"counts": null, "total": 119, "rank": 308, "sp500_rank": 172, "fortune500_rank": 168}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment"}, {"cset_id": 1836, "country": "Spain", "website": "https://www.santander.com/", "crunchbase": {"text": " 24d90ba6-166d-1d57-0013-0a22c48a177d", "url": " https://www.crunchbase.com/organization/banco-santander"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/banco-santander"], "stage": "Mature", "name": "Banco Santander", "patent_name": "Banco Santander", "continent": "Europe", "local_logo": null, "aliases": "Banco Santander; Banco Santander, S.A; Santander Bancorp", "permid_links": [{"text": 8589934205, "url": "https://permid.org/1-8589934205"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SAN", "url": "https://www.google.com/finance/quote/NYSE:SAN"}], "market_full": [{"text": "HAN:BSD2", "url": "https://www.google.com/finance/quote/BSD2:HAN"}, {"text": "FRA:BSDK", "url": "https://www.google.com/finance/quote/BSDK:FRA"}, {"text": "BRU:SANTA", "url": "https://www.google.com/finance/quote/BRU:SANTA"}, {"text": "MCE:SAN", "url": "https://www.google.com/finance/quote/MCE:SAN"}, {"text": "GER:BSD2X", "url": "https://www.google.com/finance/quote/BSD2X:GER"}, {"text": "NYQ:SAN", "url": "https://www.google.com/finance/quote/NYQ:SAN"}, {"text": "WSE:SAN", "url": "https://www.google.com/finance/quote/SAN:WSE"}, {"text": "FRA:BSD2", "url": "https://www.google.com/finance/quote/BSD2:FRA"}, {"text": "BER:BSD2", "url": "https://www.google.com/finance/quote/BER:BSD2"}, {"text": "STU:BSD2", "url": "https://www.google.com/finance/quote/BSD2:STU"}, {"text": "DEU:BSDK", "url": "https://www.google.com/finance/quote/BSDK:DEU"}, {"text": "VIE:SAN", "url": "https://www.google.com/finance/quote/SAN:VIE"}, {"text": "DUS:BSD2", "url": "https://www.google.com/finance/quote/BSD2:DUS"}, {"text": "DEU:SAN", "url": "https://www.google.com/finance/quote/DEU:SAN"}, {"text": "MEX:SAN*", "url": "https://www.google.com/finance/quote/MEX:SAN*"}, {"text": "BRN:BSD2", "url": "https://www.google.com/finance/quote/BRN:BSD2"}, {"text": "LSE:BNC", "url": "https://www.google.com/finance/quote/BNC:LSE"}, {"text": "MIL:SANT", "url": "https://www.google.com/finance/quote/MIL:SANT"}, {"text": "LSE:0HLE", "url": "https://www.google.com/finance/quote/0HLE:LSE"}, {"text": "NYSE:SAN", "url": "https://www.google.com/finance/quote/NYSE:SAN"}, {"text": "STU:BSDK", "url": "https://www.google.com/finance/quote/BSDK:STU"}, {"text": "BUE:SAN3", "url": "https://www.google.com/finance/quote/BUE:SAN3"}, {"text": "PKC:BCDRF", "url": "https://www.google.com/finance/quote/BCDRF:PKC"}, {"text": "BER:BSDK", "url": "https://www.google.com/finance/quote/BER:BSDK"}, {"text": "HAM:BSD2", "url": "https://www.google.com/finance/quote/BSD2:HAM"}, {"text": "ASE:SAN", "url": "https://www.google.com/finance/quote/ASE:SAN"}, {"text": "MUN:BSD2", "url": "https://www.google.com/finance/quote/BSD2:MUN"}, {"text": "EBT:SANE", "url": "https://www.google.com/finance/quote/EBT:SANe"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [{"cluster_id": 37202, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [9, 7, 7, 7, 10, 10, 15, 20, 13, 6, 0], "total": 104, "isTopResearch": false, "rank": 508, "sp500_rank": 293}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 901, "sp500_rank": 355}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "sp500_rank": 345}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1477, "rank": 291, "sp500_rank": 156}, "ai_jobs": {"counts": null, "total": 385, "rank": 147, "sp500_rank": 97}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2341, "country": "United States", "website": "https://www.globalpaymentsinc.com/", "crunchbase": {"text": "3a8089a8-8d35-f535-ff04-25030fd53625", "url": "https://www.crunchbase.com/organization/global-payments"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/global-payments"], "stage": "Mature", "name": "Global Payments Inc.", "patent_name": "global payments inc.", "continent": "North America", "local_logo": "global_payments_inc.png", "aliases": "Global Payments; Global Payments (Nyse: Gpn); Global Payments Direct, Inc; Global Payments Inc", "permid_links": [{"text": 4295900281, "url": "https://permid.org/1-4295900281"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:GPN", "url": "https://www.google.com/finance/quote/gpn:nyse"}], "market_full": [{"text": "NYQ:GPN", "url": "https://www.google.com/finance/quote/gpn:nyq"}, {"text": "FRA:GLO", "url": "https://www.google.com/finance/quote/fra:glo"}, {"text": "NYSE:GPN", "url": "https://www.google.com/finance/quote/gpn:nyse"}, {"text": "GER:GLOX", "url": "https://www.google.com/finance/quote/ger:glox"}, {"text": "LSE:0IW7", "url": "https://www.google.com/finance/quote/0iw7:lse"}, {"text": "MOEX:GPN-RM", "url": "https://www.google.com/finance/quote/gpn-rm:moex"}, {"text": "SAO:G1PI34", "url": "https://www.google.com/finance/quote/g1pi34:sao"}, {"text": "MUN:GLO", "url": "https://www.google.com/finance/quote/glo:mun"}, {"text": "MEX:GPN*", "url": "https://www.google.com/finance/quote/gpn*:mex"}, {"text": "STU:GLO", "url": "https://www.google.com/finance/quote/glo:stu"}, {"text": "BRN:GLO", "url": "https://www.google.com/finance/quote/brn:glo"}, {"text": "BER:GLO", "url": "https://www.google.com/finance/quote/ber:glo"}, {"text": "VIE:GPN", "url": "https://www.google.com/finance/quote/gpn:vie"}, {"text": "ASE:GPN", "url": "https://www.google.com/finance/quote/ase:gpn"}, {"text": "DEU:GPN", "url": "https://www.google.com/finance/quote/deu:gpn"}, {"text": "DUS:GLO", "url": "https://www.google.com/finance/quote/dus:glo"}], "crunchbase_description": "Global Payments offers transaction processing services through their high-speed, robust electronic information networks.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1474, "rank": 292, "fortune500_rank": 163}, "ai_jobs": {"counts": null, "total": 67, "rank": 417, "fortune500_rank": 222}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Global Payments Inc. is an American company providing financial technology services globally. Headquartered in Atlanta, its stock is a component of the S&P 500 stock market index.", "wikipedia_link": "https://en.wikipedia.org/wiki/Global_Payments", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2083, "country": "United States", "website": "https://www.abbvie.com/", "crunchbase": {"text": " ee82b5db-06eb-97f9-7d6d-988606a471de", "url": " https://www.crunchbase.com/organization/abbvie"}, "child_crunchbase": [{"text": "3fd92a77-6fd0-6c41-86df-db8dc9fe09df", "url": "https://www.crunchbase.com/organization/allergan"}], "linkedin": ["https://www.linkedin.com/company/allergan", "https://www.linkedin.com/company/abbvie"], "stage": "Mature", "name": "AbbVie", "patent_name": "abbvie", "continent": "North America", "local_logo": null, "aliases": "Abbvie Inc", "permid_links": [{"text": 5040050523, "url": "https://permid.org/1-5040050523"}, {"text": 5037613143, "url": "https://permid.org/1-5037613143"}], "parent_info": null, "agg_child_info": "Allergan, plc", "unagg_child_info": null, "market_filt": [{"text": "NYSE:ABBV", "url": "https://www.google.com/finance/quote/ABBV:NYSE"}], "market_full": [{"text": "MEX:ABBV", "url": "https://www.google.com/finance/quote/ABBV:MEX"}, {"text": "LSE:0QCV", "url": "https://www.google.com/finance/quote/0QCV:LSE"}, {"text": "SAO:ABBV34", "url": "https://www.google.com/finance/quote/ABBV34:SAO"}, {"text": "DEU:4AB", "url": "https://www.google.com/finance/quote/4AB:DEU"}, {"text": "MUN:4AB", "url": "https://www.google.com/finance/quote/4AB:MUN"}, {"text": "VIE:ABBV", "url": "https://www.google.com/finance/quote/ABBV:VIE"}, {"text": "DUS:4AB", "url": "https://www.google.com/finance/quote/4AB:DUS"}, {"text": "STU:4AB", "url": "https://www.google.com/finance/quote/4AB:STU"}, {"text": "BRN:4AB", "url": "https://www.google.com/finance/quote/4AB:BRN"}, {"text": "NYQ:ABBV", "url": "https://www.google.com/finance/quote/ABBV:NYQ"}, {"text": "NYSE:ABBV", "url": "https://www.google.com/finance/quote/ABBV:NYSE"}, {"text": "FRA:4AB", "url": "https://www.google.com/finance/quote/4AB:FRA"}, {"text": "ASE:ABBV", "url": "https://www.google.com/finance/quote/ABBV:ASE"}, {"text": "GER:4ABX", "url": "https://www.google.com/finance/quote/4ABX:GER"}, {"text": "BUE:ABBV", "url": "https://www.google.com/finance/quote/ABBV:BUE"}, {"text": "BER:4AB", "url": "https://www.google.com/finance/quote/4AB:BER"}, {"text": "MCX:ABBV-RM", "url": "https://www.google.com/finance/quote/ABBV-RM:MCX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Digital pathology", "field_count": 3}, {"field_name": "Receiver operating characteristic", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Coordinate descent", "field_count": 1}, {"field_name": "Big data", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}], "clusters": [{"cluster_id": 41620, "cluster_count": 5}, {"cluster_id": 1683, "cluster_count": 2}, {"cluster_id": 72718, "cluster_count": 1}, {"cluster_id": 70668, "cluster_count": 1}, {"cluster_id": 34269, "cluster_count": 1}, {"cluster_id": 79750, "cluster_count": 1}, {"cluster_id": 34539, "cluster_count": 1}, {"cluster_id": 1386, "cluster_count": 1}, {"cluster_id": 36989, "cluster_count": 1}, {"cluster_id": 10728, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 27}, {"ref_CSET_id": 87, "referenced_count": 10}, {"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 1633, "referenced_count": 5}, {"ref_CSET_id": 434, "referenced_count": 4}, {"ref_CSET_id": 663, "referenced_count": 3}, {"ref_CSET_id": 1570, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 2083, "referenced_count": 3}, {"ref_CSET_id": 3108, "referenced_count": 3}], "tasks": [{"referent": "alzheimer's_disease_diagnosis", "task_count": 5}, {"referent": "adl", "task_count": 4}, {"referent": "parkinson_'s_disease", "task_count": 4}, {"referent": "drug_discovery", "task_count": 3}, {"referent": "developmental_learning", "task_count": 3}, {"referent": "image_analysis", "task_count": 3}, {"referent": "histopathological_segmentation", "task_count": 2}, {"referent": "community_detection", "task_count": 2}, {"referent": "disease_detection", "task_count": 2}, {"referent": "variable_selection", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 5}, {"referent": "csgld", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "taypo", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "image_scaling_strategies", "method_count": 1}, {"referent": "bpnet", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [681, 835, 950, 1011, 1114, 1243, 1141, 1108, 1060, 944, 4], "total": 10091, "isTopResearch": false, "rank": 36, "sp500_rank": 32, "fortune500_rank": 12}, "ai_publications": {"counts": [4, 0, 0, 4, 2, 2, 5, 3, 6, 2, 0], "total": 28, "isTopResearch": false, "rank": 254, "sp500_rank": 152, "fortune500_rank": 76}, "ai_publications_growth": {"counts": [], "total": -2.2222222222222237, "isTopResearch": false, "rank": 1221, "sp500_rank": 292, "fortune500_rank": 351}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [24, 36, 30, 50, 74, 78, 97, 139, 157, 125, 4], "total": 814, "isTopResearch": false, "rank": 209, "sp500_rank": 118, "fortune500_rank": 65}, "cv_pubs": {"counts": [0, 0, 0, 1, 1, 0, 1, 0, 2, 1, 0], "total": 6, "isTopResearch": true, "rank": 267, "sp500_rank": 137, "fortune500_rank": 73}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115, "fortune500_rank": 61}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [6.0, 0, 0, 12.5, 37.0, 39.0, 19.4, 46.333333333333336, 26.166666666666668, 62.5, 0], "total": 29.071428571428573, "isTopResearch": false, "rank": 203, "sp500_rank": 51, "fortune500_rank": 61}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "sp500_rank": 196, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1454, "rank": 293, "sp500_rank": 157, "fortune500_rank": 164}, "ai_jobs": {"counts": null, "total": 501, "rank": 113, "sp500_rank": 71, "fortune500_rank": 63}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research"}, {"cset_id": 2053, "country": null, "website": "https://www.eon.com/", "crunchbase": {"text": "d2fc97d5-40e1-cc87-6032-f5cb41c3dc57", "url": "https://www.crunchbase.com/organization/e-on"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/e-on"], "stage": "Mature", "name": "E.On", "patent_name": "E.ON", "continent": null, "local_logo": "eon.png", "aliases": "E.ON; Eon", "permid_links": [{"text": 5057957727, "url": "https://permid.org/1-5057957727"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "GER:EOAX.N", "url": "https://www.google.com/finance/quote/EOAX.N:GER"}, {"text": "PKC:ENAKF", "url": "https://www.google.com/finance/quote/ENAKF:PKC"}, {"text": "STU:EOAA", "url": "https://www.google.com/finance/quote/EOAA:STU"}, {"text": "HAM:EOAN", "url": "https://www.google.com/finance/quote/EOAN:HAM"}, {"text": "BRU:EON", "url": "https://www.google.com/finance/quote/BRU:EON"}, {"text": "HAN:EOAN", "url": "https://www.google.com/finance/quote/EOAN:HAN"}, {"text": "MUN:EOAN", "url": "https://www.google.com/finance/quote/EOAN:MUN"}, {"text": "BER:EOAN", "url": "https://www.google.com/finance/quote/BER:EOAN"}, {"text": "FRA:EOAA", "url": "https://www.google.com/finance/quote/EOAA:FRA"}, {"text": "FRA:EOAN", "url": "https://www.google.com/finance/quote/EOAN:FRA"}, {"text": "DUS:EOAA", "url": "https://www.google.com/finance/quote/DUS:EOAA"}, {"text": "BER:EOAA", "url": "https://www.google.com/finance/quote/BER:EOAA"}, {"text": "DEU:EOAA", "url": "https://www.google.com/finance/quote/DEU:EOAA"}, {"text": "DUS:EOAN", "url": "https://www.google.com/finance/quote/DUS:EOAN"}, {"text": "DEU:EONGN", "url": "https://www.google.com/finance/quote/DEU:EONGn"}, {"text": "BUD:EON", "url": "https://www.google.com/finance/quote/BUD:EON"}, {"text": "SWX:EOAN", "url": "https://www.google.com/finance/quote/EOAN:SWX"}, {"text": "LSE:0MPP", "url": "https://www.google.com/finance/quote/0MPP:LSE"}, {"text": "BUE:EOAN3", "url": "https://www.google.com/finance/quote/BUE:EOAN3"}, {"text": "STU:EOAN", "url": "https://www.google.com/finance/quote/EOAN:STU"}, {"text": "BRN:EOAN", "url": "https://www.google.com/finance/quote/BRN:EOAN"}, {"text": "EBT:EOAND", "url": "https://www.google.com/finance/quote/EBT:EOANd"}, {"text": "PKC:EONGY", "url": "https://www.google.com/finance/quote/EONGY:PKC"}, {"text": "MEX:EOANN", "url": "https://www.google.com/finance/quote/EOANN:MEX"}, {"text": "MUN:EOAA", "url": "https://www.google.com/finance/quote/EOAA:MUN"}, {"text": "MIL:EOAN", "url": "https://www.google.com/finance/quote/EOAN:MIL"}], "crunchbase_description": "E.ON is an international, privately owned energy supplier.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Vector quantization", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Data pre-processing", "field_count": 1}], "clusters": [{"cluster_id": 24112, "cluster_count": 1}, {"cluster_id": 2561, "cluster_count": 1}, {"cluster_id": 58403, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 1784, "referenced_count": 1}, {"ref_CSET_id": 949, "referenced_count": 1}, {"ref_CSET_id": 789, "referenced_count": 1}, {"ref_CSET_id": 1924, "referenced_count": 1}, {"ref_CSET_id": 795, "referenced_count": 1}, {"ref_CSET_id": 786, "referenced_count": 1}], "tasks": [{"referent": "feature_selection", "task_count": 3}, {"referent": "data_classification", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "quantization", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "clustering", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [15, 19, 20, 20, 20, 17, 15, 16, 7, 10, 0], "total": 159, "isTopResearch": false, "rank": 446, "sp500_rank": 266}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 833, "sp500_rank": 338}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0.0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "sp500_rank": 327}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "sp500_rank": 444}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1449, "rank": 294, "sp500_rank": 158}, "ai_jobs": {"counts": null, "total": 88, "rank": 363, "sp500_rank": 192}}, "sector": "Utilities", "business_sector": "Utilities"}, {"cset_id": 2048, "country": "United States", "website": "https://www.gd.com/", "crunchbase": {"text": "71ca7b32-b98c-194e-6924-beee2ccb94b4", "url": "https://www.crunchbase.com/organization/general-dynamics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/general-dynamics"], "stage": "Mature", "name": "General Dynamics Corp", "patent_name": "general dynamics corp", "continent": "North America", "local_logo": "general_dynamics_corp.png", "aliases": "General Dynamics; General Dynamics Corporation", "permid_links": [{"text": 4295903136, "url": "https://permid.org/1-4295903136"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:GD", "url": "https://www.google.com/finance/quote/gd:nyse"}], "market_full": [{"text": "SAO:GDBR34", "url": "https://www.google.com/finance/quote/gdbr34:sao"}, {"text": "MCX:GD-RM", "url": "https://www.google.com/finance/quote/gd-rm:mcx"}, {"text": "NYSE:GD", "url": "https://www.google.com/finance/quote/gd:nyse"}, {"text": "BRN:GDX", "url": "https://www.google.com/finance/quote/brn:gdx"}, {"text": "BER:GDX", "url": "https://www.google.com/finance/quote/ber:gdx"}, {"text": "LSE:0IUC", "url": "https://www.google.com/finance/quote/0iuc:lse"}, {"text": "DEU:GD", "url": "https://www.google.com/finance/quote/deu:gd"}, {"text": "NYQ:GD", "url": "https://www.google.com/finance/quote/gd:nyq"}, {"text": "STU:GDX", "url": "https://www.google.com/finance/quote/gdx:stu"}, {"text": "FRA:GDX", "url": "https://www.google.com/finance/quote/fra:gdx"}, {"text": "MEX:GD*", "url": "https://www.google.com/finance/quote/gd*:mex"}, {"text": "HAN:GDX", "url": "https://www.google.com/finance/quote/gdx:han"}, {"text": "GER:GDXX", "url": "https://www.google.com/finance/quote/gdxx:ger"}, {"text": "ASE:GD", "url": "https://www.google.com/finance/quote/ase:gd"}, {"text": "DUS:GDX", "url": "https://www.google.com/finance/quote/dus:gdx"}, {"text": "MUN:GDX", "url": "https://www.google.com/finance/quote/gdx:mun"}, {"text": "VIE:GEDY", "url": "https://www.google.com/finance/quote/gedy:vie"}, {"text": "HAM:GDX", "url": "https://www.google.com/finance/quote/gdx:ham"}], "crunchbase_description": "General Dynamics is a defense industry contractor for shipbuilding, marine, combat and defense systems and, munitions.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Robot", "field_count": 6}, {"field_name": "Sonar", "field_count": 5}, {"field_name": "Kalman filter", "field_count": 2}, {"field_name": "Tracking (particle physics)", "field_count": 2}, {"field_name": "Autonomous agent", "field_count": 2}, {"field_name": "Motion estimation", "field_count": 2}, {"field_name": "Sensor fusion", "field_count": 2}, {"field_name": "Speckle pattern", "field_count": 1}, {"field_name": "Planner", "field_count": 1}, {"field_name": "Constant false alarm rate", "field_count": 1}], "clusters": [{"cluster_id": 23422, "cluster_count": 6}, {"cluster_id": 42213, "cluster_count": 4}, {"cluster_id": 15847, "cluster_count": 4}, {"cluster_id": 5688, "cluster_count": 4}, {"cluster_id": 68836, "cluster_count": 4}, {"cluster_id": 14837, "cluster_count": 3}, {"cluster_id": 1338, "cluster_count": 2}, {"cluster_id": 8642, "cluster_count": 2}, {"cluster_id": 52701, "cluster_count": 2}, {"cluster_id": 71138, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 2048, "referenced_count": 42}, {"ref_CSET_id": 101, "referenced_count": 12}, {"ref_CSET_id": 87, "referenced_count": 9}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 184, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 734, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 14}, {"referent": "target_recognition", "task_count": 12}, {"referent": "autonomous_navigation", "task_count": 11}, {"referent": "autonomous_vehicles", "task_count": 10}, {"referent": "robots", "task_count": 10}, {"referent": "atr", "task_count": 6}, {"referent": "mobile_robot", "task_count": 5}, {"referent": "auv", "task_count": 5}, {"referent": "unmanned_aerial_vehicles", "task_count": 4}, {"referent": "video_surveillance", "task_count": 3}], "methods": [{"referent": "double_q_learning", "method_count": 5}, {"referent": "hit_detector", "method_count": 4}, {"referent": "generative_adversarial_networks", "method_count": 3}, {"referent": "vqa_models", "method_count": 3}, {"referent": "q_learning", "method_count": 3}, {"referent": "natural_language_processing", "method_count": 2}, {"referent": "xception", "method_count": 2}, {"referent": "atmo", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [52, 37, 44, 26, 34, 38, 41, 64, 77, 64, 0], "total": 477, "isTopResearch": false, "rank": 282, "sp500_rank": 187, "fortune500_rank": 110}, "ai_publications": {"counts": [7, 3, 6, 3, 6, 5, 5, 7, 5, 4, 0], "total": 51, "isTopResearch": false, "rank": 181, "sp500_rank": 112, "fortune500_rank": 56}, "ai_publications_growth": {"counts": [], "total": -2.8571428571428577, "isTopResearch": false, "rank": 1223, "sp500_rank": 294, "fortune500_rank": 353}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [50, 56, 90, 78, 63, 85, 108, 88, 116, 95, 3], "total": 832, "isTopResearch": false, "rank": 207, "sp500_rank": 116, "fortune500_rank": 64}, "cv_pubs": {"counts": [3, 2, 2, 0, 1, 0, 2, 3, 0, 0, 0], "total": 13, "isTopResearch": true, "rank": 179, "sp500_rank": 104, "fortune500_rank": 47}, "nlp_pubs": {"counts": [1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102, "fortune500_rank": 54}, "robotics_pubs": {"counts": [2, 1, 2, 2, 2, 4, 3, 0, 1, 0, 0], "total": 17, "isTopResearch": true, "rank": 85, "sp500_rank": 63, "fortune500_rank": 24}, "citations_per_article": {"counts": [7.142857142857143, 18.666666666666668, 15.0, 26.0, 10.5, 17.0, 21.6, 12.571428571428571, 23.2, 23.75, 0], "total": 16.313725490196077, "isTopResearch": false, "rank": 380, "sp500_rank": 125, "fortune500_rank": 116}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 1, 2, 0, 1, 1, 0, 0, 0], "total": 6, "table": null, "rank": 487, "sp500_rank": 216, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "sp500_rank": 444, "fortune500_rank": 438}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 0, 10, 20, 0, 10, 10, 0, 0, 0], "total": 60, "table": null, "rank": 487, "sp500_rank": 216, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "sp500_rank": 130, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 125, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "sp500_rank": 141, "fortune500_rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1432, "rank": 295, "sp500_rank": 159, "fortune500_rank": 165}, "ai_jobs": {"counts": null, "total": 34, "rank": 564, "sp500_rank": 251, "fortune500_rank": 289}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "General Dynamics Corporation (GD) is an American aerospace and defense corporation. As of 2019, it was the fifth-largest defense contractor in the United States, and the sixth-largest in the world, by sales. The company ranked No. 92 in the 2019 Fortune 500 list of the largest United States corporations by total revenue. It is headquartered in Reston, Fairfax County, Virginia.", "wikipedia_link": "https://en.wikipedia.org/wiki/General_Dynamics", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2277, "country": "United States", "website": "http://www.cummins.com/", "crunchbase": {"text": "3abc5b64-2fc3-2715-6c88-f03d8dcbb472", "url": "https://www.crunchbase.com/organization/cummins"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cummins-inc"], "stage": "Mature", "name": "Cummins Inc", "patent_name": "cummins inc", "continent": "North America", "local_logo": "cummins_inc.png", "aliases": "Cummins; Cummins Inc", "permid_links": [{"text": 4295903829, "url": "https://permid.org/1-4295903829"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CMI", "url": "https://www.google.com/finance/quote/cmi:nyse"}], "market_full": [{"text": "DEU:CUM", "url": "https://www.google.com/finance/quote/cum:deu"}, {"text": "GER:CUMX", "url": "https://www.google.com/finance/quote/cumx:ger"}, {"text": "NYSE:CMI", "url": "https://www.google.com/finance/quote/cmi:nyse"}, {"text": "MUN:CUM", "url": "https://www.google.com/finance/quote/cum:mun"}, {"text": "VIE:CMI", "url": "https://www.google.com/finance/quote/cmi:vie"}, {"text": "HAN:CUM", "url": "https://www.google.com/finance/quote/cum:han"}, {"text": "DUS:CUM", "url": "https://www.google.com/finance/quote/cum:dus"}, {"text": "SAO:C1MI34", "url": "https://www.google.com/finance/quote/c1mi34:sao"}, {"text": "STU:CUM", "url": "https://www.google.com/finance/quote/cum:stu"}, {"text": "BER:CUM", "url": "https://www.google.com/finance/quote/ber:cum"}, {"text": "ASE:CMI", "url": "https://www.google.com/finance/quote/ase:cmi"}, {"text": "MOEX:CMI-RM", "url": "https://www.google.com/finance/quote/cmi-rm:moex"}, {"text": "LSE:0I58", "url": "https://www.google.com/finance/quote/0i58:lse"}, {"text": "MEX:CMI*", "url": "https://www.google.com/finance/quote/cmi*:mex"}, {"text": "NYQ:CMI", "url": "https://www.google.com/finance/quote/cmi:nyq"}, {"text": "BRN:CUM", "url": "https://www.google.com/finance/quote/brn:cum"}, {"text": "FRA:CUM", "url": "https://www.google.com/finance/quote/cum:fra"}], "crunchbase_description": "Cummins develops, sells, and services diesel and natural gas engines, power generation systems, and engine-related component products.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Semantic reasoner", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Prognostics", "field_count": 1}, {"field_name": "Time series", "field_count": 1}], "clusters": [{"cluster_id": 2651, "cluster_count": 1}, {"cluster_id": 7073, "cluster_count": 1}, {"cluster_id": 1105, "cluster_count": 1}, {"cluster_id": 27979, "cluster_count": 1}, {"cluster_id": 20072, "cluster_count": 1}, {"cluster_id": 9243, "cluster_count": 1}, {"cluster_id": 44849, "cluster_count": 1}, {"cluster_id": 39701, "cluster_count": 1}, {"cluster_id": 21509, "cluster_count": 1}, {"cluster_id": 5962, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 537, "referenced_count": 1}, {"ref_CSET_id": 2277, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "fault_detection", "task_count": 2}, {"referent": "feature_selection", "task_count": 1}, {"referent": "traffic_flow", "task_count": 1}, {"referent": "chemical_reaction_prediction", "task_count": 1}, {"referent": "parameter_estimation", "task_count": 1}, {"referent": "vehicle_detection", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "video_surveillance", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "highway_layer", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "latent_optimisation", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "taypo", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "linear_regression", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [50, 72, 60, 45, 62, 54, 61, 41, 63, 35, 2], "total": 545, "isTopResearch": false, "rank": 267, "fortune500_rank": 103}, "ai_publications": {"counts": [1, 2, 0, 0, 0, 0, 1, 4, 1, 1, 0], "total": 10, "isTopResearch": false, "rank": 417, "fortune500_rank": 121}, "ai_publications_growth": {"counts": [], "total": 75.0, "isTopResearch": false, "rank": 35, "fortune500_rank": 8}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [19, 19, 20, 10, 8, 20, 14, 26, 45, 61, 3], "total": 245, "isTopResearch": false, "rank": 361, "fortune500_rank": 108}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [19.0, 9.5, 0, 0, 0, 0, 14.0, 6.5, 45.0, 61.0, 0], "total": 24.5, "isTopResearch": false, "rank": 246, "fortune500_rank": 78}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 2, 3, 6, 2, 3, 1, 0, 0], "total": 18, "table": null, "rank": 337, "fortune500_rank": 112}, "ai_patents_growth": {"counts": [], "total": 27.777777777777775, "table": null, "rank": 280, "fortune500_rank": 84}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 20, 30, 60, 20, 30, 10, 0, 0], "total": 180, "table": null, "rank": 337, "fortune500_rank": 112}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "fortune500_rank": 39}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 2, 3, 1, 2, 1, 0, 0], "total": 9, "table": "industry", "rank": 102, "fortune500_rank": 27}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 3, 0, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 336, "fortune500_rank": 117}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 1, 2, 1, 3, 0, 0, 1, 0, 0], "total": 8, "table": "industry", "rank": 55, "fortune500_rank": 11}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 1, 2, 3, 5, 1, 2, 1, 0, 0], "total": 15, "table": "application", "rank": 111, "fortune500_rank": 36}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 189, "fortune500_rank": 62}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1425, "rank": 296, "fortune500_rank": 166}, "ai_jobs": {"counts": null, "total": 157, "rank": 262, "fortune500_rank": 139}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "Cummins is an American multinational corporation that designs, manufactures, and distributes engines, filtration, and power generation products. Cummins also services engines and related equipment, including fuel systems, controls, air handling, filtration, emission control, electrical power generation systems, and trucks.", "wikipedia_link": "https://en.wikipedia.org/wiki/Cummins", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2435, "country": "United States", "website": "https://investor.nordstrom.com/", "crunchbase": {"text": "16420710-f867-330f-5274-53dfdc6fcab5", "url": "https://www.crunchbase.com/organization/nordstrom"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nordstrom"], "stage": "Mature", "name": "Nordstrom", "patent_name": "nordstrom", "continent": "North America", "local_logo": "nordstrom.png", "aliases": "Nordstrom Inc; Nordstrom, Inc", "permid_links": [{"text": 4295904616, "url": "https://permid.org/1-4295904616"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:JWN", "url": "https://www.google.com/finance/quote/jwn:nyse"}], "market_full": [{"text": "DEU:NOBE", "url": "https://www.google.com/finance/quote/deu:nobe"}, {"text": "FRA:NRD", "url": "https://www.google.com/finance/quote/fra:nrd"}, {"text": "MEX:JWN*", "url": "https://www.google.com/finance/quote/jwn*:mex"}, {"text": "BER:NRD", "url": "https://www.google.com/finance/quote/ber:nrd"}, {"text": "MCX:JWN-RM", "url": "https://www.google.com/finance/quote/jwn-rm:mcx"}, {"text": "DUS:NRD", "url": "https://www.google.com/finance/quote/dus:nrd"}, {"text": "NYQ:JWN", "url": "https://www.google.com/finance/quote/jwn:nyq"}, {"text": "NYSE:JWN", "url": "https://www.google.com/finance/quote/jwn:nyse"}, {"text": "ASE:JWN", "url": "https://www.google.com/finance/quote/ase:jwn"}, {"text": "LSE:0K8J", "url": "https://www.google.com/finance/quote/0k8j:lse"}, {"text": "BRN:NRD", "url": "https://www.google.com/finance/quote/brn:nrd"}, {"text": "STU:NRD", "url": "https://www.google.com/finance/quote/nrd:stu"}, {"text": "MUN:NRD", "url": "https://www.google.com/finance/quote/mun:nrd"}, {"text": "SAO:J1WN34", "url": "https://www.google.com/finance/quote/j1wn34:sao"}], "crunchbase_description": "Nordstrom is an online fashion retailer that offers a selection of brand names and private label merchandise.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1423, "rank": 297, "fortune500_rank": 167}, "ai_jobs": {"counts": null, "total": 166, "rank": 255, "fortune500_rank": 137}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "Nordstrom, Inc. is an American luxury department store chain. Founded in 1901 by John W. Nordstrom and Carl F. Wallin, it originated as a shoe store and evolved into a full-line retailer with departments for clothing, footwear, handbags, jewelry, accessories, cosmetics, and fragrances. Some stores feature home furnishings and wedding departments, and several have in-house cafes, restaurants, and espresso bars.", "wikipedia_link": "https://en.wikipedia.org/wiki/Nordstrom", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2437, "country": "United States", "website": "https://www.northerntrust.com/", "crunchbase": {"text": "c032f86b-f871-9698-41d1-5df765293049", "url": "https://www.crunchbase.com/organization/northern-trust"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/northern-trust"], "stage": "Mature", "name": "Northern Trust Corp.", "patent_name": "northern trust corp.", "continent": "North America", "local_logo": "northern_trust_corp.png", "aliases": "Northern Trust; Northern Trust Corporation", "permid_links": [{"text": 4295907415, "url": "https://permid.org/1-4295907415"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:NTRS", "url": "https://www.google.com/finance/quote/nasdaq:ntrs"}, {"text": "NASDAQ:NTRSO", "url": "https://www.google.com/finance/quote/nasdaq:ntrso"}], "market_full": [{"text": "DEU:NTRS", "url": "https://www.google.com/finance/quote/deu:ntrs"}, {"text": "MEX:NTRS*", "url": "https://www.google.com/finance/quote/mex:ntrs*"}, {"text": "SAO:N1TR34", "url": "https://www.google.com/finance/quote/n1tr34:sao"}, {"text": "NASDAQ:NTRS", "url": "https://www.google.com/finance/quote/nasdaq:ntrs"}, {"text": "HAN:NT4", "url": "https://www.google.com/finance/quote/han:nt4"}, {"text": "BRN:NT4", "url": "https://www.google.com/finance/quote/brn:nt4"}, {"text": "FRA:NT4", "url": "https://www.google.com/finance/quote/fra:nt4"}, {"text": "DUS:NT4", "url": "https://www.google.com/finance/quote/dus:nt4"}, {"text": "BER:NT4", "url": "https://www.google.com/finance/quote/ber:nt4"}, {"text": "STU:NT4", "url": "https://www.google.com/finance/quote/nt4:stu"}, {"text": "NASDAQ:NTRSO", "url": "https://www.google.com/finance/quote/nasdaq:ntrso"}, {"text": "MCX:NTRS-RM", "url": "https://www.google.com/finance/quote/mcx:ntrs-rm"}, {"text": "LSE:0K91", "url": "https://www.google.com/finance/quote/0k91:lse"}], "crunchbase_description": "Northern Trust is a global leader in delivering innovative investment management, asset and fund administration, fiduciary and banking.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [7, 2, 3, 5, 0, 0, 3, 0, 1, 1, 0], "total": 22, "isTopResearch": false, "rank": 784, "fortune500_rank": 280}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1422, "rank": 298, "fortune500_rank": 168}, "ai_jobs": {"counts": null, "total": 113, "rank": 317, "fortune500_rank": 173}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Northern Trust Corporation is a financial services company headquartered in Chicago, Illinois that caters to corporations, institutional investors, and ultra high net worth individuals. Northern Trust is one of the largest banking institutions in the United States and one of the oldest banks in continuous operation. As of December 31, 2018, it had $1.07 trillion in assets under management and $10.13 trillion in assets under custody. Northern Trust Corporation is incorporated in Delaware.", "wikipedia_link": "https://en.wikipedia.org/wiki/Northern_Trust", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 423, "country": "United States", "website": "http://www.dropbox.com", "crunchbase": {"text": "e6449ca5-2268-5cf7-96ca-b808a234da00", "url": "https://www.crunchbase.com/organization/dropbox"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dropbox"], "stage": "Mature", "name": "Dropbox", "patent_name": "dropbox", "continent": "North America", "local_logo": "dropbox.png", "aliases": "Dropbox Inc; Dropbox, Inc", "permid_links": [{"text": 5041064108, "url": "https://permid.org/1-5041064108"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:DBX", "url": "https://www.google.com/finance/quote/dbx:nasdaq"}, {"text": "NYSE:DBX", "url": "https://www.google.com/finance/quote/dbx:nyse"}], "market_full": [{"text": "XETR:1Q5", "url": "https://www.google.com/finance/quote/1q5:xetr"}, {"text": "FWB:1Q5", "url": "https://www.google.com/finance/quote/1q5:fwb"}, {"text": "HAM:1Q5", "url": "https://www.google.com/finance/quote/1q5:ham"}, {"text": "MOEX:DBX-RM", "url": "https://www.google.com/finance/quote/dbx-rm:moex"}, {"text": "LSE:0SGO", "url": "https://www.google.com/finance/quote/0sgo:lse"}, {"text": "BMV:DBX", "url": "https://www.google.com/finance/quote/bmv:dbx"}, {"text": "DUS:1Q5", "url": "https://www.google.com/finance/quote/1q5:dus"}, {"text": "VIE:DBX", "url": "https://www.google.com/finance/quote/dbx:vie"}, {"text": "NASDAQ:DBX", "url": "https://www.google.com/finance/quote/dbx:nasdaq"}, {"text": "HAN:1Q5", "url": "https://www.google.com/finance/quote/1q5:han"}, {"text": "FRA:1Q5", "url": "https://www.google.com/finance/quote/1q5:fra"}, {"text": "MUN:1Q5", "url": "https://www.google.com/finance/quote/1q5:mun"}, {"text": "NYSE:DBX", "url": "https://www.google.com/finance/quote/dbx:nyse"}, {"text": "BER:1Q5", "url": "https://www.google.com/finance/quote/1q5:ber"}], "crunchbase_description": "Dropbox is a smart workspace company that provides secure file sharing, collaboration, and storage solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 90341, "cluster_count": 1}, {"cluster_id": 9084, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 423, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}], "tasks": [{"referent": "action_quality_assessment", "task_count": 1}, {"referent": "community_question_answering", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "user_identification", "task_count": 1}, {"referent": "question_generation", "task_count": 1}], "methods": [{"referent": "sniper", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "rainbow_dqn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 5, 6, 2, 8, 8, 3, 5, 1, 1, 0], "total": 40, "isTopResearch": false, "rank": 658}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 7, 2, 0], "total": 11, "isTopResearch": false, "rank": 754}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 7.0, 0, 0], "total": 5.5, "isTopResearch": false, "rank": 697}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 3, 1, 3, 4, 7, 0, 0, 0], "total": 20, "table": null, "rank": 323}, "ai_patents_growth": {"counts": [], "total": 102.77777777777779, "table": null, "rank": 112}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [20, 0, 0, 30, 10, 30, 40, 70, 0, 0, 0], "total": 200, "table": null, "rank": 323}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 3, 0, 2, 4, 6, 0, 0, 0], "total": 16, "table": "industry", "rank": 209}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [1, 0, 0, 0, 1, 2, 3, 2, 0, 0, 0], "total": 9, "table": "industry", "rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 78}, "Business": {"counts": [2, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 233}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 160}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 162}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 214}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1413, "rank": 299}, "ai_jobs": {"counts": null, "total": 111, "rank": 319}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Dropbox is a file hosting service operated by the American company Dropbox, Inc., headquartered in San Francisco, California, that offers cloud storage, file synchronization, personal cloud, and client software. Dropbox was founded in 2007 by MIT students Drew Houston and Arash Ferdowsi as a startup company, with initial funding from seed accelerator Y Combinator.", "wikipedia_link": "https://en.wikipedia.org/wiki/Dropbox_(service)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2425, "country": "United States", "website": "https://www.nasdaq.com/", "crunchbase": {"text": "09e0a150-f916-514c-4346-8206eea34c4a", "url": "https://www.crunchbase.com/organization/nasdaq"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nasdaq"], "stage": "Mature", "name": "Nasdaq, Inc.", "patent_name": "nasdaq, inc.", "continent": "North America", "local_logo": "nasdaq,_inc.png", "aliases": "Nasdaq", "permid_links": [{"text": 8589934167, "url": "https://permid.org/1-8589934167"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:NDAQ", "url": "https://www.google.com/finance/quote/nasdaq:ndaq"}], "market_full": [{"text": "BER:NAQ", "url": "https://www.google.com/finance/quote/ber:naq"}, {"text": "MUN:NAQ", "url": "https://www.google.com/finance/quote/mun:naq"}, {"text": "NASDAQ:NDAQ", "url": "https://www.google.com/finance/quote/nasdaq:ndaq"}, {"text": "LSE:0K4T", "url": "https://www.google.com/finance/quote/0k4t:lse"}, {"text": "SAO:N1DA34", "url": "https://www.google.com/finance/quote/n1da34:sao"}, {"text": "MEX:NDAQ", "url": "https://www.google.com/finance/quote/mex:ndaq"}, {"text": "DEU:NDAQ", "url": "https://www.google.com/finance/quote/deu:ndaq"}, {"text": "DUS:NAQ", "url": "https://www.google.com/finance/quote/dus:naq"}, {"text": "HAN:NAQ", "url": "https://www.google.com/finance/quote/han:naq"}, {"text": "FRA:NAQ", "url": "https://www.google.com/finance/quote/fra:naq"}, {"text": "BRN:NAQ", "url": "https://www.google.com/finance/quote/brn:naq"}, {"text": "STU:NAQ", "url": "https://www.google.com/finance/quote/naq:stu"}, {"text": "VIE:NDAQ", "url": "https://www.google.com/finance/quote/ndaq:vie"}, {"text": "GER:NAQX", "url": "https://www.google.com/finance/quote/ger:naqx"}, {"text": "MCX:NDAQ-RM", "url": "https://www.google.com/finance/quote/mcx:ndaq-rm"}], "crunchbase_description": "Nasdaq is a global provider of trading, clearing, exchange technology, listing, information, and public company services.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Preprocessor", "field_count": 1}], "clusters": [{"cluster_id": 48187, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "image_processing", "task_count": 1}, {"referent": "image_recognition", "task_count": 1}, {"referent": "traffic_sign_recognition", "task_count": 1}, {"referent": "action_understanding", "task_count": 1}, {"referent": "k_complex_detection", "task_count": 1}, {"referent": "image_enhancement", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 2, 4, 4, 3, 0, 4, 2, 2, 2, 0], "total": 25, "isTopResearch": false, "rank": 754, "fortune500_rank": 269}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 0, 3, 0, 1, 0, 0, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 820, "fortune500_rank": 225}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 3, 3, 2, 1, 0, 0], "total": 9, "table": null, "rank": 424, "fortune500_rank": 134}, "ai_patents_growth": {"counts": [], "total": -16.666666666666668, "table": null, "rank": 1452, "fortune500_rank": 420}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 30, 30, 20, 10, 0, 0], "total": 90, "table": null, "rank": 424, "fortune500_rank": 134}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 2, 1, 1, 1, 0, 0], "total": 5, "table": "industry", "rank": 336, "fortune500_rank": 117}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1411, "rank": 300, "fortune500_rank": 169}, "ai_jobs": {"counts": null, "total": 83, "rank": 374, "fortune500_rank": 197}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Nasdaq, Inc. is an American multinational financial services corporation that owns and operates three stock exchanges in the United States: the namesake Nasdaq stock exchange, the Philadelphia Stock Exchange, and the Boston Stock Exchange, and seven European stock exchanges: Nasdaq Copenhagen, Nasdaq Helsinki, Nasdaq Iceland, Nasdaq Riga, Nasdaq Stockholm, Nasdaq Tallinn, and Nasdaq Vilnius. It is headquartered in New York City, and its president and chief executive officer is Adena Friedman.", "wikipedia_link": "https://en.wikipedia.org/wiki/Nasdaq,_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2801, "country": "Israel", "website": "http://www.elbitsystems.com/", "crunchbase": {"text": "9f0f9340-23bf-fccc-4b46-a9bb05bb4dea", "url": "https://www.crunchbase.com/organization/elbit-systems"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/elbit-systems-ltd"], "stage": "Mature", "name": "Elbit Systems Ltd", "patent_name": "elbit systems ltd", "continent": "Asia", "local_logo": null, "aliases": "Elbit Systems; Elbit Systems Ltd", "permid_links": [{"text": 4295875072, "url": "https://permid.org/1-4295875072"}], "parent_info": "Federman Enterprises Ltd.", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:EMITF", "url": "https://www.google.com/finance/quote/emitf:nasdaq"}], "market_full": [{"text": "STU:EB2", "url": "https://www.google.com/finance/quote/eb2:stu"}, {"text": "BER:EB2", "url": "https://www.google.com/finance/quote/ber:eb2"}, {"text": "TLV:EMTC", "url": "https://www.google.com/finance/quote/emtc:tlv"}, {"text": "DEU:ESLT", "url": "https://www.google.com/finance/quote/deu:eslt"}, {"text": "FRA:EB2", "url": "https://www.google.com/finance/quote/eb2:fra"}, {"text": "NASDAQ:EMITF", "url": "https://www.google.com/finance/quote/emitf:nasdaq"}, {"text": "MUN:EB2", "url": "https://www.google.com/finance/quote/eb2:mun"}], "crunchbase_description": "Elbit Systems of America is an Defense Electronics, Homeland Security, Commercial Aviation, and Medical Instrumentation providing company.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Frame rate", "field_count": 2}, {"field_name": "Inertial measurement unit", "field_count": 1}, {"field_name": "Image sensor", "field_count": 1}], "clusters": [{"cluster_id": 70505, "cluster_count": 1}, {"cluster_id": 10301, "cluster_count": 1}, {"cluster_id": 275, "cluster_count": 1}, {"cluster_id": 41432, "cluster_count": 1}, {"cluster_id": 36356, "cluster_count": 1}, {"cluster_id": 16132, "cluster_count": 1}, {"cluster_id": 19594, "cluster_count": 1}, {"cluster_id": 18359, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 820, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "image_recognition", "task_count": 2}, {"referent": "object_detection", "task_count": 2}, {"referent": "template_matching", "task_count": 2}, {"referent": "trajectory_planning", "task_count": 1}, {"referent": "vehicle_detection", "task_count": 1}, {"referent": "path_planning", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "visual_slam", "task_count": 1}, {"referent": "autonomous_flight_(dense_forest)", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 2}, {"referent": "adapter", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "impala", "method_count": 1}, {"referent": "image_models", "method_count": 1}, {"referent": "svd_parameterization", "method_count": 1}, {"referent": "evm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [8, 8, 9, 11, 5, 2, 9, 5, 3, 2, 0], "total": 62, "isTopResearch": false, "rank": 588}, "ai_publications": {"counts": [0, 2, 0, 1, 0, 0, 1, 1, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 540}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [10, 5, 6, 1, 8, 5, 5, 7, 6, 4, 0], "total": 57, "isTopResearch": false, "rank": 568}, "cv_pubs": {"counts": [0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 2.5, 0, 1.0, 0, 0, 5.0, 7.0, 0, 0, 0], "total": 11.4, "isTopResearch": false, "rank": 489}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -33.333333333333336, "table": null, "rank": 1491}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 10, 10, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1404, "rank": 301}, "ai_jobs": {"counts": null, "total": 37, "rank": 544}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Elbit Systems Ltd. is an Israel-based international defense electronics company engaged in a wide range of programs throughout the world. The company, which includes Elbit Systems and its subsidiaries, operates in the areas of aerospace, land and naval systems, command, control, communications, computers, intelligence surveillance and reconnaissance (C4ISR), unmanned aircraft systems (UAS), advanced electro-optics, electro-optic space systems, electronic warfare suites, signal intelligence (SIGINT) systems, data links and communications systems and radios.", "wikipedia_link": "https://en.wikipedia.org/wiki/Elbit_Systems", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2097, "country": "France", "website": "https://www.loreal.com/", "crunchbase": {"text": " 1b33121e-7f7f-779d-d8ca-1e8d72149f68 ", "url": "https://www.crunchbase.com/organization/loreal"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lor\u00e9al"], "stage": "Mature", "name": "L'Or\u00e9al", "patent_name": "L'Or\u00e9al", "continent": "Europe", "local_logo": null, "aliases": "L'Or\u00e9al; L'Or\u00e9al S.A", "permid_links": [{"text": 4295867384, "url": "https://permid.org/1-4295867384"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "DUS:LOR", "url": "https://www.google.com/finance/quote/DUS:LOR"}, {"text": "LSE:ONZM", "url": "https://www.google.com/finance/quote/LSE:ONZM"}, {"text": "FRA:LORA", "url": "https://www.google.com/finance/quote/FRA:LORA"}, {"text": "GER:LORX", "url": "https://www.google.com/finance/quote/GER:LORX"}, {"text": "BER:LORA", "url": "https://www.google.com/finance/quote/BER:LORA"}, {"text": "HAM:LOR", "url": "https://www.google.com/finance/quote/HAM:LOR"}, {"text": "HAN:LOR", "url": "https://www.google.com/finance/quote/HAN:LOR"}, {"text": "DEU:OREP", "url": "https://www.google.com/finance/quote/DEU:OREP"}, {"text": "MEX:ORN", "url": "https://www.google.com/finance/quote/MEX:ORN"}, {"text": "SWX:OR", "url": "https://www.google.com/finance/quote/OR:SWX"}, {"text": "STU:LOR", "url": "https://www.google.com/finance/quote/LOR:STU"}, {"text": "MUN:LORA", "url": "https://www.google.com/finance/quote/LORA:MUN"}, {"text": "EBT:ORP", "url": "https://www.google.com/finance/quote/EBT:ORp"}, {"text": "BER:LOR", "url": "https://www.google.com/finance/quote/BER:LOR"}, {"text": "MUN:LOR", "url": "https://www.google.com/finance/quote/LOR:MUN"}, {"text": "MIL:OR", "url": "https://www.google.com/finance/quote/MIL:OR"}, {"text": "FRA:LOR", "url": "https://www.google.com/finance/quote/FRA:LOR"}, {"text": "DEU:LORA", "url": "https://www.google.com/finance/quote/DEU:LORA"}, {"text": "STU:LORA", "url": "https://www.google.com/finance/quote/LORA:STU"}, {"text": "PAR:OR", "url": "https://www.google.com/finance/quote/OR:PAR"}, {"text": "VIE:OR", "url": "https://www.google.com/finance/quote/OR:VIE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Segmentation", "field_count": 4}, {"field_name": "Feature extraction", "field_count": 1}, {"field_name": "Lightness", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Camouflage", "field_count": 1}, {"field_name": "Computer graphics", "field_count": 1}, {"field_name": "Rendering (computer graphics)", "field_count": 1}, {"field_name": "Region of interest", "field_count": 1}, {"field_name": "Face (geometry)", "field_count": 1}], "clusters": [{"cluster_id": 20237, "cluster_count": 5}, {"cluster_id": 1338, "cluster_count": 5}, {"cluster_id": 10400, "cluster_count": 3}, {"cluster_id": 26446, "cluster_count": 2}, {"cluster_id": 36174, "cluster_count": 1}, {"cluster_id": 21931, "cluster_count": 1}, {"cluster_id": 15697, "cluster_count": 1}, {"cluster_id": 31901, "cluster_count": 1}, {"cluster_id": 60032, "cluster_count": 1}, {"cluster_id": 5610, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 15}, {"ref_CSET_id": 2097, "referenced_count": 12}, {"ref_CSET_id": 6, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 1950, "referenced_count": 3}, {"ref_CSET_id": 223, "referenced_count": 3}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 2}], "tasks": [{"referent": "segmentation", "task_count": 4}, {"referent": "classification", "task_count": 3}, {"referent": "drug_discovery", "task_count": 2}, {"referent": "image_analysis", "task_count": 2}, {"referent": "motion_synthesis", "task_count": 2}, {"referent": "style_transfer", "task_count": 2}, {"referent": "action_quality_assessment", "task_count": 1}, {"referent": "skills_assessment", "task_count": 1}, {"referent": "cell_segmentation", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 5}, {"referent": "crossvit", "method_count": 2}, {"referent": "dcgan", "method_count": 2}, {"referent": "adaptive_feature_pooling", "method_count": 1}, {"referent": "super_resolution_models", "method_count": 1}, {"referent": "sliding_window_attention", "method_count": 1}, {"referent": "generative_models", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "style_transfer_module", "method_count": 1}, {"referent": "ctc_loss", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [77, 75, 90, 113, 116, 88, 74, 97, 103, 104, 2], "total": 939, "isTopResearch": false, "rank": 197, "sp500_rank": 146}, "ai_publications": {"counts": [1, 1, 1, 5, 1, 1, 6, 2, 2, 2, 0], "total": 22, "isTopResearch": false, "rank": 286, "sp500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -22.222222222222225, "isTopResearch": false, "rank": 1344, "sp500_rank": 359}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 188, "sp500_rank": 92}, "citation_counts": {"counts": [1, 7, 3, 15, 11, 19, 21, 25, 30, 32, 2], "total": 166, "isTopResearch": false, "rank": 420, "sp500_rank": 191}, "cv_pubs": {"counts": [1, 1, 1, 5, 1, 1, 6, 2, 2, 2, 0], "total": 22, "isTopResearch": true, "rank": 130, "sp500_rank": 81}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [1.0, 7.0, 3.0, 3.0, 11.0, 19.0, 3.5, 12.5, 15.0, 16.0, 0], "total": 7.545454545454546, "isTopResearch": false, "rank": 624, "sp500_rank": 241}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 3, 13, 11, 19, 5, 0, 0], "total": 52, "table": null, "rank": 216, "sp500_rank": 131}, "ai_patents_growth": {"counts": [], "total": 130.22533022533023, "table": null, "rank": 89, "sp500_rank": 39}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 30, 130, 110, 190, 50, 0, 0], "total": 520, "table": null, "rank": 216, "sp500_rank": 131}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [1, 0, 0, 0, 0, 7, 4, 2, 2, 0, 0], "total": 16, "table": "industry", "rank": 61, "sp500_rank": 41}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 6, 1, 4, 1, 0, 0], "total": 13, "table": "industry", "rank": 63, "sp500_rank": 47}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 5, 0, 4, 1, 0, 0], "total": 11, "table": "industry", "rank": 250, "sp500_rank": 136}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 55, "sp500_rank": 41}, "Business": {"counts": [0, 0, 0, 0, 0, 3, 5, 7, 2, 0, 0], "total": 17, "table": "industry", "rank": 114, "sp500_rank": 80}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 160, "sp500_rank": 91}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 162, "sp500_rank": 88}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 3, 8, 10, 18, 1, 0, 0], "total": 40, "table": "application", "rank": 133, "sp500_rank": 82}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 3, 3, 0, 2, 0, 0], "total": 9, "table": "application", "rank": 122, "sp500_rank": 88}, "Measuring_and_Testing": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1373, "rank": 302, "sp500_rank": 160}, "ai_jobs": {"counts": null, "total": 306, "rank": 178, "sp500_rank": 115}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services"}, {"cset_id": 2494, "country": "United States", "website": "https://www.southwest.com/", "crunchbase": {"text": "2fc47cc7-c5ec-ea90-7a89-2cbdd8c316ae", "url": "https://www.crunchbase.com/organization/southwest-airlines"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/southwest-airlines"], "stage": "Mature", "name": "Southwest Airlines", "patent_name": "southwest airlines", "continent": "North America", "local_logo": "southwest_airlines.png", "aliases": "Southwest; Southwest Airlines (Nyse: Luv); Southwest Airlines Co; Southwest Airlines\u00ae; Southwest\u00ae", "permid_links": [{"text": 4295904946, "url": "https://permid.org/1-4295904946"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LUV", "url": "https://www.google.com/finance/quote/luv:nyse"}], "market_full": [{"text": "DEU:LUV", "url": "https://www.google.com/finance/quote/deu:luv"}, {"text": "LSE:0L8F", "url": "https://www.google.com/finance/quote/0l8f:lse"}, {"text": "ASE:LUV", "url": "https://www.google.com/finance/quote/ase:luv"}, {"text": "SAO:S1OU34", "url": "https://www.google.com/finance/quote/s1ou34:sao"}, {"text": "VIE:LUV", "url": "https://www.google.com/finance/quote/luv:vie"}, {"text": "BRN:SWN", "url": "https://www.google.com/finance/quote/brn:swn"}, {"text": "STU:SWN", "url": "https://www.google.com/finance/quote/stu:swn"}, {"text": "FRA:SWN", "url": "https://www.google.com/finance/quote/fra:swn"}, {"text": "NYSE:LUV", "url": "https://www.google.com/finance/quote/luv:nyse"}, {"text": "MEX:LUV*", "url": "https://www.google.com/finance/quote/luv*:mex"}, {"text": "MUN:SWN", "url": "https://www.google.com/finance/quote/mun:swn"}, {"text": "MCX:LUV-RM", "url": "https://www.google.com/finance/quote/luv-rm:mcx"}, {"text": "BER:SWN", "url": "https://www.google.com/finance/quote/ber:swn"}, {"text": "NYQ:LUV", "url": "https://www.google.com/finance/quote/luv:nyq"}, {"text": "DUS:SWN", "url": "https://www.google.com/finance/quote/dus:swn"}, {"text": "GER:SWNX", "url": "https://www.google.com/finance/quote/ger:swnx"}], "crunchbase_description": "Southwest Airlines (NYSE: LUV) continues to differentiate itself from other carriers with exemplary Customer Service delivered .", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 4, 2, 1, 14, 0, 2, 0, 2, 2, 0], "total": 27, "isTopResearch": false, "rank": 736, "fortune500_rank": 261}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0.0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1372, "rank": 303, "fortune500_rank": 170}, "ai_jobs": {"counts": null, "total": 116, "rank": 313, "fortune500_rank": 171}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "Southwest Airlines Co., typically referred to as Southwest, is one of the major airlines of the United States and the world's largest low-cost carrier airline. It is headquartered in Dallas, Texas and has scheduled service to 111 destinations in the United States and ten additional countries. As of 2018, Southwest carried more domestic passengers than any other United States airline.", "wikipedia_link": "https://en.wikipedia.org/wiki/Southwest_Airlines", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 436, "country": "Netherlands", "website": "http://www.elsevier.com", "crunchbase": {"text": "9667c302-fdc3-4099-e0d9-9366a7eaeab1", "url": "https://www.crunchbase.com/organization/elsevier"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/elsevier"], "stage": "Mature", "name": "Elsevier", "patent_name": "elsevier", "continent": "Europe", "local_logo": "elsevier.png", "aliases": "Elsevier BV; Elsevier Ltd; Reed Elsevier", "permid_links": [{"text": 5000131860, "url": "https://permid.org/1-5000131860"}, {"text": 4297219144, "url": "https://permid.org/1-4297219144"}], "parent_info": "Relx Group", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Elsevier is a world-leading provider of information solutions that enhance the performance of science, health, and technology.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Ontology (information science)", "field_count": 5}, {"field_name": "Automatic summarization", "field_count": 4}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Information extraction", "field_count": 3}, {"field_name": "Language model", "field_count": 3}, {"field_name": "Classifier (UML)", "field_count": 2}, {"field_name": "Question answering", "field_count": 2}, {"field_name": "Verb", "field_count": 2}, {"field_name": "Search box", "field_count": 1}, {"field_name": "Knowledge extraction", "field_count": 1}], "clusters": [{"cluster_id": 1038, "cluster_count": 9}, {"cluster_id": 1193, "cluster_count": 5}, {"cluster_id": 41976, "cluster_count": 4}, {"cluster_id": 7496, "cluster_count": 3}, {"cluster_id": 14740, "cluster_count": 3}, {"cluster_id": 47367, "cluster_count": 2}, {"cluster_id": 1154, "cluster_count": 2}, {"cluster_id": 8473, "cluster_count": 2}, {"cluster_id": 5273, "cluster_count": 2}, {"cluster_id": 70350, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 110}, {"ref_CSET_id": 163, "referenced_count": 53}, {"ref_CSET_id": 436, "referenced_count": 46}, {"ref_CSET_id": 115, "referenced_count": 27}, {"ref_CSET_id": 87, "referenced_count": 26}, {"ref_CSET_id": 1125, "referenced_count": 19}, {"ref_CSET_id": 789, "referenced_count": 8}, {"ref_CSET_id": 245, "referenced_count": 6}, {"ref_CSET_id": 341, "referenced_count": 6}, {"ref_CSET_id": 23, "referenced_count": 6}], "tasks": [{"referent": "classification", "task_count": 14}, {"referent": "information_extraction", "task_count": 8}, {"referent": "code_search", "task_count": 7}, {"referent": "named_entity_recognition", "task_count": 6}, {"referent": "knowledge_base", "task_count": 6}, {"referent": "chemical_reaction_prediction", "task_count": 5}, {"referent": "question_answering", "task_count": 5}, {"referent": "knowledge_graphs", "task_count": 4}, {"referent": "disease_detection", "task_count": 4}, {"referent": "event_extraction", "task_count": 3}], "methods": [{"referent": "3d_representations", "method_count": 13}, {"referent": "topic_embeddings", "method_count": 8}, {"referent": "word_embeddings", "method_count": 8}, {"referent": "symbolic_deep_learning", "method_count": 6}, {"referent": "mad_learning", "method_count": 5}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "language_models", "method_count": 4}, {"referent": "natural_language_processing", "method_count": 4}, {"referent": "vqa_models", "method_count": 4}, {"referent": "causal_inference", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [242, 298, 358, 414, 406, 374, 402, 555, 298, 174, 7], "total": 3528, "isTopResearch": false, "rank": 82}, "ai_publications": {"counts": [2, 6, 8, 5, 7, 8, 13, 29, 12, 5, 0], "total": 95, "isTopResearch": false, "rank": 124}, "ai_publications_growth": {"counts": [], "total": 2.0409666961391104, "isTopResearch": false, "rank": 192}, "ai_pubs_top_conf": {"counts": [1, 0, 3, 0, 0, 7, 4, 5, 1, 0, 0], "total": 21, "isTopResearch": false, "rank": 76}, "citation_counts": {"counts": [21, 51, 51, 62, 77, 67, 112, 191, 306, 326, 10], "total": 1274, "isTopResearch": false, "rank": 176}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0], "total": 6, "isTopResearch": true, "rank": 267}, "nlp_pubs": {"counts": [1, 4, 4, 2, 4, 4, 10, 17, 9, 4, 0], "total": 59, "isTopResearch": true, "rank": 44}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [10.5, 8.5, 6.375, 12.4, 11.0, 8.375, 8.615384615384615, 6.586206896551724, 25.5, 65.2, 0], "total": 13.410526315789474, "isTopResearch": false, "rank": 438}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 2, 2, 1, 1, 0, 0, 0], "total": 7, "table": null, "rank": 464}, "ai_patents_growth": {"counts": [], "total": -16.666666666666668, "table": null, "rank": 1452}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 20, 20, 10, 10, 0, 0, 0], "total": 70, "table": null, "rank": 464}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 2, 2, 1, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 305}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 162}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1355, "rank": 304}, "ai_jobs": {"counts": null, "total": 182, "rank": 240}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Elsevier is a Netherlands-based information and analytics company specializing in scientific, technical, and medical content. It is a part of the RELX Group, known until 2015 as Reed Elsevier. Its products include journals such as The Lancet and Cell, the ScienceDirect collection of electronic journals, the Trends and Current Opinion series of journals, the online citation database Scopus, SciVal, a tool that measures research performance, the ClinicalKey search engine for clinicians, and ClinicalPath evidence-based cancer care service. Elsevier's products also include digital tools for data management, instruction, and assessment.", "wikipedia_link": "https://en.wikipedia.org/wiki/Elsevier", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1861, "country": null, "website": "https://www.basf.com/", "crunchbase": {"text": " f695d0c6-9dea-237d-111d-fa9b35a19904", "url": " https://www.crunchbase.com/organization/basf"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/basf"], "stage": "Mature", "name": "Basf", "patent_name": "BASF", "continent": null, "local_logo": null, "aliases": "BASF; Badische Anilin- Und Sodafabrik; Basf Se", "permid_links": [{"text": 4295869198, "url": "https://permid.org/1-4295869198"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "DEU:BASA", "url": "https://www.google.com/finance/quote/BASA:DEU"}, {"text": "EBT:BASD", "url": "https://www.google.com/finance/quote/BASd:EBT"}, {"text": "MUN:BASA", "url": "https://www.google.com/finance/quote/BASA:MUN"}, {"text": "BER:BAS", "url": "https://www.google.com/finance/quote/BAS:BER"}, {"text": "QXI:BFFAF", "url": "https://www.google.com/finance/quote/BFFAF:QXI"}, {"text": "BUD:BASF", "url": "https://www.google.com/finance/quote/BASF:BUD"}, {"text": "DUS:BAS", "url": "https://www.google.com/finance/quote/BAS:DUS"}, {"text": "HAM:BAS", "url": "https://www.google.com/finance/quote/BAS:HAM"}, {"text": "MUN:BAS", "url": "https://www.google.com/finance/quote/BAS:MUN"}, {"text": "BRN:BAS", "url": "https://www.google.com/finance/quote/BAS:BRN"}, {"text": "DEU:BASFN", "url": "https://www.google.com/finance/quote/BASFn:DEU"}, {"text": "MIL:BASF", "url": "https://www.google.com/finance/quote/BASF:MIL"}, {"text": "FRA:BASA", "url": "https://www.google.com/finance/quote/BASA:FRA"}, {"text": "GER:BASX.N", "url": "https://www.google.com/finance/quote/BASX.N:GER"}, {"text": "HAN:BAS", "url": "https://www.google.com/finance/quote/BAS:HAN"}, {"text": "BER:BASA", "url": "https://www.google.com/finance/quote/BASA:BER"}, {"text": "BUE:BAS3", "url": "https://www.google.com/finance/quote/BAS3:BUE"}, {"text": "MEX:BASN", "url": "https://www.google.com/finance/quote/BASN:MEX"}, {"text": "QXI:BASFY", "url": "https://www.google.com/finance/quote/BASFY:QXI"}, {"text": "STU:BAS", "url": "https://www.google.com/finance/quote/BAS:STU"}, {"text": "FRA:BAS", "url": "https://www.google.com/finance/quote/BAS:FRA"}, {"text": "SWX:BAS", "url": "https://www.google.com/finance/quote/BAS:SWX"}, {"text": "LSE:0BFA", "url": "https://www.google.com/finance/quote/0BFA:LSE"}, {"text": "STU:BASA", "url": "https://www.google.com/finance/quote/BASA:STU"}, {"text": "VIE:BAS", "url": "https://www.google.com/finance/quote/BAS:VIE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 2}, {"field_name": "Visualization", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Business intelligence", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Virtual reality", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Partial least squares regression", "field_count": 1}, {"field_name": "Fisher information", "field_count": 1}, {"field_name": "Surrogate model", "field_count": 1}], "clusters": [{"cluster_id": 5339, "cluster_count": 5}, {"cluster_id": 12735, "cluster_count": 3}, {"cluster_id": 64020, "cluster_count": 3}, {"cluster_id": 4191, "cluster_count": 3}, {"cluster_id": 788, "cluster_count": 2}, {"cluster_id": 6887, "cluster_count": 2}, {"cluster_id": 42969, "cluster_count": 2}, {"cluster_id": 52011, "cluster_count": 1}, {"cluster_id": 16670, "cluster_count": 1}, {"cluster_id": 53686, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 30}, {"ref_CSET_id": 1861, "referenced_count": 28}, {"ref_CSET_id": 163, "referenced_count": 19}, {"ref_CSET_id": 87, "referenced_count": 9}, {"ref_CSET_id": 1797, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 341, "referenced_count": 4}, {"ref_CSET_id": 223, "referenced_count": 2}, {"ref_CSET_id": 734, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "decision_making", "task_count": 4}, {"referent": "neural_architecture_search", "task_count": 3}, {"referent": "soft_robotics", "task_count": 3}, {"referent": "image_restoration", "task_count": 3}, {"referent": "image_processing", "task_count": 3}, {"referent": "disease_detection", "task_count": 3}, {"referent": "portfolio_optimization", "task_count": 3}, {"referent": "classification_tasks", "task_count": 2}, {"referent": "plant_disease_detection", "task_count": 2}], "methods": [{"referent": "vqa_models", "method_count": 8}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "3d_representations", "method_count": 3}, {"referent": "neural_architecture_search", "method_count": 3}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "gts", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 2}, {"referent": "1d_cnn", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [716, 839, 776, 942, 821, 888, 847, 756, 769, 900, 15], "total": 8269, "isTopResearch": false, "rank": 45, "sp500_rank": 40}, "ai_publications": {"counts": [1, 3, 1, 3, 4, 3, 6, 10, 12, 8, 0], "total": 51, "isTopResearch": false, "rank": 181, "sp500_rank": 112}, "ai_publications_growth": {"counts": [], "total": 17.77777777777778, "isTopResearch": false, "rank": 122, "sp500_rank": 63}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [7, 11, 11, 13, 23, 37, 91, 276, 457, 506, 26], "total": 1458, "isTopResearch": false, "rank": 164, "sp500_rank": 97}, "cv_pubs": {"counts": [1, 0, 0, 0, 2, 0, 2, 0, 1, 3, 0], "total": 9, "isTopResearch": true, "rank": 217, "sp500_rank": 122}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 4, 1, 0, 0], "total": 6, "isTopResearch": true, "rank": 156, "sp500_rank": 101}, "citations_per_article": {"counts": [7.0, 3.6666666666666665, 11.0, 4.333333333333333, 5.75, 12.333333333333334, 15.166666666666666, 27.6, 38.083333333333336, 63.25, 0], "total": 28.58823529411765, "isTopResearch": false, "rank": 206, "sp500_rank": 53}}, "patents": {"ai_patents": {"counts": [1, 0, 2, 3, 4, 7, 33, 23, 6, 0, 0], "total": 79, "table": null, "rank": 175, "sp500_rank": 111}, "ai_patents_growth": {"counts": [], "total": 138.70851370851372, "table": null, "rank": 81, "sp500_rank": 35}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 0, 20, 30, 40, 70, 330, 230, 60, 0, 0], "total": 790, "table": null, "rank": 175, "sp500_rank": 111}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 4, 5, 2, 1, 0, 0], "total": 12, "table": "industry", "rank": 44, "sp500_rank": 37}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 3, 4, 4, 1, 0, 0], "total": 12, "table": "industry", "rank": 74, "sp500_rank": 50}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 2, 0, 2, 0, 1, 0, 0], "total": 5, "table": null, "rank": 133, "sp500_rank": 96}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 6, 1, 0, 0, 0], "total": 8, "table": null, "rank": 81, "sp500_rank": 56}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 2, 2, 1, 10, 2, 3, 0, 0], "total": 20, "table": "industry", "rank": 8, "sp500_rank": 8}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 4, 6, 4, 0, 0, 0], "total": 15, "table": "industry", "rank": 218, "sp500_rank": 121}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0], "total": 4, "table": null, "rank": 249, "sp500_rank": 129}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 2, 1, 7, 2, 2, 0, 0], "total": 14, "table": "industry", "rank": 131, "sp500_rank": 92}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": null, "rank": 97, "sp500_rank": 78}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 191, "sp500_rank": 101}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 2, 1, 7, 2, 2, 0, 0], "total": 14, "table": "application", "rank": 103, "sp500_rank": 72}, "Control": {"counts": [0, 0, 0, 0, 1, 2, 4, 3, 0, 0, 0], "total": 10, "table": "application", "rank": 137, "sp500_rank": 96}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 2, 1, 0, 13, 7, 1, 0, 0], "total": 24, "table": "application", "rank": 171, "sp500_rank": 101}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 0, 1, 2, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 160, "sp500_rank": 107}, "Measuring_and_Testing": {"counts": [1, 0, 1, 1, 0, 4, 6, 4, 1, 0, 0], "total": 18, "table": "application", "rank": 91, "sp500_rank": 68}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1324, "rank": 305, "sp500_rank": 161}, "ai_jobs": {"counts": null, "total": 285, "rank": 191, "sp500_rank": 125}}, "sector": "Basic Materials", "business_sector": "Chemicals"}, {"cset_id": 3106, "country": "United Kingdom", "website": "https://www.aviva.com/", "crunchbase": {"text": "f92ea5d6-b1a7-dea1-c675-833f2bb94b4e", "url": "https://www.crunchbase.com/organization/aviva-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aviva-plc"], "stage": "Mature", "name": "Aviva", "patent_name": "Aviva", "continent": "Europe", "local_logo": "aviva.png", "aliases": "Aviva; Aviva Natural Health Solutions", "permid_links": [{"text": 8589934340, "url": "https://permid.org/1-8589934340"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PKC:AVVIY", "url": "https://www.google.com/finance/quote/AVVIY:PKC"}, {"text": "DUS:GU8", "url": "https://www.google.com/finance/quote/DUS:GU8"}, {"text": "PKC:AIVAF", "url": "https://www.google.com/finance/quote/AIVAF:PKC"}, {"text": "FRA:GU8", "url": "https://www.google.com/finance/quote/FRA:GU8"}, {"text": "LSE:69WR", "url": "https://www.google.com/finance/quote/69WR:LSE"}, {"text": "STU:GU8", "url": "https://www.google.com/finance/quote/GU8:STU"}, {"text": "BER:GU8", "url": "https://www.google.com/finance/quote/BER:GU8"}, {"text": "MUN:GU8", "url": "https://www.google.com/finance/quote/GU8:MUN"}, {"text": "LSE:AV", "url": "https://www.google.com/finance/quote/AV:LSE"}, {"text": "DEU:GU8E", "url": "https://www.google.com/finance/quote/DEU:GU8E"}, {"text": "FRA:GU8E", "url": "https://www.google.com/finance/quote/FRA:GU8E"}, {"text": "LSE:AV.A", "url": "https://www.google.com/finance/quote/AV.A:LSE"}, {"text": "HAN:GU8", "url": "https://www.google.com/finance/quote/GU8:HAN"}, {"text": "LSE:AV.B", "url": "https://www.google.com/finance/quote/AV.B:LSE"}, {"text": "DEU:AV", "url": "https://www.google.com/finance/quote/AV:DEU"}, {"text": "BER:GU8E", "url": "https://www.google.com/finance/quote/BER:GU8E"}], "crunchbase_description": "Aviva is a British multinational insurance company headquartered in London.", "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [{"cluster_id": 6506, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "mathematical_proofs", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [10, 19, 4, 30, 4, 9, 8, 11, 6, 9, 0], "total": 110, "isTopResearch": false, "rank": 503, "sp500_rank": 291}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 1, 1, 2, 1, 4, 4, 5, 0], "total": 18, "isTopResearch": false, "rank": 695, "sp500_rank": 287}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 18.0, "isTopResearch": false, "rank": 347, "sp500_rank": 110}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 5, 0, 0, 0, 0], "total": 7, "table": null, "rank": 464, "sp500_rank": 209}, "ai_patents_growth": {"counts": [], "total": 25.0, "table": null, "rank": 287, "sp500_rank": 134}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 50, 0, 0, 0, 0], "total": 70, "table": null, "rank": 464, "sp500_rank": 209}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "sp500_rank": 183}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "sp500_rank": 152}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 190, "sp500_rank": 120}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "sp500_rank": 183}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1323, "rank": 306, "sp500_rank": 162}, "ai_jobs": {"counts": null, "total": 195, "rank": 233, "sp500_rank": 148}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 1707, "country": "United States", "website": "https://www.kla.com/", "crunchbase": {"text": "3b45b843-259c-fd04-8e51-02a00b753744", "url": "https://www.crunchbase.com/organization/kla-tencor"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/klacorp"], "stage": "Mature", "name": "Kla-Tencor", "patent_name": "KLA-Tencor", "continent": "North America", "local_logo": "kla-tencor.png", "aliases": "KLA-Tencor; Kla Corporation; Klac", "permid_links": [{"text": 4295906904, "url": "https://permid.org/1-4295906904"}], "parent_info": "Kla", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:KLAC", "url": "https://www.google.com/finance/quote/KLAC:NASDAQ"}], "market_full": [{"text": "DUS:KLA", "url": "https://www.google.com/finance/quote/DUS:KLA"}, {"text": "MUN:KLA", "url": "https://www.google.com/finance/quote/KLA:MUN"}, {"text": "HAM:KLA", "url": "https://www.google.com/finance/quote/HAM:KLA"}, {"text": "LSE:0JPO", "url": "https://www.google.com/finance/quote/0JPO:LSE"}, {"text": "BER:KLA", "url": "https://www.google.com/finance/quote/BER:KLA"}, {"text": "NASDAQ:KLAC", "url": "https://www.google.com/finance/quote/KLAC:NASDAQ"}, {"text": "MCX:KLAC-RM", "url": "https://www.google.com/finance/quote/KLAC-RM:MCX"}, {"text": "DEU:KLAC", "url": "https://www.google.com/finance/quote/DEU:KLAC"}, {"text": "BRN:KLA", "url": "https://www.google.com/finance/quote/BRN:KLA"}, {"text": "VIE:KLAC", "url": "https://www.google.com/finance/quote/KLAC:VIE"}, {"text": "GER:KLAX", "url": "https://www.google.com/finance/quote/GER:KLAX"}, {"text": "HAN:KLA", "url": "https://www.google.com/finance/quote/HAN:KLA"}, {"text": "FRA:KLA", "url": "https://www.google.com/finance/quote/FRA:KLA"}, {"text": "STU:KLA", "url": "https://www.google.com/finance/quote/KLA:STU"}, {"text": "MEX:KLAC", "url": "https://www.google.com/finance/quote/KLAC:MEX"}], "crunchbase_description": "KLA Tencor is a distributor of process control and yield management solutions that offers learning and knowledge services for its users.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "3D reconstruction", "field_count": 2}, {"field_name": "Interpolation", "field_count": 1}, {"field_name": "Smoothing", "field_count": 1}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Discriminative model", "field_count": 1}, {"field_name": "Noise reduction", "field_count": 1}, {"field_name": "Face (geometry)", "field_count": 1}, {"field_name": "Adversarial system", "field_count": 1}, {"field_name": "Mixture model", "field_count": 1}, {"field_name": "Actuator", "field_count": 1}], "clusters": [{"cluster_id": 875, "cluster_count": 3}, {"cluster_id": 11454, "cluster_count": 2}, {"cluster_id": 40143, "cluster_count": 2}, {"cluster_id": 2381, "cluster_count": 2}, {"cluster_id": 22126, "cluster_count": 1}, {"cluster_id": 12492, "cluster_count": 1}, {"cluster_id": 29300, "cluster_count": 1}, {"cluster_id": 21931, "cluster_count": 1}, {"cluster_id": 9071, "cluster_count": 1}, {"cluster_id": 8919, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 21}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 1707, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 833, "referenced_count": 2}, {"ref_CSET_id": 786, "referenced_count": 2}, {"ref_CSET_id": 790, "referenced_count": 1}, {"ref_CSET_id": 1132, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "image_recognition", "task_count": 3}, {"referent": "3d_reconstruction", "task_count": 2}, {"referent": "defect_detection", "task_count": 2}, {"referent": "adversarial_attack", "task_count": 2}, {"referent": "image_interpolation", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "patch_matching", "task_count": 1}, {"referent": "fingerprint_recognition", "task_count": 1}, {"referent": "svbrdf_estimation", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 4}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "video_sampling", "method_count": 2}, {"referent": "adapter", "method_count": 2}, {"referent": "electra", "method_count": 1}, {"referent": "ckconv", "method_count": 1}, {"referent": "iou_balanced_sampling", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [102, 84, 117, 63, 53, 80, 42, 48, 70, 70, 0], "total": 729, "isTopResearch": false, "rank": 230, "fortune500_rank": 89}, "ai_publications": {"counts": [6, 3, 2, 0, 2, 0, 5, 1, 1, 1, 0], "total": 21, "isTopResearch": false, "rank": 294, "fortune500_rank": 89}, "ai_publications_growth": {"counts": [], "total": -26.666666666666668, "isTopResearch": false, "rank": 1376, "fortune500_rank": 397}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "fortune500_rank": 59}, "citation_counts": {"counts": [28, 43, 47, 29, 36, 41, 44, 26, 45, 29, 4], "total": 372, "isTopResearch": false, "rank": 304, "fortune500_rank": 90}, "cv_pubs": {"counts": [4, 2, 2, 0, 1, 0, 1, 0, 0, 0, 0], "total": 10, "isTopResearch": true, "rank": 202, "fortune500_rank": 55}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [4.666666666666667, 14.333333333333334, 23.5, 0, 18.0, 0, 8.8, 26.0, 45.0, 29.0, 0], "total": 17.714285714285715, "isTopResearch": false, "rank": 354, "fortune500_rank": 110}}, "patents": {"ai_patents": {"counts": [3, 11, 11, 19, 24, 24, 26, 32, 7, 0, 0], "total": 157, "table": null, "rank": 120, "fortune500_rank": 40}, "ai_patents_growth": {"counts": [], "total": 10.47008547008547, "table": null, "rank": 333, "fortune500_rank": 106}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 110, 110, 190, 240, 240, 260, 320, 70, 0, 0], "total": 1570, "table": null, "rank": 120, "fortune500_rank": 40}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 2, 0, 3, 6, 1, 1, 0, 0, 0], "total": 13, "table": "industry", "rank": 40, "fortune500_rank": 15}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 3, 0, 1, 2, 1, 2, 0, 0, 0, 0], "total": 9, "table": "industry", "rank": 76, "fortune500_rank": 25}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 5, 6, 3, 9, 5, 10, 7, 1, 0, 0], "total": 47, "table": "industry", "rank": 125, "fortune500_rank": 46}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 2, 3, 1, 0, 0, 1, 1, 0, 0, 0], "total": 8, "table": "industry", "rank": 185, "fortune500_rank": 67}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [2, 8, 8, 14, 20, 15, 15, 5, 2, 0, 0], "total": 89, "table": "industry", "rank": 3, "fortune500_rank": 2}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 1, 0, 1, 5, 0, 3, 0, 1, 0, 0], "total": 11, "table": "application", "rank": 126, "fortune500_rank": 42}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [3, 5, 8, 15, 11, 20, 19, 19, 4, 0, 0], "total": 104, "table": "application", "rank": 64, "fortune500_rank": 18}, "Analytics_and_Algorithms": {"counts": [0, 1, 1, 0, 0, 0, 2, 3, 0, 0, 0], "total": 7, "table": "application", "rank": 137, "fortune500_rank": 57}, "Measuring_and_Testing": {"counts": [2, 5, 9, 12, 12, 13, 14, 7, 1, 0, 0], "total": 75, "table": "application", "rank": 34, "fortune500_rank": 12}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1301, "rank": 307, "fortune500_rank": 171}, "ai_jobs": {"counts": null, "total": 80, "rank": 381, "fortune500_rank": 201}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 2343, "country": "United States", "website": "https://www.hrblock.com/", "crunchbase": {"text": "fb6e0703-ffda-4976-9eb0-e777f58ee1af", "url": "https://www.crunchbase.com/organization/h-r-block"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/h&r-block"], "stage": "Mature", "name": "H&R Block", "patent_name": "h&r block", "continent": "North America", "local_logo": "h&r_block.png", "aliases": "Block; H & R Block Inc; Hrb Digital Llc", "permid_links": [{"text": 4295903567, "url": "https://permid.org/1-4295903567"}], "parent_info": "Ameriprise Financial (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HRB", "url": "https://www.google.com/finance/quote/hrb:nyse"}], "market_full": [{"text": "FRA:HRB", "url": "https://www.google.com/finance/quote/fra:hrb"}, {"text": "ASE:HRB", "url": "https://www.google.com/finance/quote/ase:hrb"}, {"text": "MUN:HRB", "url": "https://www.google.com/finance/quote/hrb:mun"}, {"text": "DEU:HRB", "url": "https://www.google.com/finance/quote/deu:hrb"}, {"text": "BER:HRB", "url": "https://www.google.com/finance/quote/ber:hrb"}, {"text": "LSE:0HOB", "url": "https://www.google.com/finance/quote/0hob:lse"}, {"text": "BRN:HRB", "url": "https://www.google.com/finance/quote/brn:hrb"}, {"text": "NYSE:HRB", "url": "https://www.google.com/finance/quote/hrb:nyse"}, {"text": "SAO:H1RB34", "url": "https://www.google.com/finance/quote/h1rb34:sao"}, {"text": "NYQ:HRB", "url": "https://www.google.com/finance/quote/hrb:nyq"}, {"text": "STU:HRB", "url": "https://www.google.com/finance/quote/hrb:stu"}, {"text": "DUS:HRB", "url": "https://www.google.com/finance/quote/dus:hrb"}], "crunchbase_description": "4121 18th Ave, suite 102 Brooklyn, NY 11218", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1298, "rank": 308, "fortune500_rank": 172}, "ai_jobs": {"counts": null, "total": 63, "rank": 431, "fortune500_rank": 231}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services"}, {"cset_id": 2377, "country": "United States", "website": "http://www.jbhunt.com", "crunchbase": {"text": "93f0ddde-2116-a37b-24c7-3b683cf468c1", "url": "https://www.crunchbase.com/organization/j-b-hunt-transport"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/jb-hunt-transport-services-inc"], "stage": "Mature", "name": "J. B. Hunt Transport Services", "patent_name": "j. b. hunt transport services", "continent": "North America", "local_logo": "j_b_hunt_transport_services.png", "aliases": "J.B. Hunt Transport Services, Inc; J.B. Hunt Transport, Inc; Jb Hunt", "permid_links": [{"text": 4295906731, "url": "https://permid.org/1-4295906731"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:JBHT", "url": "https://www.google.com/finance/quote/jbht:nasdaq"}], "market_full": [{"text": "FRA:JB1", "url": "https://www.google.com/finance/quote/fra:jb1"}, {"text": "BER:JB1", "url": "https://www.google.com/finance/quote/ber:jb1"}, {"text": "SAO:J1BH34", "url": "https://www.google.com/finance/quote/j1bh34:sao"}, {"text": "LSE:0J71", "url": "https://www.google.com/finance/quote/0j71:lse"}, {"text": "STU:JB1", "url": "https://www.google.com/finance/quote/jb1:stu"}, {"text": "HAN:JB1", "url": "https://www.google.com/finance/quote/han:jb1"}, {"text": "DEU:JBHT", "url": "https://www.google.com/finance/quote/deu:jbht"}, {"text": "DUS:JB1", "url": "https://www.google.com/finance/quote/dus:jb1"}, {"text": "MOEX:JBHT-RM", "url": "https://www.google.com/finance/quote/jbht-rm:moex"}, {"text": "MUN:JB1", "url": "https://www.google.com/finance/quote/jb1:mun"}, {"text": "VIE:JBHT", "url": "https://www.google.com/finance/quote/jbht:vie"}, {"text": "NASDAQ:JBHT", "url": "https://www.google.com/finance/quote/jbht:nasdaq"}], "crunchbase_description": "J.B. hunt transport is a logistics management services and integrated transportation solutions to major corporations.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1287, "rank": 309, "fortune500_rank": 173}, "ai_jobs": {"counts": null, "total": 53, "rank": 471, "fortune500_rank": 250}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "J.B. Hunt Transport Services, Inc. is an American transportation and logistics company based in Lowell, Arkansas. It was founded by Johnnie Bryan Hunt and Johnelle Hunt in Arkansas on August 10, 1961. By 1983, J.B. Hunt had grown into the 80th largest trucking firm in the U.S. and earned $623.47 million in revenue. At that time J.B. Hunt was operating 550 tractors, 1,049 trailers, and had roughly 1,050 employees. J.B. Hunt primarily operates large semi-trailer trucks and provides transportation services throughout the continental U.S., Canada and Mexico. The company currently employs over 24,000 and operates more than 12,000 trucks. The company's fleet consists of over 100,000 trailers and containers.", "wikipedia_link": "https://en.wikipedia.org/wiki/J._B._Hunt", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2540, "country": "United States", "website": "https://corporate.westernunion.com/", "crunchbase": {"text": "0189ce46-ea1a-d76e-a8a1-631a6e07ef8f", "url": "https://www.crunchbase.com/organization/western-union"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/western-union"], "stage": "Mature", "name": "Western Union Co", "patent_name": "western union co", "continent": "North America", "local_logo": "western_union_co.png", "aliases": "Western Union", "permid_links": [{"text": 4295915491, "url": "https://permid.org/1-4295915491"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WU", "url": "https://www.google.com/finance/quote/nyse:wu"}], "market_full": [{"text": "DUS:W3U", "url": "https://www.google.com/finance/quote/dus:w3u"}, {"text": "MCX:WU-RM", "url": "https://www.google.com/finance/quote/mcx:wu-rm"}, {"text": "SAO:WUNI34", "url": "https://www.google.com/finance/quote/sao:wuni34"}, {"text": "NYSE:WU", "url": "https://www.google.com/finance/quote/nyse:wu"}, {"text": "DEU:WU", "url": "https://www.google.com/finance/quote/deu:wu"}, {"text": "FRA:W3U", "url": "https://www.google.com/finance/quote/fra:w3u"}, {"text": "BRN:W3U", "url": "https://www.google.com/finance/quote/brn:w3u"}, {"text": "STU:W3U", "url": "https://www.google.com/finance/quote/stu:w3u"}, {"text": "ASE:WU", "url": "https://www.google.com/finance/quote/ase:wu"}, {"text": "GER:W3UX", "url": "https://www.google.com/finance/quote/ger:w3ux"}, {"text": "LSE:0LVJ", "url": "https://www.google.com/finance/quote/0lvj:lse"}, {"text": "NYQ:WU", "url": "https://www.google.com/finance/quote/nyq:wu"}, {"text": "HAN:W3U", "url": "https://www.google.com/finance/quote/han:w3u"}, {"text": "MUN:W3U", "url": "https://www.google.com/finance/quote/mun:w3u"}, {"text": "BER:W3U", "url": "https://www.google.com/finance/quote/ber:w3u"}], "crunchbase_description": "Western Union provides consumers and businesses with fast, reliable and convenient ways to send and receive money around the world.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": null, "rank": 606, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": 100.0, "table": null, "rank": 116, "fortune500_rank": 24}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 20, 0, 0, 0], "total": 30, "table": null, "rank": 606, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1285, "rank": 310, "fortune500_rank": 174}, "ai_jobs": {"counts": null, "total": 127, "rank": 301, "fortune500_rank": 164}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "The Western Union Company is an American worldwide financial services and communications company, headquartered in Denver, Colorado. Until it discontinued the service in 2006, Western Union was the leading American company in the business of transmitting telegrams.", "wikipedia_link": "https://en.wikipedia.org/wiki/Western_Union", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2344, "country": "United States", "website": "https://www.halliburton.com/en-US/default.html", "crunchbase": {"text": "4d5ccd0e-38e4-0537-1adf-b332a73e5ebe", "url": "https://www.crunchbase.com/organization/halliburton"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/halliburton"], "stage": "Mature", "name": "Halliburton Co.", "patent_name": "halliburton co.", "continent": "North America", "local_logo": "halliburton_co.png", "aliases": "Halliburton; Halliburton Company", "permid_links": [{"text": 4295904116, "url": "https://permid.org/1-4295904116"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HAL", "url": "https://www.google.com/finance/quote/hal:nyse"}], "market_full": [{"text": "BER:HAL", "url": "https://www.google.com/finance/quote/ber:hal"}, {"text": "MOEX:HAL-RM", "url": "https://www.google.com/finance/quote/hal-rm:moex"}, {"text": "LSE:0R23", "url": "https://www.google.com/finance/quote/0r23:lse"}, {"text": "SAO:HALI34", "url": "https://www.google.com/finance/quote/hali34:sao"}, {"text": "DUS:HAL", "url": "https://www.google.com/finance/quote/dus:hal"}, {"text": "GER:HALX", "url": "https://www.google.com/finance/quote/ger:halx"}, {"text": "MUN:HAL", "url": "https://www.google.com/finance/quote/hal:mun"}, {"text": "HAN:HAL", "url": "https://www.google.com/finance/quote/hal:han"}, {"text": "NYSE:HAL", "url": "https://www.google.com/finance/quote/hal:nyse"}, {"text": "SWX:HAL", "url": "https://www.google.com/finance/quote/hal:swx"}, {"text": "NYQ:HAL", "url": "https://www.google.com/finance/quote/hal:nyq"}, {"text": "SGO:HAL", "url": "https://www.google.com/finance/quote/hal:sgo"}, {"text": "ASE:HAL", "url": "https://www.google.com/finance/quote/ase:hal"}, {"text": "STU:HAL", "url": "https://www.google.com/finance/quote/hal:stu"}, {"text": "MEX:HAL*", "url": "https://www.google.com/finance/quote/hal*:mex"}, {"text": "VIE:HAL", "url": "https://www.google.com/finance/quote/hal:vie"}, {"text": "FRA:HAL", "url": "https://www.google.com/finance/quote/fra:hal"}, {"text": "DEU:HAL", "url": "https://www.google.com/finance/quote/deu:hal"}, {"text": "HAM:HAL", "url": "https://www.google.com/finance/quote/hal:ham"}, {"text": "BRN:HAL", "url": "https://www.google.com/finance/quote/brn:hal"}, {"text": "BUE:HAL", "url": "https://www.google.com/finance/quote/bue:hal"}], "crunchbase_description": "Halliburton is one of the world's largest providers of products and services to the energy industry.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Predictive analytics", "field_count": 2}, {"field_name": "Analytics", "field_count": 2}, {"field_name": "Unsupervised learning", "field_count": 1}, {"field_name": "Ant colony optimization algorithms", "field_count": 1}, {"field_name": "Missing data", "field_count": 1}, {"field_name": "Moving average", "field_count": 1}, {"field_name": "Categorical variable", "field_count": 1}, {"field_name": "Text corpus", "field_count": 1}, {"field_name": "Robot", "field_count": 1}], "clusters": [{"cluster_id": 49423, "cluster_count": 10}, {"cluster_id": 86493, "cluster_count": 8}, {"cluster_id": 9045, "cluster_count": 7}, {"cluster_id": 54676, "cluster_count": 5}, {"cluster_id": 47249, "cluster_count": 4}, {"cluster_id": 25755, "cluster_count": 4}, {"cluster_id": 7515, "cluster_count": 3}, {"cluster_id": 93015, "cluster_count": 3}, {"cluster_id": 68517, "cluster_count": 2}, {"cluster_id": 62700, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 2344, "referenced_count": 30}, {"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 1617, "referenced_count": 7}, {"ref_CSET_id": 87, "referenced_count": 7}, {"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 676, "referenced_count": 3}, {"ref_CSET_id": 1495, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 682, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 13}, {"referent": "speech_production", "task_count": 11}, {"referent": "image_analysis", "task_count": 10}, {"referent": "portfolio_optimization", "task_count": 10}, {"referent": "developmental_learning", "task_count": 10}, {"referent": "decision_making", "task_count": 8}, {"referent": "image_processing", "task_count": 6}, {"referent": "real_time_object_detection", "task_count": 5}, {"referent": "autonomous_driving", "task_count": 5}, {"referent": "matrix_completion", "task_count": 5}], "methods": [{"referent": "vqa_models", "method_count": 14}, {"referent": "recurrent_neural_networks", "method_count": 10}, {"referent": "mad_learning", "method_count": 10}, {"referent": "optimization", "method_count": 7}, {"referent": "cgnn", "method_count": 6}, {"referent": "atss", "method_count": 6}, {"referent": "griffin_lim_algorithm", "method_count": 5}, {"referent": "meta_learning_algorithms", "method_count": 5}, {"referent": "double_q_learning", "method_count": 5}, {"referent": "ggs_nns", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [372, 410, 427, 436, 345, 282, 314, 297, 256, 138, 1], "total": 3278, "isTopResearch": false, "rank": 88, "fortune500_rank": 33}, "ai_publications": {"counts": [9, 8, 2, 10, 9, 6, 19, 11, 13, 2, 0], "total": 89, "isTopResearch": false, "rank": 130, "fortune500_rank": 42}, "ai_publications_growth": {"counts": [], "total": -36.17960986382039, "isTopResearch": false, "rank": 1416, "fortune500_rank": 408}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [32, 14, 22, 30, 29, 45, 63, 98, 116, 108, 2], "total": 559, "isTopResearch": false, "rank": 257, "fortune500_rank": 77}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 1, 2, 2, 0, 0], "total": 6, "isTopResearch": true, "rank": 267, "fortune500_rank": 73}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "fortune500_rank": 61}, "robotics_pubs": {"counts": [0, 1, 1, 2, 0, 1, 3, 0, 1, 1, 0], "total": 10, "isTopResearch": true, "rank": 114, "fortune500_rank": 31}, "citations_per_article": {"counts": [3.5555555555555554, 1.75, 11.0, 3.0, 3.2222222222222223, 7.5, 3.3157894736842106, 8.909090909090908, 8.923076923076923, 54.0, 0], "total": 6.280898876404494, "isTopResearch": false, "rank": 674, "fortune500_rank": 193}}, "patents": {"ai_patents": {"counts": [16, 5, 20, 15, 18, 39, 48, 58, 10, 0, 0], "total": 229, "table": null, "rank": 93, "fortune500_rank": 32}, "ai_patents_growth": {"counts": [], "total": 53.52564102564103, "table": null, "rank": 195, "fortune500_rank": 54}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [160, 50, 200, 150, 180, 390, 480, 580, 100, 0, 0], "total": 2290, "table": null, "rank": 93, "fortune500_rank": 32}, "Physical_Sciences_and_Engineering": {"counts": [12, 4, 14, 14, 14, 32, 36, 45, 9, 0, 0], "total": 180, "table": "industry", "rank": 1, "fortune500_rank": 1}, "Life_Sciences": {"counts": [1, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 139, "fortune500_rank": 59}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 1, 0, 2, 0, 1, 0, 0], "total": 5, "table": null, "rank": 128, "fortune500_rank": 48}, "Transportation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 2, 0, 1, 0, 2, 0, 0, 0, 0], "total": 5, "table": null, "rank": 104, "fortune500_rank": 31}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 1, 3, 1, 5, 4, 5, 0, 0, 0], "total": 19, "table": "industry", "rank": 10, "fortune500_rank": 4}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [9, 2, 13, 4, 7, 12, 10, 14, 1, 0, 0], "total": 72, "table": "industry", "rank": 93, "fortune500_rank": 39}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [3, 0, 0, 2, 2, 2, 4, 1, 0, 0, 0], "total": 14, "table": "industry", "rank": 147, "fortune500_rank": 58}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "fortune500_rank": 34}, "Business": {"counts": [1, 1, 4, 4, 0, 5, 5, 7, 0, 0, 0], "total": 27, "table": "industry", "rank": 83, "fortune500_rank": 33}, "Energy_Management": {"counts": [1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 97, "fortune500_rank": 24}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 0, 2, 5, 1, 0, 0, 0], "total": 9, "table": null, "rank": 78, "fortune500_rank": 40}, "Planning_and_Scheduling": {"counts": [1, 0, 4, 3, 0, 5, 5, 6, 0, 0, 0], "total": 24, "table": "application", "rank": 73, "fortune500_rank": 27}, "Control": {"counts": [4, 1, 6, 7, 10, 6, 4, 6, 1, 0, 0], "total": 45, "table": "application", "rank": 55, "fortune500_rank": 20}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 1, 1, 6, 1, 12, 17, 2, 0, 0], "total": 41, "table": "application", "rank": 130, "fortune500_rank": 38}, "Analytics_and_Algorithms": {"counts": [5, 0, 0, 2, 2, 7, 7, 9, 0, 0, 0], "total": 32, "table": "application", "rank": 38, "fortune500_rank": 19}, "Measuring_and_Testing": {"counts": [7, 1, 4, 11, 4, 19, 26, 36, 4, 0, 0], "total": 112, "table": "application", "rank": 21, "fortune500_rank": 8}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1272, "rank": 311, "fortune500_rank": 175}, "ai_jobs": {"counts": null, "total": 192, "rank": 234, "fortune500_rank": 125}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "Halliburton Company is an American multinational corporation. One of the world's largest oil field service companies, it has operations in more than 70 countries. It owns hundreds of subsidiaries, affiliates, branches, brands, and divisions worldwide and employs approximately 55,000 people.", "wikipedia_link": "https://en.wikipedia.org/wiki/Halliburton", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1989, "country": "Brazil", "website": "https://www.bb.com.br/", "crunchbase": {"text": " 7a9b9e3a-88db-b5d7-a972-9faa8d840ff2 ", "url": " https://www.crunchbase.com/organization/banco-do-brasil "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bancodobrasil"], "stage": "Mature", "name": "Banco Do Brasil", "patent_name": "Banco do Brasil", "continent": "South America", "local_logo": null, "aliases": "Banco Do Brasil S.A; Banco do Brasil", "permid_links": [{"text": 4295859896, "url": "https://permid.org/1-4295859896"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "DEU:BZLA", "url": "https://www.google.com/finance/quote/BZLA:DEU"}, {"text": "SAO:BBAS12", "url": "https://www.google.com/finance/quote/BBAS12:SAO"}, {"text": "FRA:BZLA", "url": "https://www.google.com/finance/quote/BZLA:FRA"}, {"text": "MUN:BZLA", "url": "https://www.google.com/finance/quote/BZLA:MUN"}, {"text": "STU:BZLA", "url": "https://www.google.com/finance/quote/BZLA:STU"}, {"text": "SAO:BBAS3", "url": "https://www.google.com/finance/quote/BBAS3:SAO"}, {"text": "SAO:BBAS11", "url": "https://www.google.com/finance/quote/BBAS11:SAO"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Unsupervised learning", "field_count": 5}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Generative grammar", "field_count": 2}, {"field_name": "Rule-based machine translation", "field_count": 1}, {"field_name": "Lasso (statistics)", "field_count": 1}, {"field_name": "Econometric model", "field_count": 1}, {"field_name": "Data classification", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}], "clusters": [{"cluster_id": 4884, "cluster_count": 4}, {"cluster_id": 51971, "cluster_count": 2}, {"cluster_id": 4516, "cluster_count": 2}, {"cluster_id": 5760, "cluster_count": 1}, {"cluster_id": 47124, "cluster_count": 1}, {"cluster_id": 7693, "cluster_count": 1}, {"cluster_id": 28438, "cluster_count": 1}, {"cluster_id": 18032, "cluster_count": 1}, {"cluster_id": 2949, "cluster_count": 1}, {"cluster_id": 206, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1989, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 800, "referenced_count": 1}], "tasks": [{"referent": "image_processing", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "classification", "task_count": 3}, {"referent": "multi_task_learning", "task_count": 2}, {"referent": "supervised_learning", "task_count": 2}, {"referent": "data_classification", "task_count": 2}, {"referent": "community_detection", "task_count": 2}, {"referent": "decision_making", "task_count": 1}, {"referent": "building_extraction", "task_count": 1}, {"referent": "tensor_networks", "task_count": 1}], "methods": [{"referent": "self_supervised_learning", "method_count": 7}, {"referent": "double_q_learning", "method_count": 5}, {"referent": "twin_networks", "method_count": 3}, {"referent": "semi_supervised_learning_methods", "method_count": 3}, {"referent": "low_rank_tensor_learning_paradigms", "method_count": 3}, {"referent": "mad_learning", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "distributions", "method_count": 1}, {"referent": "generative_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [76, 53, 53, 77, 59, 45, 44, 56, 36, 22, 3], "total": 524, "isTopResearch": false, "rank": 270, "sp500_rank": 180}, "ai_publications": {"counts": [1, 0, 0, 10, 4, 0, 0, 3, 3, 1, 0], "total": 22, "isTopResearch": false, "rank": 286, "sp500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -33.333333333333336, "isTopResearch": false, "rank": 1404, "sp500_rank": 386}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 3, 8, 29, 43, 77, 88, 87, 35, 1], "total": 371, "isTopResearch": false, "rank": 305, "sp500_rank": 151}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0.0, 0, 0, 0.8, 7.25, 0, 0, 29.333333333333332, 29.0, 35.0, 0], "total": 16.863636363636363, "isTopResearch": false, "rank": 369, "sp500_rank": 121}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1266, "rank": 312, "sp500_rank": 163}, "ai_jobs": {"counts": null, "total": 88, "rank": 363, "sp500_rank": 192}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2302, "country": "United States", "website": "https://www.emerson.com/en-us", "crunchbase": {"text": "1880003e-1787-d414-f0a7-20ee85f4df2c", "url": "https://www.crunchbase.com/organization/emerson"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/emerson"], "stage": "Mature", "name": "Emerson Electric Company", "patent_name": "emerson electric company", "continent": "North America", "local_logo": "emerson_electric_company.png", "aliases": "Emerson; Emerson Electric; Emerson Electric Co", "permid_links": [{"text": 4295903920, "url": "https://permid.org/1-4295903920"}], "parent_info": "Platinum Equity (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EMR", "url": "https://www.google.com/finance/quote/emr:nyse"}], "market_full": [{"text": "DEU:EMR", "url": "https://www.google.com/finance/quote/deu:emr"}, {"text": "VIE:EMR", "url": "https://www.google.com/finance/quote/emr:vie"}, {"text": "MOEX:EMR-RM", "url": "https://www.google.com/finance/quote/emr-rm:moex"}, {"text": "MUN:EMR", "url": "https://www.google.com/finance/quote/emr:mun"}, {"text": "GER:EMRX", "url": "https://www.google.com/finance/quote/emrx:ger"}, {"text": "BER:EMR", "url": "https://www.google.com/finance/quote/ber:emr"}, {"text": "SWX:EMR", "url": "https://www.google.com/finance/quote/emr:swx"}, {"text": "LSE:0R33", "url": "https://www.google.com/finance/quote/0r33:lse"}, {"text": "BRN:EMR", "url": "https://www.google.com/finance/quote/brn:emr"}, {"text": "FRA:EMR", "url": "https://www.google.com/finance/quote/emr:fra"}, {"text": "DUS:EMR", "url": "https://www.google.com/finance/quote/dus:emr"}, {"text": "STU:EMR", "url": "https://www.google.com/finance/quote/emr:stu"}, {"text": "HAM:EMR", "url": "https://www.google.com/finance/quote/emr:ham"}, {"text": "HAN:EMR", "url": "https://www.google.com/finance/quote/emr:han"}, {"text": "NYSE:EMR", "url": "https://www.google.com/finance/quote/emr:nyse"}, {"text": "MEX:EMR", "url": "https://www.google.com/finance/quote/emr:mex"}], "crunchbase_description": "Emerson is a global technology & engineering company providing innovative solutions for customers in industrial and residential markets.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Compressed sensing", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 4884, "cluster_count": 1}, {"cluster_id": 72004, "cluster_count": 1}, {"cluster_id": 83588, "cluster_count": 1}, {"cluster_id": 15210, "cluster_count": 1}, {"cluster_id": 57944, "cluster_count": 1}, {"cluster_id": 89539, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 846, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 209, "referenced_count": 1}], "tasks": [{"referent": "image_processing", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "image_fusion", "task_count": 1}, {"referent": "computational_manga", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "interpretability_techniques_for_deep_learning", "task_count": 1}, {"referent": "general_reinforcement_learning", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "neural_probabilistic_language_model", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "electra", "method_count": 1}, {"referent": "laplacian_pyramid", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "ltls", "method_count": 1}, {"referent": "vilbert", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [17, 18, 13, 12, 15, 16, 24, 8, 27, 15, 0], "total": 165, "isTopResearch": false, "rank": 435, "fortune500_rank": 169}, "ai_publications": {"counts": [2, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0], "total": 6, "isTopResearch": false, "rank": 514, "fortune500_rank": 139}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 2, 0, 0, 1, 2, 9, 9, 9, 15, 0], "total": 47, "isTopResearch": false, "rank": 591, "fortune500_rank": 163}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 1.0, 1.0, 0, 0, 0, 15.0, 0], "total": 7.833333333333333, "isTopResearch": false, "rank": 613, "fortune500_rank": 178}}, "patents": {"ai_patents": {"counts": [9, 5, 2, 5, 0, 6, 4, 3, 2, 0, 0], "total": 36, "table": null, "rank": 252, "fortune500_rank": 81}, "ai_patents_growth": {"counts": [], "total": -29.166666666666668, "table": null, "rank": 1482, "fortune500_rank": 428}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [90, 50, 20, 50, 0, 60, 40, 30, 20, 0, 0], "total": 360, "table": null, "rank": 252, "fortune500_rank": 81}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 1, 2, 0, 2, 0, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 68, "fortune500_rank": 23}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 1, 0, 4, 0, 1, 2, 1, 1, 0, 0], "total": 10, "table": "industry", "rank": 69, "fortune500_rank": 22}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [5, 2, 0, 1, 0, 3, 2, 2, 0, 0, 0], "total": 15, "table": "industry", "rank": 218, "fortune500_rank": 80}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 249, "fortune500_rank": 95}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 97, "fortune500_rank": 24}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 0, 1, 3, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 126, "fortune500_rank": 56}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [5, 3, 2, 4, 0, 3, 4, 2, 1, 0, 0], "total": 24, "table": "application", "rank": 82, "fortune500_rank": 27}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 0, 0, 3, 0, 2, 1, 0, 0], "total": 7, "table": "application", "rank": 288, "fortune500_rank": 88}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [3, 0, 0, 1, 0, 2, 0, 0, 1, 0, 0], "total": 7, "table": "application", "rank": 147, "fortune500_rank": 45}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1262, "rank": 313, "fortune500_rank": 176}, "ai_jobs": {"counts": null, "total": 57, "rank": 455, "fortune500_rank": 240}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Emerson Electric Co. is an American multinational corporation headquartered in Ferguson, Missouri. The Fortune 500 company manufactures products and provides engineering services for a wide range of industrial, commercial, and consumer markets. Emerson has approximately 83,500 employees and 200 manufacturing locations worldwide.", "wikipedia_link": "https://www.nps.gov/shen/planyourvisit/hours.htm", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2235, "country": "United States", "website": "https://www.bostonscientific.com/", "crunchbase": {"text": "59005f4e-129b-e7dd-75ce-8d13c77cde21", "url": "https://www.crunchbase.com/organization/boston-scientific"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/boston-scientific"], "stage": "Mature", "name": "Boston Scientific", "patent_name": "boston scientific", "continent": "North America", "local_logo": "boston_scientific.png", "aliases": "Boston Scientific Corp; Boston Scientific Corporation", "permid_links": [{"text": 4295903586, "url": "https://permid.org/1-4295903586"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BSX", "url": "https://www.google.com/finance/quote/bsx:nyse"}, {"text": "NYSE:BSX-PR-A", "url": "https://www.google.com/finance/quote/bsx-pr-a:nyse"}], "market_full": [{"text": "MCX:BSX-RM", "url": "https://www.google.com/finance/quote/bsx-rm:mcx"}, {"text": "NYSE:BSX", "url": "https://www.google.com/finance/quote/bsx:nyse"}, {"text": "LSE:0HOY", "url": "https://www.google.com/finance/quote/0hoy:lse"}, {"text": "DUS:BSX", "url": "https://www.google.com/finance/quote/bsx:dus"}, {"text": "ASE:BSX-PR-A", "url": "https://www.google.com/finance/quote/ase:bsx-pr-a"}, {"text": "NYQ:BSX", "url": "https://www.google.com/finance/quote/bsx:nyq"}, {"text": "NYQ:BSX-PR-A", "url": "https://www.google.com/finance/quote/bsx-pr-a:nyq"}, {"text": "BRN:BSX", "url": "https://www.google.com/finance/quote/brn:bsx"}, {"text": "MEX:BSX", "url": "https://www.google.com/finance/quote/bsx:mex"}, {"text": "BER:BSX", "url": "https://www.google.com/finance/quote/ber:bsx"}, {"text": "SAO:B1SX34", "url": "https://www.google.com/finance/quote/b1sx34:sao"}, {"text": "DEU:BSXU", "url": "https://www.google.com/finance/quote/bsxu:deu"}, {"text": "NYSE:BSX-PR-A", "url": "https://www.google.com/finance/quote/bsx-pr-a:nyse"}, {"text": "MUN:BSX", "url": "https://www.google.com/finance/quote/bsx:mun"}, {"text": "VIE:BSXC", "url": "https://www.google.com/finance/quote/bsxc:vie"}, {"text": "ASE:BSX", "url": "https://www.google.com/finance/quote/ase:bsx"}, {"text": "FRA:BSX", "url": "https://www.google.com/finance/quote/bsx:fra"}, {"text": "GER:BSXX", "url": "https://www.google.com/finance/quote/bsxx:ger"}, {"text": "STU:BSX", "url": "https://www.google.com/finance/quote/bsx:stu"}], "crunchbase_description": "Boston Scientific is an innovator of medical solutions that improve patient health.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Image sensor", "field_count": 1}], "clusters": [{"cluster_id": 3261, "cluster_count": 1}, {"cluster_id": 21509, "cluster_count": 1}, {"cluster_id": 670, "cluster_count": 1}, {"cluster_id": 430, "cluster_count": 1}, {"cluster_id": 41382, "cluster_count": 1}, {"cluster_id": 45742, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 2554, "referenced_count": 1}], "tasks": [{"referent": "atrial_fibrillation_detection", "task_count": 1}, {"referent": "atrial_fibrillation", "task_count": 1}, {"referent": "question_answering", "task_count": 1}, {"referent": "reasoning", "task_count": 1}, {"referent": "epilepsy_prediction", "task_count": 1}, {"referent": "depression_detection", "task_count": 1}], "methods": [{"referent": "pafs", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "residual_srm", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [110, 151, 152, 155, 156, 165, 152, 170, 185, 230, 0], "total": 1626, "isTopResearch": false, "rank": 138, "fortune500_rank": 53}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 1, 0, 2, 2, 0, 0], "total": 6, "isTopResearch": false, "rank": 514, "fortune500_rank": 139}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "fortune500_rank": 419}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 3, 13, 9, 10, 31, 23, 36, 36, 2], "total": 163, "isTopResearch": false, "rank": 423, "fortune500_rank": 123}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 3.0, 0, 0, 10.0, 0, 11.5, 18.0, 0, 0], "total": 27.166666666666668, "isTopResearch": false, "rank": 214, "fortune500_rank": 65}}, "patents": {"ai_patents": {"counts": [3, 7, 10, 9, 9, 10, 7, 3, 3, 0, 0], "total": 61, "table": null, "rank": 205, "fortune500_rank": 64}, "ai_patents_growth": {"counts": [], "total": -25.343915343915345, "table": null, "rank": 1476, "fortune500_rank": 426}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 70, 100, 90, 90, 100, 70, 30, 30, 0, 0], "total": 610, "table": null, "rank": 205, "fortune500_rank": 64}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [3, 7, 10, 9, 9, 10, 6, 3, 3, 0, 0], "total": 60, "table": "industry", "rank": 21, "fortune500_rank": 7}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [2, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 363, "fortune500_rank": 124}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 0, 1, 3, 2, 0, 1, 0, 0], "total": 8, "table": "application", "rank": 269, "fortune500_rank": 82}, "Analytics_and_Algorithms": {"counts": [1, 7, 7, 8, 9, 7, 2, 3, 2, 0, 0], "total": 46, "table": "application", "rank": 31, "fortune500_rank": 13}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 2, 1, 2, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 158, "fortune500_rank": 51}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1256, "rank": 314, "fortune500_rank": 177}, "ai_jobs": {"counts": null, "total": 148, "rank": 274, "fortune500_rank": 146}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Boston Scientific Corporation, doing business as Boston Scientific, is a manufacturer of medical devices used in interventional medical specialties, including interventional radiology, interventional cardiology, peripheral interventions, neuromodulation, neurovascular intervention, electrophysiology, cardiac surgery, vascular surgery, endoscopy, oncology, urology and gynecology.", "wikipedia_link": "https://en.wikipedia.org/wiki/Boston_Scientific", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1878, "country": "United States", "website": "https://www.usps.com/", "crunchbase": {"text": " 216c4332-189d-4028-a471-c9f8174df2a9", "url": " https://www.crunchbase.com/organization/u-s-postal-service-office-of-inspector-general"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/usps"], "stage": "Unknown", "name": "U.S. Postal Service", "patent_name": "U.S. Postal Service", "continent": "North America", "local_logo": null, "aliases": "U.S. Postal Service; Usps", "permid_links": [{"text": 4296376460, "url": "https://permid.org/1-4296376460"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [{"cluster_id": 15993, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "computational_manga", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2, 5, 0, 0, 2, 4, 2, 4, 2, 0, 0], "total": 21, "isTopResearch": false, "rank": 797, "sp500_rank": 371}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 820, "sp500_rank": 333}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 5.0, "isTopResearch": false, "rank": 713, "sp500_rank": 284}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 1, 0, 3, 6, 0, 0, 0], "total": 11, "table": null, "rank": 394, "sp500_rank": 188}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 10, 0, 30, 60, 0, 0, 0], "total": 110, "table": null, "rank": 394, "sp500_rank": 188}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "sp500_rank": 115}, "Transportation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 131, "sp500_rank": 89}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 2, 2, 0, 0, 0], "total": 5, "table": "industry", "rank": 336, "sp500_rank": 166}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 172, "sp500_rank": 111}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 3, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 225, "sp500_rank": 119}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 1, 1, 0, 2, 3, 0, 0, 0], "total": 7, "table": "industry", "rank": 183, "sp500_rank": 119}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "sp500_rank": 67}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 1, 0, 2, 2, 0, 0, 0], "total": 6, "table": "application", "rank": 163, "sp500_rank": 110}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 5, 0, 0, 0], "total": 6, "table": "application", "rank": 300, "sp500_rank": 151}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1250, "rank": 315, "sp500_rank": 164}, "ai_jobs": {"counts": null, "total": 139, "rank": 284, "sp500_rank": 166}}, "sector": "Industrials", "business_sector": "Transportation"}, {"cset_id": 2502, "country": "United States", "website": "https://www.troweprice.com/corporate/en/home.html", "crunchbase": {"text": "6d0363b8-edcf-07d2-dc50-cc15adda3ede", "url": "https://www.crunchbase.com/organization/t-rowe-price"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/t--rowe-price"], "stage": "Mature", "name": "T. Rowe Price Group", "patent_name": "t. rowe price group", "continent": "North America", "local_logo": "t_rowe_price_group.png", "aliases": "T. Rowe Price; T. Rowe Price Associates; T. Rowe Price Group, Inc; T.Roweprice", "permid_links": [{"text": 4295907655, "url": "https://permid.org/1-4295907655"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:TROW", "url": "https://www.google.com/finance/quote/nasdaq:trow"}], "market_full": [{"text": "MCX:TROW-RM", "url": "https://www.google.com/finance/quote/mcx:trow-rm"}, {"text": "GER:TRX", "url": "https://www.google.com/finance/quote/ger:trx"}, {"text": "SAO:T1RO34", "url": "https://www.google.com/finance/quote/sao:t1ro34"}, {"text": "BRN:TR1", "url": "https://www.google.com/finance/quote/brn:tr1"}, {"text": "VIE:TROW", "url": "https://www.google.com/finance/quote/trow:vie"}, {"text": "NASDAQ:TROW", "url": "https://www.google.com/finance/quote/nasdaq:trow"}, {"text": "DUS:TR1", "url": "https://www.google.com/finance/quote/dus:tr1"}, {"text": "MUN:TR1", "url": "https://www.google.com/finance/quote/mun:tr1"}, {"text": "DEU:TROW", "url": "https://www.google.com/finance/quote/deu:trow"}, {"text": "MEX:TROW*", "url": "https://www.google.com/finance/quote/mex:trow*"}, {"text": "LSE:0KNY", "url": "https://www.google.com/finance/quote/0kny:lse"}, {"text": "STU:TR1", "url": "https://www.google.com/finance/quote/stu:tr1"}, {"text": "HAN:TR1", "url": "https://www.google.com/finance/quote/han:tr1"}, {"text": "BER:TR1", "url": "https://www.google.com/finance/quote/ber:tr1"}, {"text": "FRA:TR1", "url": "https://www.google.com/finance/quote/fra:tr1"}], "crunchbase_description": "T. Rowe Price is an investment management firm dedicated to funding technology startups.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 3, 0, 1, 3, 2, 3, 2, 2, 4, 0], "total": 21, "isTopResearch": false, "rank": 797, "fortune500_rank": 284}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1248, "rank": 316, "fortune500_rank": 178}, "ai_jobs": {"counts": null, "total": 85, "rank": 367, "fortune500_rank": 195}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "T. Rowe Price Group, Inc. is an American publicly owned global investment management firm that offers funds, advisory services, account management, and retirement plans and services for individuals, institutions, and financial intermediaries. The firm, with assets under management of more than $1.3 trillion at the end of 2019, is headquartered at 100 East Pratt Street in Baltimore, Maryland, and its 16 international offices serve clients in 47 countries around the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/T._Rowe_Price", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2118, "country": "United States", "website": "https://www.pmi.com/", "crunchbase": {"text": " 5930cd5e-55eb-8c0a-3733-812b63cd907d", "url": " https://www.crunchbase.com/organization/philip-morris-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/insidepmi"], "stage": "Mature", "name": "Philip Morris International", "patent_name": "Philip Morris International", "continent": "North America", "local_logo": null, "aliases": "Philip Morris International; Pmi", "permid_links": [{"text": 4298015178, "url": "https://permid.org/1-4298015178"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PM", "url": "https://www.google.com/finance/quote/NYSE:PM"}], "market_full": [{"text": "NYSE:PM", "url": "https://www.google.com/finance/quote/NYSE:PM"}, {"text": "MCX:PM-RM", "url": "https://www.google.com/finance/quote/MCX:PM-RM"}, {"text": "FRA:4I1", "url": "https://www.google.com/finance/quote/4I1:FRA"}, {"text": "NYQ:PM", "url": "https://www.google.com/finance/quote/NYQ:PM"}, {"text": "DUS:4I1", "url": "https://www.google.com/finance/quote/4I1:DUS"}, {"text": "MUN:4I1", "url": "https://www.google.com/finance/quote/4I1:MUN"}, {"text": "BER:4I1", "url": "https://www.google.com/finance/quote/4I1:BER"}, {"text": "BRN:4I1", "url": "https://www.google.com/finance/quote/4I1:BRN"}, {"text": "MEX:PM", "url": "https://www.google.com/finance/quote/MEX:PM"}, {"text": "VIE:PMOR", "url": "https://www.google.com/finance/quote/PMOR:VIE"}, {"text": "LSE:0M8V", "url": "https://www.google.com/finance/quote/0M8V:LSE"}, {"text": "SAO:PHMO34", "url": "https://www.google.com/finance/quote/PHMO34:SAO"}, {"text": "SWX:PMI", "url": "https://www.google.com/finance/quote/PMI:SWX"}, {"text": "STU:4I1", "url": "https://www.google.com/finance/quote/4I1:STU"}, {"text": "ASE:PM", "url": "https://www.google.com/finance/quote/ASE:PM"}, {"text": "GER:4IX", "url": "https://www.google.com/finance/quote/4IX:GER"}, {"text": "DEU:4I1", "url": "https://www.google.com/finance/quote/4I1:DEU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Watson", "field_count": 1}, {"field_name": "Snippet", "field_count": 1}, {"field_name": "Information extraction", "field_count": 1}, {"field_name": "Linear discriminant analysis", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 34138, "cluster_count": 5}, {"cluster_id": 49570, "cluster_count": 1}, {"cluster_id": 15036, "cluster_count": 1}, {"cluster_id": 1038, "cluster_count": 1}, {"cluster_id": 3300, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2118, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "feature_selection", "task_count": 1}, {"referent": "translation", "task_count": 1}, {"referent": "structured_prediction", "task_count": 1}, {"referent": "text_image_retrieval", "task_count": 1}, {"referent": "hierarchical_reinforcement_learning", "task_count": 1}, {"referent": "community_detection", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}, {"referent": "image_annotation", "task_count": 1}, {"referent": "learning_network_representations", "task_count": 1}], "methods": [{"referent": "schnet", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "general", "method_count": 1}, {"referent": "estimation_statistics", "method_count": 1}, {"referent": "rule_based_systems", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "hri_pipeline", "method_count": 1}, {"referent": "gts", "method_count": 1}, {"referent": "mckernel", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [58, 64, 68, 86, 68, 63, 85, 64, 52, 37, 0], "total": 645, "isTopResearch": false, "rank": 242, "sp500_rank": 167, "fortune500_rank": 93}, "ai_publications": {"counts": [1, 0, 2, 3, 0, 0, 1, 1, 0, 0, 0], "total": 8, "isTopResearch": false, "rank": 455, "sp500_rank": 233, "fortune500_rank": 128}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400, "fortune500_rank": 419}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [5, 2, 8, 17, 29, 23, 24, 29, 19, 18, 0], "total": 174, "isTopResearch": false, "rank": 406, "sp500_rank": 184, "fortune500_rank": 119}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 2, 0, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102, "fortune500_rank": 54}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [5.0, 0, 4.0, 5.666666666666667, 0, 0, 24.0, 29.0, 0, 0, 0], "total": 21.75, "isTopResearch": false, "rank": 282, "sp500_rank": 79, "fortune500_rank": 89}}, "patents": {"ai_patents": {"counts": [3, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 4, "table": null, "rank": 565, "sp500_rank": 235, "fortune500_rank": 176}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [30, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 40, "table": null, "rank": 565, "sp500_rank": 235, "fortune500_rank": 176}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158, "sp500_rank": 91, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 132, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 61, "sp500_rank": 47, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1244, "rank": 317, "sp500_rank": 165, "fortune500_rank": 179}, "ai_jobs": {"counts": null, "total": 287, "rank": 189, "sp500_rank": 124, "fortune500_rank": 107}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages"}, {"cset_id": 2250, "country": "United States", "website": "http://cdw.com/", "crunchbase": {"text": "ae883a31-3739-7eb9-4ce0-463ee070ed79", "url": "https://www.crunchbase.com/organization/cdw-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cdw"], "stage": "Mature", "name": "Cdw Corp", "patent_name": "cdw corp", "continent": "North America", "local_logo": "cdw_corp.png", "aliases": "CDW; CDW LLC; Cdw Corporation", "permid_links": [{"text": 4295905803, "url": "https://permid.org/1-4295905803"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CDW", "url": "https://www.google.com/finance/quote/cdw:nasdaq"}], "market_full": [{"text": "DUS:CDW", "url": "https://www.google.com/finance/quote/cdw:dus"}, {"text": "FRA:CDW", "url": "https://www.google.com/finance/quote/cdw:fra"}, {"text": "STU:CDW", "url": "https://www.google.com/finance/quote/cdw:stu"}, {"text": "BER:CDW", "url": "https://www.google.com/finance/quote/ber:cdw"}, {"text": "MEX:CDW*", "url": "https://www.google.com/finance/quote/cdw*:mex"}, {"text": "DEU:CDW", "url": "https://www.google.com/finance/quote/cdw:deu"}, {"text": "MUN:CDW", "url": "https://www.google.com/finance/quote/cdw:mun"}, {"text": "BRN:CDW", "url": "https://www.google.com/finance/quote/brn:cdw"}, {"text": "HAN:CDW", "url": "https://www.google.com/finance/quote/cdw:han"}, {"text": "NASDAQ:CDW", "url": "https://www.google.com/finance/quote/cdw:nasdaq"}, {"text": "MCX:CDW-RM", "url": "https://www.google.com/finance/quote/cdw-rm:mcx"}], "crunchbase_description": "CDW is a provider of IT solutions for business, government, education, and healthcare.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 4, 5, 0, 0, 0], "total": 11, "table": null, "rank": 394, "fortune500_rank": 126}, "ai_patents_growth": {"counts": [], "total": 62.5, "table": null, "rank": 169, "fortune500_rank": 40}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 40, 50, 0, 0, 0], "total": 110, "table": null, "rank": 394, "fortune500_rank": 126}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 336, "fortune500_rank": 117}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 2, 2, 0, 0, 0], "total": 6, "table": "industry", "rank": 196, "fortune500_rank": 65}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 75, "fortune500_rank": 39}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 139, "fortune500_rank": 43}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0], "total": 5, "table": "application", "rank": 183, "fortune500_rank": 63}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1244, "rank": 317, "fortune500_rank": 179}, "ai_jobs": {"counts": null, "total": 48, "rank": 490, "fortune500_rank": 259}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 780, "country": "United States", "website": "http://www.zillow.com", "crunchbase": {"text": "00e435dd-f616-27b3-9128-58fb909d04b4", "url": "https://www.crunchbase.com/organization/zillow"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/zillow"], "stage": "Mature", "name": "Zillow", "patent_name": "zillow", "continent": "North America", "local_logo": "zillow.png", "aliases": "Zillow Group; Zillow Group Inc; Zillow, Inc", "permid_links": [{"text": 5044027706, "url": "https://permid.org/1-5044027706"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:Z", "url": "https://www.google.com/finance/quote/nasdaq:z"}, {"text": "NASDAQ:ZG", "url": "https://www.google.com/finance/quote/nasdaq:zg"}], "market_full": [{"text": "BMV:Z", "url": "https://www.google.com/finance/quote/bmv:z"}, {"text": "BER:0ZG", "url": "https://www.google.com/finance/quote/0zg:ber"}, {"text": "NASDAQ:Z", "url": "https://www.google.com/finance/quote/nasdaq:z"}, {"text": "MOEX:Z-RM", "url": "https://www.google.com/finance/quote/moex:z-rm"}, {"text": "DUS:0ZG", "url": "https://www.google.com/finance/quote/0zg:dus"}, {"text": "MUN:0ZG", "url": "https://www.google.com/finance/quote/0zg:mun"}, {"text": "FWB:0ZG", "url": "https://www.google.com/finance/quote/0zg:fwb"}, {"text": "FRA:0ZG", "url": "https://www.google.com/finance/quote/0zg:fra"}, {"text": "NASDAQ:ZG", "url": "https://www.google.com/finance/quote/nasdaq:zg"}], "crunchbase_description": "Zillow is an online real estate marketplace for finding and sharing information about homes, real estate, and mortgages.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Inertial measurement unit", "field_count": 2}, {"field_name": "Translation (geometry)", "field_count": 1}, {"field_name": "Rendering (computer graphics)", "field_count": 1}, {"field_name": "Boosting (machine learning)", "field_count": 1}, {"field_name": "Photogrammetry", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Panorama", "field_count": 1}, {"field_name": "Augmented reality", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 32264, "cluster_count": 3}, {"cluster_id": 228, "cluster_count": 2}, {"cluster_id": 120405, "cluster_count": 1}, {"cluster_id": 14851, "cluster_count": 1}, {"cluster_id": 12947, "cluster_count": 1}, {"cluster_id": 18403, "cluster_count": 1}, {"cluster_id": 20032, "cluster_count": 1}, {"cluster_id": 67393, "cluster_count": 1}, {"cluster_id": 55931, "cluster_count": 1}, {"cluster_id": 10944, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 38}, {"ref_CSET_id": 163, "referenced_count": 30}, {"ref_CSET_id": 6, "referenced_count": 22}, {"ref_CSET_id": 87, "referenced_count": 10}, {"ref_CSET_id": 127, "referenced_count": 10}, {"ref_CSET_id": 780, "referenced_count": 7}, {"ref_CSET_id": 223, "referenced_count": 5}, {"ref_CSET_id": 1126, "referenced_count": 5}, {"ref_CSET_id": 184, "referenced_count": 5}, {"ref_CSET_id": 792, "referenced_count": 3}], "tasks": [{"referent": "visual_navigation", "task_count": 2}, {"referent": "autonomous_navigation", "task_count": 2}, {"referent": "topological_data_analysis", "task_count": 2}, {"referent": "image_restoration", "task_count": 2}, {"referent": "cloud_detection", "task_count": 1}, {"referent": "unsupervised_pre_training", "task_count": 1}, {"referent": "scene_understanding", "task_count": 1}, {"referent": "transfer_learning", "task_count": 1}, {"referent": "snes_games", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "loss_functions", "method_count": 2}, {"referent": "impala", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "q_learning", "method_count": 1}, {"referent": "sttp", "method_count": 1}, {"referent": "amsbound", "method_count": 1}, {"referent": "ctc_loss", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 2, 2, 3, 4, 9, 10, 16, 10, 14, 0], "total": 70, "isTopResearch": false, "rank": 566}, "ai_publications": {"counts": [0, 0, 0, 3, 3, 2, 7, 6, 3, 7, 0], "total": 31, "isTopResearch": false, "rank": 235}, "ai_publications_growth": {"counts": [], "total": 23.015873015873016, "isTopResearch": false, "rank": 110}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 1, 1, 1, 0, 1, 2, 0], "total": 7, "isTopResearch": false, "rank": 134}, "citation_counts": {"counts": [0, 2, 3, 4, 9, 46, 98, 150, 219, 184, 5], "total": 720, "isTopResearch": false, "rank": 224}, "cv_pubs": {"counts": [0, 0, 0, 3, 1, 1, 3, 2, 1, 3, 0], "total": 14, "isTopResearch": true, "rank": 171}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 1.3333333333333333, 3.0, 23.0, 14.0, 25.0, 73.0, 26.285714285714285, 0], "total": 23.225806451612904, "isTopResearch": false, "rank": 263}}, "patents": {"ai_patents": {"counts": [1, 2, 0, 1, 0, 2, 0, 3, 3, 0, 0], "total": 12, "table": null, "rank": 384}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 20, 0, 10, 0, 20, 0, 30, 30, 0, 0], "total": 120, "table": null, "rank": 384}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0], "total": 4, "table": "industry", "rank": 147}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 1, 0, 2, 0, 1, 1, 0, 0], "total": 6, "table": "industry", "rank": 305}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 2, 0, 2, 2, 0, 0], "total": 6, "table": "industry", "rank": 204}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [1, 2, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 5, "table": "industry", "rank": 213}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 212}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 0, 3, 3, 0, 0], "total": 8, "table": "application", "rank": 269}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0], "total": 4, "table": "application", "rank": 189}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1241, "rank": 319}, "ai_jobs": {"counts": null, "total": 200, "rank": 230}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Zillow Group, Inc., or simply Zillow, is an American online real estate marketplace company that was founded in 2006, was created by Rich Barton and Lloyd Frink, former Microsoft executives and founders of Microsoft spin-off Expedia; Spencer Rascoff, a co-founder of Hotwire.com; David Beitel, Zillow's current Chief Technology Officer; and Kristin Acker, Zillow's current Senior Vice President of Experience Design.", "wikipedia_link": "https://en.wikipedia.org/wiki/Zillow", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2025, "country": "Italy", "website": "https://www.intesasanpaolo.com/", "crunchbase": {"text": " 4445cd7f-2203-3152-09bc-fc2c91faebb1", "url": "https://www.crunchbase.com/organization/intesa-sanpaolo"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/intesa-sanpaolo"], "stage": "Mature", "name": "Intesa Sanpaolo", "patent_name": "Intesa Sanpaolo", "continent": "Europe", "local_logo": null, "aliases": "Intesa Sanpaolo; Intesa Sanpaolo Spa", "permid_links": [{"text": 4295875735, "url": "https://permid.org/1-4295875735"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PKC:IITSF", "url": "https://www.google.com/finance/quote/IITSF:PKC"}, {"text": "DUS:IES", "url": "https://www.google.com/finance/quote/DUS:IES"}, {"text": "DEU:IESJ", "url": "https://www.google.com/finance/quote/DEU:IESJ"}, {"text": "STU:IES", "url": "https://www.google.com/finance/quote/IES:STU"}, {"text": "GER:IESX", "url": "https://www.google.com/finance/quote/GER:IESX"}, {"text": "VIE:ISP", "url": "https://www.google.com/finance/quote/ISP:VIE"}, {"text": "EBT:ISPM", "url": "https://www.google.com/finance/quote/EBT:ISPm"}, {"text": "FRA:IESJ", "url": "https://www.google.com/finance/quote/FRA:IESJ"}, {"text": "MIL:ISP", "url": "https://www.google.com/finance/quote/ISP:MIL"}, {"text": "BER:IES", "url": "https://www.google.com/finance/quote/BER:IES"}, {"text": "MEX:ISPN", "url": "https://www.google.com/finance/quote/ISPN:MEX"}, {"text": "FRA:IES", "url": "https://www.google.com/finance/quote/FRA:IES"}, {"text": "PKC:ISNPY", "url": "https://www.google.com/finance/quote/ISNPY:PKC"}, {"text": "STU:IESJ", "url": "https://www.google.com/finance/quote/IESJ:STU"}, {"text": "MUN:IES", "url": "https://www.google.com/finance/quote/IES:MUN"}, {"text": "HAN:IES", "url": "https://www.google.com/finance/quote/HAN:IES"}, {"text": "DEU:ISP", "url": "https://www.google.com/finance/quote/DEU:ISP"}, {"text": "BER:IESJ", "url": "https://www.google.com/finance/quote/BER:IESJ"}, {"text": "HAM:IES", "url": "https://www.google.com/finance/quote/HAM:IES"}, {"text": "LSE:0HBC", "url": "https://www.google.com/finance/quote/0HBC:LSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Decision tree", "field_count": 2}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 4358, "cluster_count": 5}, {"cluster_id": 14, "cluster_count": 2}, {"cluster_id": 10008, "cluster_count": 1}, {"cluster_id": 32237, "cluster_count": 1}, {"cluster_id": 51264, "cluster_count": 1}, {"cluster_id": 58779, "cluster_count": 1}, {"cluster_id": 14530, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 34}, {"ref_CSET_id": 163, "referenced_count": 21}, {"ref_CSET_id": 115, "referenced_count": 16}, {"ref_CSET_id": 2025, "referenced_count": 10}, {"ref_CSET_id": 1125, "referenced_count": 6}, {"ref_CSET_id": 792, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 1911, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 1}], "tasks": [{"referent": "fairness", "task_count": 3}, {"referent": "classification", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "multimodal_deep_learning", "task_count": 1}, {"referent": "semi_supervised_image_classification", "task_count": 1}, {"referent": "bias_detection", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "3d_representations", "method_count": 2}, {"referent": "reinforcement_learning", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "graphs", "method_count": 1}, {"referent": "graph_convolutional_networks", "method_count": 1}, {"referent": "esp", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [11, 11, 9, 12, 6, 5, 6, 16, 31, 28, 0], "total": 135, "isTopResearch": false, "rank": 471, "sp500_rank": 280}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 6, 4, 0], "total": 14, "isTopResearch": false, "rank": 359, "sp500_rank": 192}, "ai_publications_growth": {"counts": [], "total": 8.333333333333332, "isTopResearch": false, "rank": 167, "sp500_rank": 87}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 15, 23, 3], "total": 42, "isTopResearch": false, "rank": 607, "sp500_rank": 260}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0.25, 2.5, 5.75, 0], "total": 3.0, "isTopResearch": false, "rank": 779, "sp500_rank": 312}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1226, "rank": 320, "sp500_rank": 166}, "ai_jobs": {"counts": null, "total": 117, "rank": 311, "sp500_rank": 174}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2334, "country": "United States", "website": "https://www.gapinc.com/", "crunchbase": {"text": "a9c6f8fb-b733-3f42-341d-7545dfa6adac", "url": "https://www.crunchbase.com/organization/gap"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/gap-inc-"], "stage": "Mature", "name": "Gap Inc.", "patent_name": "gap inc.", "continent": "North America", "local_logo": "gap_inc.png", "aliases": "Gap", "permid_links": [{"text": 4295904051, "url": "https://permid.org/1-4295904051"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:GPS", "url": "https://www.google.com/finance/quote/gps:nyse"}], "market_full": [{"text": "FRA:GAP", "url": "https://www.google.com/finance/quote/fra:gap"}, {"text": "NYQ:GPS", "url": "https://www.google.com/finance/quote/gps:nyq"}, {"text": "MOEX:GPS-RM", "url": "https://www.google.com/finance/quote/gps-rm:moex"}, {"text": "MUN:GAP", "url": "https://www.google.com/finance/quote/gap:mun"}, {"text": "GER:GAPX", "url": "https://www.google.com/finance/quote/gapx:ger"}, {"text": "DEU:GPS", "url": "https://www.google.com/finance/quote/deu:gps"}, {"text": "BRN:GAP", "url": "https://www.google.com/finance/quote/brn:gap"}, {"text": "BER:GAP", "url": "https://www.google.com/finance/quote/ber:gap"}, {"text": "MEX:GPS*", "url": "https://www.google.com/finance/quote/gps*:mex"}, {"text": "STU:GAP", "url": "https://www.google.com/finance/quote/gap:stu"}, {"text": "SAO:GPSI34", "url": "https://www.google.com/finance/quote/gpsi34:sao"}, {"text": "LSE:0ITS", "url": "https://www.google.com/finance/quote/0its:lse"}, {"text": "ASE:GPS", "url": "https://www.google.com/finance/quote/ase:gps"}, {"text": "NYSE:GPS", "url": "https://www.google.com/finance/quote/gps:nyse"}, {"text": "DUS:GAP", "url": "https://www.google.com/finance/quote/dus:gap"}], "crunchbase_description": "Gap is a retail company that offers accessories, merchandise apparel, and personal care products for women, men, and children.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 3, 15, 2, 4, 1, 2, 0, 1, 0, 0], "total": 28, "isTopResearch": false, "rank": 727, "fortune500_rank": 258}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1222, "rank": 321, "fortune500_rank": 181}, "ai_jobs": {"counts": null, "total": 130, "rank": 297, "fortune500_rank": 161}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "The Gap, Inc., commonly known as Gap Inc. or Gap, (stylized as GAP) is an American worldwide clothing and accessories retailer.", "wikipedia_link": "https://en.wikipedia.org/wiki/Gap_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2478, "country": "United States", "website": "http://www.roberthalf.com/", "crunchbase": {"text": "77cd5640-82a5-4502-7329-c73bdad11e23", "url": "https://www.crunchbase.com/organization/robert-half-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/robert-half-international"], "stage": "Mature", "name": "Robert Half International", "patent_name": "robert half international", "continent": "North America", "local_logo": "robert_half_international.png", "aliases": "Robert Half; Robert Half International Inc", "permid_links": [{"text": 4295904835, "url": "https://permid.org/1-4295904835"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:RHI", "url": "https://www.google.com/finance/quote/nyse:rhi"}], "market_full": [{"text": "ASE:RHI", "url": "https://www.google.com/finance/quote/ase:rhi"}, {"text": "DUS:RHJ", "url": "https://www.google.com/finance/quote/dus:rhj"}, {"text": "SAO:R1HI34", "url": "https://www.google.com/finance/quote/r1hi34:sao"}, {"text": "STU:RHJ", "url": "https://www.google.com/finance/quote/rhj:stu"}, {"text": "BER:RHJ", "url": "https://www.google.com/finance/quote/ber:rhj"}, {"text": "MEX:RHI*", "url": "https://www.google.com/finance/quote/mex:rhi*"}, {"text": "NYQ:RHI", "url": "https://www.google.com/finance/quote/nyq:rhi"}, {"text": "DEU:RHI", "url": "https://www.google.com/finance/quote/deu:rhi"}, {"text": "LSE:0KX9", "url": "https://www.google.com/finance/quote/0kx9:lse"}, {"text": "MCX:RHI-RM", "url": "https://www.google.com/finance/quote/mcx:rhi-rm"}, {"text": "FRA:RHJ", "url": "https://www.google.com/finance/quote/fra:rhj"}, {"text": "BRN:RHJ", "url": "https://www.google.com/finance/quote/brn:rhj"}, {"text": "NYSE:RHI", "url": "https://www.google.com/finance/quote/nyse:rhi"}], "crunchbase_description": "Robert Half is a professional services company and is the world's first and largest accounting and finance staffing firm.\u00a0", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 1148, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1222, "rank": 321, "fortune500_rank": 181}, "ai_jobs": {"counts": null, "total": 78, "rank": 385, "fortune500_rank": 202}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Robert Half International, or commonly referred as, Robert Half, is a global human resource consulting firm based in Menlo Park, California founded in 1948. It is a member of the S&P 500, and is credited as being the world's first and largest accounting and finance staffing firm, with over 345 locations worldwide.", "wikipedia_link": "https://en.wikipedia.org/wiki/Robert_Half_International", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2035, "country": "France", "website": "https://www.sncf.com/", "crunchbase": {"text": " 84584a11-9b8b-3412-e65f-500b0ec34f2e", "url": "https://www.crunchbase.com/organization/sncf"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sncf"], "stage": "Unknown", "name": "Sncf Mobilit\u00e9s", "patent_name": "SNCF Mobilit\u00e9s", "continent": "Europe", "local_logo": null, "aliases": "SNCF Mobilit\u00e9s; Sncf", "permid_links": [{"text": 4295866888, "url": "https://permid.org/1-4295866888"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Test set", "field_count": 1}], "clusters": [{"cluster_id": 36567, "cluster_count": 2}, {"cluster_id": 47589, "cluster_count": 1}, {"cluster_id": 75308, "cluster_count": 1}, {"cluster_id": 14903, "cluster_count": 1}, {"cluster_id": 7110, "cluster_count": 1}, {"cluster_id": 20534, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 13}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 21, "referenced_count": 2}, {"ref_CSET_id": 1850, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}, {"ref_CSET_id": 202, "referenced_count": 1}, {"ref_CSET_id": 328, "referenced_count": 1}, {"ref_CSET_id": 219, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "multi_task_learning", "task_count": 1}, {"referent": "load_forecasting", "task_count": 1}, {"referent": "object_detection", "task_count": 1}, {"referent": "data_clustering", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}, {"referent": "coherence_evaluation", "task_count": 1}, {"referent": "traffic_prediction", "task_count": 1}, {"referent": "q_learning", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "representation_learning", "method_count": 1}, {"referent": "cutmix", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "variational_optimization", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [7, 6, 18, 16, 11, 11, 18, 18, 13, 17, 2], "total": 137, "isTopResearch": false, "rank": 467, "sp500_rank": 278}, "ai_publications": {"counts": [0, 0, 0, 1, 1, 0, 1, 0, 2, 2, 0], "total": 7, "isTopResearch": false, "rank": 481, "sp500_rank": 243}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 1, 3, 6, 8, 8, 1], "total": 28, "isTopResearch": false, "rank": 651, "sp500_rank": 276}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 1.0, 0, 3.0, 0, 4.0, 4.0, 0], "total": 4.0, "isTopResearch": false, "rank": 735, "sp500_rank": 295}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 0, 0, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "sp500_rank": 196}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1207, "rank": 323, "sp500_rank": 167}, "ai_jobs": {"counts": null, "total": 62, "rank": 435, "sp500_rank": 220}}, "sector": "Industrials", "business_sector": "Transportation"}, {"cset_id": 2406, "country": "United States", "website": "https://www.mmc.com/", "crunchbase": {"text": "5daf7ee6-c3ef-1658-a577-544fc8ceed95", "url": "https://www.crunchbase.com/organization/marsh-mclennan-companies-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/marshmclennan"], "stage": "Mature", "name": "Marsh & McLennan", "patent_name": "marsh & mclennan", "continent": "North America", "local_logo": "marsh_&_mclennan.png", "aliases": "Marsh & McLennan Companies; Marsh & Mclennan Companies Inc; Marsh & Mclennan Companies, Inc; Mmc", "permid_links": [{"text": 4295904476, "url": "https://permid.org/1-4295904476"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MMC", "url": "https://www.google.com/finance/quote/mmc:nyse"}], "market_full": [{"text": "MUN:MSN", "url": "https://www.google.com/finance/quote/msn:mun"}, {"text": "FRA:MSN", "url": "https://www.google.com/finance/quote/fra:msn"}, {"text": "SAO:M1MC34", "url": "https://www.google.com/finance/quote/m1mc34:sao"}, {"text": "DUS:MSN", "url": "https://www.google.com/finance/quote/dus:msn"}, {"text": "ASE:MMC", "url": "https://www.google.com/finance/quote/ase:mmc"}, {"text": "MOEX:MMC-RM", "url": "https://www.google.com/finance/quote/mmc-rm:moex"}, {"text": "LSE:MHM", "url": "https://www.google.com/finance/quote/lse:mhm"}, {"text": "DEU:MMC", "url": "https://www.google.com/finance/quote/deu:mmc"}, {"text": "NYQ:MMC", "url": "https://www.google.com/finance/quote/mmc:nyq"}, {"text": "BER:MSN", "url": "https://www.google.com/finance/quote/ber:msn"}, {"text": "BRN:MSN", "url": "https://www.google.com/finance/quote/brn:msn"}, {"text": "STU:MSN", "url": "https://www.google.com/finance/quote/msn:stu"}, {"text": "MEX:MMC*", "url": "https://www.google.com/finance/quote/mex:mmc*"}, {"text": "VIE:MMCO", "url": "https://www.google.com/finance/quote/mmco:vie"}, {"text": "NYSE:MMC", "url": "https://www.google.com/finance/quote/mmc:nyse"}, {"text": "HAN:MSN", "url": "https://www.google.com/finance/quote/han:msn"}, {"text": "BUE:MMC3", "url": "https://www.google.com/finance/quote/bue:mmc3"}, {"text": "GER:MSNX", "url": "https://www.google.com/finance/quote/ger:msnx"}], "crunchbase_description": "Marsh & McLennan Companies is a global professional services firm providing advice and solutions in the areas of risk.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 1, 3, 1, 2, 2, 2, 0], "total": 12, "isTopResearch": false, "rank": 907, "fortune500_rank": 317}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1175, "rank": 324, "fortune500_rank": 183}, "ai_jobs": {"counts": null, "total": 176, "rank": 244, "fortune500_rank": 131}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Marsh & McLennan Companies, Inc. is a global professional services firm, headquartered in New York City with businesses in insurance brokerage, risk management, reinsurance services, talent management, investment advisory, and management consulting. Its four main operating companies are Guy Carpenter, Marsh, Mercer, and Oliver Wyman Group.", "wikipedia_link": "https://en.wikipedia.org/wiki/Marsh_%26_McLennan_Companies", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 384, "country": "United States", "website": "http://www.citadel.com/", "crunchbase": {"text": "c33b0736-4ea9-be5c-a488-0f931f754df2", "url": "https://www.crunchbase.com/organization/citadel"}, "child_crunchbase": [{"text": "29502ce3-97cc-1177-9373-c3033a44f054", "url": "https://www.crunchbase.com/organization/citadel-securities"}], "linkedin": ["https://www.linkedin.com/company/citadel-llc", "https://www.linkedin.com/company/citadel-securities"], "stage": "Mature", "name": "Citadel LLC", "patent_name": "citadel llc", "continent": "North America", "local_logo": "citadel_llc.png", "aliases": "Citadel; Citadel Enterprise Americas Llc; Citadel Investment Group; Wellington Financial Group", "permid_links": [{"text": 5000784868, "url": "https://permid.org/1-5000784868"}, {"text": 5035470005, "url": "https://permid.org/1-5035470005"}], "parent_info": null, "agg_child_info": "Citadel Securities", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Citadel is one of the world's leading alternative investment firms,pursuing long-term returns for preeminent public and private institutions", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 4}, {"field_name": "Robot", "field_count": 2}, {"field_name": "Natural language", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Spatial contextual awareness", "field_count": 1}, {"field_name": "Intrusion detection system", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Vowel", "field_count": 1}, {"field_name": "Structured prediction", "field_count": 1}], "clusters": [{"cluster_id": 8939, "cluster_count": 3}, {"cluster_id": 916, "cluster_count": 2}, {"cluster_id": 4905, "cluster_count": 2}, {"cluster_id": 884, "cluster_count": 2}, {"cluster_id": 1149, "cluster_count": 2}, {"cluster_id": 1422, "cluster_count": 2}, {"cluster_id": 23285, "cluster_count": 1}, {"cluster_id": 9275, "cluster_count": 1}, {"cluster_id": 28769, "cluster_count": 1}, {"cluster_id": 45077, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 202}, {"ref_CSET_id": 101, "referenced_count": 120}, {"ref_CSET_id": 87, "referenced_count": 47}, {"ref_CSET_id": 115, "referenced_count": 33}, {"ref_CSET_id": 37, "referenced_count": 17}, {"ref_CSET_id": 245, "referenced_count": 8}, {"ref_CSET_id": 6, "referenced_count": 6}, {"ref_CSET_id": 1126, "referenced_count": 6}, {"ref_CSET_id": 184, "referenced_count": 6}, {"ref_CSET_id": 384, "referenced_count": 5}], "tasks": [{"referent": "classification", "task_count": 7}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "natural_language_processing", "task_count": 4}, {"referent": "speech_recognition", "task_count": 3}, {"referent": "computer_vision", "task_count": 3}, {"referent": "adversarial_attack", "task_count": 2}, {"referent": "topological_data_analysis", "task_count": 2}, {"referent": "path_planning", "task_count": 2}, {"referent": "safety_perception_recognition", "task_count": 2}, {"referent": "classification_tasks", "task_count": 2}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 9}, {"referent": "meta_learning_algorithms", "method_count": 6}, {"referent": "wgan_gp", "method_count": 5}, {"referent": "griffin_lim_algorithm", "method_count": 4}, {"referent": "reinforcement_learning", "method_count": 4}, {"referent": "neural_architecture_search", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "vqa_models", "method_count": 3}, {"referent": "q_learning", "method_count": 3}, {"referent": "dueling_network", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [75, 90, 94, 119, 127, 137, 152, 138, 117, 90, 2], "total": 1141, "isTopResearch": false, "rank": 179}, "ai_publications": {"counts": [3, 3, 2, 5, 4, 10, 7, 7, 5, 7, 1], "total": 54, "isTopResearch": false, "rank": 174}, "ai_publications_growth": {"counts": [], "total": 3.809523809523809, "isTopResearch": false, "rank": 185}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 140}, "citation_counts": {"counts": [0, 1, 5, 7, 15, 43, 57, 107, 197, 169, 10], "total": 611, "isTopResearch": false, "rank": 243}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 1, 1, 2, 1, 1, 0], "total": 7, "isTopResearch": true, "rank": 252}, "nlp_pubs": {"counts": [0, 0, 1, 0, 3, 6, 0, 1, 1, 2, 0], "total": 14, "isTopResearch": true, "rank": 78}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 1, 2, 1, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 171}, "citations_per_article": {"counts": [0.0, 0.3333333333333333, 2.5, 1.4, 3.75, 4.3, 8.142857142857142, 15.285714285714286, 39.4, 24.142857142857142, 10.0], "total": 11.314814814814815, "isTopResearch": false, "rank": 495}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1172, "rank": 325}, "ai_jobs": {"counts": null, "total": 216, "rank": 222}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Citadel LLC (formerly known as Citadel Investment Group, LLC) is an American multinational hedge fund and financial services company. Founded in 1990 by Kenneth Griffin, the company operates two primary businesses: Citadel, one of the world's largest alternative asset managers with more than US$35 billion in assets under management (as of October 1, 2020); and Citadel Securities, one of the leading market makers in the world, whose trading products include equities, equity options, and interest rate swaps for retail and institutional clients.", "wikipedia_link": "https://en.wikipedia.org/wiki/Citadel_LLC", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2405, "country": "United States", "website": "https://www.marriott.com/", "crunchbase": {"text": "b164e325-99cb-f2fa-8d29-f6b36070f5d4", "url": "https://www.crunchbase.com/organization/marriott-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/marriott-international"], "stage": "Mature", "name": "Marriott Int'l.", "patent_name": "marriott int'l.", "continent": "North America", "local_logo": "marriott_int'l.png", "aliases": "Marriott; Marriott Bonvoy; Marriott International; Marriott International Inc; Marriott International, Inc", "permid_links": [{"text": 4295904482, "url": "https://permid.org/1-4295904482"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:MAR", "url": "https://www.google.com/finance/quote/mar:nasdaq"}], "market_full": [{"text": "VIE:MAR", "url": "https://www.google.com/finance/quote/mar:vie"}, {"text": "SAO:M1TT34", "url": "https://www.google.com/finance/quote/m1tt34:sao"}, {"text": "HAN:MAQ", "url": "https://www.google.com/finance/quote/han:maq"}, {"text": "HAM:MAQ", "url": "https://www.google.com/finance/quote/ham:maq"}, {"text": "BER:MAQ", "url": "https://www.google.com/finance/quote/ber:maq"}, {"text": "LSE:0JYW", "url": "https://www.google.com/finance/quote/0jyw:lse"}, {"text": "STU:MAQ", "url": "https://www.google.com/finance/quote/maq:stu"}, {"text": "DUS:MAQ", "url": "https://www.google.com/finance/quote/dus:maq"}, {"text": "BRN:MAQ", "url": "https://www.google.com/finance/quote/brn:maq"}, {"text": "DEU:MAR", "url": "https://www.google.com/finance/quote/deu:mar"}, {"text": "MOEX:MAR-RM", "url": "https://www.google.com/finance/quote/mar-rm:moex"}, {"text": "NASDAQ:MAR", "url": "https://www.google.com/finance/quote/mar:nasdaq"}, {"text": "MEX:MAR*", "url": "https://www.google.com/finance/quote/mar*:mex"}, {"text": "MUN:MAQ", "url": "https://www.google.com/finance/quote/maq:mun"}, {"text": "FRA:MAQ", "url": "https://www.google.com/finance/quote/fra:maq"}, {"text": "GER:MAQX", "url": "https://www.google.com/finance/quote/ger:maqx"}], "crunchbase_description": "Marriott International is a leading hospitality company with more than 3,900 properties around the world.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 10425, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 359, "referenced_count": 1}, {"ref_CSET_id": 833, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 0, 0, 0, 2, 3, 4, 3, 1, 3, 0], "total": 18, "isTopResearch": false, "rank": 825, "fortune500_rank": 292}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 901, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "fortune500_rank": 237}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1146, "rank": 326, "fortune500_rank": 184}, "ai_jobs": {"counts": null, "total": 94, "rank": 351, "fortune500_rank": 187}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Marriott International, Inc. is an American multinational diversified hospitality company that manages and franchises a broad portfolio of hotels and related lodging facilities. Founded by J. Willard Marriott, the company is now led by his son, executive chairman Bill Marriott. Marriott International is the largest hotel chain in the world by number of available rooms. It has 30 brands with 7,484 properties in 131 countries and territories around the world, over 1,400,693 rooms (as of June 30, 2020), including 2,104 that are managed with 573,043 rooms, 5,314 that are franchised or licensed with 812,006 rooms, and 66 that are owned or leased with 15,644 rooms, plus an additional 510,000 rooms in the development pipeline, including 230,000 that were under construction, and an additional 28,000 rooms approved for development but not yet under signed contracts.", "wikipedia_link": "https://en.wikipedia.org/wiki/Marriott_International", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3128, "country": "Japan", "website": "https://www.mufg.jp/", "crunchbase": {"text": " d4974159-c376-5f1b-93c5-0cc0c187423b ", "url": " https://www.crunchbase.com/organization/mitsubishi-ufj-financial-group "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mufg"], "stage": "Mature", "name": "Mitsubishi Ufj Financial Group", "patent_name": "Mitsubishi UFJ Financial Group", "continent": "Asia", "local_logo": null, "aliases": "Mitsubishi UFJ Financial Group; Mitsubishi Ufj Financial Group, Inc", "permid_links": [{"text": 5000000933, "url": "https://permid.org/1-5000000933"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:8306", "url": "https://www.google.com/finance/quote/8306:TYO"}, {"text": "NYSE:MUFG", "url": "https://www.google.com/finance/quote/MUFG:NYSE"}], "market_full": [{"text": "MEX:MUFGN", "url": "https://www.google.com/finance/quote/MEX:MUFGN"}, {"text": "SAO:M1UF34", "url": "https://www.google.com/finance/quote/M1UF34:SAO"}, {"text": "LSE:0K1Y", "url": "https://www.google.com/finance/quote/0K1Y:LSE"}, {"text": "BER:MFZA", "url": "https://www.google.com/finance/quote/BER:MFZA"}, {"text": "MUN:MFZ", "url": "https://www.google.com/finance/quote/MFZ:MUN"}, {"text": "TYO:8306", "url": "https://www.google.com/finance/quote/8306:TYO"}, {"text": "PKC:MFZA", "url": "https://www.google.com/finance/quote/MFZA:PKC"}, {"text": "HAN:MFZ", "url": "https://www.google.com/finance/quote/HAN:MFZ"}, {"text": "STU:MFZ", "url": "https://www.google.com/finance/quote/MFZ:STU"}, {"text": "DUS:MFZ", "url": "https://www.google.com/finance/quote/DUS:MFZ"}, {"text": "DUS:MFZA", "url": "https://www.google.com/finance/quote/DUS:MFZA"}, {"text": "NYQ:MUFG", "url": "https://www.google.com/finance/quote/MUFG:NYQ"}, {"text": "BUE:MUFG3", "url": "https://www.google.com/finance/quote/BUE:MUFG3"}, {"text": "FRA:MFZA", "url": "https://www.google.com/finance/quote/FRA:MFZA"}, {"text": "STU:MFZA", "url": "https://www.google.com/finance/quote/MFZA:STU"}, {"text": "DEU:8306", "url": "https://www.google.com/finance/quote/8306:DEU"}, {"text": "ASE:MUFG", "url": "https://www.google.com/finance/quote/ASE:MUFG"}, {"text": "FRA:MFZ", "url": "https://www.google.com/finance/quote/FRA:MFZ"}, {"text": "BER:MFZ", "url": "https://www.google.com/finance/quote/BER:MFZ"}, {"text": "DEU:MFZA", "url": "https://www.google.com/finance/quote/DEU:MFZA"}, {"text": "MUN:MFZA", "url": "https://www.google.com/finance/quote/MFZA:MUN"}, {"text": "SES:N5YD", "url": "https://www.google.com/finance/quote/N5YD:SES"}, {"text": "HAM:MFZ", "url": "https://www.google.com/finance/quote/HAM:MFZ"}, {"text": "NYSE:MUFG", "url": "https://www.google.com/finance/quote/MUFG:NYSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Sentiment analysis", "field_count": 1}], "clusters": [{"cluster_id": 37451, "cluster_count": 1}, {"cluster_id": 33, "cluster_count": 1}, {"cluster_id": 21361, "cluster_count": 1}, {"cluster_id": 27799, "cluster_count": 1}, {"cluster_id": 2503, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "sentiment_detection", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "esl", "task_count": 1}, {"referent": "few_shot_regression", "task_count": 1}, {"referent": "multi_class_classification", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "reading_comprehension", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 1}, {"referent": "gan_feature_matching", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "l1_regularization", "method_count": 1}, {"referent": "rule_based_systems", "method_count": 1}, {"referent": "line", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "word_embeddings", "method_count": 1}, {"referent": "representation_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2, 2, 8, 3, 6, 3, 4, 7, 4, 7, 0], "total": 46, "isTopResearch": false, "rank": 633, "sp500_rank": 334}, "ai_publications": {"counts": [1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "sp500_rank": 275}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 3, 3, 2, 0, 2, 4, 11, 7, 13, 1], "total": 46, "isTopResearch": false, "rank": 597, "sp500_rank": 257}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0.0, 0, 4.0, 11.0, 0, 0, 0], "total": 11.5, "isTopResearch": false, "rank": 484, "sp500_rank": 168}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 0, 10, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1143, "rank": 327, "sp500_rank": 168}, "ai_jobs": {"counts": null, "total": 105, "rank": 328, "sp500_rank": 178}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 264, "country": "United States", "website": "http://www.uipath.com", "crunchbase": {"text": "3c3b1ee8-325e-a3b9-b7ef-c0fd95e54de1", "url": "https://www.crunchbase.com/organization/uipath"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/uipath"], "stage": "Mature", "name": "Uipath", "patent_name": "uipath", "continent": "North America", "local_logo": "uipath.png", "aliases": "UiPath Inc; Uipath Srl; Uipath, Inc", "permid_links": [{"text": 5055475912, "url": "https://permid.org/1-5055475912"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "UiPath is a software company developing robotic process automation and artificial intelligence software.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}], "clusters": [{"cluster_id": 41975, "cluster_count": 1}, {"cluster_id": 76144, "cluster_count": 1}, {"cluster_id": 2489, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 264, "referenced_count": 1}], "tasks": [{"referent": "robotic_process_automation", "task_count": 2}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "sports_analytics", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 1}, {"referent": "wgan_gp", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 2, 2, 1, 5, 0, 0], "total": 10, "isTopResearch": false, "rank": 942}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 4, 12, 0], "total": 19, "isTopResearch": false, "rank": 690}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 2.0, 0, 0], "total": 4.75, "isTopResearch": false, "rank": 723}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 33, 23, 5, 0, 0], "total": 61, "table": null, "rank": 205}, "ai_patents_growth": {"counts": [], "total": -30.303030303030305, "table": null, "rank": 1486}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 330, 230, 50, 0, 0], "total": 610, "table": null, "rank": 205}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 141}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 11, 6, 1, 0, 0], "total": 18, "table": "industry", "rank": 45}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 26, 17, 4, 0, 0], "total": 47, "table": "industry", "rank": 125}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 14, 5, 1, 0, 0], "total": 20, "table": "industry", "rank": 106}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0], "total": 5, "table": "application", "rank": 126}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 14, 5, 1, 0, 0], "total": 20, "table": "application", "rank": 82}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 6, 7, 1, 0, 0], "total": 14, "table": "application", "rank": 116}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 10, 5, 1, 0, 0], "total": 16, "table": "application", "rank": 206}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 173}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1143, "rank": 327}, "ai_jobs": {"counts": null, "total": 41, "rank": 520}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "UiPath is a New York City-based global software company that develops a platform for robotic process automation (RPA). The company's software monitors user activity to automate repetitive front and back office tasks, including those performed using other business software such as customer relationship management or enterprise resource planning (ERP) software.", "wikipedia_link": "https://en.wikipedia.org/wiki/UiPath", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 3123, "country": "United States", "website": "https://www.jabil.com/", "crunchbase": {"text": " 5ba943cc-5cec-a14a-f30e-6dcaf2148dc6", "url": "https://www.crunchbase.com/organization/jabil"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/jabil"], "stage": "Mature", "name": "Jabil", "patent_name": "Jabil", "continent": "North America", "local_logo": null, "aliases": "Jabil; Jabil Energy, Inala", "permid_links": [{"text": 4295904335, "url": "https://permid.org/1-4295904335"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:JBL", "url": "https://www.google.com/finance/quote/JBL:NYSE"}], "market_full": [{"text": "ASE:JBL", "url": "https://www.google.com/finance/quote/ASE:JBL"}, {"text": "MUN:JBL", "url": "https://www.google.com/finance/quote/JBL:MUN"}, {"text": "SAO:J2BL34", "url": "https://www.google.com/finance/quote/J2BL34:SAO"}, {"text": "BER:JBL", "url": "https://www.google.com/finance/quote/BER:JBL"}, {"text": "DUS:JBL", "url": "https://www.google.com/finance/quote/DUS:JBL"}, {"text": "BRN:JBL", "url": "https://www.google.com/finance/quote/BRN:JBL"}, {"text": "NYSE:JBL", "url": "https://www.google.com/finance/quote/JBL:NYSE"}, {"text": "DEU:JBL", "url": "https://www.google.com/finance/quote/DEU:JBL"}, {"text": "FRA:JBL", "url": "https://www.google.com/finance/quote/FRA:JBL"}, {"text": "NYQ:JBL", "url": "https://www.google.com/finance/quote/JBL:NYQ"}, {"text": "STU:JBL", "url": "https://www.google.com/finance/quote/JBL:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1, 0, 1, 1, 1, 1, 2, 3, 4, 1, 0], "total": 15, "isTopResearch": false, "rank": 859, "sp500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0], "total": 4, "table": null, "rank": 565, "sp500_rank": 235}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "sp500_rank": 444}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 10, 10, 0, 0, 10, 0, 0], "total": 40, "table": null, "rank": 565, "sp500_rank": 235}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 131, "sp500_rank": 89}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "sp500_rank": 152}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1141, "rank": 329, "sp500_rank": 169}, "ai_jobs": {"counts": null, "total": 40, "rank": 527, "sp500_rank": 243}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 2451, "country": "United States", "website": "http://www.paychex.com", "crunchbase": {"text": "0f9210c1-6db2-f0bf-72fb-521bddf861a2", "url": "https://www.crunchbase.com/organization/paychex"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/paychex"], "stage": "Mature", "name": "Paychex Inc.", "patent_name": "paychex inc.", "continent": "North America", "local_logo": "paychex_inc.png", "aliases": "Paychex; Paychex, Inc", "permid_links": [{"text": 4295907559, "url": "https://permid.org/1-4295907559"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:PAYX", "url": "https://www.google.com/finance/quote/nasdaq:payx"}], "market_full": [{"text": "STU:PCX", "url": "https://www.google.com/finance/quote/pcx:stu"}, {"text": "VIE:PAYX", "url": "https://www.google.com/finance/quote/payx:vie"}, {"text": "DEU:PAYX", "url": "https://www.google.com/finance/quote/deu:payx"}, {"text": "MEX:PAYX*", "url": "https://www.google.com/finance/quote/mex:payx*"}, {"text": "MUN:PCX", "url": "https://www.google.com/finance/quote/mun:pcx"}, {"text": "GER:PCXX", "url": "https://www.google.com/finance/quote/ger:pcxx"}, {"text": "MCX:PAYX", "url": "https://www.google.com/finance/quote/mcx:payx"}, {"text": "FRA:PCX", "url": "https://www.google.com/finance/quote/fra:pcx"}, {"text": "SAO:P1AY34", "url": "https://www.google.com/finance/quote/p1ay34:sao"}, {"text": "BER:PCX", "url": "https://www.google.com/finance/quote/ber:pcx"}, {"text": "HAM:PCX", "url": "https://www.google.com/finance/quote/ham:pcx"}, {"text": "HAN:PCX", "url": "https://www.google.com/finance/quote/han:pcx"}, {"text": "BRN:PCX", "url": "https://www.google.com/finance/quote/brn:pcx"}, {"text": "NASDAQ:PAYX", "url": "https://www.google.com/finance/quote/nasdaq:payx"}, {"text": "LSE:0KGE", "url": "https://www.google.com/finance/quote/0kge:lse"}, {"text": "DUS:PCX", "url": "https://www.google.com/finance/quote/dus:pcx"}], "crunchbase_description": "Paychex together with its subsidiaries, provides payroll, human resource, and benefits outsourcing solutions for all businesses.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1134, "rank": 330, "fortune500_rank": 185}, "ai_jobs": {"counts": null, "total": 38, "rank": 538, "fortune500_rank": 278}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Paychex, Inc. is an American provider of human resource, payroll, and benefits outsourcing services for small- to medium-sized businesses. With headquarters in Rochester, New York, the company has more than 100 offices serving approximately 670,000 payroll clients in the U.S. and Europe. In 2019, Paychex ranked in position 700 on the Fortune 500 list of largest corporations by revenue, and the company's revenue for fiscal year 2020 is projected to exceed $4.1 billion.", "wikipedia_link": "https://en.wikipedia.org/wiki/Paychex", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 400, "country": "South Korea", "website": "http://www.coupang.com/", "crunchbase": {"text": "42f067ba-8233-c088-a83c-4bf86c8877fe", "url": "https://www.crunchbase.com/organization/coupang"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/coupang"], "stage": "Mature", "name": "Coupang", "patent_name": "coupang", "continent": "Asia", "local_logo": "coupang.png", "aliases": "Coupang Co., Ltd; Coupang Corp; Forward Ventures; Kupang Co., Ltd", "permid_links": [{"text": 5034847305, "url": "https://permid.org/1-5034847305"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Coupang is one of the largest eCommerce companies in Asia.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 0, 2, 0, 2, 2, 1, 1, 0, 0], "total": 9, "isTopResearch": false, "rank": 958}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 1, 0, 0, 19, 22, 11, 0, 0], "total": 54, "table": null, "rank": 212}, "ai_patents_growth": {"counts": [], "total": 15.789473684210526, "table": null, "rank": 311}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 10, 0, 0, 190, 220, 110, 0, 0], "total": 540, "table": null, "rank": 212}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 0, 0, 2, 5, 2, 0, 0], "total": 10, "table": "industry", "rank": 69}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 9, 11, 8, 0, 0], "total": 28, "table": "industry", "rank": 156}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 4, 2, 1, 0, 0], "total": 7, "table": "industry", "rank": 88}, "Telecommunications": {"counts": [0, 0, 1, 0, 0, 0, 1, 1, 0, 0, 0], "total": 3, "table": null, "rank": 277}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 1, 1, 0, 0, 14, 15, 11, 0, 0], "total": 42, "table": "industry", "rank": 62}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 162}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 0, 0, 13, 12, 5, 0, 0], "total": 31, "table": "application", "rank": 53}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 5, 3, 0, 0], "total": 10, "table": "application", "rank": 241}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1132, "rank": 331}, "ai_jobs": {"counts": null, "total": 131, "rank": 292}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Coupang (Korean: \ucfe0\ud321) is a South Korean e-commerce company founded in 2010. It is incorporated in Delaware, United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Coupang", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1833, "country": "France", "website": "https://www.carrefour.com/", "crunchbase": {"text": " 60f29c50-869a-4011-23b4-a028e4d66cc3", "url": "https://www.crunchbase.com/organization/carrefour"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/carrefour"], "stage": "Mature", "name": "Carrefour", "patent_name": "Carrefour", "continent": "Europe", "local_logo": null, "aliases": "Carrefour; Carrefour S.A", "permid_links": [{"text": 4295866751, "url": "https://permid.org/1-4295866751"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "FRA:CAR1", "url": "https://www.google.com/finance/quote/CAR1:FRA"}, {"text": "LSE:0NPH", "url": "https://www.google.com/finance/quote/0NPH:LSE"}, {"text": "PAR:CA", "url": "https://www.google.com/finance/quote/CA:PAR"}, {"text": "DEU:CARR", "url": "https://www.google.com/finance/quote/CARR:DEU"}, {"text": "SWX:CA", "url": "https://www.google.com/finance/quote/CA:SWX"}, {"text": "MUN:CAR", "url": "https://www.google.com/finance/quote/CAR:MUN"}, {"text": "PKL:CRRFY", "url": "https://www.google.com/finance/quote/CRRFY:PKL"}, {"text": "FRA:CAR", "url": "https://www.google.com/finance/quote/CAR:FRA"}, {"text": "MUN:CAR1", "url": "https://www.google.com/finance/quote/CAR1:MUN"}, {"text": "EBT:CAP", "url": "https://www.google.com/finance/quote/CAp:EBT"}, {"text": "BER:CAR", "url": "https://www.google.com/finance/quote/BER:CAR"}, {"text": "VIE:CARR", "url": "https://www.google.com/finance/quote/CARR:VIE"}, {"text": "HAM:CAR", "url": "https://www.google.com/finance/quote/CAR:HAM"}, {"text": "STU:CAR1", "url": "https://www.google.com/finance/quote/CAR1:STU"}, {"text": "HAN:CAR", "url": "https://www.google.com/finance/quote/CAR:HAN"}, {"text": "DEU:CAR1", "url": "https://www.google.com/finance/quote/CAR1:DEU"}, {"text": "STU:CAR", "url": "https://www.google.com/finance/quote/CAR:STU"}, {"text": "PKL:CRERF", "url": "https://www.google.com/finance/quote/CRERF:PKL"}, {"text": "GER:CARX", "url": "https://www.google.com/finance/quote/CARX:GER"}, {"text": "MEX:CAN", "url": "https://www.google.com/finance/quote/CAN:MEX"}, {"text": "MIL:CRR", "url": "https://www.google.com/finance/quote/CRR:MIL"}, {"text": "DUS:CAR", "url": "https://www.google.com/finance/quote/CAR:DUS"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 6, 0, 0, 0, 0, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030, "sp500_rank": 412}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1118, "rank": 332, "sp500_rank": 170}, "ai_jobs": {"counts": null, "total": 135, "rank": 289, "sp500_rank": 167}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 2222, "country": "United States", "website": "https://www.assurant.com/", "crunchbase": {"text": "5f7e9f52-faee-0f38-5beb-4a714cfe3fe0", "url": "https://www.crunchbase.com/organization/assurant"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/assurant"], "stage": "Mature", "name": "Assurant", "patent_name": "assurant", "continent": "North America", "local_logo": "assurant.png", "aliases": "Assurant, Inc", "permid_links": [{"text": 4295899478, "url": "https://permid.org/1-4295899478"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AIZ", "url": "https://www.google.com/finance/quote/aiz:nyse"}, {"text": "NYSE:AIZN", "url": "https://www.google.com/finance/quote/aizn:nyse"}], "market_full": [{"text": "MCX:AIZ-RM", "url": "https://www.google.com/finance/quote/aiz-rm:mcx"}, {"text": "NYQ:AIZN", "url": "https://www.google.com/finance/quote/aizn:nyq"}, {"text": "DEU:AIZ", "url": "https://www.google.com/finance/quote/aiz:deu"}, {"text": "NYSE:AIZ", "url": "https://www.google.com/finance/quote/aiz:nyse"}, {"text": "NYQ:AIZ", "url": "https://www.google.com/finance/quote/aiz:nyq"}, {"text": "ASE:AIZN", "url": "https://www.google.com/finance/quote/aizn:ase"}, {"text": "ASE:AIZ", "url": "https://www.google.com/finance/quote/aiz:ase"}, {"text": "NYSE:AIZN", "url": "https://www.google.com/finance/quote/aizn:nyse"}, {"text": "LSE:0HIN", "url": "https://www.google.com/finance/quote/0hin:lse"}, {"text": "DUS:ZAS", "url": "https://www.google.com/finance/quote/dus:zas"}, {"text": "SAO:A1SU34", "url": "https://www.google.com/finance/quote/a1su34:sao"}, {"text": "MUN:ZAS", "url": "https://www.google.com/finance/quote/mun:zas"}, {"text": "BRN:ZAS", "url": "https://www.google.com/finance/quote/brn:zas"}, {"text": "BER:ZAS", "url": "https://www.google.com/finance/quote/ber:zas"}, {"text": "FRA:ZAS", "url": "https://www.google.com/finance/quote/fra:zas"}], "crunchbase_description": "Assurant provides specialty protection products and related services to safeguard against risks.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 1, 1, 3, 0, 0, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": 33.333333333333336, "table": null, "rank": 262, "fortune500_rank": 76}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 10, 10, 30, 0, 0, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1102, "rank": 333, "fortune500_rank": 186}, "ai_jobs": {"counts": null, "total": 190, "rank": 235, "fortune500_rank": 126}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Assurant, Inc. is a global provider of risk management products and services with headquarters in New York City. Its businesses provide a diverse set of specialty, niche-market insurance products in the property, casualty, extended device protection, and preneed insurance sectors. The company\u2019s three operating segments are Global Housing, Global Lifestyle, and Global Preneed.", "wikipedia_link": "https://en.wikipedia.org/wiki/Assurant", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2230, "country": "United States", "website": "https://www.baxter.com/", "crunchbase": {"text": "58e8bef3-dfcb-eec0-3424-fcd921c6fcde", "url": "https://www.crunchbase.com/organization/baxter-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/baxter-healthcare"], "stage": "Mature", "name": "Baxter International Inc.", "patent_name": "baxter international inc.", "continent": "North America", "local_logo": "baxter_international_inc.png", "aliases": "Baxter; Baxter International; Baxter International, Inc", "permid_links": [{"text": 4295903531, "url": "https://permid.org/1-4295903531"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BAX", "url": "https://www.google.com/finance/quote/bax:nyse"}], "market_full": [{"text": "VIE:BAX", "url": "https://www.google.com/finance/quote/bax:vie"}, {"text": "MCX:BAX-RM", "url": "https://www.google.com/finance/quote/bax-rm:mcx"}, {"text": "NYQ:BAX", "url": "https://www.google.com/finance/quote/bax:nyq"}, {"text": "MUN:BTL", "url": "https://www.google.com/finance/quote/btl:mun"}, {"text": "DEU:BAX", "url": "https://www.google.com/finance/quote/bax:deu"}, {"text": "LSE:0QK8", "url": "https://www.google.com/finance/quote/0qk8:lse"}, {"text": "BER:BTL", "url": "https://www.google.com/finance/quote/ber:btl"}, {"text": "SAO:B1AX34", "url": "https://www.google.com/finance/quote/b1ax34:sao"}, {"text": "FRA:BTL", "url": "https://www.google.com/finance/quote/btl:fra"}, {"text": "DUS:BTL", "url": "https://www.google.com/finance/quote/btl:dus"}, {"text": "GER:BTLX", "url": "https://www.google.com/finance/quote/btlx:ger"}, {"text": "MEX:BAX*", "url": "https://www.google.com/finance/quote/bax*:mex"}, {"text": "ASE:BAX", "url": "https://www.google.com/finance/quote/ase:bax"}, {"text": "STU:BTL", "url": "https://www.google.com/finance/quote/btl:stu"}, {"text": "SWX:BAX", "url": "https://www.google.com/finance/quote/bax:swx"}, {"text": "HAM:BTL", "url": "https://www.google.com/finance/quote/btl:ham"}, {"text": "HAN:BTL", "url": "https://www.google.com/finance/quote/btl:han"}, {"text": "NYSE:BAX", "url": "https://www.google.com/finance/quote/bax:nyse"}], "crunchbase_description": "Baxter International Inc., through its subsidiaries, develops, manufactures and markets products that save and sustain the lives of people.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Discriminative model", "field_count": 1}, {"field_name": "Salience (neuroscience)", "field_count": 1}], "clusters": [{"cluster_id": 955, "cluster_count": 1}, {"cluster_id": 4342, "cluster_count": 1}, {"cluster_id": 12710, "cluster_count": 1}, {"cluster_id": 17981, "cluster_count": 1}, {"cluster_id": 21247, "cluster_count": 1}, {"cluster_id": 10395, "cluster_count": 1}, {"cluster_id": 916, "cluster_count": 1}, {"cluster_id": 87067, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 4}, {"ref_CSET_id": 37, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 1383, "referenced_count": 1}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 170, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}], "tasks": [{"referent": "image_restoration", "task_count": 1}, {"referent": "categorization", "task_count": 1}, {"referent": "image_recognition", "task_count": 1}, {"referent": "object_detection", "task_count": 1}, {"referent": "automl", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "hand_detection", "task_count": 1}, {"referent": "sensor_modeling", "task_count": 1}, {"referent": "image_registration", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}], "methods": [{"referent": "bart", "method_count": 1}, {"referent": "bijective_transformation", "method_count": 1}, {"referent": "automl", "method_count": 1}, {"referent": "pooling_operations", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "discriminative_fine_tuning", "method_count": 1}, {"referent": "discriminators", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "ica", "method_count": 1}, {"referent": "multi_attention_network", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [282, 425, 274, 114, 129, 97, 112, 111, 85, 36, 1], "total": 1666, "isTopResearch": false, "rank": 136, "fortune500_rank": 52}, "ai_publications": {"counts": [2, 0, 0, 0, 0, 2, 1, 0, 2, 0, 0], "total": 7, "isTopResearch": false, "rank": 481, "fortune500_rank": 134}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [4, 6, 4, 7, 6, 5, 9, 24, 28, 4, 0], "total": 97, "isTopResearch": false, "rank": 508, "fortune500_rank": 138}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [2.0, 0, 0, 0, 0, 2.5, 9.0, 0, 14.0, 0, 0], "total": 13.857142857142858, "isTopResearch": false, "rank": 434, "fortune500_rank": 134}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 4, 1, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 40, 10, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0], "total": 5, "table": "industry", "rank": 122, "fortune500_rank": 52}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": "application", "rank": 191, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1076, "rank": 334, "fortune500_rank": 187}, "ai_jobs": {"counts": null, "total": 93, "rank": 353, "fortune500_rank": 188}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Baxter International Inc. is an American multinational health care company with headquarters in Deerfield, Illinois.", "wikipedia_link": "https://en.wikipedia.org/wiki/Baxter_International", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2201, "country": "United States", "website": "http://www.aligntech.com/", "crunchbase": {"text": "05e9e680-5490-97da-2774-fda8e48be7ef", "url": "https://www.crunchbase.com/organization/align-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/align-technology"], "stage": "Mature", "name": "Align Technology", "patent_name": "align technology", "continent": "North America", "local_logo": "align_technology.png", "aliases": "Align Technology, Inc", "permid_links": [{"text": 4295900190, "url": "https://permid.org/1-4295900190"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ALGN", "url": "https://www.google.com/finance/quote/algn:nasdaq"}], "market_full": [{"text": "MCX:ALGN-RM", "url": "https://www.google.com/finance/quote/algn-rm:mcx"}, {"text": "DUS:AFW", "url": "https://www.google.com/finance/quote/afw:dus"}, {"text": "BER:AFW", "url": "https://www.google.com/finance/quote/afw:ber"}, {"text": "GER:AFWX", "url": "https://www.google.com/finance/quote/afwx:ger"}, {"text": "BRN:AFW", "url": "https://www.google.com/finance/quote/afw:brn"}, {"text": "SAO:A1LG34", "url": "https://www.google.com/finance/quote/a1lg34:sao"}, {"text": "STU:AFW", "url": "https://www.google.com/finance/quote/afw:stu"}, {"text": "FRA:AFW", "url": "https://www.google.com/finance/quote/afw:fra"}, {"text": "MUN:AFW", "url": "https://www.google.com/finance/quote/afw:mun"}, {"text": "DEU:ALGN", "url": "https://www.google.com/finance/quote/algn:deu"}, {"text": "HAN:AFW", "url": "https://www.google.com/finance/quote/afw:han"}, {"text": "VIE:ALGN", "url": "https://www.google.com/finance/quote/algn:vie"}, {"text": "LSE:0HCK", "url": "https://www.google.com/finance/quote/0hck:lse"}, {"text": "NASDAQ:ALGN", "url": "https://www.google.com/finance/quote/algn:nasdaq"}, {"text": "MEX:ALGN*", "url": "https://www.google.com/finance/quote/algn*:mex"}], "crunchbase_description": "Align Technology, Inc. designs, manufactures, and markets the invisalign system for treating malocclusion or the misalignment of teeth.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Face (geometry)", "field_count": 1}], "clusters": [{"cluster_id": 2601, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [], "methods": [{"referent": "optimization", "method_count": 1}, {"referent": "estimation_statistics", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 3, 1, 2, 10, 6, 3, 0], "total": 26, "isTopResearch": false, "rank": 744, "fortune500_rank": 265}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 14, 2], "total": 16, "isTopResearch": false, "rank": 704, "fortune500_rank": 190}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 7.0, 0], "total": 8.0, "isTopResearch": false, "rank": 595, "fortune500_rank": 171}}, "patents": {"ai_patents": {"counts": [0, 1, 1, 1, 4, 6, 10, 7, 3, 0, 0], "total": 33, "table": null, "rank": 262, "fortune500_rank": 87}, "ai_patents_growth": {"counts": [], "total": 28.88888888888889, "table": null, "rank": 278, "fortune500_rank": 82}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 10, 10, 40, 60, 100, 70, 30, 0, 0], "total": 330, "table": null, "rank": 262, "fortune500_rank": 87}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 1, 1, 1, 2, 5, 9, 6, 3, 0, 0], "total": 28, "table": "industry", "rank": 39, "fortune500_rank": 16}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 116, "fortune500_rank": 38}, "Education": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 249, "fortune500_rank": 95}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 1, 3, 4, 9, 4, 1, 0, 0], "total": 23, "table": "application", "rank": 177, "fortune500_rank": 50}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 0, 1, 2, 1, 4, 2, 0, 0], "total": 11, "table": "application", "rank": 105, "fortune500_rank": 44}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1074, "rank": 335, "fortune500_rank": 188}, "ai_jobs": {"counts": null, "total": 90, "rank": 358, "fortune500_rank": 192}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Align Technology is a manufacturer of 3D digital scanners and the Invisalign clear aligners used in orthodontics. It is headquartered in San Jose, California; it manufactures the aligners in Juarez, Mexico and its scanners in Israel and China.", "wikipedia_link": "https://en.wikipedia.org/wiki/Align_Technology", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3141, "country": null, "website": "https://www.siemens-energy.com/", "crunchbase": {"text": " 9e0f2d1c-cb7a-4162-bb54-aa4f7a466cf7 ", "url": " https://www.crunchbase.com/organization/siemens-energy-6cf7 "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/siemens-energy"], "stage": "Mature", "name": "Siemens Energy", "patent_name": "Siemens Energy", "continent": null, "local_logo": null, "aliases": "Siemens Energy; Siemens Energy Ag", "permid_links": [{"text": 5000602682, "url": "https://permid.org/1-5000602682"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "DEU:ENR0", "url": "https://www.google.com/finance/quote/DEU:ENR0"}, {"text": "STU:ENR", "url": "https://www.google.com/finance/quote/ENR:STU"}, {"text": "FRA:ENR0", "url": "https://www.google.com/finance/quote/ENR0:FRA"}, {"text": "HAN:ENR", "url": "https://www.google.com/finance/quote/ENR:HAN"}, {"text": "GER:ENRX", "url": "https://www.google.com/finance/quote/ENRX:GER"}, {"text": "PKC:SMNEY", "url": "https://www.google.com/finance/quote/PKC:SMNEY"}, {"text": "PKC:SMEGF", "url": "https://www.google.com/finance/quote/PKC:SMEGF"}, {"text": "DEU:ENR1N", "url": "https://www.google.com/finance/quote/DEU:ENR1n"}, {"text": "MEX:ENRN", "url": "https://www.google.com/finance/quote/ENRN:MEX"}, {"text": "MIL:ENR", "url": "https://www.google.com/finance/quote/ENR:MIL"}, {"text": "STU:ENR0", "url": "https://www.google.com/finance/quote/ENR0:STU"}, {"text": "BER:ENR0", "url": "https://www.google.com/finance/quote/BER:ENR0"}, {"text": "FRA:ENR", "url": "https://www.google.com/finance/quote/ENR:FRA"}, {"text": "MUN:ENR", "url": "https://www.google.com/finance/quote/ENR:MUN"}, {"text": "HAM:ENR", "url": "https://www.google.com/finance/quote/ENR:HAM"}, {"text": "MUN:ENR0", "url": "https://www.google.com/finance/quote/ENR0:MUN"}, {"text": "LSE:0SEA", "url": "https://www.google.com/finance/quote/0SEA:LSE"}, {"text": "VIE:ENR", "url": "https://www.google.com/finance/quote/ENR:VIE"}, {"text": "BER:ENR", "url": "https://www.google.com/finance/quote/BER:ENR"}, {"text": "DUS:ENR", "url": "https://www.google.com/finance/quote/DUS:ENR"}, {"text": "BRN:ENR", "url": "https://www.google.com/finance/quote/BRN:ENR"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Natural language", "field_count": 2}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}], "clusters": [{"cluster_id": 24449, "cluster_count": 2}, {"cluster_id": 16537, "cluster_count": 2}, {"cluster_id": 16347, "cluster_count": 1}, {"cluster_id": 6410, "cluster_count": 1}, {"cluster_id": 6176, "cluster_count": 1}, {"cluster_id": 70840, "cluster_count": 1}, {"cluster_id": 73490, "cluster_count": 1}, {"cluster_id": 3226, "cluster_count": 1}, {"cluster_id": 34615, "cluster_count": 1}, {"cluster_id": 86672, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 789, "referenced_count": 10}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 3141, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 783, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}, {"ref_CSET_id": 840, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "context_query_reformulation", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "data_mining", "task_count": 1}, {"referent": "abnormality_detection", "task_count": 1}, {"referent": "building_extraction", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "question_answering", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "disease_detection", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "cbam", "method_count": 1}, {"referent": "root", "method_count": 1}, {"referent": "heuristic_search_algorithms", "method_count": 1}, {"referent": "instance_segmentation_modules", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "discrete_cosine_transform", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [20, 25, 20, 5, 13, 8, 12, 43, 141, 116, 3], "total": 406, "isTopResearch": false, "rank": 311, "sp500_rank": 204}, "ai_publications": {"counts": [1, 2, 0, 1, 1, 1, 0, 0, 6, 3, 0], "total": 15, "isTopResearch": false, "rank": 346, "sp500_rank": 188}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 6, 1, 2, 20, 16, 24, 27, 27, 35, 2], "total": 160, "isTopResearch": false, "rank": 426, "sp500_rank": 193}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0.0, 3.0, 0, 2.0, 20.0, 16.0, 0, 0, 4.5, 11.666666666666666, 0], "total": 10.666666666666666, "isTopResearch": false, "rank": 520, "sp500_rank": 191}}, "patents": {"ai_patents": {"counts": [1, 1, 0, 1, 4, 4, 6, 5, 0, 0, 0], "total": 22, "table": null, "rank": 307, "sp500_rank": 160}, "ai_patents_growth": {"counts": [], "total": 11.111111111111109, "table": null, "rank": 326, "sp500_rank": 152}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 10, 0, 10, 40, 40, 60, 50, 0, 0, 0], "total": 220, "table": null, "rank": 307, "sp500_rank": 160}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 2, 0, 3, 0, 0, 0], "total": 6, "table": "industry", "rank": 68, "sp500_rank": 56}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 131, "sp500_rank": 89}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 1, 2, 3, 1, 0, 0, 0, 0], "total": 8, "table": "industry", "rank": 273, "sp500_rank": 145}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 1, 0, 1, 2, 1, 4, 0, 0, 0, 0], "total": 9, "table": "application", "rank": 144, "sp500_rank": 100}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "sp500_rank": 183}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [1, 0, 0, 1, 2, 1, 1, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 158, "sp500_rank": 117}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1069, "rank": 336, "sp500_rank": 171}, "ai_jobs": {"counts": null, "total": 75, "rank": 394, "sp500_rank": 203}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 3131, "country": "Japan", "website": "https://group.ntt/", "crunchbase": {"text": " cf6d55ef-4417-dd62-19da-c6f967a00866 ", "url": " https://www.crunchbase.com/organization/nippon-telegraph-and-telephone-corporation "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ntt"], "stage": "Mature", "name": "Nippon Telegraph And Telephone", "patent_name": "Nippon Telegraph and Telephone", "continent": "Asia", "local_logo": null, "aliases": "Nippon Denshin Denwa Kabushiki Gaisha; Nippon Telegraph And Telephone Corporation; Nippon Telegraph and Telephone; Ntt; \u65e5\u672c\u96fb\u4fe1\u96fb\u8a71", "permid_links": [{"text": 4295880685, "url": "https://permid.org/1-4295880685"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:9432", "url": "https://www.google.com/finance/quote/9432:TYO"}], "market_full": [{"text": "VIE:NITT", "url": "https://www.google.com/finance/quote/NITT:VIE"}, {"text": "MEX:NTT1N", "url": "https://www.google.com/finance/quote/MEX:NTT1N"}, {"text": "BER:NTT", "url": "https://www.google.com/finance/quote/BER:NTT"}, {"text": "STU:NTT", "url": "https://www.google.com/finance/quote/NTT:STU"}, {"text": "FRA:NLV", "url": "https://www.google.com/finance/quote/FRA:NLV"}, {"text": "MUN:NLV", "url": "https://www.google.com/finance/quote/MUN:NLV"}, {"text": "DEU:NLV", "url": "https://www.google.com/finance/quote/DEU:NLV"}, {"text": "MUN:NTT", "url": "https://www.google.com/finance/quote/MUN:NTT"}, {"text": "TYO:9432", "url": "https://www.google.com/finance/quote/9432:TYO"}, {"text": "HAN:NTT", "url": "https://www.google.com/finance/quote/HAN:NTT"}, {"text": "DUS:NTT", "url": "https://www.google.com/finance/quote/DUS:NTT"}, {"text": "PKC:NPPXF", "url": "https://www.google.com/finance/quote/NPPXF:PKC"}, {"text": "DEU:9432", "url": "https://www.google.com/finance/quote/9432:DEU"}, {"text": "FRA:NTT", "url": "https://www.google.com/finance/quote/FRA:NTT"}, {"text": "PKC:NTTYY", "url": "https://www.google.com/finance/quote/NTTYY:PKC"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 42}, {"field_name": "Feature (computer vision)", "field_count": 42}, {"field_name": "Language model", "field_count": 40}, {"field_name": "Machine translation", "field_count": 35}, {"field_name": "Source separation", "field_count": 32}, {"field_name": "Cluster analysis", "field_count": 30}, {"field_name": "Deep learning", "field_count": 28}, {"field_name": "Convolutional neural network", "field_count": 26}, {"field_name": "Word error rate", "field_count": 23}, {"field_name": "Utterance", "field_count": 22}], "clusters": [{"cluster_id": 3291, "cluster_count": 90}, {"cluster_id": 1422, "cluster_count": 53}, {"cluster_id": 3240, "cluster_count": 37}, {"cluster_id": 13405, "cluster_count": 35}, {"cluster_id": 5364, "cluster_count": 35}, {"cluster_id": 2923, "cluster_count": 25}, {"cluster_id": 5142, "cluster_count": 25}, {"cluster_id": 14686, "cluster_count": 25}, {"cluster_id": 5507, "cluster_count": 23}, {"cluster_id": 30655, "cluster_count": 20}], "company_references": [{"ref_CSET_id": 3131, "referenced_count": 2297}, {"ref_CSET_id": 101, "referenced_count": 1672}, {"ref_CSET_id": 163, "referenced_count": 1315}, {"ref_CSET_id": 1784, "referenced_count": 521}, {"ref_CSET_id": 786, "referenced_count": 478}, {"ref_CSET_id": 115, "referenced_count": 456}, {"ref_CSET_id": 87, "referenced_count": 356}, {"ref_CSET_id": 6, "referenced_count": 115}, {"ref_CSET_id": 23, "referenced_count": 89}, {"ref_CSET_id": 245, "referenced_count": 86}], "tasks": [{"referent": "classification", "task_count": 205}, {"referent": "speech_recognition", "task_count": 165}, {"referent": "image_processing", "task_count": 71}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 56}, {"referent": "source_separation", "task_count": 49}, {"referent": "classification_tasks", "task_count": 47}, {"referent": "speech_enhancement", "task_count": 43}, {"referent": "domain_adaptation", "task_count": 36}, {"referent": "speaker_separation", "task_count": 36}, {"referent": "svbrdf_estimation", "task_count": 33}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 147}, {"referent": "double_q_learning", "method_count": 102}, {"referent": "vqa_models", "method_count": 89}, {"referent": "3d_representations", "method_count": 85}, {"referent": "ggs_nns", "method_count": 63}, {"referent": "cgnn", "method_count": 62}, {"referent": "mad_learning", "method_count": 57}, {"referent": "q_learning", "method_count": 55}, {"referent": "deep_belief_network", "method_count": 54}, {"referent": "optimization", "method_count": 54}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1793, 1775, 1800, 1576, 2047, 2063, 1961, 1776, 1738, 1542, 19], "total": 18090, "isTopResearch": false, "rank": 22, "sp500_rank": 20}, "ai_publications": {"counts": [124, 119, 140, 132, 162, 206, 220, 225, 245, 74, 0], "total": 1647, "isTopResearch": false, "rank": 15, "sp500_rank": 13}, "ai_publications_growth": {"counts": [], "total": -19.54476740191026, "isTopResearch": false, "rank": 1321, "sp500_rank": 349}, "ai_pubs_top_conf": {"counts": [7, 12, 16, 13, 16, 27, 28, 15, 12, 10, 0], "total": 156, "isTopResearch": false, "rank": 21, "sp500_rank": 14}, "citation_counts": {"counts": [617, 779, 977, 1094, 1364, 1788, 2560, 3282, 3654, 2453, 68], "total": 18636, "isTopResearch": false, "rank": 36, "sp500_rank": 24}, "cv_pubs": {"counts": [36, 31, 34, 33, 28, 37, 46, 42, 50, 22, 0], "total": 359, "isTopResearch": true, "rank": 26, "sp500_rank": 20}, "nlp_pubs": {"counts": [26, 27, 38, 34, 35, 54, 44, 40, 51, 6, 0], "total": 355, "isTopResearch": true, "rank": 11, "sp500_rank": 9}, "robotics_pubs": {"counts": [5, 5, 7, 3, 5, 13, 13, 19, 11, 5, 0], "total": 86, "isTopResearch": true, "rank": 34, "sp500_rank": 32}, "citations_per_article": {"counts": [4.975806451612903, 6.546218487394958, 6.978571428571429, 8.287878787878787, 8.419753086419753, 8.679611650485437, 11.636363636363637, 14.586666666666666, 14.914285714285715, 33.148648648648646, 0], "total": 11.31511839708561, "isTopResearch": false, "rank": 494, "sp500_rank": 174}}, "patents": {"ai_patents": {"counts": [10, 14, 23, 47, 99, 273, 274, 185, 62, 0, 0], "total": 987, "table": null, "rank": 25, "sp500_rank": 20}, "ai_patents_growth": {"counts": [], "total": 47.88070809968621, "table": null, "rank": 219, "sp500_rank": 98}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [100, 140, 230, 470, 990, 2730, 2740, 1850, 620, 0, 0], "total": 9870, "table": null, "rank": 25, "sp500_rank": 20}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 1, 0, 2, 0, 2, 0, 0, 0], "total": 5, "table": null, "rank": 78, "sp500_rank": 64}, "Life_Sciences": {"counts": [0, 1, 3, 0, 2, 11, 10, 2, 0, 0, 0], "total": 29, "table": "industry", "rank": 37, "sp500_rank": 28}, "Security__eg_cybersecurity": {"counts": [0, 2, 3, 6, 4, 18, 9, 8, 1, 0, 0], "total": 51, "table": "industry", "rank": 22, "sp500_rank": 18}, "Transportation": {"counts": [0, 0, 0, 0, 2, 9, 4, 1, 0, 0, 0], "total": 16, "table": null, "rank": 80, "sp500_rank": 63}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0], "total": 7, "table": null, "rank": 86, "sp500_rank": 61}, "Education": {"counts": [0, 0, 0, 0, 1, 4, 1, 0, 0, 0, 0], "total": 6, "table": null, "rank": 22, "sp500_rank": 16}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 1, 0, 0], "total": 4, "table": null, "rank": 23, "sp500_rank": 19}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [2, 5, 4, 14, 28, 120, 89, 33, 9, 0, 0], "total": 304, "table": "industry", "rank": 29, "sp500_rank": 25}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 115, "sp500_rank": 79}, "Telecommunications": {"counts": [1, 2, 3, 5, 15, 43, 34, 10, 11, 0, 0], "total": 124, "table": "industry", "rank": 35, "sp500_rank": 31}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0], "total": 6, "table": null, "rank": 31, "sp500_rank": 22}, "Business": {"counts": [0, 0, 1, 0, 5, 22, 26, 5, 3, 0, 0], "total": 62, "table": "industry", "rank": 41, "sp500_rank": 32}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 2, 1, 2, 0, 0, 0], "total": 5, "table": null, "rank": 76, "sp500_rank": 67}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 2, 4, 1, 0, 0, 0], "total": 8, "table": null, "rank": 18, "sp500_rank": 11}, "Nanotechnology": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 8, "sp500_rank": 7}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22}, "Language_Processing": {"counts": [0, 1, 0, 1, 2, 7, 0, 0, 0, 0, 0], "total": 11, "table": null, "rank": 37, "sp500_rank": 26}, "Speech_Processing": {"counts": [2, 0, 0, 4, 12, 45, 34, 20, 6, 0, 0], "total": 123, "table": "application", "rank": 9, "sp500_rank": 7}, "Knowledge_Representation": {"counts": [1, 1, 1, 1, 1, 6, 13, 2, 1, 0, 0], "total": 27, "table": null, "rank": 39, "sp500_rank": 30}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 0, 4, 15, 17, 3, 2, 0, 0], "total": 42, "table": "application", "rank": 44, "sp500_rank": 38}, "Control": {"counts": [0, 0, 0, 1, 4, 13, 10, 2, 0, 0, 0], "total": 30, "table": "application", "rank": 71, "sp500_rank": 52}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 23, "sp500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 3, 13, 69, 55, 9, 3, 0, 0], "total": 152, "table": "application", "rank": 52, "sp500_rank": 40}, "Analytics_and_Algorithms": {"counts": [0, 0, 2, 0, 3, 9, 12, 1, 0, 0, 0], "total": 27, "table": null, "rank": 52, "sp500_rank": 41}, "Measuring_and_Testing": {"counts": [1, 1, 0, 1, 2, 9, 8, 7, 1, 0, 0], "total": 30, "table": "application", "rank": 62, "sp500_rank": 47}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1067, "rank": 337, "sp500_rank": 172}, "ai_jobs": {"counts": null, "total": 22, "rank": 667, "sp500_rank": 273}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2368, "country": "United States", "website": "https://www.intercontinentalexchange.com", "crunchbase": {"text": "83b87c06-b174-aefa-1dc2-93197c97d0d9", "url": "https://www.crunchbase.com/organization/intercontinentalexchange"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/icemarkets"], "stage": "Mature", "name": "Intercontinental Exchange", "patent_name": "intercontinental exchange", "continent": "North America", "local_logo": "intercontinental_exchange.png", "aliases": "Intercontinental Exchange, Inc; Intercontinentalexchange", "permid_links": [{"text": 5038915059, "url": "https://permid.org/1-5038915059"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ICE", "url": "https://www.google.com/finance/quote/ice:nyse"}], "market_full": [{"text": "SAO:I1CE34", "url": "https://www.google.com/finance/quote/i1ce34:sao"}, {"text": "NYQ:ICE", "url": "https://www.google.com/finance/quote/ice:nyq"}, {"text": "ASE:ICE", "url": "https://www.google.com/finance/quote/ase:ice"}, {"text": "DUS:IC2", "url": "https://www.google.com/finance/quote/dus:ic2"}, {"text": "GER:IC2X", "url": "https://www.google.com/finance/quote/ger:ic2x"}, {"text": "MCX:ICE-RM", "url": "https://www.google.com/finance/quote/ice-rm:mcx"}, {"text": "MEX:ICE", "url": "https://www.google.com/finance/quote/ice:mex"}, {"text": "STU:IC2", "url": "https://www.google.com/finance/quote/ic2:stu"}, {"text": "MUN:IC2", "url": "https://www.google.com/finance/quote/ic2:mun"}, {"text": "LSE:0JC3", "url": "https://www.google.com/finance/quote/0jc3:lse"}, {"text": "DEU:IC2", "url": "https://www.google.com/finance/quote/deu:ic2"}, {"text": "VIE:ICEI", "url": "https://www.google.com/finance/quote/icei:vie"}, {"text": "BRN:IC2", "url": "https://www.google.com/finance/quote/brn:ic2"}, {"text": "HAN:IC2", "url": "https://www.google.com/finance/quote/han:ic2"}, {"text": "BER:IC2", "url": "https://www.google.com/finance/quote/ber:ic2"}, {"text": "FRA:IC2", "url": "https://www.google.com/finance/quote/fra:ic2"}, {"text": "NYSE:ICE", "url": "https://www.google.com/finance/quote/ice:nyse"}], "crunchbase_description": "Intercontinental Exchange is an operator of regulated exchanges and clearing houses serving the risk management needs of global markets.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 148, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 133, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 2, 3, 0, 0, 0, 1, 3, 1], "total": 11, "isTopResearch": false, "rank": 924, "fortune500_rank": 321}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1], "total": 1, "isTopResearch": false, "rank": 901, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 0.5, "isTopResearch": false, "rank": 905, "fortune500_rank": 253}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1064, "rank": 338, "fortune500_rank": 189}, "ai_jobs": {"counts": null, "total": 167, "rank": 254, "fortune500_rank": 136}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "The Intercontinental Exchange (ICE) is an American Fortune 500 company formed in 2000 that operates global exchanges, clearing houses and provides mortgage technology, data and listing services. The company owns exchanges for financial and commodity markets, and operates 12 regulated exchanges and marketplaces. This includes ICE futures exchanges in the United States, Canada and Europe, the Liffe futures exchanges in Europe, the New York Stock Exchange, equity options exchanges and OTC energy, credit and equity markets.", "wikipedia_link": "https://en.wikipedia.org/wiki/Intercontinental_Exchange", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1805, "country": "United States", "website": "https://www.costco.com/", "crunchbase": {"text": " b8ee8b6a-cec9-43ed-87f0-d50249b30e32", "url": " https://www.crunchbase.com/organization/costco-wholesale"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/costco-wholesale"], "stage": "Mature", "name": "Costco Wholesale", "patent_name": "Costco Wholesale", "continent": "North America", "local_logo": null, "aliases": "Costco; Costco Wholesale; Costco Wholesale Corporation", "permid_links": [{"text": 4295912987, "url": "https://permid.org/1-4295912987"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:COST", "url": "https://www.google.com/finance/quote/COST:NASDAQ"}], "market_full": [{"text": "BRN:CTO", "url": "https://www.google.com/finance/quote/BRN:CTO"}, {"text": "SAO:COWC34", "url": "https://www.google.com/finance/quote/COWC34:SAO"}, {"text": "NASDAQ:COST", "url": "https://www.google.com/finance/quote/COST:NASDAQ"}, {"text": "BER:CTO", "url": "https://www.google.com/finance/quote/BER:CTO"}, {"text": "DUS:CTO", "url": "https://www.google.com/finance/quote/CTO:DUS"}, {"text": "HAM:CTO", "url": "https://www.google.com/finance/quote/CTO:HAM"}, {"text": "DEU:CTO0", "url": "https://www.google.com/finance/quote/CTO0:DEU"}, {"text": "BUE:COST3", "url": "https://www.google.com/finance/quote/BUE:COST3"}, {"text": "MEX:COST", "url": "https://www.google.com/finance/quote/COST:MEX"}, {"text": "MUN:CTO", "url": "https://www.google.com/finance/quote/CTO:MUN"}, {"text": "HAN:CTO", "url": "https://www.google.com/finance/quote/CTO:HAN"}, {"text": "LSE:0I47", "url": "https://www.google.com/finance/quote/0I47:LSE"}, {"text": "DEU:COST", "url": "https://www.google.com/finance/quote/COST:DEU"}, {"text": "SGO:COST", "url": "https://www.google.com/finance/quote/COST:SGO"}, {"text": "FRA:CTO0", "url": "https://www.google.com/finance/quote/CTO0:FRA"}, {"text": "MCX:COST-RM", "url": "https://www.google.com/finance/quote/COST-RM:MCX"}, {"text": "GER:CTOX", "url": "https://www.google.com/finance/quote/CTOX:GER"}, {"text": "FRA:CTO", "url": "https://www.google.com/finance/quote/CTO:FRA"}, {"text": "VIE:COST", "url": "https://www.google.com/finance/quote/COST:VIE"}, {"text": "SGO:COSTCL", "url": "https://www.google.com/finance/quote/COSTCL:SGO"}, {"text": "STU:CTO", "url": "https://www.google.com/finance/quote/CTO:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 3, 3, 0, 0, 1, 1, 0, 0, 0, 0], "total": 10, "isTopResearch": false, "rank": 942, "sp500_rank": 392, "fortune500_rank": 327}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1064, "rank": 338, "sp500_rank": 173, "fortune500_rank": 189}, "ai_jobs": {"counts": null, "total": 70, "rank": 409, "sp500_rank": 210, "fortune500_rank": 217}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers"}, {"cset_id": 1813, "country": "United States", "website": "https://www.kroger.com/", "crunchbase": {"text": " 185c6fdd-53d5-698a-3726-e5d3ba757595", "url": " https://www.crunchbase.com/organization/kroger"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kroger"], "stage": "Mature", "name": "Kroger", "patent_name": "Kroger", "continent": "North America", "local_logo": null, "aliases": "Kroger; The Kroger Co", "permid_links": [{"text": 4295903182, "url": "https://permid.org/1-4295903182"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:KR", "url": "https://www.google.com/finance/quote/KR:NYSE"}], "market_full": [{"text": "LSE:0JS2", "url": "https://www.google.com/finance/quote/0JS2:LSE"}, {"text": "VIE:KR", "url": "https://www.google.com/finance/quote/KR:VIE"}, {"text": "ASE:KR", "url": "https://www.google.com/finance/quote/ASE:KR"}, {"text": "STU:KOG", "url": "https://www.google.com/finance/quote/KOG:STU"}, {"text": "DUS:KOG", "url": "https://www.google.com/finance/quote/DUS:KOG"}, {"text": "GER:KOGX", "url": "https://www.google.com/finance/quote/GER:KOGX"}, {"text": "MUN:KOG", "url": "https://www.google.com/finance/quote/KOG:MUN"}, {"text": "NYSE:KR", "url": "https://www.google.com/finance/quote/KR:NYSE"}, {"text": "DEU:KR", "url": "https://www.google.com/finance/quote/DEU:KR"}, {"text": "NYQ:KR", "url": "https://www.google.com/finance/quote/KR:NYQ"}, {"text": "BER:KOG", "url": "https://www.google.com/finance/quote/BER:KOG"}, {"text": "FRA:KOG", "url": "https://www.google.com/finance/quote/FRA:KOG"}, {"text": "MEX:KR", "url": "https://www.google.com/finance/quote/KR:MEX"}, {"text": "SAO:K1RC34", "url": "https://www.google.com/finance/quote/K1RC34:SAO"}, {"text": "BRN:KOG", "url": "https://www.google.com/finance/quote/BRN:KOG"}, {"text": "MCX:KR-RM", "url": "https://www.google.com/finance/quote/KR-RM:MCX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 2, 0, 1, 0, 1, 1, 0, 2, 0], "total": 7, "isTopResearch": false, "rank": 1006, "sp500_rank": 406, "fortune500_rank": 339}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1052, "rank": 340, "sp500_rank": 174, "fortune500_rank": 191}, "ai_jobs": {"counts": null, "total": 96, "rank": 344, "sp500_rank": 185, "fortune500_rank": 184}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 705, "country": "Switzerland", "website": "http://www.swissre.com", "crunchbase": {"text": "ea373d94-0a3e-c98b-0d07-6cf4641c9a20", "url": "https://www.crunchbase.com/organization/swiss-re"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/swiss-re"], "stage": "Mature", "name": "Swiss Re", "patent_name": "swiss re", "continent": "Europe", "local_logo": "swiss_re.png", "aliases": "Swiss Re AG; Swiss Re Group; Swiss Re Ltd", "permid_links": [{"text": 5001738799, "url": "https://permid.org/1-5001738799"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:0QL6", "url": "https://www.google.com/finance/quote/0ql6:lse"}, {"text": "MEX:SREN", "url": "https://www.google.com/finance/quote/mex:sren"}, {"text": "OTC:SSREY", "url": "https://www.google.com/finance/quote/otc:ssrey"}, {"text": "FRA:SR9", "url": "https://www.google.com/finance/quote/fra:sr9"}, {"text": "SWX:SREN", "url": "https://www.google.com/finance/quote/sren:swx"}, {"text": "LSE:0RCE", "url": "https://www.google.com/finance/quote/0rce:lse"}, {"text": "XETR:SR9", "url": "https://www.google.com/finance/quote/sr9:xetr"}], "crunchbase_description": "Swiss Re Group is a wholesale provider of reinsurance, insurance, and other insurance-based forms of risk transfer.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Coordinate descent", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Sentence", "field_count": 1}, {"field_name": "Synthetic aperture radar", "field_count": 1}, {"field_name": "Knowledge base", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Decision rule", "field_count": 1}, {"field_name": "Covariate", "field_count": 1}], "clusters": [{"cluster_id": 52008, "cluster_count": 1}, {"cluster_id": 54620, "cluster_count": 1}, {"cluster_id": 2076, "cluster_count": 1}, {"cluster_id": 74465, "cluster_count": 1}, {"cluster_id": 2561, "cluster_count": 1}, {"cluster_id": 24799, "cluster_count": 1}, {"cluster_id": 38620, "cluster_count": 1}, {"cluster_id": 214, "cluster_count": 1}, {"cluster_id": 148, "cluster_count": 1}, {"cluster_id": 59256, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 336, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 705, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 2075, "referenced_count": 1}, {"ref_CSET_id": 516, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "classification", "task_count": 3}, {"referent": "sar", "task_count": 1}, {"referent": "predicate_detection", "task_count": 1}, {"referent": "spatio_temporal_forecasting", "task_count": 1}, {"referent": "knowledge_base", "task_count": 1}, {"referent": "variable_selection", "task_count": 1}, {"referent": "word_segmentation", "task_count": 1}, {"referent": "image_recognition", "task_count": 1}, {"referent": "visual_commonsense_reasoning", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "representation_learning", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "sabn", "method_count": 2}, {"referent": "bilstm", "method_count": 1}, {"referent": "sequence_to_sequence_models", "method_count": 1}, {"referent": "u_rnns", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [9, 18, 10, 12, 8, 9, 22, 22, 21, 21, 0], "total": 152, "isTopResearch": false, "rank": 453, "sp500_rank": 270}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 1, 5, 5, 3, 2, 0], "total": 17, "isTopResearch": false, "rank": 330, "sp500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -24.444444444444446, "isTopResearch": false, "rank": 1362, "sp500_rank": 368}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 0, 0, 0, 11, 33, 52, 88, 99, 81, 5], "total": 369, "isTopResearch": false, "rank": 306, "sp500_rank": 152}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 33.0, 10.4, 17.6, 33.0, 40.5, 0], "total": 21.705882352941178, "isTopResearch": false, "rank": 284, "sp500_rank": 80}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 9, 1, 0, 0, 2, 1, 0, 0], "total": 14, "table": null, "rank": 365, "sp500_rank": 178}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 90, 10, 0, 0, 20, 10, 0, 0], "total": 140, "table": null, "rank": 365, "sp500_rank": 178}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 147, "sp500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 1, 8, 1, 0, 0, 1, 1, 0, 0], "total": 12, "table": "industry", "rank": 67, "sp500_rank": 52}, "Telecommunications": {"counts": [0, 0, 0, 3, 1, 0, 0, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 225, "sp500_rank": 119}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [0, 0, 1, 2, 1, 0, 0, 2, 1, 0, 0], "total": 7, "table": "industry", "rank": 183, "sp500_rank": 119}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 162, "sp500_rank": 88}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 2, 1, 0, 0, 2, 1, 0, 0], "total": 6, "table": "application", "rank": 163, "sp500_rank": 110}, "Control": {"counts": [0, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 190, "sp500_rank": 120}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "sp500_rank": 196}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1040, "rank": 341, "sp500_rank": 175}, "ai_jobs": {"counts": null, "total": 262, "rank": 201, "sp500_rank": 130}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Swiss Reinsurance Company Ltd, commonly known as Swiss Re, is a reinsurance company based in Zurich, Switzerland. It is the world's largest reinsurer.It acquired GE Insurance Solutions in 2006. Founded in 1863, Swiss Re operates through offices in more than 25 countries. Swiss Re was ranked 118th in Forbes 2000 Global leading companies 2016. It was also ranked 313th in Fortune Global 500 in 2015.", "wikipedia_link": "https://en.wikipedia.org/wiki/Swiss_Re", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1570, "country": "United States", "website": "http://www.amgen.com/", "crunchbase": {"text": "42cd77d5-9fd6-a2ce-63ec-45eebd518709", "url": "https://www.crunchbase.com/organization/amgen-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/amgen"], "stage": "Mature", "name": "Amgen", "patent_name": "Amgen", "continent": "North America", "local_logo": "amgen.png", "aliases": "Amgen; Amgen Inc", "permid_links": [{"text": 4295905537, "url": "https://permid.org/1-4295905537"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:4332", "url": "https://www.google.com/finance/quote/4332:HKG"}, {"text": "NASDAQ:AMGN", "url": "https://www.google.com/finance/quote/AMGN:NASDAQ"}], "market_full": [{"text": "STU:AMG", "url": "https://www.google.com/finance/quote/AMG:STU"}, {"text": "BER:AMG", "url": "https://www.google.com/finance/quote/AMG:BER"}, {"text": "BRN:AMG", "url": "https://www.google.com/finance/quote/AMG:BRN"}, {"text": "SGO:AMGN", "url": "https://www.google.com/finance/quote/AMGN:SGO"}, {"text": "FRA:AMG", "url": "https://www.google.com/finance/quote/AMG:FRA"}, {"text": "MCX:AMGN-RM", "url": "https://www.google.com/finance/quote/AMGN-RM:MCX"}, {"text": "LSE:0R0T", "url": "https://www.google.com/finance/quote/0R0T:LSE"}, {"text": "SGO:AMGNCL", "url": "https://www.google.com/finance/quote/AMGNCL:SGO"}, {"text": "VIE:AMGN", "url": "https://www.google.com/finance/quote/AMGN:VIE"}, {"text": "MUN:AMG", "url": "https://www.google.com/finance/quote/AMG:MUN"}, {"text": "MIL:AMGN", "url": "https://www.google.com/finance/quote/AMGN:MIL"}, {"text": "DUS:AMG", "url": "https://www.google.com/finance/quote/AMG:DUS"}, {"text": "HAN:AMG", "url": "https://www.google.com/finance/quote/AMG:HAN"}, {"text": "DEU:AMGN", "url": "https://www.google.com/finance/quote/AMGN:DEU"}, {"text": "MEX:AMGN*", "url": "https://www.google.com/finance/quote/AMGN*:MEX"}, {"text": "GER:AMGX", "url": "https://www.google.com/finance/quote/AMGX:GER"}, {"text": "HKG:4332", "url": "https://www.google.com/finance/quote/4332:HKG"}, {"text": "HAM:AMG", "url": "https://www.google.com/finance/quote/AMG:HAM"}, {"text": "BUE:AMGN3", "url": "https://www.google.com/finance/quote/AMGN3:BUE"}, {"text": "SWX:AMGN", "url": "https://www.google.com/finance/quote/AMGN:SWX"}, {"text": "NASDAQ:AMGN", "url": "https://www.google.com/finance/quote/AMGN:NASDAQ"}], "crunchbase_description": "Amgen is a biotechnology company that develops and manufactures human therapeutics for various illnesses and diseases.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Digital pathology", "field_count": 7}, {"field_name": "Image resolution", "field_count": 1}, {"field_name": "Linear model", "field_count": 1}, {"field_name": "Object (computer science)", "field_count": 1}, {"field_name": "Model selection", "field_count": 1}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Bayesian probability", "field_count": 1}, {"field_name": "False positive rate", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 1683, "cluster_count": 4}, {"cluster_id": 23169, "cluster_count": 3}, {"cluster_id": 21314, "cluster_count": 3}, {"cluster_id": 8647, "cluster_count": 2}, {"cluster_id": 35111, "cluster_count": 1}, {"cluster_id": 31753, "cluster_count": 1}, {"cluster_id": 99463, "cluster_count": 1}, {"cluster_id": 1757, "cluster_count": 1}, {"cluster_id": 11803, "cluster_count": 1}, {"cluster_id": 3390, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 37}, {"ref_CSET_id": 1570, "referenced_count": 16}, {"ref_CSET_id": 163, "referenced_count": 15}, {"ref_CSET_id": 1633, "referenced_count": 14}, {"ref_CSET_id": 87, "referenced_count": 10}, {"ref_CSET_id": 516, "referenced_count": 6}, {"ref_CSET_id": 341, "referenced_count": 6}, {"ref_CSET_id": 3108, "referenced_count": 6}, {"ref_CSET_id": 663, "referenced_count": 6}, {"ref_CSET_id": 989, "referenced_count": 4}], "tasks": [{"referent": "image_analysis", "task_count": 7}, {"referent": "developmental_learning", "task_count": 5}, {"referent": "disease_detection", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "melanoma_detection", "task_count": 3}, {"referent": "drug_discovery", "task_count": 3}, {"referent": "whole_slide_images", "task_count": 3}, {"referent": "histopathological_segmentation", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "skills_assessment", "task_count": 2}], "methods": [{"referent": "mad_learning", "method_count": 9}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "meta_learning_algorithms", "method_count": 4}, {"referent": "q_learning", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "gradient_clipping", "method_count": 2}, {"referent": "image_to_image_translation", "method_count": 2}, {"referent": "graph_convolutional_networks", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1330, 1320, 1436, 1356, 1174, 1133, 1193, 1214, 1026, 804, 2], "total": 11988, "isTopResearch": false, "rank": 33, "sp500_rank": 30, "fortune500_rank": 9}, "ai_publications": {"counts": [1, 2, 1, 2, 1, 5, 6, 6, 9, 2, 0], "total": 35, "isTopResearch": false, "rank": 216, "sp500_rank": 132, "fortune500_rank": 67}, "ai_publications_growth": {"counts": [], "total": -9.259259259259258, "isTopResearch": false, "rank": 1261, "sp500_rank": 311, "fortune500_rank": 361}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [52, 54, 53, 45, 75, 69, 107, 271, 420, 420, 16], "total": 1582, "isTopResearch": false, "rank": 159, "sp500_rank": 93, "fortune500_rank": 47}, "cv_pubs": {"counts": [1, 0, 0, 1, 0, 0, 2, 2, 3, 1, 0], "total": 10, "isTopResearch": true, "rank": 202, "sp500_rank": 115, "fortune500_rank": 55}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [52.0, 27.0, 53.0, 22.5, 75.0, 13.8, 17.833333333333332, 45.166666666666664, 46.666666666666664, 210.0, 0], "total": 45.2, "isTopResearch": false, "rank": 108, "sp500_rank": 23, "fortune500_rank": 27}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 1, 0, 6, 7, 7, 0, 0, 0], "total": 22, "table": null, "rank": 307, "sp500_rank": 160, "fortune500_rank": 106}, "ai_patents_growth": {"counts": [], "total": 8.333333333333334, "table": null, "rank": 342, "sp500_rank": 160, "fortune500_rank": 110}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 10, 0, 60, 70, 70, 0, 0, 0], "total": 220, "table": null, "rank": 307, "sp500_rank": 160, "fortune500_rank": 106}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "sp500_rank": 92, "fortune500_rank": 39}, "Life_Sciences": {"counts": [1, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 122, "sp500_rank": 78, "fortune500_rank": 52}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "sp500_rank": 130, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "sp500_rank": 140, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 1, 0, 4, 2, 2, 0, 0, 0], "total": 10, "table": "application", "rank": 241, "sp500_rank": 134, "fortune500_rank": 73}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 2, 3, 1, 0, 0, 0], "total": 7, "table": "application", "rank": 147, "sp500_rank": 111, "fortune500_rank": 45}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1039, "rank": 342, "sp500_rank": 176, "fortune500_rank": 192}, "ai_jobs": {"counts": null, "total": 340, "rank": 164, "sp500_rank": 107, "fortune500_rank": 87}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research"}, {"cset_id": 2501, "country": "United States", "website": "https://www.synchronyfinancial.com/", "crunchbase": {"text": "bf409762-8e76-3ac8-d340-ef75b9fa1060", "url": "https://www.crunchbase.com/organization/synchrony-financial"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/synchrony-financial"], "stage": "Mature", "name": "Synchrony Financial", "patent_name": "synchrony financial", "continent": "North America", "local_logo": "synchrony_financial.png", "aliases": "Ge Capital Retail Finance; Synchrony", "permid_links": [{"text": 5042214022, "url": "https://permid.org/1-5042214022"}], "parent_info": "Ge Capital", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SYF", "url": "https://www.google.com/finance/quote/nyse:syf"}, {"text": "NYSE:SYF.PRA", "url": "https://www.google.com/finance/quote/nyse:syf.pra"}], "market_full": [{"text": "STU:SFE", "url": "https://www.google.com/finance/quote/sfe:stu"}, {"text": "MUN:SFE", "url": "https://www.google.com/finance/quote/mun:sfe"}, {"text": "SAO:T1SO34", "url": "https://www.google.com/finance/quote/sao:t1so34"}, {"text": "NYSE:SYF", "url": "https://www.google.com/finance/quote/nyse:syf"}, {"text": "FRA:SFE", "url": "https://www.google.com/finance/quote/fra:sfe"}, {"text": "GER:SFEX", "url": "https://www.google.com/finance/quote/ger:sfex"}, {"text": "BRN:SFE", "url": "https://www.google.com/finance/quote/brn:sfe"}, {"text": "BER:SFE", "url": "https://www.google.com/finance/quote/ber:sfe"}, {"text": "ASE:SYF", "url": "https://www.google.com/finance/quote/ase:syf"}, {"text": "DEU:SYFG", "url": "https://www.google.com/finance/quote/deu:syfg"}, {"text": "HAN:SFE", "url": "https://www.google.com/finance/quote/han:sfe"}, {"text": "DUS:SFE", "url": "https://www.google.com/finance/quote/dus:sfe"}, {"text": "MCX:SYF-RM", "url": "https://www.google.com/finance/quote/mcx:syf-rm"}, {"text": "ASE:SYF.PRA", "url": "https://www.google.com/finance/quote/ase:syf.pra"}, {"text": "LSE:0LC3", "url": "https://www.google.com/finance/quote/0lc3:lse"}, {"text": "NYSE:SYF.PRA", "url": "https://www.google.com/finance/quote/nyse:syf.pra"}, {"text": "NYQ:SYF", "url": "https://www.google.com/finance/quote/nyq:syf"}, {"text": "MEX:SYF*", "url": "https://www.google.com/finance/quote/mex:syf*"}, {"text": "NYQ:SYF.PRA", "url": "https://www.google.com/finance/quote/nyq:syf.pra"}], "crunchbase_description": "Synchrony Financial is a consumer financial services firm that offers payment technology to the retail, health, auto, and travel industries.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 2, 0, 0, 0, 1, 0, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063, "fortune500_rank": 359}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1038, "rank": 343, "fortune500_rank": 193}, "ai_jobs": {"counts": null, "total": 310, "rank": 177, "fortune500_rank": 98}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Synchrony Financial is a consumer financial services company headquartered in Stamford, Connecticut, United States. The company offers consumer financing products, including credit, promotional financing and loyalty programs, installment lending to industries, and FDIC-insured consumer savings products through Synchrony Bank, its wholly owned online bank subsidiary.", "wikipedia_link": "https://en.wikipedia.org/wiki/Synchrony_Financial", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2123, "country": "France", "website": "https://www.laposte.fr/", "crunchbase": {"text": " 666f4ea1-d0a9-0f9c-73d1-af49b560da30", "url": " https://www.crunchbase.com/organization/la-poste"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/la-poste"], "stage": "Unknown", "name": "La Poste", "patent_name": "La Poste", "continent": "Europe", "local_logo": null, "aliases": "La Poste; La Poste Solutions Business", "permid_links": [{"text": 4297057843, "url": "https://permid.org/1-4297057843"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "RGB color model", "field_count": 1}, {"field_name": "Linear regression", "field_count": 1}], "clusters": [{"cluster_id": 49744, "cluster_count": 1}, {"cluster_id": 36118, "cluster_count": 1}, {"cluster_id": 1117, "cluster_count": 1}, {"cluster_id": 62335, "cluster_count": 1}, {"cluster_id": 5527, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1954, "referenced_count": 1}], "tasks": [{"referent": "disease_detection", "task_count": 1}, {"referent": "multi_task_learning", "task_count": 1}, {"referent": "image_recognition", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "document_layout_analysis", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "character_recognition", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}, {"referent": "word_recognition", "task_count": 1}, {"referent": "robots", "task_count": 1}], "methods": [{"referent": "linear_regression", "method_count": 2}, {"referent": "miscellaneous_components", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [4, 18, 5, 9, 7, 15, 5, 14, 7, 6, 0], "total": 90, "isTopResearch": false, "rank": 525, "sp500_rank": 300}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 2, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "sp500_rank": 275}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [1, 1, 2, 1, 0, 2, 0, 3, 3, 4, 0], "total": 17, "isTopResearch": false, "rank": 700, "sp500_rank": 291}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0, 1.0, 0, 0, 0, 0, 0.0, 0, 1.5, 0, 0], "total": 4.25, "isTopResearch": false, "rank": 731, "sp500_rank": 291}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1038, "rank": 343, "sp500_rank": 177}, "ai_jobs": {"counts": null, "total": 72, "rank": 406, "sp500_rank": 208}}, "sector": "Industrials", "business_sector": "Transportation"}, {"cset_id": 2212, "country": "United States", "website": "https://www.ameriprise.com/", "crunchbase": {"text": "2af651b7-053e-603d-61cc-8200bc94e557", "url": "https://www.crunchbase.com/organization/ameriprise-financial"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ameriprise-financial-services-llc"], "stage": "Mature", "name": "Ameriprise Financial", "patent_name": "ameriprise financial", "continent": "North America", "local_logo": "ameriprise_financial.png", "aliases": "Ameriprise; Ameriprise Financial Inc; Ameriprise Financial, Inc; Hudson Peak Wealth Advisors", "permid_links": [{"text": 4295899980, "url": "https://permid.org/1-4295899980"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": "H&R Block", "market_filt": [{"text": "NYSE:AMP", "url": "https://www.google.com/finance/quote/amp:nyse"}], "market_full": [{"text": "LSE:0HCR", "url": "https://www.google.com/finance/quote/0hcr:lse"}, {"text": "NYSE:AMP", "url": "https://www.google.com/finance/quote/amp:nyse"}, {"text": "DEU:A4S", "url": "https://www.google.com/finance/quote/a4s:deu"}, {"text": "VIE:AMPF", "url": "https://www.google.com/finance/quote/ampf:vie"}, {"text": "ASE:AMP", "url": "https://www.google.com/finance/quote/amp:ase"}, {"text": "MEX:AMP*", "url": "https://www.google.com/finance/quote/amp*:mex"}, {"text": "HAN:A4S", "url": "https://www.google.com/finance/quote/a4s:han"}, {"text": "MUN:A4S", "url": "https://www.google.com/finance/quote/a4s:mun"}, {"text": "GER:A4SX", "url": "https://www.google.com/finance/quote/a4sx:ger"}, {"text": "SAO:A1MP34", "url": "https://www.google.com/finance/quote/a1mp34:sao"}, {"text": "STU:A4S", "url": "https://www.google.com/finance/quote/a4s:stu"}, {"text": "DUS:A4S", "url": "https://www.google.com/finance/quote/a4s:dus"}, {"text": "BRN:A4S", "url": "https://www.google.com/finance/quote/a4s:brn"}, {"text": "FRA:A4S", "url": "https://www.google.com/finance/quote/a4s:fra"}, {"text": "NYQ:AMP", "url": "https://www.google.com/finance/quote/amp:nyq"}, {"text": "LSE:0HF6", "url": "https://www.google.com/finance/quote/0hf6:lse"}, {"text": "MCX:AMP-RM", "url": "https://www.google.com/finance/quote/amp-rm:mcx"}], "crunchbase_description": "Ameriprise Financial is a financial services company that provides financial planning, products, and services.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0], "total": 3, "isTopResearch": false, "rank": 1148, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1034, "rank": 345, "fortune500_rank": 194}, "ai_jobs": {"counts": null, "total": 138, "rank": 285, "fortune500_rank": 154}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Ameriprise Financial, Inc. is a diversified financial services company and bank holding company incorporated in Delaware and headquartered in Minneapolis, Minnesota. It provides financial planning products and services, including wealth management, asset management, insurance, annuities, and estate planning.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ameriprise_Financial", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1977, "country": "Russian Federation", "website": "http://www.sberbank.ru/", "crunchbase": {"text": " 7c3a28de-17f0-c1ea-193b-4a6d3e69aef3", "url": " https://www.crunchbase.com/organization/sberbank"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sberbankworld"], "stage": "Mature", "name": "Sberbank", "patent_name": "Sberbank", "continent": "Europe", "local_logo": null, "aliases": "Sber; Sberbank; Sberbank Bh D.D", "permid_links": [{"text": 5000036115, "url": "https://permid.org/1-5000036115"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LJU:VLBN", "url": "https://www.google.com/finance/quote/LJU:VLBN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 4}, {"field_name": "Segmentation", "field_count": 4}, {"field_name": "Reinforcement learning", "field_count": 3}, {"field_name": "Question answering", "field_count": 3}, {"field_name": "Kernel (statistics)", "field_count": 2}, {"field_name": "Active learning (machine learning)", "field_count": 2}, {"field_name": "Cellular automaton", "field_count": 2}, {"field_name": "Artificial general intelligence", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}, {"field_name": "Probabilistic logic", "field_count": 1}], "clusters": [{"cluster_id": 1989, "cluster_count": 6}, {"cluster_id": 1193, "cluster_count": 4}, {"cluster_id": 19977, "cluster_count": 2}, {"cluster_id": 13150, "cluster_count": 2}, {"cluster_id": 36203, "cluster_count": 2}, {"cluster_id": 29821, "cluster_count": 2}, {"cluster_id": 52544, "cluster_count": 1}, {"cluster_id": 46034, "cluster_count": 1}, {"cluster_id": 80187, "cluster_count": 1}, {"cluster_id": 44101, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 80}, {"ref_CSET_id": 163, "referenced_count": 48}, {"ref_CSET_id": 87, "referenced_count": 34}, {"ref_CSET_id": 1977, "referenced_count": 18}, {"ref_CSET_id": 115, "referenced_count": 11}, {"ref_CSET_id": 21, "referenced_count": 8}, {"ref_CSET_id": 245, "referenced_count": 7}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 112, "referenced_count": 6}, {"ref_CSET_id": 37, "referenced_count": 5}], "tasks": [{"referent": "classification", "task_count": 9}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 7}, {"referent": "credit_scoring", "task_count": 5}, {"referent": "link_prediction", "task_count": 4}, {"referent": "classification_tasks", "task_count": 3}, {"referent": "question_answering", "task_count": 3}, {"referent": "robots", "task_count": 3}, {"referent": "decision_making", "task_count": 3}, {"referent": "image_manipulation", "task_count": 3}, {"referent": "binary_classification", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "vqa_models", "method_count": 6}, {"referent": "symbolic_deep_learning", "method_count": 5}, {"referent": "neural_architecture_search", "method_count": 5}, {"referent": "mad_learning", "method_count": 4}, {"referent": "auto_classifier", "method_count": 4}, {"referent": "topic_embeddings", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "metrix", "method_count": 3}, {"referent": "3d_representations", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [6, 18, 18, 16, 15, 18, 38, 54, 57, 54, 0], "total": 294, "isTopResearch": false, "rank": 360, "sp500_rank": 231}, "ai_publications": {"counts": [0, 1, 0, 1, 2, 3, 10, 16, 18, 12, 0], "total": 63, "isTopResearch": false, "rank": 158, "sp500_rank": 103}, "ai_publications_growth": {"counts": [], "total": 13.055555555555555, "isTopResearch": false, "rank": 142, "sp500_rank": 72}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 2, 4, 0], "total": 10, "isTopResearch": false, "rank": 114, "sp500_rank": 57}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 7, 44, 85, 102, 6], "total": 245, "isTopResearch": false, "rank": 361, "sp500_rank": 168}, "cv_pubs": {"counts": [0, 1, 0, 1, 0, 1, 1, 1, 5, 3, 0], "total": 13, "isTopResearch": true, "rank": 179, "sp500_rank": 104}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 1, 4, 4, 3, 4, 0], "total": 17, "isTopResearch": true, "rank": 71, "sp500_rank": 50}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 3, 2, 0], "total": 8, "isTopResearch": true, "rank": 135, "sp500_rank": 95}, "citations_per_article": {"counts": [0, 0.0, 0, 0.0, 0.0, 0.3333333333333333, 0.7, 2.75, 4.722222222222222, 8.5, 0], "total": 3.888888888888889, "isTopResearch": false, "rank": 757, "sp500_rank": 299}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 5, 11, 10, 3, 0, 0], "total": 29, "table": null, "rank": 273, "sp500_rank": 151}, "ai_patents_growth": {"counts": [], "total": 55.45454545454545, "table": null, "rank": 189, "sp500_rank": 90}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 50, 110, 100, 30, 0, 0], "total": 290, "table": null, "rank": 273, "sp500_rank": 151}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 141, "sp500_rank": 95}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 131, "sp500_rank": 89}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 7, "sp500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 8, 9, 0, 0, 0], "total": 18, "table": "industry", "rank": 202, "sp500_rank": 113}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0], "total": 5, "table": "industry", "rank": 103, "sp500_rank": 71}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 252, "sp500_rank": 151}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 139, "sp500_rank": 81}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "sp500_rank": 101}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "sp500_rank": 152}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 3, 1, 1, 0, 0], "total": 6, "table": "application", "rank": 300, "sp500_rank": 151}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1033, "rank": 346, "sp500_rank": 178}, "ai_jobs": {"counts": null, "total": 172, "rank": 247, "sp500_rank": 153}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 1959, "country": "India", "website": "https://www.sbi.co.in/", "crunchbase": {"text": " dac2353a-294f-1939-958b-de1a9be4168d ", "url": " https://www.crunchbase.com/organization/state-bank-of-india "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/state-bank-of-india"], "stage": "Mature", "name": "State Bank Of India", "patent_name": "State Bank of India", "continent": "Asia", "local_logo": null, "aliases": "Sbi; State Bank of India", "permid_links": [{"text": 4295873809, "url": "https://permid.org/1-4295873809"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:SBIA", "url": "https://www.google.com/finance/quote/LSE:SBIA"}, {"text": "BRN:SID", "url": "https://www.google.com/finance/quote/BRN:SID"}, {"text": "STU:SID", "url": "https://www.google.com/finance/quote/SID:STU"}, {"text": "DUS:SID", "url": "https://www.google.com/finance/quote/DUS:SID"}, {"text": "NSI:SBIN", "url": "https://www.google.com/finance/quote/NSI:SBIN"}, {"text": "BER:SID", "url": "https://www.google.com/finance/quote/BER:SID"}, {"text": "LSE:SBID", "url": "https://www.google.com/finance/quote/LSE:SBID"}, {"text": "MUN:SID", "url": "https://www.google.com/finance/quote/MUN:SID"}, {"text": "FRA:SID", "url": "https://www.google.com/finance/quote/FRA:SID"}, {"text": "DEU:SID", "url": "https://www.google.com/finance/quote/DEU:SID"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [10, 3, 7, 13, 8, 6, 4, 12, 6, 0, 0], "total": 69, "isTopResearch": false, "rank": 568, "sp500_rank": 313}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1033, "rank": 346, "sp500_rank": 178}, "ai_jobs": {"counts": null, "total": 67, "rank": 417, "sp500_rank": 215}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 1840, "country": "Italy", "website": "https://www.enel.com/", "crunchbase": {"text": " ee10cd3c-7803-3a09-e8e8-5dc815f3b004", "url": "https://www.crunchbase.com/organization/enel"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/enelgroup"], "stage": "Mature", "name": "Enel", "patent_name": "Enel", "continent": "Europe", "local_logo": null, "aliases": "Enel; Enel Generaci\u00f3n Per\u00fa; Enel Spa", "permid_links": [{"text": 4295875798, "url": "https://permid.org/1-4295875798"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MEX:ENELN", "url": "https://www.google.com/finance/quote/ENELN:MEX"}, {"text": "MIL:ENEL", "url": "https://www.google.com/finance/quote/ENEL:MIL"}, {"text": "STU:ENL", "url": "https://www.google.com/finance/quote/ENL:STU"}, {"text": "DUS:ENL", "url": "https://www.google.com/finance/quote/DUS:ENL"}, {"text": "DEU:ENEI", "url": "https://www.google.com/finance/quote/DEU:ENEI"}, {"text": "STU:ENLA", "url": "https://www.google.com/finance/quote/ENLA:STU"}, {"text": "MUN:ENL", "url": "https://www.google.com/finance/quote/ENL:MUN"}, {"text": "DEU:ENLA", "url": "https://www.google.com/finance/quote/DEU:ENLA"}, {"text": "VIE:ENEL", "url": "https://www.google.com/finance/quote/ENEL:VIE"}, {"text": "LSE:0TGA", "url": "https://www.google.com/finance/quote/0TGA:LSE"}, {"text": "FRA:ENL", "url": "https://www.google.com/finance/quote/ENL:FRA"}, {"text": "GER:ENLX", "url": "https://www.google.com/finance/quote/ENLX:GER"}, {"text": "HAN:ENL", "url": "https://www.google.com/finance/quote/ENL:HAN"}, {"text": "EBT:ENELM", "url": "https://www.google.com/finance/quote/EBT:ENELm"}, {"text": "FRA:ENLA", "url": "https://www.google.com/finance/quote/ENLA:FRA"}, {"text": "HAM:ENL", "url": "https://www.google.com/finance/quote/ENL:HAM"}, {"text": "BER:ENL", "url": "https://www.google.com/finance/quote/BER:ENL"}, {"text": "MUN:ENLA", "url": "https://www.google.com/finance/quote/ENLA:MUN"}, {"text": "LSE:0NRE", "url": "https://www.google.com/finance/quote/0NRE:LSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Ensemble forecasting", "field_count": 1}, {"field_name": "Time series", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Bayesian network", "field_count": 1}, {"field_name": "Test set", "field_count": 1}], "clusters": [{"cluster_id": 7483, "cluster_count": 2}, {"cluster_id": 23475, "cluster_count": 2}, {"cluster_id": 21414, "cluster_count": 2}, {"cluster_id": 22988, "cluster_count": 1}, {"cluster_id": 27124, "cluster_count": 1}, {"cluster_id": 3226, "cluster_count": 1}, {"cluster_id": 5511, "cluster_count": 1}, {"cluster_id": 2618, "cluster_count": 1}, {"cluster_id": 58145, "cluster_count": 1}, {"cluster_id": 61387, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 1840, "referenced_count": 1}, {"ref_CSET_id": 1791, "referenced_count": 1}, {"ref_CSET_id": 2008, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "anomaly_detection", "task_count": 3}, {"referent": "classification", "task_count": 2}, {"referent": "system_identification", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}, {"referent": "congestive_heart_failure_detection", "task_count": 1}, {"referent": "smart_grid_prediction", "task_count": 1}, {"referent": "point_cloud_classification", "task_count": 1}, {"referent": "data_to_text_generation", "task_count": 1}, {"referent": "single_image_based_hdr_reconstruction", "task_count": 1}, {"referent": "3d_point_cloud_classification", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 3}, {"referent": "deep_belief_network", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "attention_modules", "method_count": 1}, {"referent": "metrix", "method_count": 1}, {"referent": "cgnn", "method_count": 1}, {"referent": "rule_based_systems", "method_count": 1}, {"referent": "lightconv", "method_count": 1}, {"referent": "wfst", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [62, 72, 70, 59, 50, 69, 58, 56, 108, 92, 0], "total": 696, "isTopResearch": false, "rank": 236, "sp500_rank": 163}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 3, 5, 1, 5, 0, 0], "total": 14, "isTopResearch": false, "rank": 359, "sp500_rank": 192}, "ai_publications_growth": {"counts": [], "total": 73.33333333333333, "isTopResearch": false, "rank": 39, "sp500_rank": 22}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 20, 50, 88, 86, 4], "total": 249, "isTopResearch": false, "rank": 359, "sp500_rank": 167}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0], "total": 3, "isTopResearch": true, "rank": 214, "sp500_rank": 131}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.3333333333333333, 4.0, 50.0, 17.6, 0, 0], "total": 17.785714285714285, "isTopResearch": false, "rank": 353, "sp500_rank": 114}}, "patents": {"ai_patents": {"counts": [1, 1, 4, 2, 0, 0, 0, 1, 0, 0, 0], "total": 9, "table": null, "rank": 424, "sp500_rank": 196}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 10, 40, 20, 0, 0, 0, 10, 0, 0, 0], "total": 90, "table": null, "rank": 424, "sp500_rank": 196}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "sp500_rank": 183}, "Banking_and_Finance": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 172, "sp500_rank": 111}, "Telecommunications": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 233, "sp500_rank": 145}, "Energy_Management": {"counts": [0, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 70, "sp500_rank": 63}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [1, 0, 1, 2, 0, 0, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 198, "sp500_rank": 131}, "Control": {"counts": [0, 0, 4, 1, 0, 0, 0, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 182, "sp500_rank": 118}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1029, "rank": 348, "sp500_rank": 180}, "ai_jobs": {"counts": null, "total": 154, "rank": 267, "sp500_rank": 161}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2319, "country": "United States", "website": "https://www.53.com/", "crunchbase": {"text": "56e49094-1876-b4ae-500b-4d5a880e21f7", "url": "https://www.crunchbase.com/organization/fifth-third-bancorp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fifth-third-bank"], "stage": "Mature", "name": "Fifth Third Bancorp", "patent_name": "fifth third bancorp", "continent": "North America", "local_logo": "fifth_third_bancorp.png", "aliases": "Fifth Third Bank; Fifth Third Bank, National Association", "permid_links": [{"text": 4295906442, "url": "https://permid.org/1-4295906442"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:FITB", "url": "https://www.google.com/finance/quote/fitb:nasdaq"}], "market_full": [{"text": "FRA:FFH", "url": "https://www.google.com/finance/quote/ffh:fra"}, {"text": "BER:FFH", "url": "https://www.google.com/finance/quote/ber:ffh"}, {"text": "MUN:FFH", "url": "https://www.google.com/finance/quote/ffh:mun"}, {"text": "DUS:FFH", "url": "https://www.google.com/finance/quote/dus:ffh"}, {"text": "SAO:FFTD34", "url": "https://www.google.com/finance/quote/fftd34:sao"}, {"text": "BRN:FFH", "url": "https://www.google.com/finance/quote/brn:ffh"}, {"text": "MOEX:FITB-RM", "url": "https://www.google.com/finance/quote/fitb-rm:moex"}, {"text": "DEU:FITB", "url": "https://www.google.com/finance/quote/deu:fitb"}, {"text": "STU:FFH", "url": "https://www.google.com/finance/quote/ffh:stu"}, {"text": "NASDAQ:FITB", "url": "https://www.google.com/finance/quote/fitb:nasdaq"}, {"text": "LSE:0IM1", "url": "https://www.google.com/finance/quote/0im1:lse"}], "crunchbase_description": "Fifth Third Bank specializes in small business, retail banking, investments, and mortgage.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1028, "rank": 349, "fortune500_rank": 195}, "ai_jobs": {"counts": null, "total": 155, "rank": 264, "fortune500_rank": 140}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Fifth Third Bank is a bank headquartered in Cincinnati, Ohio, at Fifth Third Center. It is the principal subsidiary of Fifth Third Bancorp, a diversified bank holding company. One of the largest consumer banks in the Midwestern United States, it operates 1,154 branches and 2,469 automated teller machines in Ohio, Kentucky, Indiana, Michigan, Illinois, Florida, Tennessee, West Virginia, Georgia, and North Carolina. Fifth Third Bank is incorporated in Ohio. It was state-chartered until late 2019, when it obtained a national charter.", "wikipedia_link": "https://en.wikipedia.org/wiki/Fifth_Third_Bank", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3108, "country": null, "website": "https://www.boehringer-ingelheim.com/", "crunchbase": {"text": " 4c1df8bc-0ca2-1c06-2be1-0d7a646a75e8", "url": " https://www.crunchbase.com/organization/boehringer-ingelheim"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/boehringer-ingelheim"], "stage": "Unknown", "name": "Boehringer Ingelheim", "patent_name": "Boehringer Ingelheim", "continent": null, "local_logo": null, "aliases": "Boehringer Ingelheim; Boehringer-Ingelheim", "permid_links": [{"text": 4298428312, "url": "https://permid.org/1-4298428312"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Support vector machine", "field_count": 4}, {"field_name": "Unsupervised learning", "field_count": 3}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Random forest", "field_count": 2}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "System dynamics", "field_count": 1}, {"field_name": "Rule-based system", "field_count": 1}, {"field_name": "Cohen's kappa", "field_count": 1}, {"field_name": "Categorical variable", "field_count": 1}, {"field_name": "Missing data", "field_count": 1}], "clusters": [{"cluster_id": 23169, "cluster_count": 5}, {"cluster_id": 20090, "cluster_count": 2}, {"cluster_id": 69948, "cluster_count": 2}, {"cluster_id": 19144, "cluster_count": 2}, {"cluster_id": 71609, "cluster_count": 2}, {"cluster_id": 2844, "cluster_count": 2}, {"cluster_id": 20261, "cluster_count": 2}, {"cluster_id": 1683, "cluster_count": 2}, {"cluster_id": 26322, "cluster_count": 2}, {"cluster_id": 43443, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 45}, {"ref_CSET_id": 163, "referenced_count": 17}, {"ref_CSET_id": 341, "referenced_count": 17}, {"ref_CSET_id": 87, "referenced_count": 15}, {"ref_CSET_id": 1633, "referenced_count": 14}, {"ref_CSET_id": 115, "referenced_count": 13}, {"ref_CSET_id": 3108, "referenced_count": 12}, {"ref_CSET_id": 1797, "referenced_count": 9}, {"ref_CSET_id": 1962, "referenced_count": 9}, {"ref_CSET_id": 3116, "referenced_count": 6}], "tasks": [{"referent": "classification", "task_count": 15}, {"referent": "drug_discovery", "task_count": 9}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "developmental_learning", "task_count": 4}, {"referent": "disease_detection", "task_count": 4}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 3}, {"referent": "classification_tasks", "task_count": 3}, {"referent": "information_extraction", "task_count": 3}, {"referent": "stroke_classification", "task_count": 3}, {"referent": "binary_classification", "task_count": 3}], "methods": [{"referent": "mad_learning", "method_count": 10}, {"referent": "vqa_models", "method_count": 7}, {"referent": "symbolic_deep_learning", "method_count": 6}, {"referent": "q_learning", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "hri_pipeline", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "auto_classifier", "method_count": 3}, {"referent": "metrix", "method_count": 3}, {"referent": "wfst", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1190, 1422, 1573, 1511, 1467, 1466, 1567, 1575, 1560, 1374, 5], "total": 14710, "isTopResearch": false, "rank": 28, "sp500_rank": 25}, "ai_publications": {"counts": [0, 7, 1, 2, 3, 5, 12, 8, 16, 8, 0], "total": 62, "isTopResearch": false, "rank": 160, "sp500_rank": 105}, "ai_publications_growth": {"counts": [], "total": 5.555555555555553, "isTopResearch": false, "rank": 176, "sp500_rank": 89}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [18, 28, 26, 37, 59, 86, 140, 202, 293, 320, 13], "total": 1222, "isTopResearch": false, "rank": 177, "sp500_rank": 101}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 2, 1, 2, 0, 0], "total": 6, "isTopResearch": true, "rank": 267, "sp500_rank": 137}, "nlp_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0, 4.0, 26.0, 18.5, 19.666666666666668, 17.2, 11.666666666666666, 25.25, 18.3125, 40.0, 0], "total": 19.70967741935484, "isTopResearch": false, "rank": 317, "sp500_rank": 95}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1020, "rank": 350, "sp500_rank": 181}, "ai_jobs": {"counts": null, "total": 219, "rank": 221, "sp500_rank": 143}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research"}, {"cset_id": 2012, "country": "Canada", "website": "https://www.magna.com/", "crunchbase": {"text": " 41dc5841-15dd-d885-0b6d-d9719cd9e251", "url": " https://www.crunchbase.com/organization/magna-international-inc"}, "child_crunchbase": [{"text": "b17faa29-4d77-1608-e736-c8f54d0c6a48", "url": "https://www.crunchbase.com/organization/optimus-ride"}], "linkedin": ["https://www.linkedin.com/company/magna-international", "https://www.linkedin.com/company/optimus-ride"], "stage": "Mature", "name": "Magna International", "patent_name": "Magna International", "continent": "North America", "local_logo": null, "aliases": "Magna; Magna International", "permid_links": [{"text": 4295861309, "url": "https://permid.org/1-4295861309"}, {"text": 5046736269, "url": "https://permid.org/1-5046736269"}], "parent_info": null, "agg_child_info": "Optimus Ride", "unagg_child_info": null, "market_filt": [{"text": "NYSE:MGA", "url": "https://www.google.com/finance/quote/MGA:NYSE"}], "market_full": [{"text": "ASE:MGA", "url": "https://www.google.com/finance/quote/ASE:MGA"}, {"text": "BER:MGA", "url": "https://www.google.com/finance/quote/BER:MGA"}, {"text": "STU:MGA", "url": "https://www.google.com/finance/quote/MGA:STU"}, {"text": "NYQ:MGA", "url": "https://www.google.com/finance/quote/MGA:NYQ"}, {"text": "MEX:MGAN", "url": "https://www.google.com/finance/quote/MEX:MGAN"}, {"text": "MUN:MGA", "url": "https://www.google.com/finance/quote/MGA:MUN"}, {"text": "DUS:MGA", "url": "https://www.google.com/finance/quote/DUS:MGA"}, {"text": "FRA:MGA", "url": "https://www.google.com/finance/quote/FRA:MGA"}, {"text": "NYSE:MGA", "url": "https://www.google.com/finance/quote/MGA:NYSE"}, {"text": "DEU:MGA", "url": "https://www.google.com/finance/quote/DEU:MGA"}, {"text": "HAN:MGA", "url": "https://www.google.com/finance/quote/HAN:MGA"}, {"text": "TOR:MG", "url": "https://www.google.com/finance/quote/MG:TOR"}, {"text": "BRN:MGA", "url": "https://www.google.com/finance/quote/BRN:MGA"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 1}, {"field_name": "Heuristic", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}], "clusters": [{"cluster_id": 31481, "cluster_count": 2}, {"cluster_id": 6010, "cluster_count": 1}, {"cluster_id": 15028, "cluster_count": 1}, {"cluster_id": 12038, "cluster_count": 1}, {"cluster_id": 9480, "cluster_count": 1}, {"cluster_id": 41860, "cluster_count": 1}, {"cluster_id": 31222, "cluster_count": 1}, {"cluster_id": 2418, "cluster_count": 1}, {"cluster_id": 25837, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 201, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 786, "referenced_count": 1}, {"ref_CSET_id": 336, "referenced_count": 1}, {"ref_CSET_id": 815, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 383, "referenced_count": 1}, {"ref_CSET_id": 1784, "referenced_count": 1}, {"ref_CSET_id": 1884, "referenced_count": 1}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "lightfield", "task_count": 1}, {"referent": "prototype_selection", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}, {"referent": "domain_generalization", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "heterogeneous_face_recognition", "task_count": 1}, {"referent": "task_allocation", "task_count": 1}], "methods": [{"referent": "video_sampling", "method_count": 1}, {"referent": "heuristic_search_algorithms", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "gaussian_process", "method_count": 1}, {"referent": "schnet", "method_count": 1}, {"referent": "cross_view_training", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "general", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [8, 5, 14, 48, 2, 2, 11, 14, 31, 17, 0], "total": 152, "isTopResearch": false, "rank": 453, "sp500_rank": 270}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 1, 0, 3, 4, 1, 0], "total": 10, "isTopResearch": false, "rank": 417, "sp500_rank": 218}, "ai_publications_growth": {"counts": [], "total": -20.833333333333332, "isTopResearch": false, "rank": 1335, "sp500_rank": 355}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 1, 0, 0, 1, 5, 11, 20, 3], "total": 41, "isTopResearch": false, "rank": 615, "sp500_rank": 263}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0], "total": 5, "isTopResearch": true, "rank": 171, "sp500_rank": 107}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0, 0.0, 0, 1.6666666666666667, 2.75, 20.0, 0], "total": 4.1, "isTopResearch": false, "rank": 734, "sp500_rank": 294}}, "patents": {"ai_patents": {"counts": [2, 1, 0, 9, 6, 5, 6, 4, 1, 0, 0], "total": 34, "table": null, "rank": 261, "sp500_rank": 147}, "ai_patents_growth": {"counts": [], "total": -10.000000000000002, "table": null, "rank": 1439, "sp500_rank": 423}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [20, 10, 0, 90, 60, 50, 60, 40, 10, 0, 0], "total": 340, "table": null, "rank": 261, "sp500_rank": 147}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 105, "sp500_rank": 81}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 157, "sp500_rank": 102}, "Transportation": {"counts": [2, 1, 0, 9, 5, 5, 6, 3, 1, 0, 0], "total": 32, "table": "industry", "rank": 58, "sp500_rank": 45}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 2, 0, 1, 1, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 305, "sp500_rank": 156}, "Banking_and_Finance": {"counts": [0, 0, 0, 3, 0, 0, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 115, "sp500_rank": 79}, "Telecommunications": {"counts": [2, 0, 0, 3, 1, 0, 2, 2, 0, 0, 0], "total": 10, "table": "industry", "rank": 165, "sp500_rank": 97}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [1, 1, 0, 6, 4, 4, 2, 3, 1, 0, 0], "total": 22, "table": "application", "rank": 85, "sp500_rank": 61}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [1, 0, 0, 1, 4, 0, 3, 2, 0, 0, 0], "total": 11, "table": "application", "rank": 236, "sp500_rank": 131}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 3, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191, "sp500_rank": 121}, "Measuring_and_Testing": {"counts": [0, 0, 0, 6, 0, 1, 2, 0, 0, 0, 0], "total": 9, "table": "application", "rank": 128, "sp500_rank": 100}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1013, "rank": 351, "sp500_rank": 182}, "ai_jobs": {"counts": null, "total": 36, "rank": 551, "sp500_rank": 248}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 2743, "country": "United States", "website": "http://www.kbr.com/", "crunchbase": {"text": "3ce147d9-8008-6572-361a-e2f3c6962710", "url": "https://www.crunchbase.com/organization/kbr-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kbr-inc"], "stage": "Mature", "name": "KBR Inc", "patent_name": "kbr inc", "continent": "North America", "local_logo": "kbr_inc.png", "aliases": "KBR; Kbr, Inc", "permid_links": [{"text": 4295906353, "url": "https://permid.org/1-4295906353"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:KBR", "url": "https://www.google.com/finance/quote/kbr:nyse"}], "market_full": [{"text": "DUS:K6B", "url": "https://www.google.com/finance/quote/dus:k6b"}, {"text": "MUN:K6B", "url": "https://www.google.com/finance/quote/k6b:mun"}, {"text": "BER:K6B", "url": "https://www.google.com/finance/quote/ber:k6b"}, {"text": "DEU:K6B", "url": "https://www.google.com/finance/quote/deu:k6b"}, {"text": "FRA:K6B", "url": "https://www.google.com/finance/quote/fra:k6b"}, {"text": "MEX:KBR*", "url": "https://www.google.com/finance/quote/kbr*:mex"}, {"text": "NYQ:KBR", "url": "https://www.google.com/finance/quote/kbr:nyq"}, {"text": "ASE:KBR", "url": "https://www.google.com/finance/quote/ase:kbr"}, {"text": "LSE:0JPN", "url": "https://www.google.com/finance/quote/0jpn:lse"}, {"text": "STU:K6B", "url": "https://www.google.com/finance/quote/k6b:stu"}, {"text": "BRN:K6B", "url": "https://www.google.com/finance/quote/brn:k6b"}, {"text": "NYSE:KBR", "url": "https://www.google.com/finance/quote/kbr:nyse"}], "crunchbase_description": "KBR delivers science, technology, and engineering solutions to governments and companies.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Human systems engineering", "field_count": 1}, {"field_name": "Polynomial texture mapping", "field_count": 1}, {"field_name": "Embedding", "field_count": 1}, {"field_name": "Heuristic", "field_count": 1}, {"field_name": "Change detection", "field_count": 1}], "clusters": [{"cluster_id": 14263, "cluster_count": 4}, {"cluster_id": 32715, "cluster_count": 3}, {"cluster_id": 16767, "cluster_count": 2}, {"cluster_id": 2503, "cluster_count": 1}, {"cluster_id": 25135, "cluster_count": 1}, {"cluster_id": 6201, "cluster_count": 1}, {"cluster_id": 11252, "cluster_count": 1}, {"cluster_id": 1609, "cluster_count": 1}, {"cluster_id": 23594, "cluster_count": 1}, {"cluster_id": 3552, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 22}, {"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 2743, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 2079, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 27, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 1867, "referenced_count": 1}], "tasks": [{"referent": "land_cover_change_detection", "task_count": 2}, {"referent": "trajectory_prediction", "task_count": 2}, {"referent": "change_detection", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "autonomous_driving", "task_count": 2}, {"referent": "autonomous_flight_(dense_forest)", "task_count": 2}, {"referent": "image_augmentation", "task_count": 1}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "symbolic_rule_learning", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "sagan", "method_count": 1}, {"referent": "gat", "method_count": 1}, {"referent": "gru", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [6, 4, 8, 2, 5, 6, 47, 110, 149, 164, 1], "total": 502, "isTopResearch": false, "rank": 278}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 12, 9, 8, 0], "total": 29, "isTopResearch": false, "rank": 244}, "ai_publications_growth": {"counts": [], "total": -18.055555555555557, "isTopResearch": false, "rank": 1314}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 2, 28, 91, 98, 6], "total": 225, "isTopResearch": false, "rank": 374}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 1, 2, 0], "total": 6, "isTopResearch": true, "rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 4, 0, 0], "total": 7, "isTopResearch": true, "rank": 142}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 2.3333333333333335, 10.11111111111111, 12.25, 0], "total": 7.758620689655173, "isTopResearch": false, "rank": 614}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1006, "rank": 352}, "ai_jobs": {"counts": null, "total": 39, "rank": 533}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "KBR, Inc. (formerly Kellogg Brown & Root) is an American engineering, procurement, and construction company, formerly a subsidiary of Halliburton. After Halliburton acquired Dresser Industries in 1998, Dresser's engineering subsidiary, the M. W. Kellogg Co., was merged with Halliburton's construction subsidiary, Brown & Root, to form Kellogg Brown & Root.", "wikipedia_link": "https://en.wikipedia.org/wiki/KBR_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2215, "country": "United States", "website": "https://www.ansys.com/", "crunchbase": {"text": "1b8932fa-d91d-b048-806b-df0dc123a07a", "url": "https://www.crunchbase.com/organization/ansys"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ansys-inc"], "stage": "Mature", "name": "ANSYS", "patent_name": "ansys", "continent": "North America", "local_logo": "ansys.png", "aliases": "ANSYS Inc; Ansys, Inc", "permid_links": [{"text": 4295905566, "url": "https://permid.org/1-4295905566"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ANSS", "url": "https://www.google.com/finance/quote/anss:nasdaq"}], "market_full": [{"text": "BER:AKX", "url": "https://www.google.com/finance/quote/akx:ber"}, {"text": "FRA:AKX", "url": "https://www.google.com/finance/quote/akx:fra"}, {"text": "MCX:ANSS-RM", "url": "https://www.google.com/finance/quote/anss-rm:mcx"}, {"text": "LSE:0HG3", "url": "https://www.google.com/finance/quote/0hg3:lse"}, {"text": "NASDAQ:ANSS", "url": "https://www.google.com/finance/quote/anss:nasdaq"}, {"text": "BRN:AKX", "url": "https://www.google.com/finance/quote/akx:brn"}, {"text": "GER:AKXX", "url": "https://www.google.com/finance/quote/akxx:ger"}, {"text": "HAN:AKX", "url": "https://www.google.com/finance/quote/akx:han"}, {"text": "STU:AKX", "url": "https://www.google.com/finance/quote/akx:stu"}, {"text": "DEU:ANSS", "url": "https://www.google.com/finance/quote/anss:deu"}, {"text": "VIE:ANSS", "url": "https://www.google.com/finance/quote/anss:vie"}, {"text": "MEX:ANSS*", "url": "https://www.google.com/finance/quote/anss*:mex"}, {"text": "MUN:AKX", "url": "https://www.google.com/finance/quote/akx:mun"}, {"text": "SAO:A1NS34", "url": "https://www.google.com/finance/quote/a1ns34:sao"}, {"text": "DUS:AKX", "url": "https://www.google.com/finance/quote/akx:dus"}, {"text": "SAO:A1LL34", "url": "https://www.google.com/finance/quote/a1ll34:sao"}], "crunchbase_description": "ANSYS develops engineering simulation software used to predict how product designs will behave and how manufacturing processes will operate.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Advanced driver assistance systems", "field_count": 2}, {"field_name": "Face (geometry)", "field_count": 1}, {"field_name": "Translation (geometry)", "field_count": 1}, {"field_name": "Machine vision", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Morphing", "field_count": 1}, {"field_name": "Encoding (memory)", "field_count": 1}, {"field_name": "Computer graphics", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 7064, "cluster_count": 2}, {"cluster_id": 23041, "cluster_count": 1}, {"cluster_id": 50364, "cluster_count": 1}, {"cluster_id": 53066, "cluster_count": 1}, {"cluster_id": 24933, "cluster_count": 1}, {"cluster_id": 20557, "cluster_count": 1}, {"cluster_id": 12846, "cluster_count": 1}, {"cluster_id": 6871, "cluster_count": 1}, {"cluster_id": 12181, "cluster_count": 1}, {"cluster_id": 40789, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 20}, {"ref_CSET_id": 101, "referenced_count": 19}, {"ref_CSET_id": 6, "referenced_count": 10}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 800, "referenced_count": 3}, {"ref_CSET_id": 2215, "referenced_count": 2}, {"ref_CSET_id": 786, "referenced_count": 2}, {"ref_CSET_id": 1784, "referenced_count": 2}, {"ref_CSET_id": 820, "referenced_count": 1}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 6}, {"referent": "classification", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "lightfield", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "portfolio_optimization", "task_count": 2}, {"referent": "pedestrian_detection", "task_count": 2}, {"referent": "target_recognition", "task_count": 2}, {"referent": "disease_detection", "task_count": 2}, {"referent": "motion_capture", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "dmage", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "optimization", "method_count": 2}, {"referent": "gaussian_process", "method_count": 2}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "3d_reconstruction", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [110, 119, 130, 99, 114, 114, 159, 168, 165, 132, 2], "total": 1312, "isTopResearch": false, "rank": 161, "fortune500_rank": 60}, "ai_publications": {"counts": [1, 1, 1, 0, 2, 2, 6, 11, 5, 2, 0], "total": 31, "isTopResearch": false, "rank": 235, "fortune500_rank": 72}, "ai_publications_growth": {"counts": [], "total": -10.404040404040407, "isTopResearch": false, "rank": 1269, "fortune500_rank": 365}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [4, 19, 17, 18, 19, 15, 22, 49, 92, 97, 3], "total": 355, "isTopResearch": false, "rank": 313, "fortune500_rank": 92}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "fortune500_rank": 78}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 2, 1, 1, 0, 0], "total": 5, "isTopResearch": true, "rank": 171, "fortune500_rank": 44}, "citations_per_article": {"counts": [4.0, 19.0, 17.0, 0, 9.5, 7.5, 3.6666666666666665, 4.454545454545454, 18.4, 48.5, 0], "total": 11.451612903225806, "isTopResearch": false, "rank": 488, "fortune500_rank": 145}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 1, 3, 2, 4, 3, 0, 0, 0], "total": 14, "table": null, "rank": 365, "fortune500_rank": 121}, "ai_patents_growth": {"counts": [], "total": 13.888888888888886, "table": null, "rank": 319, "fortune500_rank": 101}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 0, 10, 30, 20, 40, 30, 0, 0, 0], "total": 140, "table": null, "rank": 365, "fortune500_rank": 121}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 1, 3, 2, 4, 2, 0, 0, 0], "total": 13, "table": "industry", "rank": 233, "fortune500_rank": 86}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 1, 3, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 147, "fortune500_rank": 61}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 1000, "rank": 353, "fortune500_rank": 196}, "ai_jobs": {"counts": null, "total": 16, "rank": 738, "fortune500_rank": 370}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Ansys, Inc. is an American company based in Canonsburg, Pennsylvania. It develops and markets multiphysics engineering simulation software for product design, testing and operation and offers its products and services to customers worldwide. Ansys was founded in 1970 by John Swanson. Swanson sold his interest in the company to venture capitalists in 1993. Ansys went public on NASDAQ in 1996. In the 2000s, Ansys made numerous acquisitions of other engineering design companies, acquiring additional technology for fluid dynamics, electronics design, and other physics analysis. Ansys became a component of the NASDAQ-100 index on December 23, 2019.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ansys", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2500, "country": "United States", "website": "https://www.svb.com/", "crunchbase": {"text": "223220cd-4292-b2ae-0123-0d15b9156b8c", "url": "https://www.crunchbase.com/organization/svb-financial-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/silicon-valley-bank"], "stage": "Mature", "name": "SVB Financial", "patent_name": "svb financial", "continent": "North America", "local_logo": "svb_financial.png", "aliases": "Silicon Valley Bank; Svb; Svb Financial Group", "permid_links": [{"text": 4295907927, "url": "https://permid.org/1-4295907927"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:SIVB", "url": "https://www.google.com/finance/quote/nasdaq:sivb"}], "market_full": [{"text": "SAO:S1IV34", "url": "https://www.google.com/finance/quote/s1iv34:sao"}, {"text": "STU:SV4", "url": "https://www.google.com/finance/quote/stu:sv4"}, {"text": "BER:SV4", "url": "https://www.google.com/finance/quote/ber:sv4"}, {"text": "VIE:SIVB", "url": "https://www.google.com/finance/quote/sivb:vie"}, {"text": "HAN:SV4", "url": "https://www.google.com/finance/quote/han:sv4"}, {"text": "MCX:SIVB-RM", "url": "https://www.google.com/finance/quote/mcx:sivb-rm"}, {"text": "NASDAQ:SIVB", "url": "https://www.google.com/finance/quote/nasdaq:sivb"}, {"text": "MUN:SV4", "url": "https://www.google.com/finance/quote/mun:sv4"}, {"text": "DUS:SV4", "url": "https://www.google.com/finance/quote/dus:sv4"}, {"text": "FRA:SV4", "url": "https://www.google.com/finance/quote/fra:sv4"}, {"text": "GER:SV4X", "url": "https://www.google.com/finance/quote/ger:sv4x"}, {"text": "MEX:SIVB", "url": "https://www.google.com/finance/quote/mex:sivb"}, {"text": "DEU:SIVB", "url": "https://www.google.com/finance/quote/deu:sivb"}], "crunchbase_description": "SVB Financial Group offers banking, asset management, wealth management, investment services, and funds management services.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 4, 1, 0], "total": 7, "isTopResearch": false, "rank": 1006, "fortune500_rank": 339}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 0, 10, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 996, "rank": 354, "fortune500_rank": 197}, "ai_jobs": {"counts": null, "total": 197, "rank": 231, "fortune500_rank": 124}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Silicon Valley Bank, a subsidiary of SVB Financial Group, is a U.S.-based high-tech commercial bank. The bank has helped fund more than 30,000 start-ups. SVB is on the list of largest banks in the United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Silicon_Valley_Bank", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 1968, "country": "Australia", "website": "https://www.bhp.com/", "crunchbase": {"text": " a7b6fc89-bb16-ad09-0229-7e397d5e3549", "url": " https://www.crunchbase.com/organization/bhp-billiton-petroleum"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bhp"], "stage": "Mature", "name": "Bhp Group", "patent_name": "BHP Group", "continent": "Oceania", "local_logo": null, "aliases": "BHP Group; Brp Group, Inc", "permid_links": [{"text": 4295894852, "url": "https://permid.org/1-4295894852"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BHP", "url": "https://www.google.com/finance/quote/BHP:NYSE"}], "market_full": [{"text": "BRN:BHP", "url": "https://www.google.com/finance/quote/BHP:BRN"}, {"text": "STU:BHP1", "url": "https://www.google.com/finance/quote/BHP1:STU"}, {"text": "BUE:BHP3", "url": "https://www.google.com/finance/quote/BHP3:BUE"}, {"text": "MUN:BHP1", "url": "https://www.google.com/finance/quote/BHP1:MUN"}, {"text": "FRA:BHP1", "url": "https://www.google.com/finance/quote/BHP1:FRA"}, {"text": "HAN:BHP1", "url": "https://www.google.com/finance/quote/BHP1:HAN"}, {"text": "PKC:BHPLF", "url": "https://www.google.com/finance/quote/BHPLF:PKC"}, {"text": "HAM:BHP1", "url": "https://www.google.com/finance/quote/BHP1:HAM"}, {"text": "ASE:BHP", "url": "https://www.google.com/finance/quote/ASE:BHP"}, {"text": "LSE:0HN3", "url": "https://www.google.com/finance/quote/0HN3:LSE"}, {"text": "BER:BHP1", "url": "https://www.google.com/finance/quote/BER:BHP1"}, {"text": "DEU:BHP1", "url": "https://www.google.com/finance/quote/BHP1:DEU"}, {"text": "JNB:BHG", "url": "https://www.google.com/finance/quote/BHG:JNB"}, {"text": "SWX:BHP", "url": "https://www.google.com/finance/quote/BHP:SWX"}, {"text": "BRN:BHP1", "url": "https://www.google.com/finance/quote/BHP1:BRN"}, {"text": "ASX:BHP", "url": "https://www.google.com/finance/quote/ASX:BHP"}, {"text": "LSE:BHP", "url": "https://www.google.com/finance/quote/BHP:LSE"}, {"text": "DUS:BHP", "url": "https://www.google.com/finance/quote/BHP:DUS"}, {"text": "STU:BHP", "url": "https://www.google.com/finance/quote/BHP:STU"}, {"text": "SAO:BHPG34", "url": "https://www.google.com/finance/quote/BHPG34:SAO"}, {"text": "BER:BHP", "url": "https://www.google.com/finance/quote/BER:BHP"}, {"text": "DEU:BHP", "url": "https://www.google.com/finance/quote/BHP:DEU"}, {"text": "FRA:BHP", "url": "https://www.google.com/finance/quote/BHP:FRA"}, {"text": "NYSE:BHP", "url": "https://www.google.com/finance/quote/BHP:NYSE"}, {"text": "DUS:BHP1", "url": "https://www.google.com/finance/quote/BHP1:DUS"}, {"text": "MEX:BHPN", "url": "https://www.google.com/finance/quote/BHPN:MEX"}, {"text": "MUN:BHP", "url": "https://www.google.com/finance/quote/BHP:MUN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0], "total": 4, "isTopResearch": false, "rank": 1105, "sp500_rank": 421}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 995, "rank": 355, "sp500_rank": 183}, "ai_jobs": {"counts": null, "total": 143, "rank": 279, "sp500_rank": 165}}, "sector": "Basic Materials", "business_sector": "Mineral Resources"}, {"cset_id": 2263, "country": "United States", "website": "https://www.cmegroup.com/", "crunchbase": {"text": "225c8e45-1531-d383-4e72-4347116bd933", "url": "https://www.crunchbase.com/organization/cme-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cme-group"], "stage": "Mature", "name": "CME Group Inc.", "patent_name": "cme group inc.", "continent": "North America", "local_logo": "cme_group_inc.png", "aliases": "CME Group; Chicago Board Of Trade; Chicago Mercantile Exchange; Cme Holdings", "permid_links": [{"text": 4295899615, "url": "https://permid.org/1-4295899615"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CME", "url": "https://www.google.com/finance/quote/cme:nasdaq"}], "market_full": [{"text": "HAN:MX4A", "url": "https://www.google.com/finance/quote/han:mx4a"}, {"text": "VIE:CMEG", "url": "https://www.google.com/finance/quote/cmeg:vie"}, {"text": "DUS:MX4A", "url": "https://www.google.com/finance/quote/dus:mx4a"}, {"text": "STU:MX4A", "url": "https://www.google.com/finance/quote/mx4a:stu"}, {"text": "FRA:MX4A", "url": "https://www.google.com/finance/quote/fra:mx4a"}, {"text": "MCX:CME", "url": "https://www.google.com/finance/quote/cme:mcx"}, {"text": "MEX:CME*", "url": "https://www.google.com/finance/quote/cme*:mex"}, {"text": "LSE:0HR2", "url": "https://www.google.com/finance/quote/0hr2:lse"}, {"text": "BER:MX4A", "url": "https://www.google.com/finance/quote/ber:mx4a"}, {"text": "BRN:MX4A", "url": "https://www.google.com/finance/quote/brn:mx4a"}, {"text": "SAO:CHME34", "url": "https://www.google.com/finance/quote/chme34:sao"}, {"text": "DEU:MX4A", "url": "https://www.google.com/finance/quote/deu:mx4a"}, {"text": "MUN:MX4A", "url": "https://www.google.com/finance/quote/mun:mx4a"}, {"text": "NASDAQ:CME", "url": "https://www.google.com/finance/quote/cme:nasdaq"}, {"text": "GER:MX4X.A", "url": "https://www.google.com/finance/quote/ger:mx4x.a"}], "crunchbase_description": "CME Group is a diverse derivatives marketplace that manages risk and capture opportunities.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [4, 3, 2, 0, 1, 1, 0, 2, 2, 3, 0], "total": 18, "isTopResearch": false, "rank": 825, "fortune500_rank": 292}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": 16.666666666666668, "table": null, "rank": 306, "fortune500_rank": 96}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 10, 20, 10, 10, 0, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 1, 2, 1, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 95, "fortune500_rank": 34}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 992, "rank": 356, "fortune500_rank": 198}, "ai_jobs": {"counts": null, "total": 54, "rank": 467, "fortune500_rank": 247}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "CME Group Inc. (Chicago Mercantile Exchange, Chicago Board of Trade, New York Mercantile Exchange, The Commodity Exchange) is an American global markets company. It is the world's largest financial derivatives exchange, and trades in asset classes that include agricultural products, currencies, energy, interest rates, metals, and stock indexes. The company offers futures contracts and options on futures using its CME Globex trading platforms, fixed income trading via BrokerTec and foreign exchange trading on the EBS platform. In addition, it operates a central counterparty clearing provider, CME Clearing. With a range of pre- and post-trade products and services underpinning the entire lifecycle of a trade, CME Group also offers optimization and reconciliation services through TriOptima, and trade processing services through Traiana.", "wikipedia_link": "https://en.wikipedia.org/wiki/CME_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1842, "country": "Italy", "website": "https://www.generali.com/", "crunchbase": {"text": " 5b908895-9b1a-4256-8d7b-43317c6b89d9 ", "url": " https://www.crunchbase.com/organization/generali "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/generali"], "stage": "Mature", "name": "Assicurazioni Generali", "patent_name": "Assicurazioni Generali", "continent": "Europe", "local_logo": null, "aliases": "Assicurazioni Generali; Generali Group", "permid_links": [{"text": 4295875714, "url": "https://permid.org/1-4295875714"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "VIE:AGEN", "url": "https://www.google.com/finance/quote/AGEN:VIE"}, {"text": "HAN:ASG", "url": "https://www.google.com/finance/quote/ASG:HAN"}, {"text": "EBT:GM", "url": "https://www.google.com/finance/quote/EBT:Gm"}, {"text": "BRU:GEN", "url": "https://www.google.com/finance/quote/BRU:GEN"}, {"text": "DUS:ASG", "url": "https://www.google.com/finance/quote/ASG:DUS"}, {"text": "MUN:ASG", "url": "https://www.google.com/finance/quote/ASG:MUN"}, {"text": "DEU:ASG0", "url": "https://www.google.com/finance/quote/ASG0:DEU"}, {"text": "FRA:ASG", "url": "https://www.google.com/finance/quote/ASG:FRA"}, {"text": "STU:ASG", "url": "https://www.google.com/finance/quote/ASG:STU"}, {"text": "SWX:ASG", "url": "https://www.google.com/finance/quote/ASG:SWX"}, {"text": "DEU:GASI", "url": "https://www.google.com/finance/quote/DEU:GASI"}, {"text": "BER:ASG", "url": "https://www.google.com/finance/quote/ASG:BER"}, {"text": "MIL:G", "url": "https://www.google.com/finance/quote/G:MIL"}, {"text": "MEX:GASIN", "url": "https://www.google.com/finance/quote/GASIN:MEX"}, {"text": "GER:ASGX", "url": "https://www.google.com/finance/quote/ASGX:GER"}, {"text": "FRA:ASG0", "url": "https://www.google.com/finance/quote/ASG0:FRA"}, {"text": "HAM:ASG", "url": "https://www.google.com/finance/quote/ASG:HAM"}, {"text": "LSE:0K78", "url": "https://www.google.com/finance/quote/0K78:LSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [3, 3, 3, 3, 3, 2, 0, 3, 1, 0, 1], "total": 22, "isTopResearch": false, "rank": 784, "sp500_rank": 367}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 990, "rank": 357, "sp500_rank": 184}, "ai_jobs": {"counts": null, "total": 159, "rank": 259, "sp500_rank": 156}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 1986, "country": "India", "website": "https://www.tatamotors.com/", "crunchbase": {"text": " dfbe7577-7061-fcb2-cba3-d6cc73729776 ", "url": " https://www.crunchbase.com/organization/tata-motors "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tata-motors"], "stage": "Mature", "name": "Tata Motors", "patent_name": "Tata Motors", "continent": "Asia", "local_logo": null, "aliases": "Tata Motors; Tata Motors Ltd; Telco", "permid_links": [{"text": 4295872696, "url": "https://permid.org/1-4295872696"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TTM", "url": "https://www.google.com/finance/quote/NYSE:TTM"}], "market_full": [{"text": "STU:TATB", "url": "https://www.google.com/finance/quote/STU:TATB"}, {"text": "NYQ:TTM", "url": "https://www.google.com/finance/quote/NYQ:TTM"}, {"text": "VIE:TATB", "url": "https://www.google.com/finance/quote/TATB:VIE"}, {"text": "NSI:TATAMOTORS", "url": "https://www.google.com/finance/quote/NSI:TATAMOTORS"}, {"text": "DEU:TATB", "url": "https://www.google.com/finance/quote/DEU:TATB"}, {"text": "NYSE:TTM", "url": "https://www.google.com/finance/quote/NYSE:TTM"}, {"text": "BER:TATB", "url": "https://www.google.com/finance/quote/BER:TATB"}, {"text": "MUN:TATB", "url": "https://www.google.com/finance/quote/MUN:TATB"}, {"text": "ASE:TTM", "url": "https://www.google.com/finance/quote/ASE:TTM"}, {"text": "FRA:TATB", "url": "https://www.google.com/finance/quote/FRA:TATB"}, {"text": "DUS:TATB", "url": "https://www.google.com/finance/quote/DUS:TATB"}, {"text": "LSE:0LDA", "url": "https://www.google.com/finance/quote/0LDA:LSE"}, {"text": "BUE:TTM3", "url": "https://www.google.com/finance/quote/BUE:TTM3"}, {"text": "MEX:TTMN", "url": "https://www.google.com/finance/quote/MEX:TTMN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Driving simulator", "field_count": 4}, {"field_name": "Deep learning", "field_count": 4}, {"field_name": "Feature selection", "field_count": 3}, {"field_name": "Haptic technology", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Object (computer science)", "field_count": 2}, {"field_name": "Inference", "field_count": 2}, {"field_name": "Transfer of learning", "field_count": 2}], "clusters": [{"cluster_id": 2410, "cluster_count": 9}, {"cluster_id": 16876, "cluster_count": 8}, {"cluster_id": 62283, "cluster_count": 6}, {"cluster_id": 23250, "cluster_count": 5}, {"cluster_id": 18630, "cluster_count": 4}, {"cluster_id": 2651, "cluster_count": 4}, {"cluster_id": 82795, "cluster_count": 3}, {"cluster_id": 9480, "cluster_count": 3}, {"cluster_id": 3357, "cluster_count": 3}, {"cluster_id": 829, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 1986, "referenced_count": 68}, {"ref_CSET_id": 101, "referenced_count": 37}, {"ref_CSET_id": 163, "referenced_count": 20}, {"ref_CSET_id": 800, "referenced_count": 13}, {"ref_CSET_id": 783, "referenced_count": 12}, {"ref_CSET_id": 87, "referenced_count": 12}, {"ref_CSET_id": 456, "referenced_count": 9}, {"ref_CSET_id": 37, "referenced_count": 8}, {"ref_CSET_id": 115, "referenced_count": 7}, {"ref_CSET_id": 820, "referenced_count": 7}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 36}, {"referent": "autonomous_driving", "task_count": 36}, {"referent": "classification", "task_count": 18}, {"referent": "vehicle_detection", "task_count": 11}, {"referent": "feature_selection", "task_count": 6}, {"referent": "3d_shape_recognition", "task_count": 6}, {"referent": "autonomous_navigation", "task_count": 6}, {"referent": "steering_control", "task_count": 6}, {"referent": "object_detection", "task_count": 5}, {"referent": "trajectory_planning", "task_count": 4}], "methods": [{"referent": "double_q_learning", "method_count": 7}, {"referent": "symbolic_deep_learning", "method_count": 7}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "vqa_models", "method_count": 4}, {"referent": "automl", "method_count": 4}, {"referent": "adaptive_nms", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "carafe", "method_count": 2}, {"referent": "awd_lstm", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [66, 52, 63, 80, 118, 100, 132, 83, 153, 35, 0], "total": 882, "isTopResearch": false, "rank": 202, "sp500_rank": 149}, "ai_publications": {"counts": [5, 6, 7, 12, 18, 20, 16, 7, 12, 6, 0], "total": 109, "isTopResearch": false, "rank": 117, "sp500_rank": 84}, "ai_publications_growth": {"counts": [], "total": -11.607142857142856, "isTopResearch": false, "rank": 1279, "sp500_rank": 323}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [9, 8, 28, 48, 83, 291, 396, 509, 786, 749, 21], "total": 2928, "isTopResearch": false, "rank": 101, "sp500_rank": 65}, "cv_pubs": {"counts": [3, 1, 2, 3, 6, 2, 7, 0, 2, 0, 0], "total": 26, "isTopResearch": true, "rank": 122, "sp500_rank": 78}, "nlp_pubs": {"counts": [0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102}, "robotics_pubs": {"counts": [2, 3, 1, 3, 3, 10, 7, 3, 0, 2, 0], "total": 34, "isTopResearch": true, "rank": 59, "sp500_rank": 47}, "citations_per_article": {"counts": [1.8, 1.3333333333333333, 4.0, 4.0, 4.611111111111111, 14.55, 24.75, 72.71428571428571, 65.5, 124.83333333333333, 0], "total": 26.862385321100916, "isTopResearch": false, "rank": 217, "sp500_rank": 59}}, "patents": {"ai_patents": {"counts": [0, 2, 1, 9, 10, 11, 2, 2, 1, 0, 0], "total": 38, "table": null, "rank": 245, "sp500_rank": 140}, "ai_patents_growth": {"counts": [], "total": -23.939393939393938, "table": null, "rank": 1467, "sp500_rank": 432}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 20, 10, 90, 100, 110, 20, 20, 10, 0, 0], "total": 380, "table": null, "rank": 245, "sp500_rank": 140}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158, "sp500_rank": 91}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 2, 1, 8, 10, 10, 2, 2, 0, 0, 0], "total": 35, "table": "industry", "rank": 56, "sp500_rank": 43}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 141, "sp500_rank": 91}, "Telecommunications": {"counts": [0, 2, 0, 2, 0, 1, 0, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 225, "sp500_rank": 119}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 97, "sp500_rank": 78}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 6, 7, 7, 1, 1, 0, 0, 0], "total": 22, "table": "application", "rank": 85, "sp500_rank": 61}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 1, 3, 0, 0, 1, 0, 1, 0, 0], "total": 6, "table": "application", "rank": 300, "sp500_rank": 151}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191, "sp500_rank": 121}, "Measuring_and_Testing": {"counts": [0, 2, 1, 2, 0, 4, 1, 0, 0, 0, 0], "total": 10, "table": "application", "rank": 121, "sp500_rank": 94}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 981, "rank": 358, "sp500_rank": 185}, "ai_jobs": {"counts": null, "total": 94, "rank": 351, "sp500_rank": 189}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 2563, "country": "United States", "website": "https://www.parsons.com/", "crunchbase": {"text": "087ac097-367e-75dd-f0ff-b8473b428f4e", "url": "https://www.crunchbase.com/organization/parsons-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/parsons"], "stage": "Mature", "name": "Parsons Corp", "patent_name": "parsons corp", "continent": "North America", "local_logo": "parsons_corp.png", "aliases": "Parsons; Parsons Corporation", "permid_links": [{"text": 5068660285, "url": "https://permid.org/1-5068660285"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PSN", "url": "https://www.google.com/finance/quote/nyse:psn"}], "market_full": [{"text": "ASE:PSN", "url": "https://www.google.com/finance/quote/ase:psn"}, {"text": "FRA:59P", "url": "https://www.google.com/finance/quote/59p:fra"}, {"text": "BRN:59P", "url": "https://www.google.com/finance/quote/59p:brn"}, {"text": "NYSE:PSN", "url": "https://www.google.com/finance/quote/nyse:psn"}, {"text": "DEU:59P", "url": "https://www.google.com/finance/quote/59p:deu"}, {"text": "DUS:59P", "url": "https://www.google.com/finance/quote/59p:dus"}, {"text": "STU:59P", "url": "https://www.google.com/finance/quote/59p:stu"}, {"text": "NYQ:PSN", "url": "https://www.google.com/finance/quote/nyq:psn"}, {"text": "BER:59P", "url": "https://www.google.com/finance/quote/59p:ber"}], "crunchbase_description": "Parsons is an engineering, construction, technical and management services firm.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Night vision", "field_count": 2}, {"field_name": "Inference", "field_count": 1}, {"field_name": "False alarm", "field_count": 1}], "clusters": [{"cluster_id": 23506, "cluster_count": 3}, {"cluster_id": 54932, "cluster_count": 2}, {"cluster_id": 3281, "cluster_count": 1}, {"cluster_id": 21009, "cluster_count": 1}, {"cluster_id": 25609, "cluster_count": 1}, {"cluster_id": 35533, "cluster_count": 1}, {"cluster_id": 10301, "cluster_count": 1}, {"cluster_id": 50338, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2563, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 2361, "referenced_count": 1}, {"ref_CSET_id": 228, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 175, "referenced_count": 1}, {"ref_CSET_id": 247, "referenced_count": 1}, {"ref_CSET_id": 820, "referenced_count": 1}], "tasks": [{"referent": "simultaneous_localization_and_mapping", "task_count": 1}, {"referent": "image_quality_estimation", "task_count": 1}, {"referent": "mot", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "sensor_fusion", "task_count": 1}, {"referent": "real_time_object_detection", "task_count": 1}, {"referent": "software_defect_prediction", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}], "methods": [{"referent": "muzero", "method_count": 1}, {"referent": "darknet_19", "method_count": 1}, {"referent": "generalized_linear_models", "method_count": 1}, {"referent": "verse", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "fa", "method_count": 1}, {"referent": "ltls", "method_count": 1}, {"referent": "wgan_gp", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "hoc", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [24, 23, 30, 21, 33, 33, 16, 14, 15, 14, 0], "total": 223, "isTopResearch": false, "rank": 397}, "ai_publications": {"counts": [0, 1, 2, 1, 0, 0, 0, 2, 2, 0, 0], "total": 8, "isTopResearch": false, "rank": 455}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [2, 1, 8, 4, 19, 13, 12, 10, 16, 13, 3], "total": 101, "isTopResearch": false, "rank": 501}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 1.0, 4.0, 4.0, 0, 0, 0, 5.0, 8.0, 0, 0], "total": 12.625, "isTopResearch": false, "rank": 457}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 0, 3, 2, 2, 0, 0], "total": 8, "table": null, "rank": 443}, "ai_patents_growth": {"counts": [], "total": -33.333333333333336, "table": null, "rank": 1491}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 0, 30, 20, 20, 0, 0], "total": 80, "table": null, "rank": 443}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 3, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 363}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], "total": 4, "table": "industry", "rank": 249}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 162}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 973, "rank": 359}, "ai_jobs": {"counts": null, "total": 38, "rank": 538}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Parsons Corporation (Parsons) is an American technology-focused defense, intelligence, security, and infrastructure engineering firm headquartered in Centreville, Virginia. The company was founded in 1944.", "wikipedia_link": "https://en.wikipedia.org/wiki/Parsons_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2059, "country": "Italy", "website": "https://www.poste.it/", "crunchbase": {"text": " 7dec18e4-cfa2-066d-a5a2-53ba8f6d215d", "url": " https://www.crunchbase.com/organization/poste-italiane"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/poste-italiane"], "stage": "Mature", "name": "Poste Italiane", "patent_name": "Poste Italiane", "continent": "Europe", "local_logo": null, "aliases": "Poste Italiane; Poste Italiane S.P.A", "permid_links": [{"text": 4295875842, "url": "https://permid.org/1-4295875842"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MUN:7PI", "url": "https://www.google.com/finance/quote/7PI:MUN"}, {"text": "MIL:PST", "url": "https://www.google.com/finance/quote/MIL:PST"}, {"text": "HAN:7PI", "url": "https://www.google.com/finance/quote/7PI:HAN"}, {"text": "LSE:0RC2", "url": "https://www.google.com/finance/quote/0RC2:LSE"}, {"text": "PKL:PITAF", "url": "https://www.google.com/finance/quote/PITAF:PKL"}, {"text": "DUS:7PI", "url": "https://www.google.com/finance/quote/7PI:DUS"}, {"text": "FRA:7PI", "url": "https://www.google.com/finance/quote/7PI:FRA"}, {"text": "STU:7PI", "url": "https://www.google.com/finance/quote/7PI:STU"}, {"text": "EBT:PSTM", "url": "https://www.google.com/finance/quote/EBT:PSTm"}, {"text": "BER:7PI", "url": "https://www.google.com/finance/quote/7PI:BER"}, {"text": "VIE:PST", "url": "https://www.google.com/finance/quote/PST:VIE"}, {"text": "DEU:7PI", "url": "https://www.google.com/finance/quote/7PI:DEU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Bayesian network", "field_count": 1}, {"field_name": "Knowledge base", "field_count": 1}, {"field_name": "Gesture", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}], "clusters": [{"cluster_id": 26, "cluster_count": 3}, {"cluster_id": 43631, "cluster_count": 2}, {"cluster_id": 4147, "cluster_count": 1}, {"cluster_id": 13825, "cluster_count": 1}, {"cluster_id": 68368, "cluster_count": 1}, {"cluster_id": 26954, "cluster_count": 1}, {"cluster_id": 8697, "cluster_count": 1}, {"cluster_id": 6912, "cluster_count": 1}, {"cluster_id": 70007, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2059, "referenced_count": 2}, {"ref_CSET_id": 792, "referenced_count": 1}], "tasks": [{"referent": "recommendation", "task_count": 3}, {"referent": "computational_manga", "task_count": 2}, {"referent": "distributed_voting", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "clustering", "task_count": 2}, {"referent": "product_recommendation", "task_count": 2}, {"referent": "image_processing", "task_count": 1}, {"referent": "visual_crowd_analysis", "task_count": 1}, {"referent": "customer_segmentation", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}], "methods": [{"referent": "clustering", "method_count": 3}, {"referent": "v_trace", "method_count": 1}, {"referent": "mas", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [10, 10, 11, 1, 6, 2, 3, 5, 1, 2, 0], "total": 51, "isTopResearch": false, "rank": 615, "sp500_rank": 329}, "ai_publications": {"counts": [5, 2, 1, 0, 0, 0, 0, 2, 0, 0, 0], "total": 10, "isTopResearch": false, "rank": 417, "sp500_rank": 218}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [6, 10, 21, 16, 26, 22, 22, 22, 13, 16, 0], "total": 174, "isTopResearch": false, "rank": 406, "sp500_rank": 184}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [1.2, 5.0, 21.0, 0, 0, 0, 0, 11.0, 0, 0, 0], "total": 17.4, "isTopResearch": false, "rank": 358, "sp500_rank": 116}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 967, "rank": 360, "sp500_rank": 186}, "ai_jobs": {"counts": null, "total": 44, "rank": 506, "sp500_rank": 236}}, "sector": "Industrials", "business_sector": "Transportation"}, {"cset_id": 698, "country": "United States", "website": "https://www.spacex.com/", "crunchbase": {"text": "2372e88e-240a-a19c-c549-bd262c670ee1", "url": "https://www.crunchbase.com/organization/space-exploration-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/spacex"], "stage": "Mature", "name": "SpaceX", "patent_name": "spacex", "continent": "North America", "local_logo": "spacex.png", "aliases": "Space Exploration Technologies Corp; Space Exploration Technologies Corporation", "permid_links": [{"text": 4297144968, "url": "https://permid.org/1-4297144968"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "SpaceX is an aviation and aerospace company that focuses on reducing costs associated with space travel.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Navigation system", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 49190, "cluster_count": 2}, {"cluster_id": 20578, "cluster_count": 2}, {"cluster_id": 33699, "cluster_count": 1}, {"cluster_id": 36429, "cluster_count": 1}, {"cluster_id": 2865, "cluster_count": 1}, {"cluster_id": 43099, "cluster_count": 1}, {"cluster_id": 7483, "cluster_count": 1}, {"cluster_id": 45875, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 800, "referenced_count": 1}, {"ref_CSET_id": 1835, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 698, "referenced_count": 1}], "tasks": [{"referent": "unmanned_aerial_vehicles", "task_count": 3}, {"referent": "autonomous_navigation", "task_count": 3}, {"referent": "image_manipulation", "task_count": 2}, {"referent": "motion_planning", "task_count": 2}, {"referent": "path_planning", "task_count": 2}, {"referent": "adl", "task_count": 1}, {"referent": "continuous_object_recognition", "task_count": 1}, {"referent": "probabilistic_deep_learning", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "obstacle_avoidance", "task_count": 1}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}, {"referent": "1cycle", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [14, 5, 5, 10, 11, 20, 16, 13, 19, 17, 0], "total": 130, "isTopResearch": false, "rank": 475}, "ai_publications": {"counts": [2, 0, 1, 2, 0, 0, 1, 1, 2, 1, 0], "total": 10, "isTopResearch": false, "rank": 417}, "ai_publications_growth": {"counts": [], "total": 16.666666666666668, "isTopResearch": false, "rank": 124}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [7, 19, 29, 43, 44, 66, 102, 94, 97, 74, 3], "total": 578, "isTopResearch": false, "rank": 250}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [2, 0, 1, 2, 0, 0, 0, 1, 2, 1, 0], "total": 9, "isTopResearch": true, "rank": 124}, "citations_per_article": {"counts": [3.5, 0, 29.0, 21.5, 0, 0, 102.0, 94.0, 48.5, 74.0, 0], "total": 57.8, "isTopResearch": false, "rank": 78}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 965, "rank": 361}, "ai_jobs": {"counts": null, "total": 41, "rank": 520}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Space Exploration Technologies Corp. (SpaceX) is an American aerospace manufacturer and space transportation services company headquartered in Hawthorne, California. It was founded in 2002 by Elon Musk with the goal of reducing space transportation costs to enable the colonization of Mars. SpaceX manufactures the Falcon 9 and Falcon Heavy launch vehicles, several rocket engines, Dragon cargo and crew spacecraft and Starlink satellites.", "wikipedia_link": "https://en.wikipedia.org/wiki/SpaceX", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2505, "country": "Switzerland", "website": "https://www.te.com/usa-en/home.html", "crunchbase": {"text": "4eced732-a85c-ed70-f04b-a6ef2991bb6c", "url": "https://www.crunchbase.com/organization/tyco-electronics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/te-connectivity"], "stage": "Mature", "name": "TE Connectivity Ltd.", "patent_name": "te connectivity ltd.", "continent": "Europe", "local_logo": "te_connectivity_ltd.png", "aliases": "TE Connectivity; TE Connectivity Ltd; Te Connectivity (Te); Tyco Electronics; Tyco Electronics Ltd", "permid_links": [{"text": 4295901889, "url": "https://permid.org/1-4295901889"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TEL", "url": "https://www.google.com/finance/quote/nyse:tel"}], "market_full": [{"text": "ASE:TEL", "url": "https://www.google.com/finance/quote/ase:tel"}, {"text": "NYSE:TEL", "url": "https://www.google.com/finance/quote/nyse:tel"}, {"text": "FRA:9TC", "url": "https://www.google.com/finance/quote/9tc:fra"}, {"text": "BRN:9TC", "url": "https://www.google.com/finance/quote/9tc:brn"}, {"text": "DEU:TYF", "url": "https://www.google.com/finance/quote/deu:tyf"}, {"text": "STU:9TC", "url": "https://www.google.com/finance/quote/9tc:stu"}, {"text": "MEX:TELN", "url": "https://www.google.com/finance/quote/mex:teln"}, {"text": "BER:9TC", "url": "https://www.google.com/finance/quote/9tc:ber"}, {"text": "SAO:T1EL34", "url": "https://www.google.com/finance/quote/sao:t1el34"}, {"text": "NYQ:TEL", "url": "https://www.google.com/finance/quote/nyq:tel"}], "crunchbase_description": "TE Connectivity is a company provides engineered electronic components, network solutions, specialty products, undersea telecommunication.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 81118, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [22, 41, 33, 40, 40, 26, 27, 17, 9, 20, 0], "total": 275, "isTopResearch": false, "rank": 366, "fortune500_rank": 139}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 1, 4, 0, 0, 0, 0, 0, 1, 1, 0], "total": 7, "isTopResearch": false, "rank": 794, "fortune500_rank": 217}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 1.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 7.0, "isTopResearch": false, "rank": 634, "fortune500_rank": 181}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 1, 1, 1, 1, 8, 4, 0, 0], "total": 17, "table": null, "rank": 345, "fortune500_rank": 114}, "ai_patents_growth": {"counts": [], "total": 233.33333333333334, "table": null, "rank": 34, "fortune500_rank": 4}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 10, 10, 10, 10, 80, 40, 0, 0], "total": 170, "table": null, "rank": 345, "fortune500_rank": 114}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": "industry", "rank": 105, "fortune500_rank": 36}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 1, 0, 4, 1, 0, 0], "total": 7, "table": "industry", "rank": 86, "fortune500_rank": 26}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0], "total": 4, "table": "industry", "rank": 363, "fortune500_rank": 124}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0], "total": 4, "table": "industry", "rank": 249, "fortune500_rank": 95}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 119, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 1, 1, 0, 2, 1, 0, 0], "total": 5, "table": "application", "rank": 182, "fortune500_rank": 64}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 1, 0, 4, 3, 0, 0], "total": 9, "table": "application", "rank": 259, "fortune500_rank": 79}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0], "total": 4, "table": "application", "rank": 189, "fortune500_rank": 62}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 955, "rank": 362, "fortune500_rank": 199}, "ai_jobs": {"counts": null, "total": 75, "rank": 394, "fortune500_rank": 209}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "TE Connectivity is an American Swiss-domiciled technology company that designs and manufactures connectivity and sensor products for harsh environments in a variety of industries, such as automotive, industrial equipment, data communication systems, aerospace, defense, medical, oil and gas, consumer electronics and energy.", "wikipedia_link": "https://en.wikipedia.org/wiki/TE_Connectivity", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 143, "country": "China", "website": "http://www.kuaishou.com/", "crunchbase": {"text": "2bfede62-732b-a7f8-b1d7-5f8c65f0a3b8", "url": "https://www.crunchbase.com/organization/kuaishou"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kuaishou"], "stage": "Mature", "name": "Kuaishou", "patent_name": "kuaishou", "continent": "Asia", "local_logo": "kuaishou.png", "aliases": "Beijing Kuaishou Technology Ltd; Kuaishou Technology; Kwai Inc; \u5317\u4eac\u5feb\u624b\u79d1\u6280\u6709\u9650\u516c\u53f8; \u5feb\u624b", "permid_links": [{"text": 5052789513, "url": "https://permid.org/1-5052789513"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Kuaishou is an online video platform that allows its users to broadcast daily activities, habits, and more online.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 16}, {"field_name": "Reinforcement learning", "field_count": 9}, {"field_name": "Recommender system", "field_count": 8}, {"field_name": "Deep learning", "field_count": 7}, {"field_name": "Pose", "field_count": 6}, {"field_name": "Artificial neural network", "field_count": 6}, {"field_name": "Convolutional neural network", "field_count": 6}, {"field_name": "Segmentation", "field_count": 5}, {"field_name": "Feature learning", "field_count": 4}, {"field_name": "Quantization (signal processing)", "field_count": 3}], "clusters": [{"cluster_id": 1989, "cluster_count": 9}, {"cluster_id": 6021, "cluster_count": 8}, {"cluster_id": 1149, "cluster_count": 6}, {"cluster_id": 148, "cluster_count": 6}, {"cluster_id": 5070, "cluster_count": 6}, {"cluster_id": 1338, "cluster_count": 5}, {"cluster_id": 32264, "cluster_count": 4}, {"cluster_id": 2505, "cluster_count": 4}, {"cluster_id": 1621, "cluster_count": 4}, {"cluster_id": 1055, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 635}, {"ref_CSET_id": 163, "referenced_count": 574}, {"ref_CSET_id": 87, "referenced_count": 262}, {"ref_CSET_id": 245, "referenced_count": 187}, {"ref_CSET_id": 6, "referenced_count": 178}, {"ref_CSET_id": 21, "referenced_count": 137}, {"ref_CSET_id": 184, "referenced_count": 131}, {"ref_CSET_id": 223, "referenced_count": 110}, {"ref_CSET_id": 112, "referenced_count": 95}, {"ref_CSET_id": 143, "referenced_count": 74}], "tasks": [{"referent": "recommendation", "task_count": 15}, {"referent": "classification", "task_count": 15}, {"referent": "classification_tasks", "task_count": 11}, {"referent": "recommendation_systems", "task_count": 8}, {"referent": "image_analysis", "task_count": 7}, {"referent": "multi_task_learning", "task_count": 7}, {"referent": "image_restoration", "task_count": 6}, {"referent": "computer_vision", "task_count": 5}, {"referent": "image_registration", "task_count": 5}, {"referent": "6d_pose_estimation", "task_count": 5}], "methods": [{"referent": "3d_representations", "method_count": 26}, {"referent": "recurrent_neural_networks", "method_count": 22}, {"referent": "q_learning", "method_count": 15}, {"referent": "convolutional_neural_networks", "method_count": 12}, {"referent": "vqa_models", "method_count": 12}, {"referent": "reinforcement_learning", "method_count": 11}, {"referent": "symbolic_deep_learning", "method_count": 10}, {"referent": "deep_belief_network", "method_count": 8}, {"referent": "1d_cnn", "method_count": 8}, {"referent": "self_supervised_learning", "method_count": 7}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 2, 6, 26, 58, 99, 128, 3], "total": 322, "isTopResearch": false, "rank": 347}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 5, 21, 52, 83, 62, 0], "total": 224, "isTopResearch": false, "rank": 76}, "ai_publications_growth": {"counts": [], "total": 60.64440913838504, "isTopResearch": false, "rank": 54}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 7, 26, 30, 30, 0], "total": 94, "isTopResearch": false, "rank": 28}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 14, 77, 402, 1301, 1620, 49], "total": 3463, "isTopResearch": false, "rank": 92}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 3, 10, 32, 52, 30, 0], "total": 127, "isTopResearch": true, "rank": 47}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 2, 5, 0], "total": 9, "isTopResearch": true, "rank": 99}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0], "total": 4, "isTopResearch": true, "rank": 187}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 2.8, 3.6666666666666665, 7.730769230769231, 15.674698795180722, 26.129032258064516, 0], "total": 15.459821428571429, "isTopResearch": false, "rank": 395}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 8, 0, 0], "total": 8, "table": null, "rank": 443}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 80, 0, 0], "total": 80, "table": null, "rank": 443}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], "total": 5, "table": "application", "rank": 117}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 954, "rank": 363}, "ai_jobs": {"counts": null, "total": 361, "rank": 154}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Kuaishou (Chinese: \u5feb\u624b; lit. 'quick hand') is a Chinese video-sharing mobile app developed by Beijing Kuaishou Technology Co., Ltd, with a particularly strong user base among users outside of China's Tier 1 cities. Outside Mainland China, it has also gained considerable popularity in other markets, topping the Google Play and Apple App Store's \"Most Downloaded\" lists in eight countries. In India, this app is known as Snack Video. It is often referred to as \"Kwai\" in overseas markets. Its main competitor is Douyin, which is known as TikTok outside of China.", "wikipedia_link": "https://en.wikipedia.org/wiki/Kuaishou", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1687, "country": "United States", "website": "https://www.robinhood.com/", "crunchbase": {"text": "416156d2-f0de-7c42-8303-6eaeab697c26", "url": "https://www.crunchbase.com/organization/robinhood"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/robinhood"], "stage": "Mature", "name": "Robinhood", "patent_name": "robinhood", "continent": "North America", "local_logo": "robinhood.png", "aliases": "Robinhood Market, Robinhood Market, Inc", "permid_links": [{"text": 5057828127, "url": "https://permid.org/1-5057828127"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Robinhood is a stock brokerage that allows customers to buy and sell stocks, options, ETFs, and cryptocurrencies with zero commission.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 950, "rank": 364}, "ai_jobs": {"counts": null, "total": 136, "rank": 288}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Robinhood Markets, Inc. is an American financial services company headquartered in Menlo Park, California, known for offering commission-free trades of stocks and exchange-traded funds via a mobile app introduced in March 2015. Robinhood is a FINRA-regulated broker-dealer, registered with the U.S. Securities and Exchange Commission, and is a member of the Securities Investor Protection Corporation. The company's revenue comes from three main sources: interest earned on customers' cash balances, selling order information to high-frequency traders (a practice for which the SEC opened an investigation into the company in September 2020) and margin lending. As of 2020, Robinhood had 13 million users.", "wikipedia_link": "https://en.wikipedia.org/wiki/Robinhood_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2488, "country": "United States", "website": "https://www.sherwin-williams.com/", "crunchbase": {"text": "0cfa53f1-fed5-7c3d-a011-c1e225f245ea", "url": "https://www.crunchbase.com/organization/sherwin-williams"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sherwin-williams"], "stage": "Mature", "name": "Sherwin-Williams", "patent_name": "sherwin-williams", "continent": "North America", "local_logo": "sherwin-williams.png", "aliases": "Sherwin-Williams Co; Sherwin-Williams Company; The Sherwin-Williams Company", "permid_links": [{"text": 4295904914, "url": "https://permid.org/1-4295904914"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SHW", "url": "https://www.google.com/finance/quote/nyse:shw"}], "market_full": [{"text": "NYSE:SHW", "url": "https://www.google.com/finance/quote/nyse:shw"}, {"text": "STU:SJ3", "url": "https://www.google.com/finance/quote/sj3:stu"}, {"text": "MEX:SHW*", "url": "https://www.google.com/finance/quote/mex:shw*"}, {"text": "HAN:SJ3", "url": "https://www.google.com/finance/quote/han:sj3"}, {"text": "FRA:SJ3", "url": "https://www.google.com/finance/quote/fra:sj3"}, {"text": "MCX:SHW-RM", "url": "https://www.google.com/finance/quote/mcx:shw-rm"}, {"text": "BER:SJ3", "url": "https://www.google.com/finance/quote/ber:sj3"}, {"text": "DUS:SJ3", "url": "https://www.google.com/finance/quote/dus:sj3"}, {"text": "GER:SJ3X", "url": "https://www.google.com/finance/quote/ger:sj3x"}, {"text": "LSE:0L5V", "url": "https://www.google.com/finance/quote/0l5v:lse"}, {"text": "VIE:SHWW", "url": "https://www.google.com/finance/quote/shww:vie"}, {"text": "NYQ:SHW", "url": "https://www.google.com/finance/quote/nyq:shw"}, {"text": "MUN:SJ3", "url": "https://www.google.com/finance/quote/mun:sj3"}, {"text": "BRN:SJ3", "url": "https://www.google.com/finance/quote/brn:sj3"}, {"text": "DEU:SHW", "url": "https://www.google.com/finance/quote/deu:shw"}, {"text": "ASE:SHW", "url": "https://www.google.com/finance/quote/ase:shw"}], "crunchbase_description": "The Sherwin-Williams Company engages in the development, manufacture, distribution, and sale of paints, coatings, and related products.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Functional decomposition", "field_count": 1}], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 3, 2, 3, 5, 1, 2, 2, 3, 3, 0], "total": 27, "isTopResearch": false, "rank": 736, "fortune500_rank": 261}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 901, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 950, "rank": 364, "fortune500_rank": 200}, "ai_jobs": {"counts": null, "total": 53, "rank": 471, "fortune500_rank": 250}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "Sherwin-Williams Company is a Cleveland, Ohio based company in the paint and coating manufacturing industry. The company primarily engages in the manufacture, distribution, and sale of paints, coatings, floorcoverings, and related products to professional, industrial, commercial, and retail customers primarily in North and South America and Europe. At the end of 2019, Sherwin-Willams had operations in over 120 countries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Sherwin-Williams", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1950, "country": "France", "website": "https://www.saint-gobain.com/", "crunchbase": {"text": " 1913c3fd-d67d-0b9b-21b7-aa2b2b278439", "url": " https://www.crunchbase.com/organization/saint-gobain"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/saint-gobain"], "stage": "Mature", "name": "Saint-Gobain", "patent_name": "Saint-Gobain", "continent": "Europe", "local_logo": null, "aliases": "Compagnie De Saint-Gobain S.A; Saint-Gobain", "permid_links": [{"text": 4295867362, "url": "https://permid.org/1-4295867362"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "FRA:GOBU", "url": "https://www.google.com/finance/quote/FRA:GOBU"}, {"text": "FRA:GOB", "url": "https://www.google.com/finance/quote/FRA:GOB"}, {"text": "DUS:GOB", "url": "https://www.google.com/finance/quote/DUS:GOB"}, {"text": "GER:GOBX", "url": "https://www.google.com/finance/quote/GER:GOBX"}, {"text": "PAR:SGONV", "url": "https://www.google.com/finance/quote/PAR:SGONV"}, {"text": "HAM:GOB", "url": "https://www.google.com/finance/quote/GOB:HAM"}, {"text": "DEU:GOBU", "url": "https://www.google.com/finance/quote/DEU:GOBU"}, {"text": "PAR:SGO", "url": "https://www.google.com/finance/quote/PAR:SGO"}, {"text": "LSE:COD", "url": "https://www.google.com/finance/quote/COD:LSE"}, {"text": "MEX:SGON", "url": "https://www.google.com/finance/quote/MEX:SGON"}, {"text": "MIL:SGO", "url": "https://www.google.com/finance/quote/MIL:SGO"}, {"text": "PKL:CODGF", "url": "https://www.google.com/finance/quote/CODGF:PKL"}, {"text": "EBT:SGOP", "url": "https://www.google.com/finance/quote/EBT:SGOp"}, {"text": "HAN:GOB", "url": "https://www.google.com/finance/quote/GOB:HAN"}, {"text": "STU:GOB", "url": "https://www.google.com/finance/quote/GOB:STU"}, {"text": "PNK:CODYY", "url": "https://www.google.com/finance/quote/CODYY:PNK"}, {"text": "DEU:SGOB", "url": "https://www.google.com/finance/quote/DEU:SGOB"}, {"text": "BRN:GOB", "url": "https://www.google.com/finance/quote/BRN:GOB"}, {"text": "PAR:4760", "url": "https://www.google.com/finance/quote/4760:PAR"}, {"text": "PAR:SGP", "url": "https://www.google.com/finance/quote/PAR:SGP"}, {"text": "VIE:SGO", "url": "https://www.google.com/finance/quote/SGO:VIE"}, {"text": "STU:GOBU", "url": "https://www.google.com/finance/quote/GOBU:STU"}, {"text": "MUN:GOB", "url": "https://www.google.com/finance/quote/GOB:MUN"}, {"text": "SWX:GOB", "url": "https://www.google.com/finance/quote/GOB:SWX"}, {"text": "BER:GOB", "url": "https://www.google.com/finance/quote/BER:GOB"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 53273, "cluster_count": 1}, {"cluster_id": 61746, "cluster_count": 1}, {"cluster_id": 13048, "cluster_count": 1}, {"cluster_id": 24736, "cluster_count": 1}, {"cluster_id": 73082, "cluster_count": 1}, {"cluster_id": 50028, "cluster_count": 1}, {"cluster_id": 15259, "cluster_count": 1}, {"cluster_id": 3797, "cluster_count": 1}, {"cluster_id": 2088, "cluster_count": 1}, {"cluster_id": 36998, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 1950, "referenced_count": 1}, {"ref_CSET_id": 1791, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 1934, "referenced_count": 1}, {"ref_CSET_id": 783, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "point_processes", "task_count": 2}, {"referent": "reasoning", "task_count": 2}, {"referent": "parameter_estimation", "task_count": 2}, {"referent": "speech_production", "task_count": 2}, {"referent": "esl", "task_count": 1}, {"referent": "disease_detection", "task_count": 1}, {"referent": "translation", "task_count": 1}, {"referent": "system_identification", "task_count": 1}], "methods": [{"referent": "adaptive_nms", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "reduction_a", "method_count": 1}, {"referent": "heatmap", "method_count": 1}, {"referent": "edgeboxes", "method_count": 1}, {"referent": "gin", "method_count": 1}, {"referent": "l1_regularization", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [74, 69, 56, 78, 83, 76, 74, 73, 85, 43, 8], "total": 719, "isTopResearch": false, "rank": 232, "sp500_rank": 160}, "ai_publications": {"counts": [1, 2, 0, 1, 1, 2, 3, 3, 1, 0, 0], "total": 14, "isTopResearch": false, "rank": 359, "sp500_rank": 192}, "ai_publications_growth": {"counts": [], "total": -55.555555555555564, "isTopResearch": false, "rank": 1505, "sp500_rank": 429}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [4, 26, 50, 106, 187, 263, 411, 592, 778, 776, 29], "total": 3222, "isTopResearch": false, "rank": 95, "sp500_rank": 62}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114}, "citations_per_article": {"counts": [4.0, 13.0, 0, 106.0, 187.0, 131.5, 137.0, 197.33333333333334, 778.0, 0, 0], "total": 230.14285714285714, "isTopResearch": false, "rank": 10, "sp500_rank": 2}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0], "total": 7, "table": null, "rank": 464, "sp500_rank": 209}, "ai_patents_growth": {"counts": [], "total": -25.0, "table": null, "rank": 1469, "sp500_rank": 434}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 40, 30, 0, 0, 0], "total": 70, "table": null, "rank": 464, "sp500_rank": 209}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "sp500_rank": 67}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "sp500_rank": 183}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 949, "rank": 366, "sp500_rank": 187}, "ai_jobs": {"counts": null, "total": 81, "rank": 380, "sp500_rank": 199}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products"}, {"cset_id": 1395, "country": "United States", "website": "http://www.bms.com", "crunchbase": {"text": "258972b9-2834-f6a7-7da6-08f51a8e5fbf", "url": "https://www.crunchbase.com/organization/bristol-myers-squibb"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bristol-myers-squibb"], "stage": "Mature", "name": "Bristol-Myers Squibb", "patent_name": "bristol-myers squibb", "continent": "North America", "local_logo": "bristol-myers_squibb.png", "aliases": "Bristol Myers Squibb, Bms", "permid_links": [{"text": 4295903619, "url": "https://permid.org/1-4295903619"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BMY", "url": "https://www.google.com/finance/quote/bmy:nyse"}, {"text": "NYSE:CELG RT", "url": "https://www.google.com/finance/quote/celg rt:nyse"}], "market_full": [{"text": "GER:BRMX", "url": "https://www.google.com/finance/quote/brmx:ger"}, {"text": "DEU:BMY", "url": "https://www.google.com/finance/quote/bmy:deu"}, {"text": "MUN:BRM", "url": "https://www.google.com/finance/quote/brm:mun"}, {"text": "NYQ:CELG RT", "url": "https://www.google.com/finance/quote/celg rt:nyq"}, {"text": "NYSE:BMY", "url": "https://www.google.com/finance/quote/bmy:nyse"}, {"text": "SWX:BMY", "url": "https://www.google.com/finance/quote/bmy:swx"}, {"text": "DUS:BRM", "url": "https://www.google.com/finance/quote/brm:dus"}, {"text": "PKC:BMYMP", "url": "https://www.google.com/finance/quote/bmymp:pkc"}, {"text": "NYQ:BMY", "url": "https://www.google.com/finance/quote/bmy:nyq"}, {"text": "MCX:BMY-RM", "url": "https://www.google.com/finance/quote/bmy-rm:mcx"}, {"text": "MEX:BMY*", "url": "https://www.google.com/finance/quote/bmy*:mex"}, {"text": "BUE:BMY3", "url": "https://www.google.com/finance/quote/bmy3:bue"}, {"text": "HAM:BRM", "url": "https://www.google.com/finance/quote/brm:ham"}, {"text": "NYSE:CELG RT", "url": "https://www.google.com/finance/quote/celg rt:nyse"}, {"text": "HAN:BRM", "url": "https://www.google.com/finance/quote/brm:han"}, {"text": "FRA:BRM", "url": "https://www.google.com/finance/quote/brm:fra"}, {"text": "ASE:CELG RT", "url": "https://www.google.com/finance/quote/ase:celg rt"}, {"text": "STU:BRM", "url": "https://www.google.com/finance/quote/brm:stu"}, {"text": "BRN:BRM", "url": "https://www.google.com/finance/quote/brm:brn"}, {"text": "LSE:0R1F", "url": "https://www.google.com/finance/quote/0r1f:lse"}, {"text": "ASE:BMY", "url": "https://www.google.com/finance/quote/ase:bmy"}, {"text": "BER:BRM", "url": "https://www.google.com/finance/quote/ber:brm"}, {"text": "SAO:BMYB34", "url": "https://www.google.com/finance/quote/bmyb34:sao"}, {"text": "VIE:BMYS", "url": "https://www.google.com/finance/quote/bmys:vie"}], "crunchbase_description": "Bristol Myers Squibb engages in the discovery, development, licensing, manufacturing, marketing, distribution, and sale of pharmaceuticals.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Knowledge extraction", "field_count": 2}, {"field_name": "Hidden Markov model", "field_count": 1}, {"field_name": "Bayesian optimization", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Unsupervised learning", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Lasso (statistics)", "field_count": 1}], "clusters": [{"cluster_id": 23169, "cluster_count": 2}, {"cluster_id": 13424, "cluster_count": 2}, {"cluster_id": 42969, "cluster_count": 2}, {"cluster_id": 29223, "cluster_count": 2}, {"cluster_id": 3414, "cluster_count": 2}, {"cluster_id": 16107, "cluster_count": 1}, {"cluster_id": 23311, "cluster_count": 1}, {"cluster_id": 10449, "cluster_count": 1}, {"cluster_id": 527, "cluster_count": 1}, {"cluster_id": 72221, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 19}, {"ref_CSET_id": 87, "referenced_count": 7}, {"ref_CSET_id": 112, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 1570, "referenced_count": 5}, {"ref_CSET_id": 341, "referenced_count": 5}, {"ref_CSET_id": 1633, "referenced_count": 5}, {"ref_CSET_id": 1395, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 671, "referenced_count": 4}], "tasks": [{"referent": "decision_making", "task_count": 7}, {"referent": "classification", "task_count": 7}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "classification_tasks", "task_count": 3}, {"referent": "conversational_response_selection", "task_count": 3}, {"referent": "developmental_learning", "task_count": 3}, {"referent": "drug_discovery", "task_count": 3}, {"referent": "image_analysis", "task_count": 3}, {"referent": "skills_assessment", "task_count": 2}, {"referent": "point_processes", "task_count": 2}], "methods": [{"referent": "mad_learning", "method_count": 10}, {"referent": "symbolic_deep_learning", "method_count": 5}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "vqa_models", "method_count": 3}, {"referent": "3d_representations", "method_count": 3}, {"referent": "deepwalk", "method_count": 3}, {"referent": "image_to_image_translation", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "gru", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2349, 2447, 2900, 2817, 2959, 2628, 2951, 2480, 2434, 2166, 8], "total": 26139, "isTopResearch": false, "rank": 13, "sp500_rank": 11, "fortune500_rank": 5}, "ai_publications": {"counts": [3, 3, 2, 2, 5, 5, 7, 7, 16, 1, 0], "total": 51, "isTopResearch": false, "rank": 181, "sp500_rank": 112, "fortune500_rank": 56}, "ai_publications_growth": {"counts": [], "total": 11.607142857142861, "isTopResearch": false, "rank": 149, "sp500_rank": 76, "fortune500_rank": 40}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [40, 55, 84, 110, 108, 99, 171, 406, 622, 676, 21], "total": 2392, "isTopResearch": false, "rank": 120, "sp500_rank": 76, "fortune500_rank": 38}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 2, 0, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 161, "sp500_rank": 94, "fortune500_rank": 50}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [13.333333333333334, 18.333333333333332, 42.0, 55.0, 21.6, 19.8, 24.428571428571427, 58.0, 38.875, 676.0, 0], "total": 46.90196078431372, "isTopResearch": false, "rank": 102, "sp500_rank": 19, "fortune500_rank": 26}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 1, 0, 3, 4, 0, 0, 0], "total": 10, "table": null, "rank": 413, "sp500_rank": 195, "fortune500_rank": 130}, "ai_patents_growth": {"counts": [], "total": -33.33333333333333, "table": null, "rank": 1488, "sp500_rank": 438, "fortune500_rank": 429}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 10, 0, 30, 40, 0, 0, 0], "total": 100, "table": null, "rank": 413, "sp500_rank": 195, "fortune500_rank": 130}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 2, 1, 0, 2, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 113, "sp500_rank": 73, "fortune500_rank": 47}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 1, 0, 0, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 363, "sp500_rank": 174, "fortune500_rank": 124}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "sp500_rank": 183, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 946, "rank": 367, "sp500_rank": 188, "fortune500_rank": 201}, "ai_jobs": {"counts": null, "total": 306, "rank": 178, "sp500_rank": 115, "fortune500_rank": 99}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Bristol Myers Squibb (BMS) is an American pharmaceutical company, headquartered in New York City.", "wikipedia_link": "https://en.wikipedia.org/wiki/Bristol_Myers_Squibb", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2381, "country": "United States", "website": "https://www.kelloggcompany.com/", "crunchbase": {"text": "68371f61-5e83-45c8-50e7-a9a0d5af3e49", "url": "https://www.crunchbase.com/organization/kellogg"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kellogg-company"], "stage": "Mature", "name": "Kellogg Co.", "patent_name": "kellogg co.", "continent": "North America", "local_logo": "kellogg_co.png", "aliases": "Kellogg Company; Kellogg's", "permid_links": [{"text": 4295903052, "url": "https://permid.org/1-4295903052"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:K", "url": "https://www.google.com/finance/quote/k:nyse"}], "market_full": [{"text": "HAM:KEL", "url": "https://www.google.com/finance/quote/ham:kel"}, {"text": "LSE:0R1R", "url": "https://www.google.com/finance/quote/0r1r:lse"}, {"text": "NYQ:K", "url": "https://www.google.com/finance/quote/k:nyq"}, {"text": "NYSE:K", "url": "https://www.google.com/finance/quote/k:nyse"}, {"text": "STU:KEL", "url": "https://www.google.com/finance/quote/kel:stu"}, {"text": "SAO:K1EL34", "url": "https://www.google.com/finance/quote/k1el34:sao"}, {"text": "GER:KELX", "url": "https://www.google.com/finance/quote/ger:kelx"}, {"text": "DEU:K", "url": "https://www.google.com/finance/quote/deu:k"}, {"text": "SWX:K", "url": "https://www.google.com/finance/quote/k:swx"}, {"text": "FRA:KEL", "url": "https://www.google.com/finance/quote/fra:kel"}, {"text": "MUN:KEL", "url": "https://www.google.com/finance/quote/kel:mun"}, {"text": "MOEX:K-RM", "url": "https://www.google.com/finance/quote/k-rm:moex"}, {"text": "MEX:K", "url": "https://www.google.com/finance/quote/k:mex"}, {"text": "BRN:KEL", "url": "https://www.google.com/finance/quote/brn:kel"}, {"text": "DUS:KEL", "url": "https://www.google.com/finance/quote/dus:kel"}, {"text": "VIE:KELL", "url": "https://www.google.com/finance/quote/kell:vie"}, {"text": "BER:KEL", "url": "https://www.google.com/finance/quote/ber:kel"}, {"text": "HAN:KEL", "url": "https://www.google.com/finance/quote/han:kel"}, {"text": "ASE:K", "url": "https://www.google.com/finance/quote/ase:k"}], "crunchbase_description": "Kellogg's is a cereal company, and a major producer of convenience foods.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 50004, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "data_visualization", "task_count": 1}, {"referent": "sentiment_detection", "task_count": 1}], "methods": [{"referent": "ulmfit", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 15, 10, 8, 8, 10, 5, 17, 4, 3, 0], "total": 89, "isTopResearch": false, "rank": 527, "fortune500_rank": 197}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 881, "fortune500_rank": 245}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "fortune500_rank": 217}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 940, "rank": 368, "fortune500_rank": 202}, "ai_jobs": {"counts": null, "total": 130, "rank": 297, "fortune500_rank": 161}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "The Kellogg Company, doing business as Kellogg's, is an American multinational food manufacturing company headquartered in Battle Creek, Michigan, United States. Kellogg's produces cereal and convenience foods, including crackers and toaster pastries and markets their products by several well known brands including Corn Flakes, Frosted Flakes, Pringles, Eggo, and Cheez-It. Kellogg's mission statement is \"Nourishing families so they can flourish and thrive.\"", "wikipedia_link": "https://en.wikipedia.org/wiki/Kellogg%27s", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2067, "country": "Taiwan", "website": "https://www.tsmc.com/", "crunchbase": {"text": " 0d9483a3-3c10-bb2e-8400-192392f616eb", "url": " https://www.crunchbase.com/organization/tsmc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tsmc"], "stage": "Mature", "name": "Taiwan Semiconductor Manufacturing", "patent_name": "Taiwan Semiconductor Manufacturing", "continent": "Asia", "local_logo": null, "aliases": "Taiwan Semiconductor Manufacturing; Taiwan Semiconductor Manufacturing Company Limited; Tsmc; \u53f0\u7063\u7a4d\u9ad4\u96fb\u8def\u88fd\u9020\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295891425, "url": "https://permid.org/1-4295891425"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TSM", "url": "https://www.google.com/finance/quote/NYSE:TSM"}], "market_full": [{"text": "FRA:TSFA", "url": "https://www.google.com/finance/quote/FRA:TSFA"}, {"text": "BUE:TSM3", "url": "https://www.google.com/finance/quote/BUE:TSM3"}, {"text": "LSE:0LCV", "url": "https://www.google.com/finance/quote/0LCV:LSE"}, {"text": "BER:TSFA", "url": "https://www.google.com/finance/quote/BER:TSFA"}, {"text": "ASE:TSM", "url": "https://www.google.com/finance/quote/ASE:TSM"}, {"text": "MEX:TSMN", "url": "https://www.google.com/finance/quote/MEX:TSMN"}, {"text": "DEU:TSFA", "url": "https://www.google.com/finance/quote/DEU:TSFA"}, {"text": "VIE:TSFA", "url": "https://www.google.com/finance/quote/TSFA:VIE"}, {"text": "MUN:TSFA", "url": "https://www.google.com/finance/quote/MUN:TSFA"}, {"text": "PKC:TSMWF", "url": "https://www.google.com/finance/quote/PKC:TSMWF"}, {"text": "TAI:2330", "url": "https://www.google.com/finance/quote/2330:TAI"}, {"text": "STU:TSFA", "url": "https://www.google.com/finance/quote/STU:TSFA"}, {"text": "NYSE:TSM", "url": "https://www.google.com/finance/quote/NYSE:TSM"}, {"text": "DUS:TSFA", "url": "https://www.google.com/finance/quote/DUS:TSFA"}, {"text": "MCX:TSM-RM", "url": "https://www.google.com/finance/quote/MCX:TSM-RM"}, {"text": "NYQ:TSM", "url": "https://www.google.com/finance/quote/NYQ:TSM"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 6}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Pixel", "field_count": 2}, {"field_name": "Inertial measurement unit", "field_count": 1}, {"field_name": "Sensor array", "field_count": 1}, {"field_name": "Feature extraction", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Statistical model", "field_count": 1}, {"field_name": "Correlation coefficient", "field_count": 1}, {"field_name": "False alarm", "field_count": 1}], "clusters": [{"cluster_id": 1621, "cluster_count": 6}, {"cluster_id": 5367, "cluster_count": 2}, {"cluster_id": 6871, "cluster_count": 2}, {"cluster_id": 19878, "cluster_count": 2}, {"cluster_id": 36706, "cluster_count": 2}, {"cluster_id": 2479, "cluster_count": 1}, {"cluster_id": 8576, "cluster_count": 1}, {"cluster_id": 17945, "cluster_count": 1}, {"cluster_id": 8773, "cluster_count": 1}, {"cluster_id": 2049, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 184, "referenced_count": 15}, {"ref_CSET_id": 101, "referenced_count": 12}, {"ref_CSET_id": 115, "referenced_count": 10}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 789, "referenced_count": 3}, {"ref_CSET_id": 2067, "referenced_count": 3}, {"ref_CSET_id": 671, "referenced_count": 2}, {"ref_CSET_id": 845, "referenced_count": 2}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "classification", "task_count": 5}, {"referent": "defect_detection", "task_count": 4}, {"referent": "inference_attack", "task_count": 3}, {"referent": "system_identification", "task_count": 3}, {"referent": "object_detection", "task_count": 3}, {"referent": "computational_manga", "task_count": 3}, {"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "image_processing", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}], "methods": [{"referent": "ggs_nns", "method_count": 8}, {"referent": "recurrent_neural_networks", "method_count": 7}, {"referent": "griffin_lim_algorithm", "method_count": 6}, {"referent": "q_learning", "method_count": 6}, {"referent": "mad_learning", "method_count": 5}, {"referent": "optimization", "method_count": 5}, {"referent": "cbam", "method_count": 5}, {"referent": "1d_cnn", "method_count": 4}, {"referent": "object_detection_models", "method_count": 4}, {"referent": "reinforcement_learning", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [214, 209, 172, 165, 155, 170, 186, 183, 207, 162, 4], "total": 1827, "isTopResearch": false, "rank": 132, "sp500_rank": 104}, "ai_publications": {"counts": [5, 3, 5, 0, 4, 5, 5, 6, 12, 7, 0], "total": 52, "isTopResearch": false, "rank": 178, "sp500_rank": 111}, "ai_publications_growth": {"counts": [], "total": 26.111111111111114, "isTopResearch": false, "rank": 99, "sp500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [11, 28, 40, 69, 68, 82, 131, 159, 207, 256, 5], "total": 1056, "isTopResearch": false, "rank": 185, "sp500_rank": 103}, "cv_pubs": {"counts": [1, 0, 2, 0, 0, 1, 1, 1, 2, 3, 0], "total": 11, "isTopResearch": true, "rank": 196, "sp500_rank": 113}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 1, 0, 0, 2, 0, 0, 1, 1, 0, 0], "total": 5, "isTopResearch": true, "rank": 171, "sp500_rank": 107}, "citations_per_article": {"counts": [2.2, 9.333333333333334, 8.0, 0, 17.0, 16.4, 26.2, 26.5, 17.25, 36.57142857142857, 0], "total": 20.307692307692307, "isTopResearch": false, "rank": 310, "sp500_rank": 91}}, "patents": {"ai_patents": {"counts": [0, 1, 1, 0, 11, 29, 17, 18, 29, 0, 0], "total": 106, "table": null, "rank": 156, "sp500_rank": 102}, "ai_patents_growth": {"counts": [], "total": 42.713135410904165, "table": null, "rank": 236, "sp500_rank": 107}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 10, 10, 0, 110, 290, 170, 180, 290, 0, 0], "total": 1060, "table": null, "rank": 156, "sp500_rank": 102}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 1, 1, 3, 2, 0, 0], "total": 8, "table": "industry", "rank": 59, "sp500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], "total": 3, "table": null, "rank": 159, "sp500_rank": 107}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 0, 2, 4, 0, 0, 2, 0, 0], "total": 9, "table": "industry", "rank": 76, "sp500_rank": 53}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 9, 18, 10, 11, 15, 0, 0], "total": 64, "table": "industry", "rank": 96, "sp500_rank": 69}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 172, "sp500_rank": 111}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 4, 3, 1, 0, 0], "total": 8, "table": "industry", "rank": 185, "sp500_rank": 105}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "total": 4, "table": null, "rank": 5, "sp500_rank": 4}, "Semiconductors": {"counts": [0, 1, 1, 0, 6, 12, 7, 7, 11, 0, 0], "total": 45, "table": "industry", "rank": 5, "sp500_rank": 3}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 160, "sp500_rank": 91}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 1, 0, 0, 4, 0, 0, 3, 0, 0], "total": 8, "table": "application", "rank": 150, "sp500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 5, 4, 4, 5, 0, 0], "total": 20, "table": "application", "rank": 186, "sp500_rank": 109}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 3, 5, 2, 1, 0, 0], "total": 12, "table": "application", "rank": 99, "sp500_rank": 73}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 8, 3, 2, 0, 0, 0], "total": 14, "table": "application", "rank": 100, "sp500_rank": 77}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 936, "rank": 369, "sp500_rank": 189}, "ai_jobs": {"counts": null, "total": 75, "rank": 394, "sp500_rank": 203}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 1654, "country": "United States", "website": "http://www.massmutual.com/", "crunchbase": {"text": "25cd5946-531f-7495-1ea8-d294098cc74b", "url": "https://www.crunchbase.com/organization/massmutual"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/massmutual-financial-group"], "stage": "Unknown", "name": "Massmutual Financial Group", "patent_name": "massmutual financial group", "continent": "North America", "local_logo": "massmutual_financial_group.png", "aliases": "Massachusetts Mutual Life Insurance Company", "permid_links": [{"text": 4298009381, "url": "https://permid.org/1-4298009381"}], "parent_info": "Empower Retirement (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "MassMutual is a mutual life insurance company that provides investment management and trust services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Genetic programming", "field_count": 2}], "clusters": [{"cluster_id": 8939, "cluster_count": 2}, {"cluster_id": 48956, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 184, "referenced_count": 1}], "tasks": [{"referent": "program_synthesis", "task_count": 2}, {"referent": "domain_generalization", "task_count": 1}, {"referent": "text_simplification", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}], "methods": [{"referent": "wgan_gp", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 3, 2, 0, 2, 0, 1, 0], "total": 9, "isTopResearch": false, "rank": 958}, "ai_publications": {"counts": [0, 0, 0, 0, 3, 0, 0, 0, 0, 1, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 1, 2, 10, 6, 16, 17, 8, 0], "total": 60, "isTopResearch": false, "rank": 565}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.6666666666666666, 0, 0, 0, 0, 8.0, 0], "total": 15.0, "isTopResearch": false, "rank": 404}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 933, "rank": 370}, "ai_jobs": {"counts": null, "total": 190, "rank": 235}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "The Massachusetts Mutual Life Insurance Company, also known as MassMutual, is a Springfield, Massachusetts-based life insurance company.", "wikipedia_link": "https://en.wikipedia.org/wiki/MassMutual", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2493, "country": "United States", "website": "https://www.southerncompany.com/", "crunchbase": {"text": "1f42fa68-d3bf-b9d6-e791-206e8cd1cda0", "url": "https://www.crunchbase.com/organization/southern-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/southern-company"], "stage": "Mature", "name": "Southern Company", "patent_name": "southern company", "continent": "North America", "local_logo": "southern_company.png", "aliases": "Southern Co; Southern Company Services, Inc", "permid_links": [{"text": 4295903239, "url": "https://permid.org/1-4295903239"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SOJD", "url": "https://www.google.com/finance/quote/nyse:sojd"}, {"text": "NYSE:SO", "url": "https://www.google.com/finance/quote/nyse:so"}, {"text": "NYSE:SOLN", "url": "https://www.google.com/finance/quote/nyse:soln"}, {"text": "NYSE:SOJE", "url": "https://www.google.com/finance/quote/nyse:soje"}, {"text": "NYSE:SOJC", "url": "https://www.google.com/finance/quote/nyse:sojc"}], "market_full": [{"text": "VIE:SOUT", "url": "https://www.google.com/finance/quote/sout:vie"}, {"text": "DUS:SOT", "url": "https://www.google.com/finance/quote/dus:sot"}, {"text": "HAN:SOT", "url": "https://www.google.com/finance/quote/han:sot"}, {"text": "NYSE:SOJD", "url": "https://www.google.com/finance/quote/nyse:sojd"}, {"text": "ASE:SOJD", "url": "https://www.google.com/finance/quote/ase:sojd"}, {"text": "MEX:SO*", "url": "https://www.google.com/finance/quote/mex:so*"}, {"text": "NYQ:SOJE", "url": "https://www.google.com/finance/quote/nyq:soje"}, {"text": "MCX:SO-RM", "url": "https://www.google.com/finance/quote/mcx:so-rm"}, {"text": "NYSE:SO", "url": "https://www.google.com/finance/quote/nyse:so"}, {"text": "ASE:SOLN", "url": "https://www.google.com/finance/quote/ase:soln"}, {"text": "STU:SOT", "url": "https://www.google.com/finance/quote/sot:stu"}, {"text": "HAM:SOT", "url": "https://www.google.com/finance/quote/ham:sot"}, {"text": "NYQ:SOJD", "url": "https://www.google.com/finance/quote/nyq:sojd"}, {"text": "BER:SOT", "url": "https://www.google.com/finance/quote/ber:sot"}, {"text": "NYQ:SOLN", "url": "https://www.google.com/finance/quote/nyq:soln"}, {"text": "LSE:0L8A", "url": "https://www.google.com/finance/quote/0l8a:lse"}, {"text": "ASE:SOJC", "url": "https://www.google.com/finance/quote/ase:sojc"}, {"text": "ASE:SO", "url": "https://www.google.com/finance/quote/ase:so"}, {"text": "NYSE:SOLN", "url": "https://www.google.com/finance/quote/nyse:soln"}, {"text": "DEU:SO", "url": "https://www.google.com/finance/quote/deu:so"}, {"text": "NYSE:SOJE", "url": "https://www.google.com/finance/quote/nyse:soje"}, {"text": "GER:SOTX", "url": "https://www.google.com/finance/quote/ger:sotx"}, {"text": "SAO:W1MB34", "url": "https://www.google.com/finance/quote/sao:w1mb34"}, {"text": "MUN:SOT", "url": "https://www.google.com/finance/quote/mun:sot"}, {"text": "NYQ:SO", "url": "https://www.google.com/finance/quote/nyq:so"}, {"text": "FRA:SOT", "url": "https://www.google.com/finance/quote/fra:sot"}, {"text": "NYSE:SOJC", "url": "https://www.google.com/finance/quote/nyse:sojc"}, {"text": "NYQ:SOJC", "url": "https://www.google.com/finance/quote/nyq:sojc"}, {"text": "BRN:SOT", "url": "https://www.google.com/finance/quote/brn:sot"}, {"text": "ASE:SOJE", "url": "https://www.google.com/finance/quote/ase:soje"}], "crunchbase_description": "Southern Company Services, Inc., headquartered in Birmingham, Alabama, is the shared services division of Southern Company.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Robot", "field_count": 1}, {"field_name": "Navigation system", "field_count": 1}], "clusters": [{"cluster_id": 24291, "cluster_count": 1}, {"cluster_id": 2149, "cluster_count": 1}, {"cluster_id": 32618, "cluster_count": 1}, {"cluster_id": 102938, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1791, "referenced_count": 1}], "tasks": [{"referent": "unmanned_aerial_vehicles", "task_count": 2}, {"referent": "steering_control", "task_count": 1}, {"referent": "indoor_localization", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "indoor_navigation", "task_count": 1}, {"referent": "dti", "task_count": 1}, {"referent": "image_fusion", "task_count": 1}], "methods": [{"referent": "root", "method_count": 1}, {"referent": "1cycle", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [41, 45, 23, 27, 16, 19, 22, 15, 24, 14, 0], "total": 246, "isTopResearch": false, "rank": 382, "fortune500_rank": 146}, "ai_publications": {"counts": [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 2, 0, 2, 3, 14, 26, 36, 39, 29, 2], "total": 154, "isTopResearch": false, "rank": 435, "fortune500_rank": 125}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "fortune500_rank": 67}, "citations_per_article": {"counts": [0, 0, 0, 2.0, 3.0, 14.0, 0, 0, 0, 0, 0], "total": 51.333333333333336, "isTopResearch": false, "rank": 92, "fortune500_rank": 22}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 928, "rank": 371, "fortune500_rank": 203}, "ai_jobs": {"counts": null, "total": 54, "rank": 467, "fortune500_rank": 247}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Southern Company is an American gas and electric utility holding company based in the southern United States. It is headquartered in Atlanta, Georgia, with executive offices also located in Birmingham, Alabama. The company is currently the second largest utility company in the U.S. in terms of customer base.", "wikipedia_link": "https://en.wikipedia.org/wiki/Southern_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1126, "country": "Japan", "website": "http://www.nec.com", "crunchbase": {"text": "ffe99b24-01f1-7cd8-631d-415bb4d3550c", "url": "https://www.crunchbase.com/organization/nec"}, "child_crunchbase": [{"text": "34a0520c-3c85-a157-7ac2-9d21e4b2f216", "url": "https://www.crunchbase.com/organization/nec-laboratories-america"}], "linkedin": ["https://www.linkedin.com/company/nec", "https://www.linkedin.com/company/nec-laboratories-america"], "stage": "Mature", "name": "Nec", "patent_name": "nec", "continent": "Asia", "local_logo": "nec.png", "aliases": "Nec Global; Western Electric", "permid_links": [{"text": 4295877357, "url": "https://permid.org/1-4295877357"}, {"text": 5037119202, "url": "https://permid.org/1-5037119202"}], "parent_info": null, "agg_child_info": "NEC Laboratories America, Inc.", "unagg_child_info": null, "market_filt": [{"text": "TYO:6701", "url": "https://www.google.com/finance/quote/6701:tyo"}], "market_full": [{"text": "TYO:6701", "url": "https://www.google.com/finance/quote/6701:tyo"}], "crunchbase_description": "NEC Corporation integrates IT and network technologies that benefit businesses and people around the world.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 41}, {"field_name": "Convolutional neural network", "field_count": 33}, {"field_name": "Artificial neural network", "field_count": 27}, {"field_name": "Deep learning", "field_count": 24}, {"field_name": "Cluster analysis", "field_count": 22}, {"field_name": "Speaker recognition", "field_count": 18}, {"field_name": "Anomaly detection", "field_count": 16}, {"field_name": "Segmentation", "field_count": 15}, {"field_name": "Robot", "field_count": 15}, {"field_name": "Reinforcement learning", "field_count": 14}], "clusters": [{"cluster_id": 222, "cluster_count": 23}, {"cluster_id": 1989, "cluster_count": 22}, {"cluster_id": 4634, "cluster_count": 13}, {"cluster_id": 148, "cluster_count": 12}, {"cluster_id": 579, "cluster_count": 12}, {"cluster_id": 981, "cluster_count": 11}, {"cluster_id": 38981, "cluster_count": 11}, {"cluster_id": 2381, "cluster_count": 11}, {"cluster_id": 1683, "cluster_count": 10}, {"cluster_id": 2791, "cluster_count": 9}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1384}, {"ref_CSET_id": 163, "referenced_count": 840}, {"ref_CSET_id": 1126, "referenced_count": 748}, {"ref_CSET_id": 87, "referenced_count": 498}, {"ref_CSET_id": 115, "referenced_count": 221}, {"ref_CSET_id": 6, "referenced_count": 164}, {"ref_CSET_id": 37, "referenced_count": 104}, {"ref_CSET_id": 184, "referenced_count": 104}, {"ref_CSET_id": 127, "referenced_count": 94}, {"ref_CSET_id": 792, "referenced_count": 89}], "tasks": [{"referent": "classification", "task_count": 160}, {"referent": "classification_tasks", "task_count": 40}, {"referent": "object_detection", "task_count": 37}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 34}, {"referent": "feature_selection", "task_count": 31}, {"referent": "image_recognition", "task_count": 29}, {"referent": "video_surveillance", "task_count": 29}, {"referent": "system_identification", "task_count": 28}, {"referent": "computer_vision", "task_count": 27}, {"referent": "image_analysis", "task_count": 26}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 89}, {"referent": "3d_representations", "method_count": 89}, {"referent": "double_q_learning", "method_count": 69}, {"referent": "convolutional_neural_networks", "method_count": 66}, {"referent": "vqa_models", "method_count": 60}, {"referent": "q_learning", "method_count": 55}, {"referent": "auto_classifier", "method_count": 53}, {"referent": "optimization", "method_count": 41}, {"referent": "1d_cnn", "method_count": 40}, {"referent": "mad_learning", "method_count": 35}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [700, 654, 560, 538, 631, 603, 563, 503, 490, 398, 9], "total": 5649, "isTopResearch": false, "rank": 58, "sp500_rank": 52}, "ai_publications": {"counts": [56, 45, 72, 78, 92, 126, 152, 168, 165, 55, 0], "total": 1009, "isTopResearch": false, "rank": 24, "sp500_rank": 19}, "ai_publications_growth": {"counts": [], "total": -19.30868838763576, "isTopResearch": false, "rank": 1318, "sp500_rank": 346}, "ai_pubs_top_conf": {"counts": [13, 11, 21, 31, 32, 27, 36, 41, 36, 14, 0], "total": 262, "isTopResearch": false, "rank": 17, "sp500_rank": 12}, "citation_counts": {"counts": [1023, 1737, 2363, 3311, 4359, 5799, 8049, 9638, 10356, 5857, 202], "total": 52694, "isTopResearch": false, "rank": 14, "sp500_rank": 10}, "cv_pubs": {"counts": [25, 17, 30, 34, 32, 41, 57, 48, 56, 21, 0], "total": 361, "isTopResearch": true, "rank": 25, "sp500_rank": 19}, "nlp_pubs": {"counts": [8, 7, 2, 3, 5, 10, 8, 10, 10, 1, 0], "total": 64, "isTopResearch": true, "rank": 38, "sp500_rank": 28}, "robotics_pubs": {"counts": [2, 1, 6, 4, 7, 5, 7, 12, 8, 6, 0], "total": 58, "isTopResearch": true, "rank": 42, "sp500_rank": 39}, "citations_per_article": {"counts": [18.267857142857142, 38.6, 32.81944444444444, 42.44871794871795, 47.380434782608695, 46.023809523809526, 52.953947368421055, 57.36904761904762, 62.763636363636365, 106.49090909090908, 0], "total": 52.22398414271556, "isTopResearch": false, "rank": 87, "sp500_rank": 15}}, "patents": {"ai_patents": {"counts": [48, 69, 73, 137, 205, 297, 321, 274, 122, 2, 0], "total": 1548, "table": null, "rank": 15, "sp500_rank": 12}, "ai_patents_growth": {"counts": [], "total": 12.772370771003095, "table": null, "rank": 321, "sp500_rank": 150}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [480, 690, 730, 1370, 2050, 2970, 3210, 2740, 1220, 20, 0], "total": 15480, "table": null, "rank": 15, "sp500_rank": 12}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 0, 3, 3, 6, 3, 0, 2, 0, 0], "total": 18, "table": null, "rank": 30, "sp500_rank": 25}, "Life_Sciences": {"counts": [1, 5, 2, 6, 13, 24, 18, 16, 10, 0, 0], "total": 95, "table": "industry", "rank": 13, "sp500_rank": 11}, "Security__eg_cybersecurity": {"counts": [1, 3, 3, 13, 17, 19, 19, 17, 6, 0, 0], "total": 98, "table": "industry", "rank": 9, "sp500_rank": 9}, "Transportation": {"counts": [0, 2, 3, 15, 12, 20, 9, 10, 0, 0, 0], "total": 71, "table": null, "rank": 35, "sp500_rank": 28}, "Industrial_and_Manufacturing": {"counts": [4, 1, 0, 1, 1, 8, 3, 6, 8, 0, 0], "total": 32, "table": null, "rank": 24, "sp500_rank": 21}, "Education": {"counts": [0, 0, 1, 0, 2, 1, 1, 4, 0, 0, 0], "total": 9, "table": null, "rank": 13, "sp500_rank": 10}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 4, "sp500_rank": 4}, "Agricultural": {"counts": [0, 0, 1, 2, 1, 3, 2, 0, 1, 0, 0], "total": 10, "table": null, "rank": 14, "sp500_rank": 11}, "Computing_in_Government": {"counts": [0, 1, 0, 1, 2, 2, 0, 0, 0, 0, 0], "total": 6, "table": null, "rank": 9, "sp500_rank": 6}, "Personal_Devices_and_Computing": {"counts": [22, 33, 35, 66, 81, 101, 79, 47, 27, 0, 0], "total": 491, "table": "industry", "rank": 18, "sp500_rank": 15}, "Banking_and_Finance": {"counts": [0, 2, 0, 3, 4, 6, 6, 8, 2, 0, 0], "total": 31, "table": null, "rank": 36, "sp500_rank": 29}, "Telecommunications": {"counts": [8, 8, 7, 28, 40, 39, 41, 18, 14, 0, 0], "total": 203, "table": "industry", "rank": 22, "sp500_rank": 19}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 2, 0, 1, 0, 4, 0, 1, 0, 0], "total": 8, "table": null, "rank": 21, "sp500_rank": 15}, "Business": {"counts": [5, 10, 15, 26, 25, 29, 12, 20, 4, 0, 0], "total": 146, "table": "industry", "rank": 22, "sp500_rank": 20}, "Energy_Management": {"counts": [3, 5, 6, 4, 4, 5, 1, 2, 3, 0, 0], "total": 33, "table": null, "rank": 18, "sp500_rank": 17}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 45, "sp500_rank": 29}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [1, 0, 0, 0, 3, 0, 2, 0, 0, 0, 0], "total": 6, "table": null, "rank": 20, "sp500_rank": 12}, "Language_Processing": {"counts": [1, 2, 1, 6, 7, 4, 0, 0, 0, 0, 0], "total": 21, "table": null, "rank": 24, "sp500_rank": 18}, "Speech_Processing": {"counts": [0, 1, 1, 1, 7, 10, 10, 9, 1, 0, 0], "total": 40, "table": null, "rank": 25, "sp500_rank": 17}, "Knowledge_Representation": {"counts": [7, 6, 11, 15, 32, 32, 27, 25, 3, 0, 0], "total": 158, "table": "application", "rank": 4, "sp500_rank": 4}, "Planning_and_Scheduling": {"counts": [4, 7, 12, 20, 15, 24, 4, 14, 1, 0, 0], "total": 101, "table": "application", "rank": 16, "sp500_rank": 15}, "Control": {"counts": [6, 9, 6, 24, 31, 40, 21, 9, 2, 0, 0], "total": 148, "table": "application", "rank": 23, "sp500_rank": 18}, "Distributed_AI": {"counts": [0, 1, 0, 1, 0, 3, 2, 0, 0, 0, 0], "total": 7, "table": null, "rank": 9, "sp500_rank": 7}, "Robotics": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14}, "Computer_Vision": {"counts": [12, 17, 19, 42, 75, 102, 122, 71, 22, 0, 0], "total": 482, "table": "application", "rank": 18, "sp500_rank": 14}, "Analytics_and_Algorithms": {"counts": [1, 3, 2, 10, 15, 17, 24, 6, 10, 0, 0], "total": 88, "table": null, "rank": 16, "sp500_rank": 14}, "Measuring_and_Testing": {"counts": [0, 7, 5, 13, 16, 35, 15, 15, 8, 0, 0], "total": 114, "table": "application", "rank": 20, "sp500_rank": 16}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 922, "rank": 372, "sp500_rank": 190}, "ai_jobs": {"counts": null, "total": 52, "rank": 474, "sp500_rank": 229}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 2423, "country": "United States", "website": "https://www.msci.com/", "crunchbase": {"text": "319c11a6-6cef-92d1-a7b3-c113e11bac16", "url": "https://www.crunchbase.com/organization/msci"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/msci-inc"], "stage": "Mature", "name": "MSCI Inc", "patent_name": "msci inc", "continent": "North America", "local_logo": "msci_inc.png", "aliases": "Morgan Stanley Capital International; Msci; Msci Barra", "permid_links": [{"text": 4295906344, "url": "https://permid.org/1-4295906344"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MSCI", "url": "https://www.google.com/finance/quote/msci:nyse"}], "market_full": [{"text": "MCX:MSCI-RM", "url": "https://www.google.com/finance/quote/mcx:msci-rm"}, {"text": "ASE:MSCI", "url": "https://www.google.com/finance/quote/ase:msci"}, {"text": "DUS:3HM", "url": "https://www.google.com/finance/quote/3hm:dus"}, {"text": "GER:3HMX", "url": "https://www.google.com/finance/quote/3hmx:ger"}, {"text": "DEU:MSCI", "url": "https://www.google.com/finance/quote/deu:msci"}, {"text": "MUN:3HM", "url": "https://www.google.com/finance/quote/3hm:mun"}, {"text": "BRN:3HM", "url": "https://www.google.com/finance/quote/3hm:brn"}, {"text": "SAO:M1SC34", "url": "https://www.google.com/finance/quote/m1sc34:sao"}, {"text": "BER:3HM", "url": "https://www.google.com/finance/quote/3hm:ber"}, {"text": "VIE:MSCI", "url": "https://www.google.com/finance/quote/msci:vie"}, {"text": "STU:3HM", "url": "https://www.google.com/finance/quote/3hm:stu"}, {"text": "NYQ:MSCI", "url": "https://www.google.com/finance/quote/msci:nyq"}, {"text": "NYSE:MSCI", "url": "https://www.google.com/finance/quote/msci:nyse"}, {"text": "FRA:3HM", "url": "https://www.google.com/finance/quote/3hm:fra"}, {"text": "LSE:0A8Y", "url": "https://www.google.com/finance/quote/0a8y:lse"}, {"text": "MEX:MSCI", "url": "https://www.google.com/finance/quote/mex:msci"}], "crunchbase_description": "MSCI is a provider of investment decision support tools to investment institutions worldwide.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 2, 7, 5, 7, 1, 17, 5, 2, 2, 0], "total": 57, "isTopResearch": false, "rank": 597, "fortune500_rank": 221}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 917, "rank": 373, "fortune500_rank": 204}, "ai_jobs": {"counts": null, "total": 180, "rank": 242, "fortune500_rank": 129}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "MSCI Inc. (formerly Morgan Stanley Capital International and MSCI Barra), is an American finance company headquartered in New York City and serving as a global provider of equity, fixed income, hedge fund stock market indexes, multi-asset portfolio analysis tools and ESG products. It publishes the MSCI BRIC, MSCI World and MSCI EAFE Indexes.", "wikipedia_link": "https://en.wikipedia.org/wiki/MSCI", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2382, "country": "United States", "website": "https://www.key.com", "crunchbase": {"text": "15e2dcad-7b97-281f-30de-991254304cd3", "url": "https://www.crunchbase.com/organization/keycorp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/keybank"], "stage": "Mature", "name": "Keycorp", "patent_name": "keycorp", "continent": "North America", "local_logo": "keycorp.png", "aliases": "", "permid_links": [{"text": 4295904371, "url": "https://permid.org/1-4295904371"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:KEY", "url": "https://www.google.com/finance/quote/key:nyse"}], "market_full": [{"text": "MOEX:KEY-RM", "url": "https://www.google.com/finance/quote/key-rm:moex"}, {"text": "DUS:KEY", "url": "https://www.google.com/finance/quote/dus:key"}, {"text": "SAO:K1EY34", "url": "https://www.google.com/finance/quote/k1ey34:sao"}, {"text": "NYQ:KEY", "url": "https://www.google.com/finance/quote/key:nyq"}, {"text": "STU:KEY", "url": "https://www.google.com/finance/quote/key:stu"}, {"text": "ASE:KEY", "url": "https://www.google.com/finance/quote/ase:key"}, {"text": "MUN:KEY", "url": "https://www.google.com/finance/quote/key:mun"}, {"text": "HAN:KEY", "url": "https://www.google.com/finance/quote/han:key"}, {"text": "MEX:KEY1", "url": "https://www.google.com/finance/quote/key1:mex"}, {"text": "LSE:0JQR", "url": "https://www.google.com/finance/quote/0jqr:lse"}, {"text": "BER:KEY", "url": "https://www.google.com/finance/quote/ber:key"}, {"text": "NYSE:KEY", "url": "https://www.google.com/finance/quote/key:nyse"}, {"text": "BRN:KEY", "url": "https://www.google.com/finance/quote/brn:key"}, {"text": "FRA:KEY", "url": "https://www.google.com/finance/quote/fra:key"}, {"text": "DEU:KEY", "url": "https://www.google.com/finance/quote/deu:key"}, {"text": "GER:KEYX", "url": "https://www.google.com/finance/quote/ger:keyx"}], "crunchbase_description": "KeyBank is a bank holding company. It is a bank-based financial services company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 916, "rank": 374, "fortune500_rank": 205}, "ai_jobs": {"counts": null, "total": 169, "rank": 252, "fortune500_rank": 135}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Since 1825, we\u2019ve built our business on knowing the communities we serve inside and out. We\u2019re not surprised to see you pulling together to help our neighbors, but we are inspired by it. And as neighbors ourselves, we\u2019re right here with you. Today, we\u2019re working together to support the people, small businesses, local restaurants and non-profits that help our communities thrive. Tomorrow will come, and when it does, we want everyone to be ready to hit the ground running.", "company_site_link": "https://www.key.com/about/corporate-responsibility/community/tomorrow.jsp?sqkl=about_home_marquee_051420", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2470, "country": "United States", "website": "https://www.questdiagnostics.com/", "crunchbase": {"text": "1f10a1d5-8ab1-9c76-7dc4-3f29fc0601d3", "url": "https://www.crunchbase.com/organization/quest-diagnostics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/quest-diagnostics"], "stage": "Mature", "name": "Quest Diagnostics", "patent_name": "quest diagnostics", "continent": "North America", "local_logo": "quest_diagnostics.png", "aliases": "Quest; Quest Diagnostics Inc; Quest Diagnostics Incorporated", "permid_links": [{"text": 4295904788, "url": "https://permid.org/1-4295904788"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DGX", "url": "https://www.google.com/finance/quote/dgx:nyse"}], "market_full": [{"text": "BER:QDI", "url": "https://www.google.com/finance/quote/ber:qdi"}, {"text": "DUS:QDI", "url": "https://www.google.com/finance/quote/dus:qdi"}, {"text": "BRN:QDI", "url": "https://www.google.com/finance/quote/brn:qdi"}, {"text": "GER:QDIX", "url": "https://www.google.com/finance/quote/ger:qdix"}, {"text": "DEU:DGX", "url": "https://www.google.com/finance/quote/deu:dgx"}, {"text": "STU:QDI", "url": "https://www.google.com/finance/quote/qdi:stu"}, {"text": "LSE:0KSX", "url": "https://www.google.com/finance/quote/0ksx:lse"}, {"text": "HAN:QDI", "url": "https://www.google.com/finance/quote/han:qdi"}, {"text": "MCX:DGX-RM", "url": "https://www.google.com/finance/quote/dgx-rm:mcx"}, {"text": "MEX:DGX*", "url": "https://www.google.com/finance/quote/dgx*:mex"}, {"text": "MUN:QDI", "url": "https://www.google.com/finance/quote/mun:qdi"}, {"text": "NYSE:DGX", "url": "https://www.google.com/finance/quote/dgx:nyse"}, {"text": "FRA:QDI", "url": "https://www.google.com/finance/quote/fra:qdi"}, {"text": "ASE:DGX", "url": "https://www.google.com/finance/quote/ase:dgx"}, {"text": "SAO:Q1UE34", "url": "https://www.google.com/finance/quote/q1ue34:sao"}, {"text": "NYQ:DGX", "url": "https://www.google.com/finance/quote/dgx:nyq"}], "crunchbase_description": "Quest Diagnostics is a clinical laboratory that offers diagnostic testing, services, and information.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "False positive rate", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}], "clusters": [{"cluster_id": 8099, "cluster_count": 1}, {"cluster_id": 1241, "cluster_count": 1}, {"cluster_id": 13137, "cluster_count": 1}, {"cluster_id": 4317, "cluster_count": 1}, {"cluster_id": 1683, "cluster_count": 1}, {"cluster_id": 3613, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2470, "referenced_count": 1}], "tasks": [{"referent": "image_analysis", "task_count": 2}, {"referent": "action_understanding", "task_count": 1}, {"referent": "facial_expression_analysis", "task_count": 1}, {"referent": "cancer", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "clustering", "task_count": 1}, {"referent": "salt_and_pepper_noise_removal", "task_count": 1}, {"referent": "disease_detection", "task_count": 1}], "methods": [{"referent": "3dis", "method_count": 1}, {"referent": "(2+1)d_convolution", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "auxiliary_classifier", "method_count": 1}, {"referent": "schnet", "method_count": 1}, {"referent": "dpn", "method_count": 1}, {"referent": "gts", "method_count": 1}, {"referent": "image_segmentation_models", "method_count": 1}, {"referent": "k_means_clustering", "method_count": 1}, {"referent": "edgeboxes", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [84, 96, 76, 58, 83, 58, 77, 75, 87, 95, 0], "total": 789, "isTopResearch": false, "rank": 216, "fortune500_rank": 80}, "ai_publications": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 1, 1, 0], "total": 4, "isTopResearch": false, "rank": 573, "fortune500_rank": 157}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [4, 3, 5, 4, 2, 5, 2, 8, 15, 19, 0], "total": 67, "isTopResearch": false, "rank": 551, "fortune500_rank": 149}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 4.0, 2.0, 0, 0, 0, 15.0, 19.0, 0], "total": 16.75, "isTopResearch": false, "rank": 370, "fortune500_rank": 114}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 0, 0, 10, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 905, "rank": 375, "fortune500_rank": 206}, "ai_jobs": {"counts": null, "total": 66, "rank": 424, "fortune500_rank": 227}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Quest Diagnostics is an American clinical laboratory. A Fortune 500 company, Quest operates in the United States, Puerto Rico, Mexico, and Brazil. Quest also maintains collaborative agreements with various hospitals and clinics across the globe.", "wikipedia_link": "https://en.wikipedia.org/wiki/Quest_Diagnostics", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2452, "country": "United States", "website": "http://www.paycom.com/", "crunchbase": {"text": "a5f49939-8eb0-8e2d-9340-2a2d8d3640b0", "url": "https://www.crunchbase.com/organization/paycom"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/paycom"], "stage": "Mature", "name": "Paycom", "patent_name": "paycom", "continent": "North America", "local_logo": "paycom.png", "aliases": "Paycom Software, Inc", "permid_links": [{"text": 5040945605, "url": "https://permid.org/1-5040945605"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PAYC", "url": "https://www.google.com/finance/quote/nyse:payc"}], "market_full": [{"text": "NYQ:PAYC", "url": "https://www.google.com/finance/quote/nyq:payc"}, {"text": "ASE:PAYC", "url": "https://www.google.com/finance/quote/ase:payc"}, {"text": "FRA:0PY", "url": "https://www.google.com/finance/quote/0py:fra"}, {"text": "GER:0PYX", "url": "https://www.google.com/finance/quote/0pyx:ger"}, {"text": "BER:0PY", "url": "https://www.google.com/finance/quote/0py:ber"}, {"text": "DUS:0PY", "url": "https://www.google.com/finance/quote/0py:dus"}, {"text": "STU:0PY", "url": "https://www.google.com/finance/quote/0py:stu"}, {"text": "NYSE:PAYC", "url": "https://www.google.com/finance/quote/nyse:payc"}, {"text": "HAN:0PY", "url": "https://www.google.com/finance/quote/0py:han"}, {"text": "MUN:0PY", "url": "https://www.google.com/finance/quote/0py:mun"}, {"text": "SAO:P1YC34", "url": "https://www.google.com/finance/quote/p1yc34:sao"}, {"text": "LSE:0KGH", "url": "https://www.google.com/finance/quote/0kgh:lse"}, {"text": "DEU:0PY", "url": "https://www.google.com/finance/quote/0py:deu"}, {"text": "BRN:0PY", "url": "https://www.google.com/finance/quote/0py:brn"}, {"text": "MCX:PAYC-RM", "url": "https://www.google.com/finance/quote/mcx:payc-rm"}, {"text": "MEX:PAYC", "url": "https://www.google.com/finance/quote/mex:payc"}], "crunchbase_description": "Paycom specializes in Human Capital Management, providing software that simplifies things and reduces costs.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 902, "rank": 376, "fortune500_rank": 207}, "ai_jobs": {"counts": null, "total": 21, "rank": 683, "fortune500_rank": 344}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Paycom Software, Inc., known simply as Paycom, is an American online payroll and human resource technology provider based in Oklahoma City, Oklahoma. It is attributed with being one of the first fully online payroll providers and has offices throughout the U.S. It has also been recognized by Fortune magazine as one of the fastest-growing publicly traded companies in the world and Forbes' magazine ranked it one of the top five fastest-growing publicly traded technology companies in its Fast Tech rankings. Founded in 1998, it reported annual revenue of $841.1 million for 2020, up from $737.7 million for 2019.", "wikipedia_link": "https://en.wikipedia.org/wiki/Paycom", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2796, "country": "United States", "website": "https://www.llnsllc.com/", "crunchbase": {"text": "66b8e5a6-4194-b4e5-fc6d-11c47b200901", "url": "https://www.crunchbase.com/organization/lawrence-livermore-national-laboratory"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lawrence-livermore-national-laboratory"], "stage": "Mature", "name": "Lawrence Livermore National Security LLC", "patent_name": "lawrence livermore national security llc", "continent": "North America", "local_logo": "lawrence_livermore_national_security_llc.png", "aliases": "Lawrence Livermore National Security, Llc; Llns", "permid_links": [{"text": 5000395168, "url": "https://permid.org/1-5000395168"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Lawrence Livermore National Laboratory, a national security laboratory, provides transformational solutions to national security challenges.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 0, 1, 0, 0, 2, 0, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 4, 5, 10, 5, 1, 0, 0], "total": 26, "table": null, "rank": 288}, "ai_patents_growth": {"counts": [], "total": 25.0, "table": null, "rank": 287}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 40, 50, 100, 50, 10, 0, 0], "total": 260, "table": null, "rank": 288}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 0, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 131}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 2, 2, 3, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 287}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 139}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 190}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 1, 5, 3, 1, 0, 0], "total": 12, "table": "application", "rank": 229}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 209}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 897, "rank": 377}, "ai_jobs": {"counts": null, "total": 85, "rank": 367}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "", "wikipedia_link": "https://en.wikipedia.org/wiki/Lawrence_Livermore_National_Laboratory", "company_site_description": "(LLNS) offers a team of world-class organizations whose primary objective is to deliver the National Nuclear Security Administration mission for Lawrence Livermore National Laboratory.", "company_site_link": "https://www.llnsllc.com/", "description_retrieval_date": "2021-06-24", "company_site_description_translation": null}, {"cset_id": 501, "country": "United States", "website": "http://www.illumina.com", "crunchbase": {"text": "d1b0e72f-2d10-2f9a-2c54-c567775e38f6", "url": "https://www.crunchbase.com/organization/illumina"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/illumina"], "stage": "Mature", "name": "Illumina", "patent_name": "illumina", "continent": "North America", "local_logo": "illumina.png", "aliases": "Illumina Inc; Illumina, Inc", "permid_links": [{"text": 4295900447, "url": "https://permid.org/1-4295900447"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ILMN", "url": "https://www.google.com/finance/quote/ilmn:nasdaq"}], "market_full": [{"text": "VIE:ILMN", "url": "https://www.google.com/finance/quote/ilmn:vie"}, {"text": "NASDAQ:ILMN", "url": "https://www.google.com/finance/quote/ilmn:nasdaq"}, {"text": "XETR:ILU", "url": "https://www.google.com/finance/quote/ilu:xetr"}, {"text": "FWB:ILU", "url": "https://www.google.com/finance/quote/fwb:ilu"}, {"text": "MOEX:ILMN-RM", "url": "https://www.google.com/finance/quote/ilmn-rm:moex"}, {"text": "LON:0J8Z", "url": "https://www.google.com/finance/quote/0j8z:lon"}, {"text": "BMV:ILMN", "url": "https://www.google.com/finance/quote/bmv:ilmn"}, {"text": "MUN:ILU", "url": "https://www.google.com/finance/quote/ilu:mun"}, {"text": "BER:ILU", "url": "https://www.google.com/finance/quote/ber:ilu"}, {"text": "MEX:ILMN", "url": "https://www.google.com/finance/quote/ilmn:mex"}, {"text": "HAN:ILU", "url": "https://www.google.com/finance/quote/han:ilu"}, {"text": "FRA:ILMN", "url": "https://www.google.com/finance/quote/fra:ilmn"}, {"text": "DUS:ILU", "url": "https://www.google.com/finance/quote/dus:ilu"}], "crunchbase_description": "Illumina is an innovative technology and revolutionary assays aiming the analyze genetic variation and function.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Precision and recall", "field_count": 1}, {"field_name": "Embedding", "field_count": 1}], "clusters": [{"cluster_id": 4150, "cluster_count": 1}, {"cluster_id": 12115, "cluster_count": 1}, {"cluster_id": 9662, "cluster_count": 1}, {"cluster_id": 39903, "cluster_count": 1}, {"cluster_id": 12522, "cluster_count": 1}, {"cluster_id": 50135, "cluster_count": 1}, {"cluster_id": 1038, "cluster_count": 1}, {"cluster_id": 2398, "cluster_count": 1}, {"cluster_id": 29430, "cluster_count": 1}, {"cluster_id": 11933, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 550, "referenced_count": 1}, {"ref_CSET_id": 663, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}], "tasks": [{"referent": "cancer", "task_count": 2}, {"referent": "single_cell_modeling", "task_count": 1}, {"referent": "blood_cell_count", "task_count": 1}, {"referent": "relation_classification", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "action_quality_assessment", "task_count": 1}, {"referent": "quantization", "task_count": 1}, {"referent": "automated_writing_evaluation", "task_count": 1}, {"referent": "timex_normalization", "task_count": 1}], "methods": [{"referent": "clustering", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "als", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}, {"referent": "reduction_b", "method_count": 1}, {"referent": "densenet_elastic", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "channel_shuffle", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [114, 154, 153, 149, 114, 134, 177, 122, 123, 152, 1], "total": 1393, "isTopResearch": false, "rank": 153}, "ai_publications": {"counts": [0, 0, 0, 4, 3, 2, 1, 1, 1, 0, 0], "total": 12, "isTopResearch": false, "rank": 384}, "ai_publications_growth": {"counts": [], "total": -33.333333333333336, "isTopResearch": false, "rank": 1404}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 1, 1, 6, 14, 26, 23, 30, 29, 3], "total": 133, "isTopResearch": false, "rank": 459}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.25, 2.0, 7.0, 26.0, 23.0, 30.0, 0, 0], "total": 11.083333333333334, "isTopResearch": false, "rank": 501}}, "patents": {"ai_patents": {"counts": [1, 0, 2, 1, 13, 18, 17, 12, 12, 0, 0], "total": 76, "table": null, "rank": 178}, "ai_patents_growth": {"counts": [], "total": 1.1647394000335172, "table": null, "rank": 356}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 0, 20, 10, 130, 180, 170, 120, 120, 0, 0], "total": 760, "table": null, "rank": 178}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 125}, "Life_Sciences": {"counts": [1, 0, 2, 1, 9, 13, 14, 12, 10, 0, 0], "total": 62, "table": "industry", "rank": 19}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [1, 0, 1, 1, 4, 2, 2, 2, 1, 0, 0], "total": 14, "table": "industry", "rank": 226}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 1, 2, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 137}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 4, 4, 11, 4, 3, 0, 0], "total": 26, "table": "application", "rank": 165}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 5, 1, 1, 0, 0], "total": 8, "table": "application", "rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 894, "rank": 378}, "ai_jobs": {"counts": null, "total": 99, "rank": 336}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "llumina, Inc. is an American company. Incorporated in April 1998, Illumina develops, manufactures, and markets integrated systems for the analysis of genetic variation and biological function. The company provides a line of products and services that serves the sequencing, genotyping and gene expression, and proteomics markets. Its headquarters are located in San Diego, California.", "wikipedia_link": "https://en.wikipedia.org/wiki/Illumina,_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2360, "country": "United States", "website": "https://www.huntington.com/", "crunchbase": {"text": "f8a139b0-82f4-f484-8c3e-b61acc5dbc2d", "url": "https://www.crunchbase.com/organization/huntington-national-bank"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/huntington-national-bank"], "stage": "Mature", "name": "Huntington Bancshares", "patent_name": "huntington bancshares", "continent": "North America", "local_logo": "huntington_bancshares.png", "aliases": "Huntington Bancshares Incorporated; Huntington National Bank", "permid_links": [{"text": 4295906733, "url": "https://permid.org/1-4295906733"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:HBAN", "url": "https://www.google.com/finance/quote/hban:nasdaq"}], "market_full": [{"text": "HAN:HU3", "url": "https://www.google.com/finance/quote/han:hu3"}, {"text": "MUN:HU3", "url": "https://www.google.com/finance/quote/hu3:mun"}, {"text": "MOEX:HBAN-RM", "url": "https://www.google.com/finance/quote/hban-rm:moex"}, {"text": "NASDAQ:HBAN", "url": "https://www.google.com/finance/quote/hban:nasdaq"}, {"text": "FRA:HU3", "url": "https://www.google.com/finance/quote/fra:hu3"}, {"text": "BER:HU3", "url": "https://www.google.com/finance/quote/ber:hu3"}, {"text": "SAO:H1BA34", "url": "https://www.google.com/finance/quote/h1ba34:sao"}, {"text": "GER:HU3X", "url": "https://www.google.com/finance/quote/ger:hu3x"}, {"text": "DUS:HU3", "url": "https://www.google.com/finance/quote/dus:hu3"}, {"text": "LSE:0J72", "url": "https://www.google.com/finance/quote/0j72:lse"}, {"text": "DEU:HBAN", "url": "https://www.google.com/finance/quote/deu:hban"}, {"text": "BRN:HU3", "url": "https://www.google.com/finance/quote/brn:hu3"}, {"text": "STU:HU3", "url": "https://www.google.com/finance/quote/hu3:stu"}, {"text": "MEX:HBAN", "url": "https://www.google.com/finance/quote/hban:mex"}], "crunchbase_description": "Huntington National Bank is a public bank that serves both individuals and businesses.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 893, "rank": 379, "fortune500_rank": 208}, "ai_jobs": {"counts": null, "total": 78, "rank": 385, "fortune500_rank": 202}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Huntington Bancshares Incorporated is a bank holding company headquartered in Columbus, Ohio. The company is ranked 524th on the Fortune 500, and is 39th on the list of largest banks in the United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Huntington_Bancshares", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2528, "country": "United States", "website": "https://www.verisk.com/", "crunchbase": {"text": "21fadd92-e006-eb11-6003-d9abd53c1076", "url": "https://www.crunchbase.com/organization/verisk-analytics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/verisk-analytics"], "stage": "Mature", "name": "Verisk Analytics", "patent_name": "verisk analytics", "continent": "North America", "local_logo": "verisk_analytics.png", "aliases": "Iso; Verisk; Verisk Analytics, Inc; Verisk Analytics, Inc. (Verisk); Verisk Analytics\u00ae", "permid_links": [{"text": 4298051902, "url": "https://permid.org/1-4298051902"}], "parent_info": "TransUnion (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:VRSK", "url": "https://www.google.com/finance/quote/nasdaq:vrsk"}], "market_full": [{"text": "BRN:VA7A", "url": "https://www.google.com/finance/quote/brn:va7a"}, {"text": "NASDAQ:VRSK", "url": "https://www.google.com/finance/quote/nasdaq:vrsk"}, {"text": "LSE:0LP3", "url": "https://www.google.com/finance/quote/0lp3:lse"}, {"text": "DEU:VA7A", "url": "https://www.google.com/finance/quote/deu:va7a"}, {"text": "MCX:VRSK-RM", "url": "https://www.google.com/finance/quote/mcx:vrsk-rm"}, {"text": "FRA:VA7A", "url": "https://www.google.com/finance/quote/fra:va7a"}, {"text": "DUS:VA7A", "url": "https://www.google.com/finance/quote/dus:va7a"}, {"text": "HAM:VA7A", "url": "https://www.google.com/finance/quote/ham:va7a"}, {"text": "MEX:VRSK*", "url": "https://www.google.com/finance/quote/mex:vrsk*"}, {"text": "VIE:VRSK", "url": "https://www.google.com/finance/quote/vie:vrsk"}, {"text": "BER:VA7A", "url": "https://www.google.com/finance/quote/ber:va7a"}, {"text": "HAN:VA7A", "url": "https://www.google.com/finance/quote/han:va7a"}, {"text": "STU:VA7A", "url": "https://www.google.com/finance/quote/stu:va7a"}, {"text": "MUN:VA7A", "url": "https://www.google.com/finance/quote/mun:va7a"}, {"text": "SAO:V1RS34", "url": "https://www.google.com/finance/quote/sao:v1rs34"}], "crunchbase_description": "Verisk Analytics enables risk-bearing businesses for better understand and manage their risks.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Point cloud", "field_count": 2}, {"field_name": "Unsupervised learning", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Feature extraction", "field_count": 1}, {"field_name": "Relational database", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Motion (physics)", "field_count": 1}, {"field_name": "Subspace topology", "field_count": 1}, {"field_name": "Spectrogram", "field_count": 1}], "clusters": [{"cluster_id": 1338, "cluster_count": 2}, {"cluster_id": 3446, "cluster_count": 2}, {"cluster_id": 9819, "cluster_count": 1}, {"cluster_id": 24036, "cluster_count": 1}, {"cluster_id": 1943, "cluster_count": 1}, {"cluster_id": 981, "cluster_count": 1}, {"cluster_id": 21538, "cluster_count": 1}, {"cluster_id": 7496, "cluster_count": 1}, {"cluster_id": 30192, "cluster_count": 1}, {"cluster_id": 31316, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 81}, {"ref_CSET_id": 87, "referenced_count": 44}, {"ref_CSET_id": 163, "referenced_count": 26}, {"ref_CSET_id": 6, "referenced_count": 19}, {"ref_CSET_id": 184, "referenced_count": 14}, {"ref_CSET_id": 127, "referenced_count": 8}, {"ref_CSET_id": 245, "referenced_count": 7}, {"ref_CSET_id": 1126, "referenced_count": 4}, {"ref_CSET_id": 27, "referenced_count": 4}, {"ref_CSET_id": 734, "referenced_count": 4}], "tasks": [{"referent": "image_recognition", "task_count": 3}, {"referent": "3d_shape_recognition", "task_count": 2}, {"referent": "object_detection", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "compositional_zero_shot_learning", "task_count": 1}, {"referent": "video_recognition", "task_count": 1}, {"referent": "multi_modal_person_identification", "task_count": 1}, {"referent": "learning_word_embeddings", "task_count": 1}, {"referent": "model_selection", "task_count": 1}, {"referent": "activity_detection", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 4}, {"referent": "adversarial_training", "method_count": 3}, {"referent": "topic_embeddings", "method_count": 2}, {"referent": "gan", "method_count": 2}, {"referent": "generative_adversarial_networks", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "feature_extractors", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 1, 2, 7, 2, 5, 10, 7, 0], "total": 35, "isTopResearch": false, "rank": 686, "fortune500_rank": 248}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 5, 2, 3, 7, 2, 0], "total": 20, "isTopResearch": false, "rank": 301, "fortune500_rank": 92}, "ai_publications_growth": {"counts": [], "total": 37.301587301587304, "isTopResearch": false, "rank": 81, "fortune500_rank": 25}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 3, 1, 2, 3, 1, 0], "total": 11, "isTopResearch": false, "rank": 108, "fortune500_rank": 38}, "citation_counts": {"counts": [0, 0, 0, 2, 6, 67, 258, 482, 600, 335, 11], "total": 1761, "isTopResearch": false, "rank": 149, "fortune500_rank": 44}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 3, 2, 3, 3, 1, 0], "total": 13, "isTopResearch": true, "rank": 179, "fortune500_rank": 47}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 6.0, 13.4, 129.0, 160.66666666666666, 85.71428571428571, 167.5, 0], "total": 88.05, "isTopResearch": false, "rank": 42, "fortune500_rank": 10}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 877, "rank": 380, "fortune500_rank": 209}, "ai_jobs": {"counts": null, "total": 232, "rank": 215, "fortune500_rank": 116}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Verisk Analytics, Inc. is an American data analytics and risk assessment firm based in Jersey City, New Jersey, with customers in insurance, natural resources, financial services, government, and risk management sectors. The company uses proprietary data sets and industry expertise to provide predictive analytics and decision support consultations in areas including fraud prevention, actuarial science, insurance coverage, fire protection, catastrophe and weather risk, and data management.", "wikipedia_link": "https://en.wikipedia.org/wiki/Verisk_Analytics", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2361, "country": "United States", "website": "http://huntingtoningalls.com/", "crunchbase": {"text": "9728f5d0-1fb0-314e-314d-b86ee3b8dea4", "url": "https://www.crunchbase.com/organization/huntington-ingalls-industries"}, "child_crunchbase": [{"text": "25a5ef0c-f057-785d-0b90-29b253ed8152", "url": "https://www.crunchbase.com/organization/alion-science-and-technology"}], "linkedin": ["https://www.linkedin.com/company/alionscience", "https://www.linkedin.com/company/huntingtoningalls"], "stage": "Mature", "name": "Huntington Ingalls Industries", "patent_name": "huntington ingalls industries", "continent": "North America", "local_logo": "huntington_ingalls_industries.png", "aliases": "Hii; Huntington Ingalls Industries; Huntington Ingalls Industries, Inc", "permid_links": [{"text": 4296905424, "url": "https://permid.org/1-4296905424"}, {"text": 5001210761, "url": "https://permid.org/1-5001210761"}], "parent_info": null, "agg_child_info": "Alion Science and Technology Corp", "unagg_child_info": null, "market_filt": [{"text": "NYSE:HII", "url": "https://www.google.com/finance/quote/hii:nyse"}], "market_full": [{"text": "MCX:HII-RM", "url": "https://www.google.com/finance/quote/hii-rm:mcx"}, {"text": "NYQ:HII", "url": "https://www.google.com/finance/quote/hii:nyq"}, {"text": "NYSE:HII", "url": "https://www.google.com/finance/quote/hii:nyse"}, {"text": "BRN:HI4", "url": "https://www.google.com/finance/quote/brn:hi4"}], "crunchbase_description": "Huntington Ingalls Industries, Inc. (HII) owns and operates two segments: Ingalls Shipbuilding and Newport News Shipbuilding.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Task (computing)", "field_count": 6}, {"field_name": "Robotic arm", "field_count": 4}, {"field_name": "Analytics", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Hybrid system", "field_count": 1}, {"field_name": "Pairwise comparison", "field_count": 1}, {"field_name": "Computational model", "field_count": 1}, {"field_name": "Learnability", "field_count": 1}, {"field_name": "Artificial general intelligence", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 46145, "cluster_count": 6}, {"cluster_id": 3683, "cluster_count": 6}, {"cluster_id": 68821, "cluster_count": 4}, {"cluster_id": 32618, "cluster_count": 2}, {"cluster_id": 829, "cluster_count": 1}, {"cluster_id": 34392, "cluster_count": 1}, {"cluster_id": 10061, "cluster_count": 1}, {"cluster_id": 25691, "cluster_count": 1}, {"cluster_id": 14703, "cluster_count": 1}, {"cluster_id": 41996, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2361, "referenced_count": 27}, {"ref_CSET_id": 2563, "referenced_count": 1}, {"ref_CSET_id": 3024, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "automl", "task_count": 3}, {"referent": "human_interaction_recognition", "task_count": 3}, {"referent": "system_identification", "task_count": 2}, {"referent": "sa", "task_count": 2}, {"referent": "human_robot_interaction", "task_count": 2}, {"referent": "robotic_process_automation", "task_count": 2}, {"referent": "robots", "task_count": 2}, {"referent": "decision_making", "task_count": 2}, {"referent": "unmanned_aerial_vehicles", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "sttp", "method_count": 2}, {"referent": "npid", "method_count": 2}, {"referent": "3d_sa", "method_count": 2}, {"referent": "mim", "method_count": 2}, {"referent": "dnas", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "softpool", "method_count": 1}, {"referent": "electra", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [45, 38, 30, 30, 24, 7, 9, 9, 11, 4, 0], "total": 207, "isTopResearch": false, "rank": 408, "fortune500_rank": 158}, "ai_publications": {"counts": [2, 3, 5, 2, 3, 0, 0, 3, 1, 0, 0], "total": 19, "isTopResearch": false, "rank": 311, "fortune500_rank": 95}, "ai_publications_growth": {"counts": [], "total": -83.33333333333334, "isTopResearch": false, "rank": 1540, "fortune500_rank": 437}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [25, 27, 23, 44, 56, 44, 47, 46, 72, 57, 2], "total": 443, "isTopResearch": false, "rank": 284, "fortune500_rank": 84}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [2, 2, 2, 1, 2, 0, 0, 0, 0, 0, 0], "total": 9, "isTopResearch": true, "rank": 124, "fortune500_rank": 36}, "citations_per_article": {"counts": [12.5, 9.0, 4.6, 22.0, 18.666666666666668, 0, 0, 15.333333333333334, 72.0, 0, 0], "total": 23.31578947368421, "isTopResearch": false, "rank": 262, "fortune500_rank": 83}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 868, "rank": 381, "fortune500_rank": 210}, "ai_jobs": {"counts": null, "total": 39, "rank": 533, "fortune500_rank": 277}}, "sector": "Industrials", "business_sector": "Industrial Goods"}, {"cset_id": 2127, "country": "France", "website": "https://www.danone.com/", "crunchbase": {"text": " af3dc6a0-01d7-b61f-e94a-c79953160de3 ", "url": " https://www.crunchbase.com/organization/danone "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/danone"], "stage": "Mature", "name": "Danone", "patent_name": "Danone", "continent": "Europe", "local_logo": null, "aliases": "Danone; Danone S.A", "permid_links": [{"text": 4295867387, "url": "https://permid.org/1-4295867387"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PAR:BN", "url": "https://www.google.com/finance/quote/BN:PAR"}, {"text": "HAM:BSN", "url": "https://www.google.com/finance/quote/BSN:HAM"}, {"text": "STU:BSND", "url": "https://www.google.com/finance/quote/BSND:STU"}, {"text": "QXI:GPDNF", "url": "https://www.google.com/finance/quote/GPDNF:QXI"}, {"text": "BRN:BSN", "url": "https://www.google.com/finance/quote/BRN:BSN"}, {"text": "DEU:BSND", "url": "https://www.google.com/finance/quote/BSND:DEU"}, {"text": "BER:BSND", "url": "https://www.google.com/finance/quote/BER:BSND"}, {"text": "EBT:BNP", "url": "https://www.google.com/finance/quote/BNp:EBT"}, {"text": "BER:BSN", "url": "https://www.google.com/finance/quote/BER:BSN"}, {"text": "VIE:BN", "url": "https://www.google.com/finance/quote/BN:VIE"}, {"text": "BUE:BSN3", "url": "https://www.google.com/finance/quote/BSN3:BUE"}, {"text": "HAN:BSN", "url": "https://www.google.com/finance/quote/BSN:HAN"}, {"text": "FRA:BSN", "url": "https://www.google.com/finance/quote/BSN:FRA"}, {"text": "FRA:BSND", "url": "https://www.google.com/finance/quote/BSND:FRA"}, {"text": "MIL:DNN", "url": "https://www.google.com/finance/quote/DNN:MIL"}, {"text": "MEX:BNN", "url": "https://www.google.com/finance/quote/BNN:MEX"}, {"text": "DUS:BSN", "url": "https://www.google.com/finance/quote/BSN:DUS"}, {"text": "STU:BSN", "url": "https://www.google.com/finance/quote/BSN:STU"}, {"text": "MUN:BSND", "url": "https://www.google.com/finance/quote/BSND:MUN"}, {"text": "GER:BSNX", "url": "https://www.google.com/finance/quote/BSNX:GER"}, {"text": "DEU:DANO", "url": "https://www.google.com/finance/quote/DANO:DEU"}, {"text": "MUN:BSN", "url": "https://www.google.com/finance/quote/BSN:MUN"}, {"text": "LSE:0KFX", "url": "https://www.google.com/finance/quote/0KFX:LSE"}, {"text": "QXI:DANOY", "url": "https://www.google.com/finance/quote/DANOY:QXI"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 2}, {"field_name": "Statistical classification", "field_count": 1}], "clusters": [{"cluster_id": 41268, "cluster_count": 2}, {"cluster_id": 20950, "cluster_count": 1}, {"cluster_id": 41261, "cluster_count": 1}, {"cluster_id": 41301, "cluster_count": 1}, {"cluster_id": 76025, "cluster_count": 1}, {"cluster_id": 34794, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 506, "referenced_count": 5}, {"ref_CSET_id": 2127, "referenced_count": 4}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "action_understanding", "task_count": 2}, {"referent": "binary_classification", "task_count": 1}, {"referent": "automated_writing_evaluation", "task_count": 1}, {"referent": "breast_cancer_detection", "task_count": 1}, {"referent": "dimensionality_reduction", "task_count": 1}, {"referent": "cancer_detection", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "community_detection", "task_count": 1}, {"referent": "clustering", "task_count": 1}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "sabn", "method_count": 1}, {"referent": "object_detection_models", "method_count": 1}, {"referent": "vilbert", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "deep_ensembles", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [238, 138, 170, 174, 128, 148, 200, 166, 172, 142, 1], "total": 1677, "isTopResearch": false, "rank": 134, "sp500_rank": 105}, "ai_publications": {"counts": [0, 0, 1, 0, 2, 1, 0, 2, 1, 1, 0], "total": 8, "isTopResearch": false, "rank": 455, "sp500_rank": 233}, "ai_publications_growth": {"counts": [], "total": -25.0, "isTopResearch": false, "rank": 1365, "sp500_rank": 370}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 1, 1, 0, 2, 25, 51, 44, 1], "total": 125, "isTopResearch": false, "rank": 472, "sp500_rank": 209}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0.5, 0.0, 0, 12.5, 51.0, 44.0, 0], "total": 15.625, "isTopResearch": false, "rank": 393, "sp500_rank": 129}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606, "sp500_rank": 248}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561, "sp500_rank": 462}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 10, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606, "sp500_rank": 248}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 852, "rank": 382, "sp500_rank": 191}, "ai_jobs": {"counts": null, "total": 165, "rank": 257, "sp500_rank": 155}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2543, "country": "United States", "website": "https://www.whirlpoolcorp.com/", "crunchbase": {"text": "2b03a6cd-f28c-d9a9-62d4-b5579f476cf3", "url": "https://www.crunchbase.com/organization/whirlpool"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/whirlpool-corporation"], "stage": "Mature", "name": "Whirlpool Corp.", "patent_name": "whirlpool corp.", "continent": "North America", "local_logo": "whirlpool_corp.png", "aliases": "Whirlpool; Whirlpool Corporation", "permid_links": [{"text": 4295905337, "url": "https://permid.org/1-4295905337"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WHR", "url": "https://www.google.com/finance/quote/nyse:whr"}], "market_full": [{"text": "SAO:W1HR34", "url": "https://www.google.com/finance/quote/sao:w1hr34"}, {"text": "STU:WHR", "url": "https://www.google.com/finance/quote/stu:whr"}, {"text": "NYSE:WHR", "url": "https://www.google.com/finance/quote/nyse:whr"}, {"text": "ASE:WHR", "url": "https://www.google.com/finance/quote/ase:whr"}, {"text": "DEU:WHR", "url": "https://www.google.com/finance/quote/deu:whr"}, {"text": "MEX:WHR*", "url": "https://www.google.com/finance/quote/mex:whr*"}, {"text": "FRA:WHR", "url": "https://www.google.com/finance/quote/fra:whr"}, {"text": "MUN:WHR", "url": "https://www.google.com/finance/quote/mun:whr"}, {"text": "NYQ:WHR", "url": "https://www.google.com/finance/quote/nyq:whr"}, {"text": "MCX:WHR-RM", "url": "https://www.google.com/finance/quote/mcx:whr-rm"}, {"text": "BER:WHR", "url": "https://www.google.com/finance/quote/ber:whr"}, {"text": "DUS:WHR", "url": "https://www.google.com/finance/quote/dus:whr"}, {"text": "GER:WHRX", "url": "https://www.google.com/finance/quote/ger:whrx"}, {"text": "LSE:0LWH", "url": "https://www.google.com/finance/quote/0lwh:lse"}, {"text": "BRN:WHR", "url": "https://www.google.com/finance/quote/brn:whr"}, {"text": "HAN:WHR", "url": "https://www.google.com/finance/quote/han:whr"}], "crunchbase_description": "Whirlpool manufactures and markets major home appliances.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Haptic technology", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Business intelligence", "field_count": 1}], "clusters": [{"cluster_id": 7240, "cluster_count": 1}, {"cluster_id": 12026, "cluster_count": 1}, {"cluster_id": 6354, "cluster_count": 1}, {"cluster_id": 9894, "cluster_count": 1}, {"cluster_id": 36208, "cluster_count": 1}, {"cluster_id": 66637, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 1}, {"ref_CSET_id": 2543, "referenced_count": 1}, {"ref_CSET_id": 833, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 789, "referenced_count": 1}], "tasks": [{"referent": "cancer_diagnosis", "task_count": 2}, {"referent": "segmentation", "task_count": 2}, {"referent": "structured_prediction", "task_count": 1}, {"referent": "medical_image_analysis", "task_count": 1}, {"referent": "clustering", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "medical_image_segmentation", "task_count": 1}, {"referent": "synthetic_data_generation", "task_count": 1}, {"referent": "data_to_text_generation", "task_count": 1}, {"referent": "super_resolution", "task_count": 1}], "methods": [{"referent": "spectral_clustering", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "schnet", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "gan", "method_count": 1}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "high_resolution_input", "method_count": 1}, {"referent": "ctc_loss", "method_count": 1}, {"referent": "mckernel", "method_count": 1}, {"referent": "clustering", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [13, 17, 10, 6, 5, 8, 9, 6, 6, 6, 0], "total": 86, "isTopResearch": false, "rank": 536, "fortune500_rank": 199}, "ai_publications": {"counts": [2, 1, 0, 0, 0, 0, 1, 2, 0, 1, 0], "total": 7, "isTopResearch": false, "rank": 481, "fortune500_rank": 134}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 1, 2, 2, 1, 3, 6, 2, 23, 25, 1], "total": 67, "isTopResearch": false, "rank": 551, "fortune500_rank": 149}, "cv_pubs": {"counts": [2, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0], "total": 4, "isTopResearch": true, "rank": 313, "fortune500_rank": 84}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "fortune500_rank": 67}, "citations_per_article": {"counts": [0.5, 1.0, 0, 0, 0, 0, 6.0, 1.0, 0, 25.0, 0], "total": 9.571428571428571, "isTopResearch": false, "rank": 557, "fortune500_rank": 162}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 852, "rank": 382, "fortune500_rank": 211}, "ai_jobs": {"counts": null, "total": 90, "rank": 358, "fortune500_rank": 192}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "The Whirlpool Corporation is a multinational manufacturer and marketer of home appliances, headquartered in Benton Charter Township, Michigan, United States. The Fortune 500 company has annual revenue of approximately $21 billion, 92,000 employees, and more than 70 manufacturing and technology research centers around the world. Fewer than 10% of its employees are based in the United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Whirlpool_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 706, "country": "United States", "website": "https://www.nortonlifelock.com/", "crunchbase": {"text": "7d0e20ae-fec0-f3ba-0298-84511477ed22", "url": "https://www.crunchbase.com/organization/symantec"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nortonlifelock"], "stage": "Mature", "name": "NortonLifeLock", "patent_name": "nortonlifelock", "continent": "North America", "local_logo": "nortonlifelock.png", "aliases": "Hcl Technologies; Norton Lifelock; NortonLifeLock Inc; Symantec Corp; Symantec Corporation", "permid_links": [{"text": 4295908065, "url": "https://permid.org/1-4295908065"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:GEN", "url": "https://www.google.com/finance/quote/GEN:nasdaq"}], "market_full": [{"text": "NASDAQ:GEN", "url": "https://www.google.com/finance/quote/GEN:nasdaq"}], "crunchbase_description": "NortonLifeLock provides security, storage, and systems management solutions that help consumers secure and manage their information.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Cluster analysis", "field_count": 7}, {"field_name": "Machine translation", "field_count": 6}, {"field_name": "Anomaly detection", "field_count": 4}, {"field_name": "Parsing", "field_count": 2}, {"field_name": "Prognostics", "field_count": 2}, {"field_name": "Nearest neighbor search", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Syntax (programming languages)", "field_count": 1}, {"field_name": "Mixture model", "field_count": 1}], "clusters": [{"cluster_id": 16824, "cluster_count": 7}, {"cluster_id": 1989, "cluster_count": 3}, {"cluster_id": 23378, "cluster_count": 3}, {"cluster_id": 2891, "cluster_count": 3}, {"cluster_id": 3064, "cluster_count": 3}, {"cluster_id": 1149, "cluster_count": 2}, {"cluster_id": 6843, "cluster_count": 2}, {"cluster_id": 1098, "cluster_count": 2}, {"cluster_id": 2381, "cluster_count": 2}, {"cluster_id": 57485, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 59}, {"ref_CSET_id": 706, "referenced_count": 37}, {"ref_CSET_id": 163, "referenced_count": 26}, {"ref_CSET_id": 115, "referenced_count": 17}, {"ref_CSET_id": 87, "referenced_count": 14}, {"ref_CSET_id": 792, "referenced_count": 9}, {"ref_CSET_id": 127, "referenced_count": 6}, {"ref_CSET_id": 1797, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 4}, {"ref_CSET_id": 805, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 11}, {"referent": "machine_translation", "task_count": 7}, {"referent": "image_quality_estimation", "task_count": 6}, {"referent": "malware_classification", "task_count": 6}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "clustering", "task_count": 6}, {"referent": "translation", "task_count": 5}, {"referent": "automatic_post_editing", "task_count": 4}, {"referent": "adversarial", "task_count": 4}, {"referent": "intrusion_detection", "task_count": 3}], "methods": [{"referent": "auto_classifier", "method_count": 6}, {"referent": "clustering", "method_count": 6}, {"referent": "meta_learning_algorithms", "method_count": 5}, {"referent": "semi_supervised_learning_methods", "method_count": 4}, {"referent": "optimization", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "ggs_nns", "method_count": 4}, {"referent": "vqa_models", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "mad_learning", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [23, 46, 54, 45, 30, 27, 35, 23, 10, 5, 0], "total": 298, "isTopResearch": false, "rank": 359, "fortune500_rank": 137}, "ai_publications": {"counts": [4, 12, 6, 9, 8, 6, 10, 4, 3, 0, 0], "total": 62, "isTopResearch": false, "rank": 160, "fortune500_rank": 52}, "ai_publications_growth": {"counts": [], "total": -61.666666666666664, "isTopResearch": false, "rank": 1515, "fortune500_rank": 433}, "ai_pubs_top_conf": {"counts": [0, 1, 1, 2, 2, 3, 0, 3, 0, 0, 0], "total": 12, "isTopResearch": false, "rank": 104, "fortune500_rank": 36}, "citation_counts": {"counts": [19, 26, 46, 61, 85, 138, 210, 292, 288, 199, 9], "total": 1373, "isTopResearch": false, "rank": 168, "fortune500_rank": 51}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [3, 6, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 11, "isTopResearch": true, "rank": 87, "fortune500_rank": 24}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [4.75, 2.1666666666666665, 7.666666666666667, 6.777777777777778, 10.625, 23.0, 21.0, 73.0, 96.0, 0, 0], "total": 22.14516129032258, "isTopResearch": false, "rank": 275, "fortune500_rank": 88}}, "patents": {"ai_patents": {"counts": [4, 0, 7, 10, 10, 15, 5, 0, 1, 0, 0], "total": 52, "table": null, "rank": 216, "fortune500_rank": 68}, "ai_patents_growth": {"counts": [], "total": -38.88888888888889, "table": null, "rank": 1502, "fortune500_rank": 436}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [40, 0, 70, 100, 100, 150, 50, 0, 10, 0, 0], "total": 520, "table": null, "rank": 216, "fortune500_rank": 68}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [2, 0, 4, 5, 4, 8, 4, 0, 0, 0, 0], "total": 27, "table": "industry", "rank": 43, "fortune500_rank": 19}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [4, 0, 6, 7, 5, 9, 4, 0, 0, 0, 0], "total": 35, "table": "industry", "rank": 140, "fortune500_rank": 50}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [2, 0, 4, 6, 5, 13, 3, 0, 1, 0, 0], "total": 34, "table": "industry", "rank": 98, "fortune500_rank": 41}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 1, 0, 2, 1, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 848, "rank": 384, "fortune500_rank": 212}, "ai_jobs": {"counts": null, "total": 33, "rank": 569, "fortune500_rank": 292}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "NortonLifeLock Inc. is an American software company headquartered in Tempe, Arizona, United States. The company provides cybersecurity software and services. NortonLifeLock is a Fortune 500 company and a member of the S&P 500 stock-market index. The company also has development centers in Pune, Chennai and Bangalore.", "wikipedia_link": "https://en.wikipedia.org/wiki/NortonLifeLock", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 802, "country": "United States", "website": "http://www.maxar.com/", "crunchbase": {"text": "d61dfbad-3e26-d21e-f413-1801f94fdf37", "url": "https://www.crunchbase.com/organization/macdonald-dettwiler-and-associates"}, "child_crunchbase": [{"text": "1fb5f296-48eb-88fa-d2fe-a2aa7b53ae38", "url": "https://www.crunchbase.com/organization/the-radiant-group"}], "linkedin": ["https://www.linkedin.com/company/maxar-technologies-ltd", "https://www.linkedin.com/company/radiant-solutions"], "stage": "Mature", "name": "Maxar Technologies", "patent_name": "maxar technologies", "continent": "North America", "local_logo": "maxar_technologies.png", "aliases": "Dettwiler And Associates; Macdonald, Dettwiler And Associates", "permid_links": [{"text": 5067485478, "url": "https://permid.org/1-5067485478"}, {"text": 5064759123, "url": "https://permid.org/1-5064759123"}], "parent_info": null, "agg_child_info": "Radiant Solutions", "unagg_child_info": null, "market_filt": [{"text": "NYSE:MAXR", "url": "https://www.google.com/finance/quote/maxr:nyse"}], "market_full": [{"text": "TSX:MAXR", "url": "https://www.google.com/finance/quote/maxr:tsx"}, {"text": "NYSE:MAXR", "url": "https://www.google.com/finance/quote/maxr:nyse"}, {"text": "NEO:MAXR", "url": "https://www.google.com/finance/quote/maxr:neo"}], "crunchbase_description": "Makar Technologies provides electronics manufacturing services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 3}, {"field_name": "Decision support system", "field_count": 2}, {"field_name": "Robotic arm", "field_count": 2}, {"field_name": "Video processing", "field_count": 1}, {"field_name": "Orientation (computer vision)", "field_count": 1}, {"field_name": "Synthetic aperture radar", "field_count": 1}, {"field_name": "Multispectral image", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 9689, "cluster_count": 2}, {"cluster_id": 9134, "cluster_count": 2}, {"cluster_id": 75288, "cluster_count": 1}, {"cluster_id": 2006, "cluster_count": 1}, {"cluster_id": 10382, "cluster_count": 1}, {"cluster_id": 25647, "cluster_count": 1}, {"cluster_id": 39641, "cluster_count": 1}, {"cluster_id": 4438, "cluster_count": 1}, {"cluster_id": 82040, "cluster_count": 1}, {"cluster_id": 468, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 2601, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 336, "referenced_count": 1}, {"ref_CSET_id": 133, "referenced_count": 1}, {"ref_CSET_id": 205, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}], "tasks": [{"referent": "image_processing", "task_count": 4}, {"referent": "robots", "task_count": 3}, {"referent": "motion_planning", "task_count": 3}, {"referent": "obstacle_detection", "task_count": 2}, {"referent": "video_surveillance", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "image_restoration", "task_count": 1}, {"referent": "patch_matching", "task_count": 1}, {"referent": "clustering_algorithms_evaluation", "task_count": 1}], "methods": [{"referent": "neural_architecture_search", "method_count": 2}, {"referent": "dueling_network", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "proposal_filtering", "method_count": 1}, {"referent": "downsampling", "method_count": 1}, {"referent": "context2vec", "method_count": 1}, {"referent": "visual_attention", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "mask_r_cnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [6, 4, 10, 5, 5, 12, 8, 14, 21, 7, 0], "total": 92, "isTopResearch": false, "rank": 523}, "ai_publications": {"counts": [1, 0, 0, 0, 2, 3, 1, 6, 4, 0, 0], "total": 17, "isTopResearch": false, "rank": 330}, "ai_publications_growth": {"counts": [], "total": 122.22222222222223, "isTopResearch": false, "rank": 14}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [8, 10, 5, 5, 3, 7, 9, 29, 52, 74, 2], "total": 204, "isTopResearch": false, "rank": 387}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0], "total": 5, "isTopResearch": true, "rank": 287}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 2, 2, 0, 3, 2, 0, 0], "total": 9, "isTopResearch": true, "rank": 124}, "citations_per_article": {"counts": [8.0, 0, 0, 0, 1.5, 2.3333333333333335, 9.0, 4.833333333333333, 13.0, 0, 0], "total": 12.0, "isTopResearch": false, "rank": 470}}, "patents": {"ai_patents": {"counts": [1, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 0, 10, 0, 10, 20, 0, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [1, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 318}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 845, "rank": 385}, "ai_jobs": {"counts": null, "total": 90, "rank": 358}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Maxar Technologies is a space technology company headquartered in Westminster, Colorado, United States, specializing in manufacturing communication, Earth observation, radar, and on-orbit servicing satellites, satellite products, and related services. DigitalGlobe and MDA Holdings Company merged to become Maxar Technologies on October 5, 2017. Maxar Technologies is the parent holding company of Space Systems Loral, headquartered in Palo Alto, California, US; DigitalGlobe, headquartered in Westminster, Colorado, US; and Radiant Solutions, headquartered in Herndon, Virginia, US. Maxar Technologies is dual-listed on the Toronto Stock Exchange and New York Stock Exchange as MAXR.", "wikipedia_link": "https://en.wikipedia.org/wiki/Maxar_Technologies", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2332, "country": "United States", "website": "http://www.franklinresources.com/", "crunchbase": {"text": "dd4d6e6e-f672-7417-b927-5762c28eee93", "url": "https://www.crunchbase.com/organization/franklin-resources"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/franklin-templeton"], "stage": "Mature", "name": "Franklin Resources", "patent_name": "franklin resources", "continent": "North America", "local_logo": "franklin_resources.png", "aliases": "Franklin Resources, Inc; Franklin Templeton; Franklin Templeton Investments", "permid_links": [{"text": 4295904023, "url": "https://permid.org/1-4295904023"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:BEN", "url": "https://www.google.com/finance/quote/ben:nasdaq"}, {"text": "NYSE:BEN", "url": "https://www.google.com/finance/quote/ben:nyse"}], "market_full": [{"text": "DUS:FRK", "url": "https://www.google.com/finance/quote/dus:frk"}, {"text": "BER:FRK", "url": "https://www.google.com/finance/quote/ber:frk"}, {"text": "ASE:BEN", "url": "https://www.google.com/finance/quote/ase:ben"}, {"text": "FRA:FRK", "url": "https://www.google.com/finance/quote/fra:frk"}, {"text": "MOEX:BEN-RM", "url": "https://www.google.com/finance/quote/ben-rm:moex"}, {"text": "DEU:BEN", "url": "https://www.google.com/finance/quote/ben:deu"}, {"text": "GER:FRKX", "url": "https://www.google.com/finance/quote/frkx:ger"}, {"text": "LSE:0RT6", "url": "https://www.google.com/finance/quote/0rt6:lse"}, {"text": "NASDAQ:BEN", "url": "https://www.google.com/finance/quote/ben:nasdaq"}, {"text": "NYSE:BEN", "url": "https://www.google.com/finance/quote/ben:nyse"}, {"text": "MEX:BEN*", "url": "https://www.google.com/finance/quote/ben*:mex"}, {"text": "STU:FRK", "url": "https://www.google.com/finance/quote/frk:stu"}, {"text": "SAO:F1RA34", "url": "https://www.google.com/finance/quote/f1ra34:sao"}, {"text": "BRN:FRK", "url": "https://www.google.com/finance/quote/brn:frk"}, {"text": "MUN:FRK", "url": "https://www.google.com/finance/quote/frk:mun"}], "crunchbase_description": "Franklin Resources is a global investment management organization known as Franklin Templeton Investments.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 3, 0, 1, 3, 2, 1, 2, 5, 3, 0], "total": 21, "isTopResearch": false, "rank": 797, "fortune500_rank": 284}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 836, "rank": 386, "fortune500_rank": 213}, "ai_jobs": {"counts": null, "total": 113, "rank": 317, "fortune500_rank": 173}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Franklin Resources Inc. is an American multinational holding company that, together with its subsidiaries, is referred to as Franklin Templeton; it is a global investment firm founded in New York City in 1947 as Franklin Distributors, Inc. It is listed on the New York Stock Exchange under the ticker symbol BEN, in honor of Benjamin Franklin, for whom the company is named, and who was admired by founder Rupert Johnson, Sr. In 1973 the company's headquarters moved from New York to San Mateo, California. As of October 12, 2020, Franklin Templeton held US$1.4 trillion in assets under management (AUM) on behalf of private, professional and institutional investors.", "wikipedia_link": "https://en.wikipedia.org/wiki/Franklin_Templeton_Investments", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2117, "country": "United States", "website": "https://www.arrow.com/", "crunchbase": {"text": " afdb0b0c-60e2-4c97-83bc-f01554321cb4", "url": " https://www.crunchbase.com/organization/arrow-electronics-1cb4"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/arrow-electronics"], "stage": "Mature", "name": "Arrow Electronics", "patent_name": "Arrow Electronics", "continent": "North America", "local_logo": null, "aliases": "Arrow Electronics; Arrow Electronics, Inc", "permid_links": [{"text": 4295903472, "url": "https://permid.org/1-4295903472"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ARW", "url": "https://www.google.com/finance/quote/ARW:NYSE"}], "market_full": [{"text": "BRN:ARW", "url": "https://www.google.com/finance/quote/ARW:BRN"}, {"text": "NYQ:ARW", "url": "https://www.google.com/finance/quote/ARW:NYQ"}, {"text": "DUS:ARW", "url": "https://www.google.com/finance/quote/ARW:DUS"}, {"text": "MUN:ARW", "url": "https://www.google.com/finance/quote/ARW:MUN"}, {"text": "ASE:ARW", "url": "https://www.google.com/finance/quote/ARW:ASE"}, {"text": "DEU:ARW", "url": "https://www.google.com/finance/quote/ARW:DEU"}, {"text": "LSE:0HI1", "url": "https://www.google.com/finance/quote/0HI1:LSE"}, {"text": "NYSE:ARW", "url": "https://www.google.com/finance/quote/ARW:NYSE"}, {"text": "FRA:ARW", "url": "https://www.google.com/finance/quote/ARW:FRA"}, {"text": "SAO:A2RW34", "url": "https://www.google.com/finance/quote/A2RW34:SAO"}, {"text": "GER:ARWX", "url": "https://www.google.com/finance/quote/ARWX:GER"}, {"text": "BER:ARW", "url": "https://www.google.com/finance/quote/ARW:BER"}, {"text": "STU:ARW", "url": "https://www.google.com/finance/quote/ARW:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 1, 1, 0, 0, 1, 2, 3, 0], "total": 9, "isTopResearch": false, "rank": 958, "sp500_rank": 397}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 835, "rank": 387, "sp500_rank": 192}, "ai_jobs": {"counts": null, "total": 62, "rank": 435, "sp500_rank": 220}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 2029, "country": "United States", "website": "https://www.conocophillips.com/", "crunchbase": {"text": " 1392e925-a0dd-9e06-2171-a4339ba626b1", "url": " https://www.crunchbase.com/organization/conocophillips"}, "child_crunchbase": [{"text": "bb713142-27e0-c015-2a39-13e9f5e029a1", "url": "https://www.crunchbase.com/organization/concho-resources"}], "linkedin": ["https://www.linkedin.com/company/conocophillips", "https://www.linkedin.com/company/concho-resources"], "stage": "Mature", "name": "Conocophillips", "patent_name": "ConocoPhillips", "continent": "North America", "local_logo": null, "aliases": "ConocoPhillips; Phillips 66; Phillips Petroleum Company", "permid_links": [{"text": 4295903051, "url": "https://permid.org/1-4295903051"}, {"text": 4298010027, "url": "https://permid.org/1-4298010027"}], "parent_info": null, "agg_child_info": "Concho Resources", "unagg_child_info": null, "market_filt": [{"text": "NYSE:COP", "url": "https://www.google.com/finance/quote/COP:NYSE"}], "market_full": [{"text": "NYQ:COP", "url": "https://www.google.com/finance/quote/COP:NYQ"}, {"text": "LSE:0QZA", "url": "https://www.google.com/finance/quote/0QZA:LSE"}, {"text": "MEX:COP*", "url": "https://www.google.com/finance/quote/COP*:MEX"}, {"text": "NYSE:COP", "url": "https://www.google.com/finance/quote/COP:NYSE"}, {"text": "HAN:YCP", "url": "https://www.google.com/finance/quote/HAN:YCP"}, {"text": "BRN:YCP", "url": "https://www.google.com/finance/quote/BRN:YCP"}, {"text": "DUS:YCP", "url": "https://www.google.com/finance/quote/DUS:YCP"}, {"text": "HAM:YCP", "url": "https://www.google.com/finance/quote/HAM:YCP"}, {"text": "FRA:YCP", "url": "https://www.google.com/finance/quote/FRA:YCP"}, {"text": "DEU:COP", "url": "https://www.google.com/finance/quote/COP:DEU"}, {"text": "GER:YCPX", "url": "https://www.google.com/finance/quote/GER:YCPX"}, {"text": "BER:YCP", "url": "https://www.google.com/finance/quote/BER:YCP"}, {"text": "MUN:YCP", "url": "https://www.google.com/finance/quote/MUN:YCP"}, {"text": "SWX:COP", "url": "https://www.google.com/finance/quote/COP:SWX"}, {"text": "VIE:COPH", "url": "https://www.google.com/finance/quote/COPH:VIE"}, {"text": "SAO:COPH34", "url": "https://www.google.com/finance/quote/COPH34:SAO"}, {"text": "ASE:COP", "url": "https://www.google.com/finance/quote/ASE:COP"}, {"text": "STU:YCP", "url": "https://www.google.com/finance/quote/STU:YCP"}, {"text": "MCX:COP-RM", "url": "https://www.google.com/finance/quote/COP-RM:MCX"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Kernel (image processing)", "field_count": 1}, {"field_name": "Sparse approximation", "field_count": 1}, {"field_name": "Noise reduction", "field_count": 1}], "clusters": [{"cluster_id": 9045, "cluster_count": 2}, {"cluster_id": 59819, "cluster_count": 2}, {"cluster_id": 7515, "cluster_count": 2}, {"cluster_id": 38533, "cluster_count": 2}, {"cluster_id": 5990, "cluster_count": 2}, {"cluster_id": 53446, "cluster_count": 1}, {"cluster_id": 22609, "cluster_count": 1}, {"cluster_id": 45883, "cluster_count": 1}, {"cluster_id": 25152, "cluster_count": 1}, {"cluster_id": 1297, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2029, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 682, "referenced_count": 1}], "tasks": [{"referent": "seismic_analysis", "task_count": 4}, {"referent": "image_restoration", "task_count": 3}, {"referent": "image_processing", "task_count": 3}, {"referent": "motion_planning", "task_count": 2}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "sensor_modeling", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "6d_pose_estimation", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}, {"referent": "remote_sensing", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "optimization", "method_count": 2}, {"referent": "dnas", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "sabn", "method_count": 1}, {"referent": "reduction_a", "method_count": 1}, {"referent": "gravity", "method_count": 1}, {"referent": "use", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [182, 193, 141, 106, 103, 110, 112, 90, 69, 32, 1], "total": 1139, "isTopResearch": false, "rank": 180, "fortune500_rank": 68}, "ai_publications": {"counts": [5, 0, 4, 2, 1, 1, 3, 0, 0, 0, 0], "total": 16, "isTopResearch": false, "rank": 341, "fortune500_rank": 103}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [8, 25, 25, 26, 43, 28, 40, 70, 66, 59, 0], "total": 390, "isTopResearch": false, "rank": 298, "fortune500_rank": 88}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [1.6, 0, 6.25, 13.0, 43.0, 28.0, 13.333333333333334, 0, 0, 0, 0], "total": 24.375, "isTopResearch": false, "rank": 249, "fortune500_rank": 80}}, "patents": {"ai_patents": {"counts": [1, 2, 2, 0, 0, 2, 3, 0, 0, 0, 0], "total": 10, "table": null, "rank": 413, "fortune500_rank": 130}, "ai_patents_growth": {"counts": [], "total": -25.0, "table": null, "rank": 1469, "fortune500_rank": 423}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 20, 20, 0, 0, 20, 30, 0, 0, 0, 0], "total": 100, "table": null, "rank": 413, "fortune500_rank": 130}, "Physical_Sciences_and_Engineering": {"counts": [1, 1, 2, 0, 0, 1, 2, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 64, "fortune500_rank": 22}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 61, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 2, 1, 0, 0, 0, 2, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 336, "fortune500_rank": 117}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 1, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 189, "fortune500_rank": 62}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 827, "rank": 388, "fortune500_rank": 214}, "ai_jobs": {"counts": null, "total": 110, "rank": 321, "fortune500_rank": 175}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 711, "country": "France", "website": "https://www.technicolor.com/", "crunchbase": {"text": "eb7fd76c-cf5a-7ada-9a88-8d9f9a44580c", "url": "https://www.crunchbase.com/organization/technicolor"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/technicolor"], "stage": "Mature", "name": "Technicolor", "patent_name": "technicolor", "continent": "Europe", "local_logo": "technicolor.png", "aliases": "Technicolor Sa; Thomson Multimedia; Thomson Sarl", "permid_links": [{"text": 4295868255, "url": "https://permid.org/1-4295868255"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MUN:TNM2", "url": "https://www.google.com/finance/quote/mun:tnm2"}, {"text": "DUS:TNM2", "url": "https://www.google.com/finance/quote/dus:tnm2"}, {"text": "BER:TNM2", "url": "https://www.google.com/finance/quote/ber:tnm2"}, {"text": "EPA:TCH", "url": "https://www.google.com/finance/quote/epa:tch"}, {"text": "OTC:THNRF", "url": "https://www.google.com/finance/quote/otc:thnrf"}, {"text": "FWB:TNM2", "url": "https://www.google.com/finance/quote/fwb:tnm2"}, {"text": "LSE:0MV8", "url": "https://www.google.com/finance/quote/0mv8:lse"}], "crunchbase_description": "Technicolor is a global entertainment services company.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Source separation", "field_count": 15}, {"field_name": "Motion estimation", "field_count": 7}, {"field_name": "Segmentation", "field_count": 6}, {"field_name": "Recommender system", "field_count": 6}, {"field_name": "Face (geometry)", "field_count": 5}, {"field_name": "Light field", "field_count": 5}, {"field_name": "Video editing", "field_count": 5}, {"field_name": "Robustness (computer science)", "field_count": 5}, {"field_name": "Motion compensation", "field_count": 4}, {"field_name": "Mixture model", "field_count": 4}], "clusters": [{"cluster_id": 3240, "cluster_count": 18}, {"cluster_id": 12976, "cluster_count": 9}, {"cluster_id": 2353, "cluster_count": 9}, {"cluster_id": 5808, "cluster_count": 8}, {"cluster_id": 1206, "cluster_count": 7}, {"cluster_id": 51360, "cluster_count": 7}, {"cluster_id": 32923, "cluster_count": 7}, {"cluster_id": 2479, "cluster_count": 7}, {"cluster_id": 2891, "cluster_count": 6}, {"cluster_id": 65, "cluster_count": 6}], "company_references": [{"ref_CSET_id": 711, "referenced_count": 215}, {"ref_CSET_id": 163, "referenced_count": 139}, {"ref_CSET_id": 6, "referenced_count": 121}, {"ref_CSET_id": 101, "referenced_count": 88}, {"ref_CSET_id": 787, "referenced_count": 39}, {"ref_CSET_id": 3131, "referenced_count": 28}, {"ref_CSET_id": 792, "referenced_count": 19}, {"ref_CSET_id": 1383, "referenced_count": 19}, {"ref_CSET_id": 127, "referenced_count": 17}, {"ref_CSET_id": 87, "referenced_count": 16}], "tasks": [{"referent": "classification", "task_count": 28}, {"referent": "audio_source_separation", "task_count": 15}, {"referent": "image_processing", "task_count": 12}, {"referent": "source_separation", "task_count": 11}, {"referent": "disparity_estimation", "task_count": 10}, {"referent": "image_analysis", "task_count": 8}, {"referent": "recommendation", "task_count": 7}, {"referent": "image_restoration", "task_count": 7}, {"referent": "video_compression", "task_count": 7}, {"referent": "bird_view_synthesis", "task_count": 7}], "methods": [{"referent": "vqa_models", "method_count": 16}, {"referent": "3d_representations", "method_count": 15}, {"referent": "double_q_learning", "method_count": 13}, {"referent": "q_learning", "method_count": 9}, {"referent": "convolutional_neural_networks", "method_count": 9}, {"referent": "value_function_estimation", "method_count": 7}, {"referent": "auto_classifier", "method_count": 7}, {"referent": "self_supervised_learning", "method_count": 7}, {"referent": "metrix", "method_count": 6}, {"referent": "3d_reconstruction", "method_count": 6}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [135, 121, 77, 104, 69, 63, 30, 5, 3, 0, 0], "total": 607, "isTopResearch": false, "rank": 249}, "ai_publications": {"counts": [45, 45, 30, 36, 29, 26, 10, 3, 1, 0, 0], "total": 225, "isTopResearch": false, "rank": 75}, "ai_publications_growth": {"counts": [], "total": -78.8888888888889, "isTopResearch": false, "rank": 1539}, "ai_pubs_top_conf": {"counts": [2, 4, 5, 9, 4, 3, 3, 2, 0, 0, 0], "total": 32, "isTopResearch": false, "rank": 55}, "citation_counts": {"counts": [224, 398, 581, 695, 777, 865, 967, 993, 973, 578, 22], "total": 7073, "isTopResearch": false, "rank": 62}, "cv_pubs": {"counts": [27, 32, 21, 24, 15, 18, 5, 3, 1, 0, 0], "total": 146, "isTopResearch": true, "rank": 38}, "nlp_pubs": {"counts": [0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [1, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 187}, "citations_per_article": {"counts": [4.977777777777778, 8.844444444444445, 19.366666666666667, 19.305555555555557, 26.79310344827586, 33.26923076923077, 96.7, 331.0, 973.0, 0, 0], "total": 31.435555555555556, "isTopResearch": false, "rank": 183}}, "patents": {"ai_patents": {"counts": [10, 18, 16, 5, 10, 1, 1, 1, 0, 0, 0], "total": 62, "table": null, "rank": 202}, "ai_patents_growth": {"counts": [], "total": -30.0, "table": null, "rank": 1485}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [100, 180, 160, 50, 100, 10, 10, 10, 0, 0, 0], "total": 620, "table": null, "rank": 202}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [1, 3, 4, 1, 0, 0, 0, 0, 0, 0, 0], "total": 9, "table": "industry", "rank": 89}, "Security__eg_cybersecurity": {"counts": [2, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [6, 9, 5, 1, 2, 1, 0, 1, 0, 0, 0], "total": 25, "table": "industry", "rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [5, 7, 1, 1, 8, 1, 1, 0, 0, 0, 0], "total": 24, "table": "industry", "rank": 124}, "Networks__eg_social_IOT_etc": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [3, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 233}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 75}, "Speech_Processing": {"counts": [0, 1, 0, 2, 2, 0, 0, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 117}, "Knowledge_Representation": {"counts": [0, 2, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 137}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298}, "Control": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [4, 7, 7, 2, 4, 0, 1, 0, 0, 0, 0], "total": 25, "table": "application", "rank": 168}, "Analytics_and_Algorithms": {"counts": [2, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 160}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 823, "rank": 389}, "ai_jobs": {"counts": null, "total": 21, "rank": 683}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "From the beginning, our focus on constantly improving the tools and technologies of our industry, and the experiences we create, has redefined what\u2019s possible for storytellers and audiences across the globe.\nThrough perpetual innovation, we create the tools and technologies that enable our clients to achieve their creative visions in ever more efficient and effective ways.\nBy uniting the latest technologies with our industry-leading creativity, we deliver innovative experiences that connect with audiences on an emotional level \u2013 whether delivered at home, in theaters or out in the world.", "company_site_link": "https://www.technicolor.com/Dream/Who-We-Are", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2387, "country": "United States", "website": "https://corporate.kohls.com/", "crunchbase": {"text": "fa4d9173-493b-f3d0-b343-c7e884aff7ad", "url": "https://www.crunchbase.com/organization/kohl-s"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kohls-department-stores"], "stage": "Mature", "name": "Kohl's Corp.", "patent_name": "kohl's corp.", "continent": "North America", "local_logo": "kohl's_corp.png", "aliases": "Kohl\u2019S; Kohl\u2019S Corporation", "permid_links": [{"text": 4295904377, "url": "https://permid.org/1-4295904377"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:KSS", "url": "https://www.google.com/finance/quote/kss:nyse"}], "market_full": [{"text": "SAO:K1SS34", "url": "https://www.google.com/finance/quote/k1ss34:sao"}, {"text": "MEX:KSS*", "url": "https://www.google.com/finance/quote/kss*:mex"}, {"text": "ASE:KSS", "url": "https://www.google.com/finance/quote/ase:kss"}, {"text": "NYSE:KSS", "url": "https://www.google.com/finance/quote/kss:nyse"}, {"text": "BRN:KHP", "url": "https://www.google.com/finance/quote/brn:khp"}, {"text": "DUS:KHP", "url": "https://www.google.com/finance/quote/dus:khp"}, {"text": "FRA:KHP", "url": "https://www.google.com/finance/quote/fra:khp"}, {"text": "DEU:KSS", "url": "https://www.google.com/finance/quote/deu:kss"}, {"text": "STU:KHP", "url": "https://www.google.com/finance/quote/khp:stu"}, {"text": "LSE:0JRL", "url": "https://www.google.com/finance/quote/0jrl:lse"}, {"text": "NYQ:KSS", "url": "https://www.google.com/finance/quote/kss:nyq"}, {"text": "MUN:KHP", "url": "https://www.google.com/finance/quote/khp:mun"}], "crunchbase_description": "Kohl\u2019s Corporation (Kohl\u2019s) operate family-oriented department stores that sell apparel, footwear and accessories", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 819, "rank": 390, "fortune500_rank": 215}, "ai_jobs": {"counts": null, "total": 77, "rank": 388, "fortune500_rank": 205}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "Kohl's is an American department store retail chain, operated by Kohl's Corporation. As of February 2013 it is the largest department store chain in the United States, with 1,158 locations, operating stores in every U.S. state except Hawaii. The company was founded by Polish immigrant Maxwell Kohl, who opened a corner grocery store in Milwaukee, Wisconsin in 1927. It went on to become a successful chain in the local area, and in 1962 the company branched out by opening its first department store. British American Tobacco Company took a controlling interest in the company in 1972 while still managed by the Kohl Family, and in 1979, the corporation was sold to BATUS Inc. A group of investors purchased the company in 1986 from British American Tobac", "wikipedia_link": "https://en.wikipedia.org/wiki/Kohl%27s", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2042, "country": "Brazil", "website": "http://www.vale.com/", "crunchbase": {"text": "957e9171-26a7-d9ce-de9e-c2634ec46f2c", "url": "https://www.crunchbase.com/organization/vale"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vale"], "stage": "Mature", "name": "Vale", "patent_name": "Vale", "continent": "South America", "local_logo": "vale.png", "aliases": "Companhia Vale Do Rio Doce; Vale; Vale S.A", "permid_links": [{"text": 4295859761, "url": "https://permid.org/1-4295859761"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:VALE", "url": "https://www.google.com/finance/quote/NYSE:VALE"}], "market_full": [{"text": "DEU:VALE3", "url": "https://www.google.com/finance/quote/DEU:VALE3"}, {"text": "NYSE:VALE", "url": "https://www.google.com/finance/quote/NYSE:VALE"}, {"text": "BER:CVLC", "url": "https://www.google.com/finance/quote/BER:CVLC"}, {"text": "FRA:CVLC", "url": "https://www.google.com/finance/quote/CVLC:FRA"}, {"text": "BUE:VALE3", "url": "https://www.google.com/finance/quote/BUE:VALE3"}, {"text": "DUS:CVLB", "url": "https://www.google.com/finance/quote/CVLB:DUS"}, {"text": "MEX:VALEN", "url": "https://www.google.com/finance/quote/MEX:VALEN"}, {"text": "BER:CVLB", "url": "https://www.google.com/finance/quote/BER:CVLB"}, {"text": "HAM:CVLB", "url": "https://www.google.com/finance/quote/CVLB:HAM"}, {"text": "HAM:CVLC", "url": "https://www.google.com/finance/quote/CVLC:HAM"}, {"text": "NYQ:VALE", "url": "https://www.google.com/finance/quote/NYQ:VALE"}, {"text": "HAN:CVLC", "url": "https://www.google.com/finance/quote/CVLC:HAN"}, {"text": "LSE:0LBF", "url": "https://www.google.com/finance/quote/0LBF:LSE"}, {"text": "STU:CVLC", "url": "https://www.google.com/finance/quote/CVLC:STU"}, {"text": "MUN:CVLC", "url": "https://www.google.com/finance/quote/CVLC:MUN"}, {"text": "SAO:VALE3", "url": "https://www.google.com/finance/quote/SAO:VALE3"}, {"text": "DUS:CVLC", "url": "https://www.google.com/finance/quote/CVLC:DUS"}, {"text": "MUN:CVLB", "url": "https://www.google.com/finance/quote/CVLB:MUN"}, {"text": "HAN:CVLB", "url": "https://www.google.com/finance/quote/CVLB:HAN"}, {"text": "STU:CVLB", "url": "https://www.google.com/finance/quote/CVLB:STU"}, {"text": "DEU:CVLB", "url": "https://www.google.com/finance/quote/CVLB:DEU"}, {"text": "LAT:XVALO", "url": "https://www.google.com/finance/quote/LAT:XVALO"}, {"text": "FRA:CVLB", "url": "https://www.google.com/finance/quote/CVLB:FRA"}], "crunchbase_description": "Vale is a global natural resources company.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Anomaly detection", "field_count": 2}, {"field_name": "Fuzzy logic", "field_count": 1}, {"field_name": "Haptic technology", "field_count": 1}, {"field_name": "Interpretability", "field_count": 1}, {"field_name": "Six degrees of freedom", "field_count": 1}, {"field_name": "Robotic arm", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "False positive paradox", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 176, "cluster_count": 1}, {"cluster_id": 14142, "cluster_count": 1}, {"cluster_id": 13081, "cluster_count": 1}, {"cluster_id": 33185, "cluster_count": 1}, {"cluster_id": 50769, "cluster_count": 1}, {"cluster_id": 60096, "cluster_count": 1}, {"cluster_id": 35083, "cluster_count": 1}, {"cluster_id": 36218, "cluster_count": 1}, {"cluster_id": 44849, "cluster_count": 1}, {"cluster_id": 31220, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 13}, {"ref_CSET_id": 2042, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 1828, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 1860, "referenced_count": 2}, {"ref_CSET_id": 3131, "referenced_count": 2}, {"ref_CSET_id": 798, "referenced_count": 2}, {"ref_CSET_id": 734, "referenced_count": 1}], "tasks": [{"referent": "fault_detection", "task_count": 4}, {"referent": "anomaly_detection", "task_count": 3}, {"referent": "classification", "task_count": 3}, {"referent": "robots", "task_count": 2}, {"referent": "mobile_robot", "task_count": 2}, {"referent": "calibration_for_link_prediction", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "human_robot_interaction", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "system_identification", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "autoencoder", "method_count": 3}, {"referent": "wgan_gp", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "contrastive_predictive_coding", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "semi_supervised_learning_methods", "method_count": 2}, {"referent": "hit_detector", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [24, 33, 25, 46, 26, 43, 58, 59, 71, 29, 3], "total": 417, "isTopResearch": false, "rank": 300, "sp500_rank": 197}, "ai_publications": {"counts": [0, 1, 1, 2, 0, 1, 7, 5, 5, 1, 0], "total": 23, "isTopResearch": false, "rank": 280, "sp500_rank": 163}, "ai_publications_growth": {"counts": [], "total": -36.19047619047619, "isTopResearch": false, "rank": 1417, "sp500_rank": 391}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 1, 0, 4, 4, 2, 3, 14, 41, 47, 1], "total": 117, "isTopResearch": false, "rank": 479, "sp500_rank": 213}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 313, "sp500_rank": 158}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 1, 2, 2, 1, 0, 0], "total": 7, "isTopResearch": true, "rank": 142, "sp500_rank": 97}, "citations_per_article": {"counts": [0, 1.0, 0.0, 2.0, 0, 2.0, 0.42857142857142855, 2.8, 8.2, 47.0, 0], "total": 5.086956521739131, "isTopResearch": false, "rank": 710, "sp500_rank": 282}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0], "total": 5, "table": null, "rank": 525, "sp500_rank": 225}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 10, 0, 10, 20, 0, 0, 0], "total": 50, "table": null, "rank": 525, "sp500_rank": 225}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "sp500_rank": 119}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 816, "rank": 391, "sp500_rank": 193}, "ai_jobs": {"counts": null, "total": 95, "rank": 348, "sp500_rank": 188}}, "sector": "Basic Materials", "business_sector": "Mineral Resources"}, {"cset_id": 2763, "country": "United States", "website": "https://aecom.com/", "crunchbase": {"text": "b6a09bde-184a-a6ed-7d3d-150d5ad95d2f", "url": "https://www.crunchbase.com/organization/aecom"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aecom"], "stage": "Mature", "name": "Aecom", "patent_name": "aecom", "continent": "North America", "local_logo": "aecom.png", "aliases": "2020 Aecom; Edaw", "permid_links": [{"text": 4295903417, "url": "https://permid.org/1-4295903417"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ACM", "url": "https://www.google.com/finance/quote/acm:nyse"}], "market_full": [{"text": "FRA:E6Z", "url": "https://www.google.com/finance/quote/e6z:fra"}, {"text": "NYQ:ACM", "url": "https://www.google.com/finance/quote/acm:nyq"}, {"text": "ASE:ACM", "url": "https://www.google.com/finance/quote/acm:ase"}, {"text": "BER:E6Z", "url": "https://www.google.com/finance/quote/ber:e6z"}, {"text": "MUN:E6Z", "url": "https://www.google.com/finance/quote/e6z:mun"}, {"text": "LSE:0H9N", "url": "https://www.google.com/finance/quote/0h9n:lse"}, {"text": "BRN:E6Z", "url": "https://www.google.com/finance/quote/brn:e6z"}, {"text": "NYSE:ACM", "url": "https://www.google.com/finance/quote/acm:nyse"}, {"text": "STU:E6Z", "url": "https://www.google.com/finance/quote/e6z:stu"}, {"text": "DEU:E6Z", "url": "https://www.google.com/finance/quote/deu:e6z"}], "crunchbase_description": "AECOM is a global provider of professional technical and management support services to a broad range of markets.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Support vector machine", "field_count": 1}], "clusters": [{"cluster_id": 6247, "cluster_count": 1}, {"cluster_id": 8012, "cluster_count": 1}, {"cluster_id": 725, "cluster_count": 1}, {"cluster_id": 13156, "cluster_count": 1}, {"cluster_id": 45451, "cluster_count": 1}, {"cluster_id": 14905, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "traffic_accident_detection", "task_count": 1}, {"referent": "domain_generalization", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "feedforward_network", "method_count": 1}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "latent_optimisation", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [25, 54, 65, 116, 142, 165, 84, 66, 55, 43, 0], "total": 815, "isTopResearch": false, "rank": 211}, "ai_publications": {"counts": [0, 1, 0, 0, 1, 0, 2, 0, 2, 0, 0], "total": 6, "isTopResearch": false, "rank": 514}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 2, 2, 3, 0, 1, 7, 9, 10, 0], "total": 34, "isTopResearch": false, "rank": 640}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 3.0, 0, 0.5, 0, 4.5, 0, 0], "total": 5.666666666666667, "isTopResearch": false, "rank": 693}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 810, "rank": 392}, "ai_jobs": {"counts": null, "total": 74, "rank": 397}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "AECOM (formerly AECOM Technology Corporation) is an American multinational engineering firm.", "wikipedia_link": "https://en.wikipedia.org/wiki/AECOM", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2049, "country": "United States", "website": "https://www.exeloncorp.com/", "crunchbase": {"text": " 72a09ee4-a55c-6549-b46d-8354d8fe8f99", "url": " https://www.crunchbase.com/organization/exelon-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/exelon"], "stage": "Mature", "name": "Exelon", "patent_name": "Exelon", "continent": "North America", "local_logo": null, "aliases": "Exelon; Exelon Corp; Exelon Corporation", "permid_links": [{"text": 4295903216, "url": "https://permid.org/1-4295903216"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:EXC", "url": "https://www.google.com/finance/quote/EXC:NASDAQ"}], "market_full": [{"text": "VIE:EXEC", "url": "https://www.google.com/finance/quote/EXEC:VIE"}, {"text": "MUN:PEO", "url": "https://www.google.com/finance/quote/MUN:PEO"}, {"text": "NASDAQ:EXC", "url": "https://www.google.com/finance/quote/EXC:NASDAQ"}, {"text": "SAO:E1XC34", "url": "https://www.google.com/finance/quote/E1XC34:SAO"}, {"text": "MEX:EXC", "url": "https://www.google.com/finance/quote/EXC:MEX"}, {"text": "BRN:PEO", "url": "https://www.google.com/finance/quote/BRN:PEO"}, {"text": "LSE:0IJN", "url": "https://www.google.com/finance/quote/0IJN:LSE"}, {"text": "MCX:EXC-RM", "url": "https://www.google.com/finance/quote/EXC-RM:MCX"}, {"text": "FRA:PEO", "url": "https://www.google.com/finance/quote/FRA:PEO"}, {"text": "DEU:EXC", "url": "https://www.google.com/finance/quote/DEU:EXC"}, {"text": "HAM:PEO", "url": "https://www.google.com/finance/quote/HAM:PEO"}, {"text": "DUS:PEO", "url": "https://www.google.com/finance/quote/DUS:PEO"}, {"text": "GER:PEOX", "url": "https://www.google.com/finance/quote/GER:PEOX"}, {"text": "HAN:PEO", "url": "https://www.google.com/finance/quote/HAN:PEO"}, {"text": "BER:PEO", "url": "https://www.google.com/finance/quote/BER:PEO"}, {"text": "STU:PEO", "url": "https://www.google.com/finance/quote/PEO:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 36321, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}], "tasks": [{"referent": "q_learning", "task_count": 1}], "methods": [{"referent": "momentum_rules", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "som", "method_count": 1}, {"referent": "stochastic_optimization", "method_count": 1}, {"referent": "annealing_snnl", "method_count": 1}, {"referent": "shap", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 2, 3, 6, 3, 4, 2, 4, 8, 4, 0], "total": 39, "isTopResearch": false, "rank": 667, "sp500_rank": 345, "fortune500_rank": 244}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 7, 4, 3], "total": 15, "isTopResearch": false, "rank": 717, "sp500_rank": 297, "fortune500_rank": 193}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 7.0, 0, 0], "total": 15.0, "isTopResearch": false, "rank": 404, "sp500_rank": 135, "fortune500_rank": 123}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 10, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 809, "rank": 393, "sp500_rank": 194, "fortune500_rank": 216}, "ai_jobs": {"counts": null, "total": 40, "rank": 527, "sp500_rank": 243, "fortune500_rank": 274}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 119, "country": "United States", "website": "https://www.icertis.com/", "crunchbase": {"text": "7ef763cb-a819-26df-238a-78cd0e3a349a", "url": "https://www.crunchbase.com/organization/icertis"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/icertis"], "stage": "Mature", "name": "Icertis", "patent_name": "icertis", "continent": "North America", "local_logo": "icertis.png", "aliases": "Icertis Applied Cloud; Icertis Inc; Icertis, Inc", "permid_links": [{"text": 5039194221, "url": "https://permid.org/1-5039194221"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Icertis is an AI-powered contract management platform that ensures compliance and minimizes risk.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 10, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 800, "rank": 394}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Icertis is a software company that provides contract management software to enterprise businesses. The company is headquartered in Bellevue, Washington with 12 offices globally, including an engineering office in Pune, India, new offices in Singapore and Sydney, and 3 support centers, with the most recent one opened in Sofia, Bulgaria.[", "wikipedia_link": "https://en.wikipedia.org/wiki/Icertis", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2354, "country": "United States", "website": "https://www.hilton.com/", "crunchbase": {"text": "44195bc1-8e0e-df5a-0523-47e2cef379b0", "url": "https://www.crunchbase.com/organization/hilton-worldwide"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hilton"], "stage": "Mature", "name": "Hilton Worldwide Holdings Inc.", "patent_name": "hilton worldwide holdings inc.", "continent": "North America", "local_logo": "hilton_worldwide_holdings_inc.png", "aliases": "Hilton; Hilton Hotels Corporation; Hilton Worldwide", "permid_links": [{"text": 5040250025, "url": "https://permid.org/1-5040250025"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HLT", "url": "https://www.google.com/finance/quote/hlt:nyse"}], "market_full": [{"text": "BER:HI91", "url": "https://www.google.com/finance/quote/ber:hi91"}, {"text": "NYQ:HLT", "url": "https://www.google.com/finance/quote/hlt:nyq"}, {"text": "ASE:HLT", "url": "https://www.google.com/finance/quote/ase:hlt"}, {"text": "MUN:HI91", "url": "https://www.google.com/finance/quote/hi91:mun"}, {"text": "FRA:HI91", "url": "https://www.google.com/finance/quote/fra:hi91"}, {"text": "HAN:HI91", "url": "https://www.google.com/finance/quote/han:hi91"}, {"text": "SAO:H1LT34", "url": "https://www.google.com/finance/quote/h1lt34:sao"}, {"text": "DEU:HI91", "url": "https://www.google.com/finance/quote/deu:hi91"}, {"text": "MEX:HLT*", "url": "https://www.google.com/finance/quote/hlt*:mex"}, {"text": "DUS:HI91", "url": "https://www.google.com/finance/quote/dus:hi91"}, {"text": "BRN:HI91", "url": "https://www.google.com/finance/quote/brn:hi91"}, {"text": "GER:HI9X.A", "url": "https://www.google.com/finance/quote/ger:hi9x.a"}, {"text": "MOEX:HLT-RM", "url": "https://www.google.com/finance/quote/hlt-rm:moex"}, {"text": "STU:HI91", "url": "https://www.google.com/finance/quote/hi91:stu"}, {"text": "VIE:HLTW", "url": "https://www.google.com/finance/quote/hltw:vie"}, {"text": "LSE:0J5I", "url": "https://www.google.com/finance/quote/0j5i:lse"}, {"text": "NYSE:HLT", "url": "https://www.google.com/finance/quote/hlt:nyse"}], "crunchbase_description": "Hilton Worldwide is a hospitality company, owns luxury and full-service hotels and resorts, and focused-service hotels.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 2, 3, 2, 4, 4, 0, 1, 0, 0, 0], "total": 16, "isTopResearch": false, "rank": 847, "fortune500_rank": 300}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 797, "rank": 395, "fortune500_rank": 217}, "ai_jobs": {"counts": null, "total": 100, "rank": 334, "fortune500_rank": 180}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Hilton Worldwide Holdings Inc., formerly Hilton Hotels Corporation, is an American multinational hospitality company that manages and franchises a broad portfolio of hotels and resorts. Founded by Conrad Hilton in May 1919, the corporation is now led by Christopher J. Nassetta.", "wikipedia_link": "https://en.wikipedia.org/wiki/Hilton_Worldwide", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 310, "country": "United States", "website": "https://affirm.com/", "crunchbase": {"text": "a88ad535-ebd4-02ab-3f45-8902997d4437", "url": "https://www.crunchbase.com/organization/affirm"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/affirm"], "stage": "Mature", "name": "Affirm, Inc.", "patent_name": "affirm, inc.", "continent": "North America", "local_logo": "affirm,_inc.png", "aliases": "Affirm; Affirm Inc; Affirm, Inc", "permid_links": [{"text": 5045849965, "url": "https://permid.org/1-5045849965"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Affirm is a financial technology services company that offers installment loans to consumers at the point of sale.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 1, 0, 0, 0, 1, 0, 0, 1], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], "total": 9, "table": null, "rank": 424}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 90, 0, 0, 0, 0, 0], "total": 90, "table": null, "rank": 424}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 9, 0, 0, 0, 0, 0], "total": 9, "table": "industry", "rank": 268}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 62}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 794, "rank": 396}, "ai_jobs": {"counts": null, "total": 106, "rank": 327}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Affirm, legally Affirm Holdings, Inc. is a publicly traded financial technology company headquartered in San Francisco, United States. Founded in 2012, the company operates as a financial lender of installment loans for consumers to use at the point of sale to finance a purchase.", "wikipedia_link": "https://en.wikipedia.org/wiki/Affirm_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1870, "country": "France", "website": "https://www.engie.com/", "crunchbase": {"text": " f710eb83-9995-da32-95ea-65578c619b5c", "url": " https://www.crunchbase.com/organization/gdf-suez"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/engie"], "stage": "Mature", "name": "Engie", "patent_name": "Engie", "continent": "Europe", "local_logo": null, "aliases": "Engie; Engie Sa; Gdf Suez", "permid_links": [{"text": 4295866806, "url": "https://permid.org/1-4295866806"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "FRA:GZFB", "url": "https://www.google.com/finance/quote/FRA:GZFB"}, {"text": "PKC:ENGIY", "url": "https://www.google.com/finance/quote/ENGIY:PKC"}, {"text": "MUN:GZFB", "url": "https://www.google.com/finance/quote/GZFB:MUN"}, {"text": "PKC:ENGQF", "url": "https://www.google.com/finance/quote/ENGQF:PKC"}, {"text": "VIE:ENGI", "url": "https://www.google.com/finance/quote/ENGI:VIE"}, {"text": "MEX:ENGIN", "url": "https://www.google.com/finance/quote/ENGIN:MEX"}, {"text": "HAM:GZF", "url": "https://www.google.com/finance/quote/GZF:HAM"}, {"text": "BER:GZFB", "url": "https://www.google.com/finance/quote/BER:GZFB"}, {"text": "DUS:GZF", "url": "https://www.google.com/finance/quote/DUS:GZF"}, {"text": "DEU:GZFB", "url": "https://www.google.com/finance/quote/DEU:GZFB"}, {"text": "STU:GZF", "url": "https://www.google.com/finance/quote/GZF:STU"}, {"text": "FRA:GZF", "url": "https://www.google.com/finance/quote/FRA:GZF"}, {"text": "PAR:ENGI", "url": "https://www.google.com/finance/quote/ENGI:PAR"}, {"text": "MIL:ENGI", "url": "https://www.google.com/finance/quote/ENGI:MIL"}, {"text": "MUN:GZF", "url": "https://www.google.com/finance/quote/GZF:MUN"}, {"text": "STU:GZFB", "url": "https://www.google.com/finance/quote/GZFB:STU"}, {"text": "DEU:GSZ", "url": "https://www.google.com/finance/quote/DEU:GSZ"}, {"text": "HAN:GZF", "url": "https://www.google.com/finance/quote/GZF:HAN"}, {"text": "EBT:ENGIP", "url": "https://www.google.com/finance/quote/EBT:ENGIp"}, {"text": "BER:GZF", "url": "https://www.google.com/finance/quote/BER:GZF"}, {"text": "LSE:0LD0", "url": "https://www.google.com/finance/quote/0LD0:LSE"}, {"text": "GER:GZFX", "url": "https://www.google.com/finance/quote/GER:GZFX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Ground truth", "field_count": 1}, {"field_name": "Hyperspectral imaging", "field_count": 1}, {"field_name": "Data set", "field_count": 1}, {"field_name": "Bayesian network", "field_count": 1}, {"field_name": "Orientation (computer vision)", "field_count": 1}, {"field_name": "Sharpening", "field_count": 1}, {"field_name": "Wavelet", "field_count": 1}, {"field_name": "Chromosome (genetic algorithm)", "field_count": 1}, {"field_name": "Sparse approximation", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 22394, "cluster_count": 3}, {"cluster_id": 3226, "cluster_count": 2}, {"cluster_id": 20772, "cluster_count": 1}, {"cluster_id": 17333, "cluster_count": 1}, {"cluster_id": 38736, "cluster_count": 1}, {"cluster_id": 98452, "cluster_count": 1}, {"cluster_id": 35015, "cluster_count": 1}, {"cluster_id": 27799, "cluster_count": 1}, {"cluster_id": 3580, "cluster_count": 1}, {"cluster_id": 17216, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 101, "referenced_count": 10}, {"ref_CSET_id": 1870, "referenced_count": 4}, {"ref_CSET_id": 161, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 785, "referenced_count": 2}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 484, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "image_processing", "task_count": 4}, {"referent": "load_forecasting", "task_count": 3}, {"referent": "image_analysis", "task_count": 3}, {"referent": "computer_vision", "task_count": 3}, {"referent": "system_identification", "task_count": 3}, {"referent": "land_cover_mapping", "task_count": 2}, {"referent": "knowledge_base", "task_count": 2}, {"referent": "road_detection", "task_count": 2}, {"referent": "medical_procedure", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 6}, {"referent": "wgan_gp", "method_count": 5}, {"referent": "mad_learning", "method_count": 2}, {"referent": "linear_warmup_with_linear_decay", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "transformer_xl", "method_count": 2}, {"referent": "maddpg", "method_count": 2}, {"referent": "q_learning", "method_count": 1}, {"referent": "weight_tying", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [173, 119, 141, 101, 94, 88, 77, 94, 100, 82, 1], "total": 1070, "isTopResearch": false, "rank": 189, "sp500_rank": 139}, "ai_publications": {"counts": [1, 1, 2, 3, 3, 3, 1, 6, 6, 0, 0], "total": 26, "isTopResearch": false, "rank": 266, "sp500_rank": 158}, "ai_publications_growth": {"counts": [], "total": 133.33333333333334, "isTopResearch": false, "rank": 13, "sp500_rank": 8}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [22, 20, 22, 21, 27, 38, 61, 74, 95, 127, 5], "total": 512, "isTopResearch": false, "rank": 268, "sp500_rank": 141}, "cv_pubs": {"counts": [0, 0, 1, 1, 0, 0, 1, 0, 2, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "sp500_rank": 146}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [22.0, 20.0, 11.0, 7.0, 9.0, 12.666666666666666, 61.0, 12.333333333333334, 15.833333333333334, 0, 0], "total": 19.692307692307693, "isTopResearch": false, "rank": 318, "sp500_rank": 96}}, "patents": {"ai_patents": {"counts": [0, 0, 4, 0, 0, 1, 1, 0, 0, 0, 0], "total": 6, "table": null, "rank": 487, "sp500_rank": 216}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "sp500_rank": 444}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 40, 0, 0, 10, 10, 0, 0, 0, 0], "total": 60, "table": null, "rank": 487, "sp500_rank": 216}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 119, "sp500_rank": 94}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "sp500_rank": 152}, "Control": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "sp500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 793, "rank": 397, "sp500_rank": 195}, "ai_jobs": {"counts": null, "total": 99, "rank": 336, "sp500_rank": 181}}, "sector": "Utilities", "business_sector": "Utilities"}, {"cset_id": 2015, "country": "United Kingdom", "website": "https://www.riotinto.com/", "crunchbase": {"text": " 4880de72-bf50-96cf-1b09-e46a3087b5a9", "url": " https://www.crunchbase.com/organization/rio-tinto"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/rio-tinto"], "stage": "Unknown", "name": "Rio Tinto Group", "patent_name": "Rio Tinto Group", "continent": "Europe", "local_logo": null, "aliases": "Rio Tinto Group", "permid_links": [{"text": 4295894786, "url": "https://permid.org/1-4295894786"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Kalman filter", "field_count": 1}], "clusters": [{"cluster_id": 28803, "cluster_count": 3}, {"cluster_id": 12867, "cluster_count": 1}, {"cluster_id": 14379, "cluster_count": 1}, {"cluster_id": 17604, "cluster_count": 1}, {"cluster_id": 15678, "cluster_count": 1}, {"cluster_id": 28430, "cluster_count": 1}, {"cluster_id": 38166, "cluster_count": 1}, {"cluster_id": 25781, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2015, "referenced_count": 3}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "image_interpretation", "task_count": 4}, {"referent": "system_identification", "task_count": 1}, {"referent": "seismic_analysis", "task_count": 1}, {"referent": "clustering", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}, {"referent": "graph_sampling", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 3}, {"referent": "wgan_gp", "method_count": 1}, {"referent": "tree_structured_parzen_estimator_approach_(tpe)", "method_count": 1}, {"referent": "adaptive_loss", "method_count": 1}, {"referent": "linear_warmup_with_linear_decay", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "reduction_a", "method_count": 1}, {"referent": "gic", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [91, 76, 67, 82, 53, 77, 58, 60, 47, 37, 2], "total": 650, "isTopResearch": false, "rank": 241, "sp500_rank": 166}, "ai_publications": {"counts": [0, 1, 1, 0, 1, 0, 2, 2, 2, 0, 0], "total": 9, "isTopResearch": false, "rank": 437, "sp500_rank": 224}, "ai_publications_growth": {"counts": [], "total": -33.333333333333336, "isTopResearch": false, "rank": 1404, "sp500_rank": 386}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 0, 6, 3, 4, 8, 14, 10, 15, 20, 2], "total": 82, "isTopResearch": false, "rank": 533, "sp500_rank": 232}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0.0, 6.0, 0, 4.0, 0, 7.0, 5.0, 7.5, 0, 0], "total": 9.11111111111111, "isTopResearch": false, "rank": 572, "sp500_rank": 215}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 791, "rank": 398, "sp500_rank": 196}, "ai_jobs": {"counts": null, "total": 156, "rank": 263, "sp500_rank": 158}}, "sector": "Basic Materials", "business_sector": "Mineral Resources"}, {"cset_id": 2818, "country": "France", "website": "http://www.sodexo.com/", "crunchbase": {"text": "caf40f0d-e99b-2c09-098d-b46129a4efc8", "url": "https://www.crunchbase.com/organization/sodexo"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sodexo"], "stage": "Mature", "name": "Sodexo SA", "patent_name": "sodexo sa", "continent": "Europe", "local_logo": "sodexo_sa.png", "aliases": "Sodexo", "permid_links": [{"text": 4295866614, "url": "https://permid.org/1-4295866614"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PKC:SDXOF", "url": "https://www.google.com/finance/quote/pkc:sdxof"}, {"text": "STU:SJ70", "url": "https://www.google.com/finance/quote/sj70:stu"}, {"text": "PAR:SW", "url": "https://www.google.com/finance/quote/par:sw"}, {"text": "STU:SJ7", "url": "https://www.google.com/finance/quote/sj7:stu"}, {"text": "HAN:SJ7", "url": "https://www.google.com/finance/quote/han:sj7"}, {"text": "BER:SJ7", "url": "https://www.google.com/finance/quote/ber:sj7"}, {"text": "FRA:SJ70", "url": "https://www.google.com/finance/quote/fra:sj70"}, {"text": "DUS:SJ7", "url": "https://www.google.com/finance/quote/dus:sj7"}, {"text": "EBT:SWP", "url": "https://www.google.com/finance/quote/ebt:swp"}, {"text": "DEU:EXHO", "url": "https://www.google.com/finance/quote/deu:exho"}, {"text": "MUN:SJ7", "url": "https://www.google.com/finance/quote/mun:sj7"}, {"text": "PKC:SDXAY", "url": "https://www.google.com/finance/quote/pkc:sdxay"}, {"text": "FRA:SJ7", "url": "https://www.google.com/finance/quote/fra:sj7"}, {"text": "VIE:SW", "url": "https://www.google.com/finance/quote/sw:vie"}, {"text": "LSE:0J3F", "url": "https://www.google.com/finance/quote/0J3F:lse"}, {"text": "DEU:SJ70", "url": "https://www.google.com/finance/quote/deu:sj70"}], "crunchbase_description": "Sodexo is now the worldwide leader in Quality of Life services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 2, 1, 4, 3, 3, 3, 2, 1, 4, 0], "total": 23, "isTopResearch": false, "rank": 777}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 791, "rank": 398}, "ai_jobs": {"counts": null, "total": 72, "rank": 406}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Sodexo (formerly Sodexho Alliance) is a French food services and facilities management company headquartered in the Paris suburb of Issy-les-Moulineaux. It has 428,237 employees as of 2019 and a presence in 80 countries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Sodexo", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2390, "country": "United States", "website": "https://www.labcorp.com", "crunchbase": {"text": "254907f8-216b-42d2-016d-a4ddefbbdcf9", "url": "https://www.crunchbase.com/organization/laboratory-corporation-of-america"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/labcorp"], "stage": "Mature", "name": "Laboratory Corp. of America Holding", "patent_name": "laboratory corp. of america holding", "continent": "North America", "local_logo": "laboratory_corp_of_america_holding.png", "aliases": "Labcorp; Laboratory Corporation Of America; Laboratory Corporation Of America Holdings", "permid_links": [{"text": 4295911969, "url": "https://permid.org/1-4295911969"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LH", "url": "https://www.google.com/finance/quote/lh:nyse"}], "market_full": [{"text": "BRN:LAB", "url": "https://www.google.com/finance/quote/brn:lab"}, {"text": "NYQ:LH", "url": "https://www.google.com/finance/quote/lh:nyq"}, {"text": "NYSE:LH", "url": "https://www.google.com/finance/quote/lh:nyse"}, {"text": "HAN:LAB", "url": "https://www.google.com/finance/quote/han:lab"}, {"text": "MUN:LAB", "url": "https://www.google.com/finance/quote/lab:mun"}, {"text": "DEU:LH", "url": "https://www.google.com/finance/quote/deu:lh"}, {"text": "MOEX:LH-RM", "url": "https://www.google.com/finance/quote/lh-rm:moex"}, {"text": "STU:LAB", "url": "https://www.google.com/finance/quote/lab:stu"}, {"text": "MEX:LH*", "url": "https://www.google.com/finance/quote/lh*:mex"}, {"text": "FRA:LAB", "url": "https://www.google.com/finance/quote/fra:lab"}, {"text": "ASE:LH", "url": "https://www.google.com/finance/quote/ase:lh"}, {"text": "BER:LAB", "url": "https://www.google.com/finance/quote/ber:lab"}, {"text": "DUS:LAB", "url": "https://www.google.com/finance/quote/dus:lab"}, {"text": "LSE:0JSY", "url": "https://www.google.com/finance/quote/0jsy:lse"}, {"text": "SAO:L1CA34", "url": "https://www.google.com/finance/quote/l1ca34:sao"}], "crunchbase_description": "Labcorp specializes in providing physicians with laboratory tests.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Position-Specific Scoring Matrices", "field_count": 1}], "clusters": [{"cluster_id": 3799, "cluster_count": 1}, {"cluster_id": 6001, "cluster_count": 1}, {"cluster_id": 1680, "cluster_count": 1}, {"cluster_id": 944, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 989, "referenced_count": 1}], "tasks": [{"referent": "mortality_prediction", "task_count": 1}, {"referent": "smac", "task_count": 1}, {"referent": "molecular_dynamics", "task_count": 1}, {"referent": "cancer", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}, {"referent": "protein_folding", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "clinical_concept_extraction", "task_count": 1}], "methods": [{"referent": "sm3", "method_count": 1}, {"referent": "nice", "method_count": 1}, {"referent": "hermite_activation", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "dac", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [64, 59, 72, 88, 62, 73, 71, 72, 107, 121, 0], "total": 789, "isTopResearch": false, "rank": 216, "fortune500_rank": 80}, "ai_publications": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [38, 27, 26, 30, 24, 23, 12, 16, 16, 15, 0], "total": 227, "isTopResearch": false, "rank": 373, "fortune500_rank": 111}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [38.0, 0, 0, 30.0, 0, 0, 0, 0, 0, 0, 0], "total": 113.5, "isTopResearch": false, "rank": 28, "fortune500_rank": 6}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 606, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 0, 10, 0, 0, 0], "total": 30, "table": null, "rank": 606, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 158, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 791, "rank": 398, "fortune500_rank": 218}, "ai_jobs": {"counts": null, "total": 60, "rank": 442, "fortune500_rank": 233}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Laboratory Corporation of America Holdings, more commonly known as Labcorp, is an American S&P 500 company headquartered in Burlington, North Carolina. It operates one of the largest clinical laboratory networks in the world, with a United States network of 36 primary laboratories. Before a merger with National Health Laboratory in 1995, the company operated under the name Roche BioMedical. Labcorp performs its largest volume of specialty testing at its Center for Esoteric Testing in Burlington, North Carolina, where the company is headquartered. As of 2018, Labcorp processes 2.5 million lab tests weekly.", "wikipedia_link": "https://en.wikipedia.org/wiki/LabCorp", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 790, "country": "Japan", "website": "http://www.toyota-global.com", "crunchbase": {"text": "12b90373-ab49-a56a-4b4e-c7b3e9236faf", "url": "https://www.crunchbase.com/organization/toyota"}, "child_crunchbase": [{"text": "e54194ee-7dbc-3ea2-8887-a9715cca2828", "url": "https://www.crunchbase.com/organization/toyota-research-institute"}], "linkedin": ["https://www.linkedin.com/company/toyota", "https://www.linkedin.com/company/toyota-research-institute"], "stage": "Mature", "name": "Toyota", "patent_name": "toyota", "continent": "Asia", "local_logo": "toyota.png", "aliases": "Toyota Motor Corporation; \u30c8\u30e8\u30bf\u81ea\u52d5\u8eca\u682a\u5f0f\u4f1a\u793e", "permid_links": [{"text": 4295876746, "url": "https://permid.org/1-4295876746"}, {"text": 5062435723, "url": "https://permid.org/1-5062435723"}], "parent_info": null, "agg_child_info": "Toyota Research Institute", "unagg_child_info": null, "market_filt": [{"text": "NYSE:TM", "url": "https://www.google.com/finance/quote/nyse:tm"}, {"text": "TYO:7203", "url": "https://www.google.com/finance/quote/7203:tyo"}], "market_full": [{"text": "OTC:TOYOF", "url": "https://www.google.com/finance/quote/otc:toyof"}, {"text": "FRA:TOM", "url": "https://www.google.com/finance/quote/fra:tom"}, {"text": "NYSE:TM", "url": "https://www.google.com/finance/quote/nyse:tm"}, {"text": "HAM:TOM", "url": "https://www.google.com/finance/quote/ham:tom"}, {"text": "TYO:7203", "url": "https://www.google.com/finance/quote/7203:tyo"}, {"text": "HAN:TOM", "url": "https://www.google.com/finance/quote/han:tom"}, {"text": "BCBA:TM", "url": "https://www.google.com/finance/quote/bcba:tm"}, {"text": "MUN:TOM", "url": "https://www.google.com/finance/quote/mun:tom"}, {"text": "DUS:TOM", "url": "https://www.google.com/finance/quote/dus:tom"}, {"text": "LON:TYT", "url": "https://www.google.com/finance/quote/lon:tyt"}, {"text": "BER:TOM", "url": "https://www.google.com/finance/quote/ber:tom"}, {"text": "FWB:TOM", "url": "https://www.google.com/finance/quote/fwb:tom"}], "crunchbase_description": "Toyota is an automotive company that manufactures and markets vehicles to over 170 countries and regions.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 71}, {"field_name": "Driving simulator", "field_count": 26}, {"field_name": "Advanced driver assistance systems", "field_count": 23}, {"field_name": "Artificial neural network", "field_count": 20}, {"field_name": "Reinforcement learning", "field_count": 20}, {"field_name": "Pose", "field_count": 19}, {"field_name": "Convolutional neural network", "field_count": 19}, {"field_name": "Deep learning", "field_count": 18}, {"field_name": "Feature (computer vision)", "field_count": 14}, {"field_name": "Object (computer science)", "field_count": 13}], "clusters": [{"cluster_id": 58119, "cluster_count": 24}, {"cluster_id": 914, "cluster_count": 21}, {"cluster_id": 2410, "cluster_count": 21}, {"cluster_id": 11690, "cluster_count": 20}, {"cluster_id": 19977, "cluster_count": 18}, {"cluster_id": 5590, "cluster_count": 16}, {"cluster_id": 7420, "cluster_count": 15}, {"cluster_id": 14335, "cluster_count": 14}, {"cluster_id": 183, "cluster_count": 14}, {"cluster_id": 12947, "cluster_count": 13}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 961}, {"ref_CSET_id": 790, "referenced_count": 767}, {"ref_CSET_id": 163, "referenced_count": 531}, {"ref_CSET_id": 87, "referenced_count": 399}, {"ref_CSET_id": 184, "referenced_count": 148}, {"ref_CSET_id": 127, "referenced_count": 124}, {"ref_CSET_id": 6, "referenced_count": 79}, {"ref_CSET_id": 115, "referenced_count": 73}, {"ref_CSET_id": 23, "referenced_count": 67}, {"ref_CSET_id": 223, "referenced_count": 66}], "tasks": [{"referent": "autonomous_driving", "task_count": 144}, {"referent": "classification", "task_count": 106}, {"referent": "autonomous_vehicles", "task_count": 99}, {"referent": "robots", "task_count": 90}, {"referent": "steering_control", "task_count": 50}, {"referent": "object_detection", "task_count": 48}, {"referent": "vehicle_detection", "task_count": 42}, {"referent": "pedestrian_detection", "task_count": 27}, {"referent": "mobile_robot", "task_count": 24}, {"referent": "motion_planning", "task_count": 22}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 53}, {"referent": "double_q_learning", "method_count": 53}, {"referent": "vqa_models", "method_count": 50}, {"referent": "3d_representations", "method_count": 47}, {"referent": "q_learning", "method_count": 47}, {"referent": "convolutional_neural_networks", "method_count": 46}, {"referent": "mad_learning", "method_count": 37}, {"referent": "optimization", "method_count": 35}, {"referent": "self_supervised_learning", "method_count": 31}, {"referent": "reinforcement_learning", "method_count": 27}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [885, 867, 800, 1055, 1024, 1074, 1106, 1001, 924, 649, 10], "total": 9395, "isTopResearch": false, "rank": 40, "sp500_rank": 36}, "ai_publications": {"counts": [50, 55, 44, 70, 89, 121, 135, 173, 138, 70, 0], "total": 945, "isTopResearch": false, "rank": 25, "sp500_rank": 20}, "ai_publications_growth": {"counts": [], "total": -13.786142681174931, "isTopResearch": false, "rank": 1288, "sp500_rank": 330}, "ai_pubs_top_conf": {"counts": [4, 3, 3, 2, 8, 7, 12, 6, 24, 12, 0], "total": 81, "isTopResearch": false, "rank": 32, "sp500_rank": 18}, "citation_counts": {"counts": [223, 416, 636, 892, 1184, 1708, 2603, 3471, 4486, 3567, 127], "total": 19313, "isTopResearch": false, "rank": 34, "sp500_rank": 22}, "cv_pubs": {"counts": [16, 20, 14, 21, 26, 40, 34, 40, 47, 26, 0], "total": 284, "isTopResearch": true, "rank": 27, "sp500_rank": 21}, "nlp_pubs": {"counts": [1, 1, 1, 4, 5, 0, 3, 4, 0, 0, 0], "total": 19, "isTopResearch": true, "rank": 64, "sp500_rank": 46}, "robotics_pubs": {"counts": [19, 21, 18, 31, 37, 46, 54, 60, 52, 27, 0], "total": 365, "isTopResearch": true, "rank": 3, "sp500_rank": 2}, "citations_per_article": {"counts": [4.46, 7.5636363636363635, 14.454545454545455, 12.742857142857142, 13.303370786516854, 14.115702479338843, 19.28148148148148, 20.063583815028903, 32.507246376811594, 50.957142857142856, 0], "total": 20.437037037037037, "isTopResearch": false, "rank": 307, "sp500_rank": 90}}, "patents": {"ai_patents": {"counts": [9, 41, 66, 79, 177, 309, 338, 372, 88, 1, 0], "total": 1480, "table": null, "rank": 16, "sp500_rank": 13}, "ai_patents_growth": {"counts": [], "total": 31.340185350894075, "table": null, "rank": 274, "sp500_rank": 128}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [90, 410, 660, 790, 1770, 3090, 3380, 3720, 880, 10, 0], "total": 14800, "table": null, "rank": 16, "sp500_rank": 13}, "Physical_Sciences_and_Engineering": {"counts": [2, 2, 5, 2, 5, 7, 20, 21, 2, 0, 0], "total": 66, "table": null, "rank": 7, "sp500_rank": 5}, "Life_Sciences": {"counts": [1, 1, 0, 3, 4, 11, 22, 15, 4, 0, 0], "total": 61, "table": null, "rank": 20, "sp500_rank": 17}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 1, 4, 5, 4, 9, 0, 0, 0], "total": 24, "table": null, "rank": 49, "sp500_rank": 37}, "Transportation": {"counts": [5, 35, 57, 70, 143, 212, 216, 191, 34, 0, 0], "total": 963, "table": "industry", "rank": 1, "sp500_rank": 1}, "Industrial_and_Manufacturing": {"counts": [3, 1, 3, 1, 6, 20, 20, 11, 5, 0, 0], "total": 70, "table": null, "rank": 12, "sp500_rank": 10}, "Education": {"counts": [0, 1, 0, 1, 2, 0, 4, 2, 1, 0, 0], "total": 11, "table": null, "rank": 11, "sp500_rank": 8}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": null, "rank": 29, "sp500_rank": 25}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0], "total": 4, "table": null, "rank": 20, "sp500_rank": 17}, "Personal_Devices_and_Computing": {"counts": [1, 0, 4, 8, 24, 53, 42, 51, 10, 0, 0], "total": 193, "table": "industry", "rank": 45, "sp500_rank": 35}, "Banking_and_Finance": {"counts": [0, 1, 0, 2, 10, 26, 42, 36, 3, 0, 0], "total": 120, "table": null, "rank": 7, "sp500_rank": 7}, "Telecommunications": {"counts": [0, 2, 4, 7, 36, 56, 64, 44, 12, 0, 0], "total": 225, "table": "industry", "rank": 20, "sp500_rank": 17}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 1, 0, 0, 1, 1, 3, 0, 0, 0], "total": 6, "table": null, "rank": 31, "sp500_rank": 22}, "Business": {"counts": [1, 2, 2, 2, 28, 28, 50, 43, 12, 0, 0], "total": 168, "table": "industry", "rank": 18, "sp500_rank": 17}, "Energy_Management": {"counts": [0, 26, 5, 8, 16, 27, 21, 36, 9, 0, 0], "total": 148, "table": "industry", "rank": 4, "sp500_rank": 4}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 7, 1, 0, 0, 0], "total": 8, "table": null, "rank": 18, "sp500_rank": 11}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 1, 0, 2, 5, 0, 0, 0, 0, 0], "total": 8, "table": null, "rank": 44, "sp500_rank": 33}, "Speech_Processing": {"counts": [0, 0, 2, 0, 2, 14, 8, 6, 0, 0, 0], "total": 32, "table": null, "rank": 33, "sp500_rank": 25}, "Knowledge_Representation": {"counts": [1, 0, 1, 0, 3, 9, 6, 5, 3, 0, 0], "total": 28, "table": null, "rank": 36, "sp500_rank": 28}, "Planning_and_Scheduling": {"counts": [1, 2, 2, 1, 24, 21, 42, 35, 9, 0, 0], "total": 137, "table": "application", "rank": 11, "sp500_rank": 11}, "Control": {"counts": [4, 39, 57, 66, 136, 208, 179, 137, 24, 0, 0], "total": 850, "table": "application", "rank": 1, "sp500_rank": 1}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 11, "sp500_rank": 7}, "Computer_Vision": {"counts": [2, 3, 10, 10, 55, 83, 82, 117, 26, 0, 0], "total": 388, "table": "application", "rank": 22, "sp500_rank": 17}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 2, 4, 4, 13, 15, 5, 0, 0], "total": 44, "table": "application", "rank": 32, "sp500_rank": 28}, "Measuring_and_Testing": {"counts": [2, 10, 16, 21, 36, 61, 69, 58, 14, 0, 0], "total": 287, "table": "application", "rank": 2, "sp500_rank": 2}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 791, "rank": 398, "sp500_rank": 196}, "ai_jobs": {"counts": null, "total": 58, "rank": 450, "sp500_rank": 224}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "The Toyota Motor Corporation is a Japanese multinational automotive manufacturer headquartered in Toyota, Aichi, Japan. It was founded by Kiichiro Toyoda and incorporated on August 28, 1937. In 2017, Toyota's corporate structure consisted of 364,445 employees worldwide and, as of December 2019, was the tenth-largest company in the world by revenue. Toyota is the largest automobile manufacturer in the world followed by Volkswagen, based on 2020 unit sales. Toyota was the world's first automobile manufacturer to produce more than 10 million vehicles per year, which it has done since 2012, when it also reported the production of its 200 millionth vehicle. As of July 2014, Toyota was the largest listed company in Japan by market capitalization (worth more than twice as much as number 2-ranked SoftBank) and by revenue.", "wikipedia_link": "https://en.wikipedia.org/wiki/Toyota", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2374, "country": "United States", "website": "http://www.ironmountain.com/", "crunchbase": {"text": "3aff06a1-23b2-8a5b-a06f-ce8c7ad2ec82", "url": "https://www.crunchbase.com/organization/iron-mountain"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/iron-mountain"], "stage": "Mature", "name": "Iron Mountain Incorporated", "patent_name": "iron mountain incorporated", "continent": "North America", "local_logo": "iron_mountain_incorporated.png", "aliases": "Iron Mountain; Iron Mountain Inc", "permid_links": [{"text": 5044340396, "url": "https://permid.org/1-5044340396"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:IRM", "url": "https://www.google.com/finance/quote/irm:nyse"}], "market_full": [{"text": "BRN:I5M", "url": "https://www.google.com/finance/quote/brn:i5m"}, {"text": "NYQ:IRM", "url": "https://www.google.com/finance/quote/irm:nyq"}, {"text": "MEX:IRM1", "url": "https://www.google.com/finance/quote/irm1:mex"}, {"text": "NYSE:IRM", "url": "https://www.google.com/finance/quote/irm:nyse"}], "crunchbase_description": "Iron Mountain provides online backup and data protection.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 2202, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [{"referent": "weight_demodulation", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 1, 3, 1, 4, 7, 0, 3, 1, 0, 0], "total": 22, "isTopResearch": false, "rank": 784, "fortune500_rank": 280}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0], "total": 4, "isTopResearch": false, "rank": 833, "fortune500_rank": 228}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735, "fortune500_rank": 206}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 10, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 787, "rank": 402, "fortune500_rank": 219}, "ai_jobs": {"counts": null, "total": 74, "rank": 397, "fortune500_rank": 210}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Iron Mountain Inc. (NYSE: IRM) is an American enterprise information management services company founded in 1951 and headquartered in Boston, Massachusetts. Its records management, information destruction, and data backup and recovery services are supplied to more than 220,000 customers throughout North America, Europe, Latin America, Africa, and Asia. As of 2020 over 95% of Fortune 1000companies use Iron Mountain's services to store and manage their information.", "wikipedia_link": "https://en.wikipedia.org/wiki/Iron_Mountain_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1780, "country": "United States", "website": "https://www.dupont.com/", "crunchbase": {"text": " f11543b2-7af3-9995-2009-82096a42ed3f", "url": " https://www.crunchbase.com/organization/dupont"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dupont"], "stage": "Mature", "name": "Dupont", "patent_name": "DuPont", "continent": "North America", "local_logo": null, "aliases": "DuPont; Dupont Alumni Founded Companies; Dupont De Nemours, Inc", "permid_links": [{"text": 4295903112, "url": "https://permid.org/1-4295903112"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DD", "url": "https://www.google.com/finance/quote/DD:NYSE"}], "market_full": [{"text": "VIE:DDPN", "url": "https://www.google.com/finance/quote/DDPN:VIE"}, {"text": "LSE:0A6B", "url": "https://www.google.com/finance/quote/0A6B:LSE"}, {"text": "HAN:6D81", "url": "https://www.google.com/finance/quote/6D81:HAN"}, {"text": "BRN:6D81", "url": "https://www.google.com/finance/quote/6D81:BRN"}, {"text": "SAO:DDNB34", "url": "https://www.google.com/finance/quote/DDNB34:SAO"}, {"text": "MCX:DD-RM", "url": "https://www.google.com/finance/quote/DD-RM:MCX"}, {"text": "NYQ:DD", "url": "https://www.google.com/finance/quote/DD:NYQ"}, {"text": "BER:6D81", "url": "https://www.google.com/finance/quote/6D81:BER"}, {"text": "MEX:DD*", "url": "https://www.google.com/finance/quote/DD*:MEX"}, {"text": "BUE:DD3", "url": "https://www.google.com/finance/quote/BUE:DD3"}, {"text": "NYSE:DD", "url": "https://www.google.com/finance/quote/DD:NYSE"}, {"text": "HAM:6D81", "url": "https://www.google.com/finance/quote/6D81:HAM"}, {"text": "ASE:DD", "url": "https://www.google.com/finance/quote/ASE:DD"}, {"text": "GER:6D8X.A", "url": "https://www.google.com/finance/quote/6D8X.A:GER"}, {"text": "DEU:6D81", "url": "https://www.google.com/finance/quote/6D81:DEU"}, {"text": "STU:6D81", "url": "https://www.google.com/finance/quote/6D81:STU"}, {"text": "FRA:6D81", "url": "https://www.google.com/finance/quote/6D81:FRA"}, {"text": "MUN:6D81", "url": "https://www.google.com/finance/quote/6D81:MUN"}, {"text": "DUS:6D81", "url": "https://www.google.com/finance/quote/6D81:DUS"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Big data", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Corpus linguistics", "field_count": 1}, {"field_name": "Principal component analysis", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 49676, "cluster_count": 1}, {"cluster_id": 7696, "cluster_count": 1}, {"cluster_id": 20958, "cluster_count": 1}, {"cluster_id": 1105, "cluster_count": 1}, {"cluster_id": 20212, "cluster_count": 1}, {"cluster_id": 17449, "cluster_count": 1}, {"cluster_id": 26963, "cluster_count": 1}, {"cluster_id": 5672, "cluster_count": 1}, {"cluster_id": 9598, "cluster_count": 1}, {"cluster_id": 15286, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 201, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "lexical_analysis", "task_count": 2}, {"referent": "image_analysis", "task_count": 2}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "video_description", "task_count": 1}, {"referent": "svbrdf_estimation", "task_count": 1}, {"referent": "component_classification", "task_count": 1}, {"referent": "object_discovery", "task_count": 1}, {"referent": "visual_localization", "task_count": 1}, {"referent": "topological_data_analysis", "task_count": 1}], "methods": [{"referent": "clusterfit", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "csgld", "method_count": 1}, {"referent": "image_to_image_translation", "method_count": 1}, {"referent": "npid", "method_count": 1}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "spp_net", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [287, 389, 287, 277, 250, 146, 156, 157, 96, 39, 0], "total": 2084, "isTopResearch": false, "rank": 122, "fortune500_rank": 47}, "ai_publications": {"counts": [0, 2, 2, 2, 0, 0, 0, 1, 0, 0, 0], "total": 7, "isTopResearch": false, "rank": 481, "fortune500_rank": 134}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [5, 6, 7, 10, 8, 11, 16, 11, 14, 12, 1], "total": 101, "isTopResearch": false, "rank": 501, "fortune500_rank": 136}, "cv_pubs": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 3.0, 3.5, 5.0, 0, 0, 0, 11.0, 0, 0, 0], "total": 14.428571428571429, "isTopResearch": false, "rank": 417, "fortune500_rank": 127}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 20, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 782, "rank": 403, "fortune500_rank": 220}, "ai_jobs": {"counts": null, "total": 66, "rank": 424, "fortune500_rank": 227}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Consumer Goods Conglomerates"}, {"cset_id": 3090, "country": "United States", "website": "https://www.etsy.com/", "crunchbase": {"text": " 548a7f1a-59b3-7cf6-279c-d43e7fbb762e", "url": " https://www.crunchbase.com/organization/etsy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/etsy"], "stage": "Mature", "name": "Etsy", "patent_name": "Etsy", "continent": "North America", "local_logo": null, "aliases": "Etsy; Etsy, Inc", "permid_links": [{"text": 4297595346, "url": "https://permid.org/1-4297595346"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ETSY", "url": "https://www.google.com/finance/quote/ETSY:NASDAQ"}], "market_full": [{"text": "NASDAQ:ETSY", "url": "https://www.google.com/finance/quote/ETSY:NASDAQ"}, {"text": "STU:3E2", "url": "https://www.google.com/finance/quote/3E2:STU"}, {"text": "BER:3E2", "url": "https://www.google.com/finance/quote/3E2:BER"}, {"text": "DEU:3E2", "url": "https://www.google.com/finance/quote/3E2:DEU"}, {"text": "GER:3E2X", "url": "https://www.google.com/finance/quote/3E2X:GER"}, {"text": "FRA:3E2", "url": "https://www.google.com/finance/quote/3E2:FRA"}, {"text": "DUS:3E2", "url": "https://www.google.com/finance/quote/3E2:DUS"}, {"text": "MUN:3E2", "url": "https://www.google.com/finance/quote/3E2:MUN"}, {"text": "HAN:3E2", "url": "https://www.google.com/finance/quote/3E2:HAN"}, {"text": "BUE:ETSY", "url": "https://www.google.com/finance/quote/BUE:ETSY"}, {"text": "BRN:3E2", "url": "https://www.google.com/finance/quote/3E2:BRN"}, {"text": "MCX:ETSY-RM", "url": "https://www.google.com/finance/quote/ETSY-RM:MCX"}, {"text": "LSE:0IIW", "url": "https://www.google.com/finance/quote/0IIW:LSE"}, {"text": "MEX:ETSY*", "url": "https://www.google.com/finance/quote/ETSY*:MEX"}, {"text": "VIE:ETSY", "url": "https://www.google.com/finance/quote/ETSY:VIE"}, {"text": "SAO:E2TS34", "url": "https://www.google.com/finance/quote/E2TS34:SAO"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Question answering", "field_count": 1}, {"field_name": "Online search", "field_count": 1}, {"field_name": "Multimodal learning", "field_count": 1}, {"field_name": "Kernel (statistics)", "field_count": 1}, {"field_name": "Regret", "field_count": 1}, {"field_name": "Categorical variable", "field_count": 1}, {"field_name": "Outlier", "field_count": 1}, {"field_name": "Ranking", "field_count": 1}, {"field_name": "Adaptive learning", "field_count": 1}], "clusters": [{"cluster_id": 148, "cluster_count": 4}, {"cluster_id": 25062, "cluster_count": 2}, {"cluster_id": 10485, "cluster_count": 2}, {"cluster_id": 6635, "cluster_count": 1}, {"cluster_id": 5300, "cluster_count": 1}, {"cluster_id": 52544, "cluster_count": 1}, {"cluster_id": 33518, "cluster_count": 1}, {"cluster_id": 32830, "cluster_count": 1}, {"cluster_id": 13618, "cluster_count": 1}, {"cluster_id": 20535, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 22}, {"ref_CSET_id": 163, "referenced_count": 21}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 6, "referenced_count": 6}, {"ref_CSET_id": 550, "referenced_count": 6}, {"ref_CSET_id": 792, "referenced_count": 6}, {"ref_CSET_id": 21, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 3}, {"ref_CSET_id": 1126, "referenced_count": 3}], "tasks": [{"referent": "recommendation", "task_count": 8}, {"referent": "online_multi_object_tracking", "task_count": 2}, {"referent": "recommendation_systems", "task_count": 2}, {"referent": "computer_vision", "task_count": 2}, {"referent": "active_learning", "task_count": 1}, {"referent": "voice_conversion", "task_count": 1}, {"referent": "portfolio_optimization", "task_count": 1}, {"referent": "graph_ranking", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "video_similarity", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "clustering", "method_count": 1}, {"referent": "deep_ensembles", "method_count": 1}, {"referent": "nt_xent", "method_count": 1}, {"referent": "document_embeddings", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "generalized_linear_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 8, 8, 6, 7, 5, 8, 8, 4, 3, 0], "total": 58, "isTopResearch": false, "rank": 594, "fortune500_rank": 219}, "ai_publications": {"counts": [0, 0, 3, 0, 5, 2, 2, 3, 2, 1, 0], "total": 18, "isTopResearch": false, "rank": 321, "fortune500_rank": 98}, "ai_publications_growth": {"counts": [], "total": -11.111111111111112, "isTopResearch": false, "rank": 1273, "fortune500_rank": 368}, "ai_pubs_top_conf": {"counts": [0, 1, 3, 0, 3, 1, 3, 4, 0, 1, 0], "total": 16, "isTopResearch": false, "rank": 91, "fortune500_rank": 31}, "citation_counts": {"counts": [22, 28, 25, 32, 40, 58, 88, 77, 99, 75, 4], "total": 548, "isTopResearch": false, "rank": 262, "fortune500_rank": 80}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 8.333333333333334, 0, 8.0, 29.0, 44.0, 25.666666666666668, 49.5, 75.0, 0], "total": 30.444444444444443, "isTopResearch": false, "rank": 192, "fortune500_rank": 56}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 0, 2, 3, 0, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198, "fortune500_rank": 56}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 0, 20, 30, 0, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 78, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 0, 0, 0], "total": 5, "table": "industry", "rank": 213, "fortune500_rank": 72}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 779, "rank": 404, "fortune500_rank": 221}, "ai_jobs": {"counts": null, "total": 132, "rank": 290, "fortune500_rank": 157}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers"}, {"cset_id": 1850, "country": "Japan", "website": "https://www.hitachi.com/", "crunchbase": {"text": " 0c4a1fcb-97f4-9b8b-35e6-8b4425c50b7a", "url": "https://www.crunchbase.com/organization/hitachi"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hitachi"], "stage": "Mature", "name": "Hitachi", "patent_name": "Hitachi", "continent": "Asia", "local_logo": null, "aliases": "Hitachi; Hitachi, Ltd; \u65e5\u7acb\u88fd\u4f5c\u6240", "permid_links": [{"text": 4295877325, "url": "https://permid.org/1-4295877325"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:6501", "url": "https://www.google.com/finance/quote/6501:TYO"}], "market_full": [{"text": "BER:HIA1", "url": "https://www.google.com/finance/quote/BER:HIA1"}, {"text": "DEU:HIAA", "url": "https://www.google.com/finance/quote/DEU:HIAA"}, {"text": "DUS:HIA1", "url": "https://www.google.com/finance/quote/DUS:HIA1"}, {"text": "PKC:HTHIF", "url": "https://www.google.com/finance/quote/HTHIF:PKC"}, {"text": "MEX:6501N", "url": "https://www.google.com/finance/quote/6501N:MEX"}, {"text": "STU:HIA1", "url": "https://www.google.com/finance/quote/HIA1:STU"}, {"text": "TYO:6501", "url": "https://www.google.com/finance/quote/6501:TYO"}, {"text": "BER:HIAA", "url": "https://www.google.com/finance/quote/BER:HIAA"}, {"text": "PKC:HTHIY", "url": "https://www.google.com/finance/quote/HTHIY:PKC"}, {"text": "MUN:HIA1", "url": "https://www.google.com/finance/quote/HIA1:MUN"}, {"text": "DEU:6501", "url": "https://www.google.com/finance/quote/6501:DEU"}, {"text": "FRA:HIA1", "url": "https://www.google.com/finance/quote/FRA:HIA1"}, {"text": "FRA:HIAA", "url": "https://www.google.com/finance/quote/FRA:HIAA"}, {"text": "VIE:HITA", "url": "https://www.google.com/finance/quote/HITA:VIE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 34}, {"field_name": "Feature (computer vision)", "field_count": 18}, {"field_name": "Cluster analysis", "field_count": 18}, {"field_name": "Stereo camera", "field_count": 16}, {"field_name": "Anomaly detection", "field_count": 13}, {"field_name": "Deep learning", "field_count": 12}, {"field_name": "Artificial neural network", "field_count": 11}, {"field_name": "Reinforcement learning", "field_count": 10}, {"field_name": "Convolutional neural network", "field_count": 9}, {"field_name": "Word error rate", "field_count": 8}], "clusters": [{"cluster_id": 3291, "cluster_count": 14}, {"cluster_id": 14492, "cluster_count": 12}, {"cluster_id": 661, "cluster_count": 9}, {"cluster_id": 44849, "cluster_count": 8}, {"cluster_id": 11122, "cluster_count": 8}, {"cluster_id": 3797, "cluster_count": 8}, {"cluster_id": 15399, "cluster_count": 6}, {"cluster_id": 1422, "cluster_count": 6}, {"cluster_id": 46546, "cluster_count": 6}, {"cluster_id": 5861, "cluster_count": 5}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 579}, {"ref_CSET_id": 163, "referenced_count": 388}, {"ref_CSET_id": 1850, "referenced_count": 385}, {"ref_CSET_id": 87, "referenced_count": 143}, {"ref_CSET_id": 115, "referenced_count": 101}, {"ref_CSET_id": 3131, "referenced_count": 99}, {"ref_CSET_id": 1784, "referenced_count": 74}, {"ref_CSET_id": 786, "referenced_count": 61}, {"ref_CSET_id": 112, "referenced_count": 56}, {"ref_CSET_id": 23, "referenced_count": 42}], "tasks": [{"referent": "classification", "task_count": 82}, {"referent": "robots", "task_count": 30}, {"referent": "image_processing", "task_count": 28}, {"referent": "autonomous_driving", "task_count": 26}, {"referent": "system_identification", "task_count": 25}, {"referent": "autonomous_vehicles", "task_count": 22}, {"referent": "feature_selection", "task_count": 19}, {"referent": "disease_detection", "task_count": 19}, {"referent": "mobile_robot", "task_count": 18}, {"referent": "object_detection", "task_count": 18}], "methods": [{"referent": "double_q_learning", "method_count": 49}, {"referent": "recurrent_neural_networks", "method_count": 45}, {"referent": "q_learning", "method_count": 31}, {"referent": "mad_learning", "method_count": 30}, {"referent": "convolutional_neural_networks", "method_count": 28}, {"referent": "symbolic_deep_learning", "method_count": 26}, {"referent": "vqa_models", "method_count": 26}, {"referent": "1d_cnn", "method_count": 20}, {"referent": "3d_representations", "method_count": 19}, {"referent": "auto_classifier", "method_count": 18}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [932, 930, 949, 788, 898, 880, 879, 825, 723, 382, 8], "total": 8194, "isTopResearch": false, "rank": 46, "sp500_rank": 41}, "ai_publications": {"counts": [45, 46, 42, 39, 55, 64, 114, 124, 99, 43, 0], "total": 671, "isTopResearch": false, "rank": 33, "sp500_rank": 26}, "ai_publications_growth": {"counts": [], "total": -22.651672354558603, "isTopResearch": false, "rank": 1350, "sp500_rank": 361}, "ai_pubs_top_conf": {"counts": [1, 0, 3, 2, 4, 2, 8, 7, 4, 1, 0], "total": 32, "isTopResearch": false, "rank": 55, "sp500_rank": 29}, "citation_counts": {"counts": [108, 139, 213, 210, 257, 335, 615, 960, 1363, 1162, 51], "total": 5413, "isTopResearch": false, "rank": 70, "sp500_rank": 48}, "cv_pubs": {"counts": [17, 16, 9, 9, 17, 17, 33, 31, 29, 14, 0], "total": 192, "isTopResearch": true, "rank": 34, "sp500_rank": 25}, "nlp_pubs": {"counts": [2, 5, 5, 3, 7, 9, 16, 13, 7, 3, 0], "total": 70, "isTopResearch": true, "rank": 34, "sp500_rank": 25}, "robotics_pubs": {"counts": [12, 7, 12, 8, 11, 5, 17, 17, 11, 9, 0], "total": 109, "isTopResearch": true, "rank": 23, "sp500_rank": 21}, "citations_per_article": {"counts": [2.4, 3.0217391304347827, 5.071428571428571, 5.384615384615385, 4.672727272727273, 5.234375, 5.394736842105263, 7.741935483870968, 13.767676767676768, 27.023255813953487, 0], "total": 8.067064083457526, "isTopResearch": false, "rank": 594, "sp500_rank": 226}}, "patents": {"ai_patents": {"counts": [28, 38, 56, 57, 112, 183, 222, 203, 63, 1, 0], "total": 963, "table": null, "rank": 27, "sp500_rank": 22}, "ai_patents_growth": {"counts": [], "total": 25.38192466471155, "table": null, "rank": 285, "sp500_rank": 133}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [280, 380, 560, 570, 1120, 1830, 2220, 2030, 630, 10, 0], "total": 9630, "table": null, "rank": 27, "sp500_rank": 22}, "Physical_Sciences_and_Engineering": {"counts": [0, 2, 2, 0, 5, 8, 16, 11, 0, 0, 0], "total": 44, "table": null, "rank": 11, "sp500_rank": 9}, "Life_Sciences": {"counts": [2, 3, 4, 6, 6, 18, 31, 15, 5, 0, 0], "total": 90, "table": "industry", "rank": 15, "sp500_rank": 13}, "Security__eg_cybersecurity": {"counts": [0, 1, 2, 1, 1, 9, 9, 5, 0, 0, 0], "total": 28, "table": null, "rank": 41, "sp500_rank": 32}, "Transportation": {"counts": [4, 7, 13, 10, 24, 17, 9, 2, 0, 0, 0], "total": 86, "table": "industry", "rank": 30, "sp500_rank": 24}, "Industrial_and_Manufacturing": {"counts": [2, 0, 4, 4, 6, 21, 23, 14, 10, 0, 0], "total": 84, "table": null, "rank": 10, "sp500_rank": 8}, "Education": {"counts": [2, 0, 1, 1, 4, 5, 2, 1, 0, 0, 0], "total": 16, "table": null, "rank": 7, "sp500_rank": 5}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 4, "sp500_rank": 3}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 1, 2, 0, 0, 0, 0, 3, 0, 0, 0], "total": 6, "table": null, "rank": 19, "sp500_rank": 16}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0], "total": 4, "table": null, "rank": 20, "sp500_rank": 17}, "Personal_Devices_and_Computing": {"counts": [8, 23, 22, 23, 44, 63, 55, 44, 8, 1, 0], "total": 291, "table": "industry", "rank": 32, "sp500_rank": 27}, "Banking_and_Finance": {"counts": [0, 0, 0, 4, 7, 6, 3, 5, 1, 0, 0], "total": 26, "table": null, "rank": 40, "sp500_rank": 32}, "Telecommunications": {"counts": [3, 6, 9, 2, 13, 18, 22, 14, 3, 0, 0], "total": 90, "table": "industry", "rank": 47, "sp500_rank": 42}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": null, "rank": 47, "sp500_rank": 34}, "Business": {"counts": [4, 3, 8, 5, 14, 27, 28, 30, 10, 0, 0], "total": 129, "table": "industry", "rank": 24, "sp500_rank": 21}, "Energy_Management": {"counts": [0, 2, 1, 0, 4, 5, 6, 4, 1, 0, 0], "total": 23, "table": null, "rank": 28, "sp500_rank": 25}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 10, "sp500_rank": 9}, "Semiconductors": {"counts": [0, 1, 0, 2, 3, 8, 8, 8, 2, 0, 0], "total": 32, "table": null, "rank": 6, "sp500_rank": 4}, "Language_Processing": {"counts": [1, 1, 0, 1, 5, 2, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 42, "sp500_rank": 31}, "Speech_Processing": {"counts": [0, 1, 1, 0, 6, 4, 5, 2, 1, 0, 0], "total": 20, "table": null, "rank": 52, "sp500_rank": 39}, "Knowledge_Representation": {"counts": [0, 3, 4, 1, 5, 19, 11, 11, 0, 1, 0], "total": 55, "table": "application", "rank": 22, "sp500_rank": 18}, "Planning_and_Scheduling": {"counts": [4, 1, 6, 4, 10, 27, 24, 27, 9, 0, 0], "total": 112, "table": "application", "rank": 14, "sp500_rank": 13}, "Control": {"counts": [7, 8, 19, 17, 39, 43, 40, 25, 5, 0, 0], "total": 203, "table": "application", "rank": 19, "sp500_rank": 15}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 36, "sp500_rank": 28}, "Robotics": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 14, "sp500_rank": 9}, "Computer_Vision": {"counts": [5, 2, 8, 13, 27, 39, 70, 43, 14, 1, 0], "total": 222, "table": "application", "rank": 38, "sp500_rank": 28}, "Analytics_and_Algorithms": {"counts": [2, 1, 0, 2, 5, 9, 22, 11, 1, 1, 0], "total": 54, "table": null, "rank": 27, "sp500_rank": 24}, "Measuring_and_Testing": {"counts": [2, 5, 9, 12, 15, 21, 34, 19, 2, 0, 0], "total": 119, "table": "application", "rank": 19, "sp500_rank": 15}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 774, "rank": 405, "sp500_rank": 198}, "ai_jobs": {"counts": null, "total": 69, "rank": 411, "sp500_rank": 212}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Consumer Goods Conglomerates"}, {"cset_id": 1803, "country": "United States", "website": "https://www.amerisourcebergen.com/", "crunchbase": {"text": "c7783089-41e0-d2d1-2c6b-c5fabeb307ba", "url": "https://www.crunchbase.com/organization/amerisourcebergen-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/amerisourcebergen"], "stage": "Mature", "name": "AmerisourceBergen Corp", "patent_name": "amerisourcebergen corp", "continent": "North America", "local_logo": "amerisourcebergen_corp.png", "aliases": "Amerisourcebergen; Amerisourcebergen Corporation", "permid_links": [{"text": 4295903374, "url": "https://permid.org/1-4295903374"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ABC", "url": "https://www.google.com/finance/quote/abc:nyse"}], "market_full": [{"text": "BRN:ABG", "url": "https://www.google.com/finance/quote/abg:brn"}, {"text": "NYQ:ABC", "url": "https://www.google.com/finance/quote/abc:nyq"}, {"text": "DEU:ABEC", "url": "https://www.google.com/finance/quote/abec:deu"}, {"text": "BER:ABG", "url": "https://www.google.com/finance/quote/abg:ber"}, {"text": "GER:ABGX", "url": "https://www.google.com/finance/quote/abgx:ger"}, {"text": "MCX:ABC-RM", "url": "https://www.google.com/finance/quote/abc-rm:mcx"}, {"text": "FRA:ABG", "url": "https://www.google.com/finance/quote/abg:fra"}, {"text": "SAO:A1MB34", "url": "https://www.google.com/finance/quote/a1mb34:sao"}, {"text": "DUS:ABG", "url": "https://www.google.com/finance/quote/abg:dus"}, {"text": "STU:ABG", "url": "https://www.google.com/finance/quote/abg:stu"}, {"text": "ASE:ABC", "url": "https://www.google.com/finance/quote/abc:ase"}, {"text": "NYSE:ABC", "url": "https://www.google.com/finance/quote/abc:nyse"}, {"text": "MUN:ABG", "url": "https://www.google.com/finance/quote/abg:mun"}, {"text": "LSE:0HF3", "url": "https://www.google.com/finance/quote/0hf3:lse"}], "crunchbase_description": "AmerisourceBergen is a global healthcare company that advances the development and delivery of pharmaceuticals and healthcare products.", "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [40, 52, 60, 55, 54, 58, 46, 46, 36, 19, 0], "total": 466, "isTopResearch": false, "rank": 286, "sp500_rank": 191, "fortune500_rank": 112}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 773, "rank": 406, "sp500_rank": 199, "fortune500_rank": 222}, "ai_jobs": {"counts": null, "total": 101, "rank": 332, "sp500_rank": 180, "fortune500_rank": 179}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "AmerisourceBergen Corporation is an American drug wholesale company that was formed by the merger of Bergen Brunswig and AmeriSource in 2001. They provide drug distribution and related services designed to reduce costs and improve patient outcomes. They also distribute a line of brand name and generic pharmaceuticals, over-the-counter (OTC) health care products and home health care supplies and equipment to health care providers throughout the United States, including acute care hospitals and health systems, independent and chain retail pharmacies, mail-order facilities, physicians, clinics and other alternate site facilities, as well as nursing and assisted living centers. They also provide pharmaceuticals and pharmacy services to long-term care, workers' compensation and specialty drug patients.", "wikipedia_link": "https://en.wikipedia.org/wiki/AmerisourceBergen", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2281, "country": "United States", "website": "https://www.davita.com/", "crunchbase": {"text": "97b028f5-4355-6576-387c-458c3ac411b5", "url": "https://www.crunchbase.com/organization/davita"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/davita"], "stage": "Mature", "name": "DaVita Inc.", "patent_name": "davita inc.", "continent": "North America", "local_logo": "davita_inc.png", "aliases": "Davita", "permid_links": [{"text": 4295905108, "url": "https://permid.org/1-4295905108"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DVA", "url": "https://www.google.com/finance/quote/dva:nyse"}], "market_full": [{"text": "SAO:DVAI34", "url": "https://www.google.com/finance/quote/dvai34:sao"}, {"text": "FRA:TRL", "url": "https://www.google.com/finance/quote/fra:trl"}, {"text": "ASE:DVA", "url": "https://www.google.com/finance/quote/ase:dva"}, {"text": "DUS:TRL", "url": "https://www.google.com/finance/quote/dus:trl"}, {"text": "MEX:DVA*", "url": "https://www.google.com/finance/quote/dva*:mex"}, {"text": "MUN:TRL", "url": "https://www.google.com/finance/quote/mun:trl"}, {"text": "DEU:DVA", "url": "https://www.google.com/finance/quote/deu:dva"}, {"text": "NYQ:DVA", "url": "https://www.google.com/finance/quote/dva:nyq"}, {"text": "BRN:TRL", "url": "https://www.google.com/finance/quote/brn:trl"}, {"text": "HAN:TRL", "url": "https://www.google.com/finance/quote/han:trl"}, {"text": "STU:TRL", "url": "https://www.google.com/finance/quote/stu:trl"}, {"text": "BER:TRL", "url": "https://www.google.com/finance/quote/ber:trl"}, {"text": "MOEX:DVA-RM", "url": "https://www.google.com/finance/quote/dva-rm:moex"}, {"text": "NYSE:DVA", "url": "https://www.google.com/finance/quote/dva:nyse"}], "crunchbase_description": "DaVita is a provider focused on transforming care delivery to improve quality of life for patients globally.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [23, 26, 18, 14, 30, 21, 20, 14, 8, 8, 0], "total": 182, "isTopResearch": false, "rank": 420, "fortune500_rank": 161}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 764, "rank": 407, "fortune500_rank": 223}, "ai_jobs": {"counts": null, "total": 83, "rank": 374, "fortune500_rank": 197}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "DaVita Inc. provides kidney dialysis services through a network of 2,753 outpatient dialysis centers in the United States, serving 206,900 patients, and 259 outpatient dialysis centers in 10 other countries serving 28,700 patients. The company primarily treats end-stage renal disease (ESRD), which requires patients to undergo dialysis 3 times per week for the rest of their lives unless they receive a donor kidney. The company has a 37% market share in the U.S. dialysis market. It is organized in Delaware and based in Denver.", "wikipedia_link": "https://en.wikipedia.org/wiki/DaVita_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 735, "country": "United States", "website": "https://www.twosigma.com/", "crunchbase": {"text": "d2defcbb-908a-3745-28e1-e703ce0a85f2", "url": "https://www.crunchbase.com/organization/two-sigma-investments"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/two-sigma-investments"], "stage": "Unknown", "name": "Two Sigma", "patent_name": "two sigma", "continent": "North America", "local_logo": "two_sigma.png", "aliases": "Two Sigma Investments; Two Sigma Investments Lp", "permid_links": [{"text": 4295999208, "url": "https://permid.org/1-4295999208"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Two Sigma's technology-driven team streamlines the use of machine learning, distributed computing and research to guide its endeavors.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Probabilistic logic", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Active learning (machine learning)", "field_count": 1}, {"field_name": "Lasso (statistics)", "field_count": 1}, {"field_name": "Object (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 18894, "cluster_count": 2}, {"cluster_id": 4370, "cluster_count": 2}, {"cluster_id": 12631, "cluster_count": 1}, {"cluster_id": 7962, "cluster_count": 1}, {"cluster_id": 38154, "cluster_count": 1}, {"cluster_id": 84432, "cluster_count": 1}, {"cluster_id": 1621, "cluster_count": 1}, {"cluster_id": 19012, "cluster_count": 1}, {"cluster_id": 25755, "cluster_count": 1}, {"cluster_id": 11659, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 735, "referenced_count": 7}, {"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 1789, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}, {"ref_CSET_id": 410, "referenced_count": 1}], "tasks": [{"referent": "image_analysis", "task_count": 2}, {"referent": "object_detection", "task_count": 2}, {"referent": "scene_understanding", "task_count": 2}, {"referent": "graph_sampling", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "cbc_test", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "domain_generalization", "task_count": 1}], "methods": [{"referent": "crossvit", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "contextualized_topic_models", "method_count": 2}, {"referent": "video_sampling", "method_count": 2}, {"referent": "mad_learning", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "linear_regression", "method_count": 1}, {"referent": "sparse_r_cnn", "method_count": 1}, {"referent": "spp_net", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 4, 7, 14, 10, 14, 5, 2, 10, 3, 0], "total": 71, "isTopResearch": false, "rank": 563}, "ai_publications": {"counts": [0, 0, 2, 2, 1, 5, 0, 0, 2, 1, 0], "total": 13, "isTopResearch": false, "rank": 375}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 4, 0, 3, 0, 0, 0, 0, 0], "total": 7, "isTopResearch": false, "rank": 134}, "citation_counts": {"counts": [23, 36, 22, 35, 56, 60, 84, 64, 81, 47, 1], "total": 509, "isTopResearch": false, "rank": 269}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 11.0, 17.5, 56.0, 12.0, 0, 0, 40.5, 47.0, 0], "total": 39.15384615384615, "isTopResearch": false, "rank": 135}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 761, "rank": 408}, "ai_jobs": {"counts": null, "total": 163, "rank": 258}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Two Sigma Investments is a New York City-based hedge fund that uses a variety of technological methods, including artificial intelligence, machine learning, and distributed computing, for its trading strategies. The firm is run by John Overdeck and David Siegel.", "wikipedia_link": "https://en.wikipedia.org/wiki/Two_Sigma", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2337, "country": "United States", "website": "http://www.generalmills.com/", "crunchbase": {"text": "61cabb85-fa79-88cd-31bb-69f8ccc3b04c", "url": "https://www.crunchbase.com/organization/generalmills"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/general-mills"], "stage": "Mature", "name": "General Mills", "patent_name": "general mills", "continent": "North America", "local_logo": "general_mills.png", "aliases": "General Mills Inc; General Mills, Inc", "permid_links": [{"text": 4295904061, "url": "https://permid.org/1-4295904061"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "DUS:GRM", "url": "https://www.google.com/finance/quote/dus:grm"}, {"text": "MUN:GRM", "url": "https://www.google.com/finance/quote/grm:mun"}, {"text": "SWX:GIS", "url": "https://www.google.com/finance/quote/gis:swx"}, {"text": "DEU:GIS", "url": "https://www.google.com/finance/quote/deu:gis"}, {"text": "MOEX:GIS-RM", "url": "https://www.google.com/finance/quote/gis-rm:moex"}, {"text": "FRA:GRM", "url": "https://www.google.com/finance/quote/fra:grm"}, {"text": "NYQ:GIS", "url": "https://www.google.com/finance/quote/gis:nyq"}, {"text": "BER:GRM", "url": "https://www.google.com/finance/quote/ber:grm"}, {"text": "BRN:GIS", "url": "https://www.google.com/finance/quote/brn:gis"}, {"text": "VIE:GIS", "url": "https://www.google.com/finance/quote/gis:vie"}, {"text": "STU:GRM", "url": "https://www.google.com/finance/quote/grm:stu"}, {"text": "GER:GRMX", "url": "https://www.google.com/finance/quote/ger:grmx"}, {"text": "MEX:GIS", "url": "https://www.google.com/finance/quote/gis:mex"}], "crunchbase_description": "General Mills is a food company that manufactures and markets branded consumer foods.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Feature extraction", "field_count": 1}, {"field_name": "Sentiment analysis", "field_count": 1}, {"field_name": "Data domain", "field_count": 1}], "clusters": [{"cluster_id": 616, "cluster_count": 1}, {"cluster_id": 6635, "cluster_count": 1}, {"cluster_id": 85840, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 3090, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "cancer_detection", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "tumour_classification", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}, {"referent": "magnetic_resonance_fingerprinting", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "sentiment_detection", "task_count": 1}, {"referent": "materials_imaging", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "appo", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "cross_view_training", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "general", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [38, 22, 27, 21, 24, 22, 32, 37, 30, 19, 0], "total": 272, "isTopResearch": false, "rank": 367, "fortune500_rank": 140}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 2, 0], "total": 4, "isTopResearch": false, "rank": 573, "fortune500_rank": 157}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "fortune500_rank": 419}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], "total": 3, "isTopResearch": false, "rank": 857, "fortune500_rank": 236}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0.0, 0, 1.5, 0], "total": 0.75, "isTopResearch": false, "rank": 901, "fortune500_rank": 250}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 748, "rank": 409, "fortune500_rank": 224}, "ai_jobs": {"counts": null, "total": 203, "rank": 229, "fortune500_rank": 123}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "General Mills, Inc., is an American multinational manufacturer and marketer of branded consumer foods sold through retail stores. It is headquartered in Golden Valley, Minnesota, a suburb of Minneapolis. Often nicknamed \"Big G\", the company markets many well-known North American brands, including Gold Medal flour, Annie's Homegrown, Betty Crocker, Yoplait, Colombo, Totino's, Pillsbury, Old El Paso, H\u00e4agen-Dazs, Cheerios, Trix, Cocoa Puffs, and Lucky Charms. Its brand portfolio includes more than 89 other leading U.S. brands and numerous category leaders around the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/General_Mills", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2475, "country": "United States", "website": "https://www.regions.com/", "crunchbase": {"text": "93b72ae4-ff71-0275-3810-1294c94a6a4f", "url": "https://www.crunchbase.com/organization/regions-financial"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/regions-financial-corporation"], "stage": "Mature", "name": "Regions Financial Corp.", "patent_name": "regions financial corp.", "continent": "North America", "local_logo": "regions_financial_corp.png", "aliases": "Regions Bank; Regions Financial; Regions Financial Corporation", "permid_links": [{"text": 4295907751, "url": "https://permid.org/1-4295907751"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:RF.PRB", "url": "https://www.google.com/finance/quote/nyse:rf.prb"}, {"text": "NYSE:RF", "url": "https://www.google.com/finance/quote/nyse:rf"}, {"text": "NYSE:RF.PRE", "url": "https://www.google.com/finance/quote/nyse:rf.pre"}, {"text": "NYSE:RF.PRC", "url": "https://www.google.com/finance/quote/nyse:rf.prc"}], "market_full": [{"text": "NYQ:RF", "url": "https://www.google.com/finance/quote/nyq:rf"}, {"text": "NYSE:RF.PRB", "url": "https://www.google.com/finance/quote/nyse:rf.prb"}, {"text": "SAO:R1FC34", "url": "https://www.google.com/finance/quote/r1fc34:sao"}, {"text": "HAN:RN7", "url": "https://www.google.com/finance/quote/han:rn7"}, {"text": "NYSE:RF", "url": "https://www.google.com/finance/quote/nyse:rf"}, {"text": "ASE:RF.PRE", "url": "https://www.google.com/finance/quote/ase:rf.pre"}, {"text": "STU:RN7", "url": "https://www.google.com/finance/quote/rn7:stu"}, {"text": "ASE:RF.PRC", "url": "https://www.google.com/finance/quote/ase:rf.prc"}, {"text": "GER:RN7X", "url": "https://www.google.com/finance/quote/ger:rn7x"}, {"text": "BER:RN7", "url": "https://www.google.com/finance/quote/ber:rn7"}, {"text": "NYQ:RF.PRC", "url": "https://www.google.com/finance/quote/nyq:rf.prc"}, {"text": "MEX:RF", "url": "https://www.google.com/finance/quote/mex:rf"}, {"text": "BRN:RN7", "url": "https://www.google.com/finance/quote/brn:rn7"}, {"text": "NYSE:RF.PRE", "url": "https://www.google.com/finance/quote/nyse:rf.pre"}, {"text": "MCX:RF-RM", "url": "https://www.google.com/finance/quote/mcx:rf-rm"}, {"text": "MUN:RN7", "url": "https://www.google.com/finance/quote/mun:rn7"}, {"text": "ASE:RF", "url": "https://www.google.com/finance/quote/ase:rf"}, {"text": "ASE:RF.PRB", "url": "https://www.google.com/finance/quote/ase:rf.prb"}, {"text": "DEU:RF", "url": "https://www.google.com/finance/quote/deu:rf"}, {"text": "NYQ:RF.PRE", "url": "https://www.google.com/finance/quote/nyq:rf.pre"}, {"text": "DUS:RN7", "url": "https://www.google.com/finance/quote/dus:rn7"}, {"text": "NYSE:RF.PRC", "url": "https://www.google.com/finance/quote/nyse:rf.prc"}, {"text": "LSE:0KV3", "url": "https://www.google.com/finance/quote/0kv3:lse"}, {"text": "FRA:RN7", "url": "https://www.google.com/finance/quote/fra:rn7"}, {"text": "NYQ:RF.PRB", "url": "https://www.google.com/finance/quote/nyq:rf.prb"}], "crunchbase_description": "Regions Financial is a finance company and it has launched regions mobile deposit for their customer", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Inference", "field_count": 1}], "clusters": [{"cluster_id": 16597, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 2475, "referenced_count": 1}], "tasks": [{"referent": "software_defect_prediction", "task_count": 2}, {"referent": "robots", "task_count": 1}, {"referent": "speech_recognition", "task_count": 1}], "methods": [{"referent": "causal_inference", "method_count": 2}, {"referent": "instance_segmentation_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 1, 1, 4, 0, 0, 1, 1, 0], "total": 9, "isTopResearch": false, "rank": 958, "fortune500_rank": 330}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 1, 0, 0, 0, 1, 0, 1, 2, 0, 0], "total": 6, "isTopResearch": false, "rank": 805, "fortune500_rank": 220}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 741, "rank": 410, "fortune500_rank": 225}, "ai_jobs": {"counts": null, "total": 105, "rank": 328, "fortune500_rank": 177}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Regions Financial Corporation is a bank holding company headquartered in the Regions Center in Birmingham, Alabama. The company provides retail banking and commercial banking, trust, stockbrokerage, and mortgage services. Its banking subsidiary, Regions Bank, operates 1,952 automated teller machines and 1,454 branches in 16 states in the Southern United States and Midwestern United States.\nRegions is ranked 460th on the Fortune 500 and is component headquartered in Alabama. Regions is also on the list of largest banks in the United States.\nRegions is the largest deposit holder in Alabama and Tennessee. It is also one of the largest deposit holders in Arkansas, Louisiana, Mississippi, and Florida.", "wikipedia_link": "https://en.wikipedia.org/wiki/Regions_Financial_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2396, "country": "United States", "website": "https://www.lfg.com/", "crunchbase": {"text": "baf86045-7415-30e1-ed64-a910e543f35a", "url": "https://www.crunchbase.com/organization/lincoln-financial-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lincoln-financial-group"], "stage": "Unknown", "name": "Lincoln National", "patent_name": "lincoln national", "continent": "North America", "local_logo": "lincoln_national.png", "aliases": "Lincoln Financial; Lincoln Financial Group; Lincoln National Corp; Lincoln National Corporation", "permid_links": [{"text": 4295904418, "url": "https://permid.org/1-4295904418"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Lincoln Financial Group is a Fortune 500 company offering a diverse range of financial services and solutions.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 741, "rank": 410, "fortune500_rank": 225}, "ai_jobs": {"counts": null, "total": 77, "rank": 388, "fortune500_rank": 205}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Lincoln National Corporation is a Fortune 250 American holding company, which operates multiple insurance and investment management businesses through subsidiary companies. Lincoln Financial Group is the marketing name for LNC and its subsidiary companies.", "wikipedia_link": "https://en.wikipedia.org/wiki/Lincoln_National_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 597, "country": "Japan", "website": "https://www.nissan-global.com/EN/", "crunchbase": {"text": "718eb41b-a309-8cd4-5e01-9958ac876ee5", "url": "https://www.crunchbase.com/organization/nissan-motor"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nissan-motor-corporation"], "stage": "Mature", "name": "Nissan Motor Corporation", "patent_name": "nissan motor corporation", "continent": "Asia", "local_logo": "nissan_motor_corporation.png", "aliases": "Nissan; Nissan Motor; Nissan Motor Co., Ltd", "permid_links": [{"text": 4295877341, "url": "https://permid.org/1-4295877341"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:7201", "url": "https://www.google.com/finance/quote/7201:tyo"}], "market_full": [{"text": "NSANY:OTC PINK", "url": "https://www.google.com/finance/quote/nsany:otc pink"}, {"text": "TYO:7201", "url": "https://www.google.com/finance/quote/7201:tyo"}], "crunchbase_description": "Nissan is a multinational automobile manufacturer that sells its cars under the Nissan, Infiniti, and Datsun brands.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 4}, {"field_name": "Advanced driver assistance systems", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Robot", "field_count": 2}, {"field_name": "Machine vision", "field_count": 2}, {"field_name": "Driving simulator", "field_count": 2}, {"field_name": "Blind spot", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}, {"field_name": "Change detection", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}], "clusters": [{"cluster_id": 14335, "cluster_count": 5}, {"cluster_id": 14243, "cluster_count": 5}, {"cluster_id": 11690, "cluster_count": 3}, {"cluster_id": 54968, "cluster_count": 3}, {"cluster_id": 376, "cluster_count": 3}, {"cluster_id": 19977, "cluster_count": 3}, {"cluster_id": 18183, "cluster_count": 2}, {"cluster_id": 49096, "cluster_count": 2}, {"cluster_id": 38873, "cluster_count": 2}, {"cluster_id": 10002, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 597, "referenced_count": 20}, {"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 790, "referenced_count": 10}, {"ref_CSET_id": 783, "referenced_count": 8}, {"ref_CSET_id": 800, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 1884, "referenced_count": 4}, {"ref_CSET_id": 456, "referenced_count": 3}, {"ref_CSET_id": 1126, "referenced_count": 3}, {"ref_CSET_id": 789, "referenced_count": 2}], "tasks": [{"referent": "autonomous_driving", "task_count": 23}, {"referent": "autonomous_vehicles", "task_count": 13}, {"referent": "classification", "task_count": 10}, {"referent": "vehicle_detection", "task_count": 9}, {"referent": "image_processing", "task_count": 4}, {"referent": "system_identification", "task_count": 3}, {"referent": "injury_prediction", "task_count": 3}, {"referent": "obstacle_avoidance", "task_count": 3}, {"referent": "feature_selection", "task_count": 3}, {"referent": "load_forecasting", "task_count": 3}], "methods": [{"referent": "double_q_learning", "method_count": 7}, {"referent": "mad_learning", "method_count": 5}, {"referent": "contrastive_predictive_coding", "method_count": 3}, {"referent": "automl", "method_count": 3}, {"referent": "reinforcement_learning", "method_count": 3}, {"referent": "q_learning", "method_count": 3}, {"referent": "adagrad", "method_count": 2}, {"referent": "clustering", "method_count": 2}, {"referent": "dcgan", "method_count": 2}, {"referent": "ca", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [125, 194, 80, 76, 95, 88, 108, 66, 75, 55, 3], "total": 965, "isTopResearch": false, "rank": 193, "sp500_rank": 143}, "ai_publications": {"counts": [17, 11, 10, 4, 5, 7, 7, 5, 6, 2, 0], "total": 74, "isTopResearch": false, "rank": 147, "sp500_rank": 97}, "ai_publications_growth": {"counts": [], "total": -25.07936507936508, "isTopResearch": false, "rank": 1371, "sp500_rank": 371}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [16, 29, 51, 46, 79, 90, 104, 160, 150, 114, 1], "total": 840, "isTopResearch": false, "rank": 206, "sp500_rank": 115}, "cv_pubs": {"counts": [4, 4, 2, 0, 2, 1, 1, 2, 3, 0, 0], "total": 19, "isTopResearch": true, "rank": 143, "sp500_rank": 89}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [5, 0, 2, 1, 2, 1, 3, 2, 1, 2, 0], "total": 19, "isTopResearch": true, "rank": 80, "sp500_rank": 61}, "citations_per_article": {"counts": [0.9411764705882353, 2.6363636363636362, 5.1, 11.5, 15.8, 12.857142857142858, 14.857142857142858, 32.0, 25.0, 57.0, 0], "total": 11.35135135135135, "isTopResearch": false, "rank": 492, "sp500_rank": 172}}, "patents": {"ai_patents": {"counts": [2, 18, 31, 19, 18, 18, 14, 7, 7, 0, 0], "total": 134, "table": null, "rank": 137, "sp500_rank": 88}, "ai_patents_growth": {"counts": [], "total": -24.074074074074076, "table": null, "rank": 1468, "sp500_rank": 433}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [20, 180, 310, 190, 180, 180, 140, 70, 70, 0, 0], "total": 1340, "table": null, "rank": 137, "sp500_rank": 88}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 1, 0, 1, 1, 0, 1, 0, 0, 0], "total": 5, "table": null, "rank": 78, "sp500_rank": 64}, "Life_Sciences": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [1, 15, 30, 17, 17, 14, 13, 5, 4, 0, 0], "total": 116, "table": "industry", "rank": 24, "sp500_rank": 19}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 116, "sp500_rank": 80}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0], "total": 5, "table": null, "rank": 336, "sp500_rank": 166}, "Banking_and_Finance": {"counts": [0, 1, 0, 1, 1, 2, 1, 1, 0, 0, 0], "total": 7, "table": "industry", "rank": 88, "sp500_rank": 64}, "Telecommunications": {"counts": [0, 0, 2, 2, 2, 3, 0, 0, 0, 0, 0], "total": 9, "table": "industry", "rank": 174, "sp500_rank": 101}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 2, 3, 1, 1, 1, 0, 0, 0, 0, 0], "total": 8, "table": "industry", "rank": 168, "sp500_rank": 113}, "Energy_Management": {"counts": [1, 8, 7, 2, 0, 0, 0, 0, 0, 0, 0], "total": 18, "table": "industry", "rank": 32, "sp500_rank": 29}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 2, 3, 1, 1, 1, 0, 0, 0, 0, 0], "total": 8, "table": "application", "rank": 143, "sp500_rank": 100}, "Control": {"counts": [1, 16, 31, 19, 18, 15, 13, 4, 2, 0, 0], "total": 119, "table": "application", "rank": 32, "sp500_rank": 26}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 2, 5, 4, 2, 5, 0, 2, 2, 0, 0], "total": 22, "table": "application", "rank": 180, "sp500_rank": 105}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 7, 17, 6, 8, 9, 3, 2, 2, 0, 0], "total": 54, "table": "application", "rank": 43, "sp500_rank": 33}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 728, "rank": 412, "sp500_rank": 200}, "ai_jobs": {"counts": null, "total": 102, "rank": 330, "sp500_rank": 179}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "The Nissan Motor Company, Ltd. (Japanese: \u65e5\u7523\u81ea\u52d5\u8eca\u682a\u5f0f\u4f1a\u793e, Hepburn: Nissan Jid\u014dsha kabushiki gaisha) (trading as Nissan Motor Corporation and often shortened to Nissan)[a] is a Japanese multinational automobile manufacturer headquartered in Nishi-ku, Yokohama, Japan. The company sells its vehicles under the Nissan, Infiniti, and Datsun brands (with in-house performance tuning products labelled Nismo). The company traces its name to the Nissan zaibatsu, now called Nissan Group.", "wikipedia_link": "https://en.wikipedia.org/wiki/Nissan", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2209, "country": "United States", "website": "http://www.aep.com/", "crunchbase": {"text": "5d195c20-4b38-3712-83d4-f9e056e2e248", "url": "https://www.crunchbase.com/organization/american-electric-power"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/american-electric-power"], "stage": "Mature", "name": "American Electric Power", "patent_name": "american electric power", "continent": "North America", "local_logo": "american_electric_power.png", "aliases": "Aep; American Electric Power Company Inc", "permid_links": [{"text": 4295903333, "url": "https://permid.org/1-4295903333"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:AEP", "url": "https://www.google.com/finance/quote/aep:nasdaq"}, {"text": "NASDAQ:AEPPZ", "url": "https://www.google.com/finance/quote/aeppz:nasdaq"}, {"text": "NASDAQ:AEPPL", "url": "https://www.google.com/finance/quote/aeppl:nasdaq"}], "market_full": [{"text": "MUN:LID", "url": "https://www.google.com/finance/quote/lid:mun"}, {"text": "MUN:AEP", "url": "https://www.google.com/finance/quote/aep:mun"}, {"text": "HAN:AEP", "url": "https://www.google.com/finance/quote/aep:han"}, {"text": "NASDAQ:AEP", "url": "https://www.google.com/finance/quote/aep:nasdaq"}, {"text": "MCX:AEP-RM", "url": "https://www.google.com/finance/quote/aep-rm:mcx"}, {"text": "LSE:0HEC", "url": "https://www.google.com/finance/quote/0hec:lse"}, {"text": "HAM:AEP", "url": "https://www.google.com/finance/quote/aep:ham"}, {"text": "NASDAQ:AEPPZ", "url": "https://www.google.com/finance/quote/aeppz:nasdaq"}, {"text": "DEU:AEP", "url": "https://www.google.com/finance/quote/aep:deu"}, {"text": "BRN:AEP", "url": "https://www.google.com/finance/quote/aep:brn"}, {"text": "DUS:AEP", "url": "https://www.google.com/finance/quote/aep:dus"}, {"text": "STU:AEP", "url": "https://www.google.com/finance/quote/aep:stu"}, {"text": "VIE:AEPC", "url": "https://www.google.com/finance/quote/aepc:vie"}, {"text": "FRA:AEP", "url": "https://www.google.com/finance/quote/aep:fra"}, {"text": "GER:AEPX", "url": "https://www.google.com/finance/quote/aepx:ger"}, {"text": "SAO:A1EP34", "url": "https://www.google.com/finance/quote/a1ep34:sao"}, {"text": "BER:AEP", "url": "https://www.google.com/finance/quote/aep:ber"}, {"text": "MEX:AEP", "url": "https://www.google.com/finance/quote/aep:mex"}, {"text": "NASDAQ:AEPPL", "url": "https://www.google.com/finance/quote/aeppl:nasdaq"}], "crunchbase_description": "American Electric Power is an investment firm that invests in companies that focuses on clean energy and electricity distribution.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Bearing (navigation)", "field_count": 1}], "clusters": [{"cluster_id": 4512, "cluster_count": 1}, {"cluster_id": 24291, "cluster_count": 1}, {"cluster_id": 16245, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "dti", "task_count": 1}], "methods": [{"referent": "maddpg", "method_count": 1}, {"referent": "distributed_shampoo", "method_count": 1}, {"referent": "sm3", "method_count": 1}, {"referent": "reduction_b", "method_count": 1}, {"referent": "root", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 12, 13, 13, 9, 17, 11, 15, 7, 13, 0], "total": 115, "isTopResearch": false, "rank": 489, "fortune500_rank": 182}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [4, 5, 0, 5, 2, 5, 7, 3, 3, 1, 0], "total": 35, "isTopResearch": false, "rank": 638, "fortune500_rank": 173}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 2.0, 0, 0, 0, 0, 0, 0], "total": 35.0, "isTopResearch": false, "rank": 157, "fortune500_rank": 43}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 726, "rank": 413, "fortune500_rank": 227}, "ai_jobs": {"counts": null, "total": 51, "rank": 479, "fortune500_rank": 255}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "American Electric Power (AEP), (railcar reporting mark: AEPX) is a major investor-owned electric utility in the United States, delivering electricity to more than five million customers in 11 states.", "wikipedia_link": "https://en.wikipedia.org/wiki/American_Electric_Power", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2523, "country": "United States", "website": "https://www.unum.com/", "crunchbase": {"text": "5d810b7a-629c-2858-ae4b-72d14309fdda", "url": "https://www.crunchbase.com/organization/unum-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/unum"], "stage": "Mature", "name": "Unum Group", "patent_name": "unum group", "continent": "North America", "local_logo": "unum_group.png", "aliases": "Unum; Unum Insurance", "permid_links": [{"text": 4295912315, "url": "https://permid.org/1-4295912315"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:UNM", "url": "https://www.google.com/finance/quote/nyse:unm"}, {"text": "NYSE:UNMA", "url": "https://www.google.com/finance/quote/nyse:unma"}], "market_full": [{"text": "NYSE:UNM", "url": "https://www.google.com/finance/quote/nyse:unm"}, {"text": "BRN:UUM", "url": "https://www.google.com/finance/quote/brn:uum"}, {"text": "NYQ:UNM", "url": "https://www.google.com/finance/quote/nyq:unm"}, {"text": "NYQ:UNMA", "url": "https://www.google.com/finance/quote/nyq:unma"}, {"text": "DEU:UUM", "url": "https://www.google.com/finance/quote/deu:uum"}, {"text": "FRA:UUM", "url": "https://www.google.com/finance/quote/fra:uum"}, {"text": "DUS:UUM", "url": "https://www.google.com/finance/quote/dus:uum"}, {"text": "BER:UUM", "url": "https://www.google.com/finance/quote/ber:uum"}, {"text": "ASE:UNMA", "url": "https://www.google.com/finance/quote/ase:unma"}, {"text": "LSE:0LJN", "url": "https://www.google.com/finance/quote/0ljn:lse"}, {"text": "MUN:UUM", "url": "https://www.google.com/finance/quote/mun:uum"}, {"text": "NYSE:UNMA", "url": "https://www.google.com/finance/quote/nyse:unma"}, {"text": "SAO:U1NM34", "url": "https://www.google.com/finance/quote/sao:u1nm34"}, {"text": "STU:UUM", "url": "https://www.google.com/finance/quote/stu:uum"}, {"text": "ASE:UNM", "url": "https://www.google.com/finance/quote/ase:unm"}, {"text": "MCX:UNM-RM", "url": "https://www.google.com/finance/quote/mcx:unm-rm"}], "crunchbase_description": "Since their founding in 1848, Unum has been known for breaking new ground in the business of benefits.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 724, "rank": 414, "fortune500_rank": 228}, "ai_jobs": {"counts": null, "total": 67, "rank": 417, "fortune500_rank": 222}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Unum Group is a Chattanooga, Tennessee-based Fortune 500 insurance company formerly known as UnumProvident. Unum Group was created by the 1999 merger of Unum Corporation and The Provident Companies and comprises four distinct businesses \u2013 Unum US, Unum UK, Unum Poland and Colonial Life. Its underwriting insurers include The Paul Revere Life Insurance Company and Provident Life and Accident Insurance Company. Unum is the top disability insurer in both the United States and United Kingdom and also offers other insurance products including accident, critical illness and life insurance.", "wikipedia_link": "https://en.wikipedia.org/wiki/Unum", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2384, "country": "United States", "website": "https://www.kimberly-clark.com", "crunchbase": {"text": "c2455895-15fc-3a81-5377-edc95c7fc1fc", "url": "https://www.crunchbase.com/organization/kimberly-clark-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kimberly-clark"], "stage": "Mature", "name": "Kimberly-Clark", "patent_name": "kimberly-clark", "continent": "North America", "local_logo": "kimberly-clark.png", "aliases": "Kimberly-Clark Corp; Kimberly-Clark Corporation", "permid_links": [{"text": 4295904369, "url": "https://permid.org/1-4295904369"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:KMB", "url": "https://www.google.com/finance/quote/kmb:nyse"}], "market_full": [{"text": "GER:KMYX", "url": "https://www.google.com/finance/quote/ger:kmyx"}, {"text": "ASE:KMB", "url": "https://www.google.com/finance/quote/ase:kmb"}, {"text": "NYSE:KMB", "url": "https://www.google.com/finance/quote/kmb:nyse"}, {"text": "BUE:KMB3", "url": "https://www.google.com/finance/quote/bue:kmb3"}, {"text": "MCX:KMB-RM", "url": "https://www.google.com/finance/quote/kmb-rm:mcx"}, {"text": "LSE:0JQZ", "url": "https://www.google.com/finance/quote/0jqz:lse"}, {"text": "FRA:KMY", "url": "https://www.google.com/finance/quote/fra:kmy"}, {"text": "MEX:KMB*", "url": "https://www.google.com/finance/quote/kmb*:mex"}, {"text": "BRN:KMY", "url": "https://www.google.com/finance/quote/brn:kmy"}, {"text": "MUN:KMY", "url": "https://www.google.com/finance/quote/kmy:mun"}, {"text": "DEU:KMB", "url": "https://www.google.com/finance/quote/deu:kmb"}, {"text": "SAO:KMBB34", "url": "https://www.google.com/finance/quote/kmbb34:sao"}, {"text": "VIE:KMBC", "url": "https://www.google.com/finance/quote/kmbc:vie"}, {"text": "STU:KMY", "url": "https://www.google.com/finance/quote/kmy:stu"}, {"text": "DUS:KMY", "url": "https://www.google.com/finance/quote/dus:kmy"}, {"text": "NYQ:KMB", "url": "https://www.google.com/finance/quote/kmb:nyq"}, {"text": "BER:KMY", "url": "https://www.google.com/finance/quote/ber:kmy"}], "crunchbase_description": "American personal care corporation.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Virtual reality", "field_count": 1}], "clusters": [{"cluster_id": 3353, "cluster_count": 1}, {"cluster_id": 5861, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "clinical_language_translation", "task_count": 1}], "methods": [{"referent": "edgeboxes", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [34, 53, 49, 22, 28, 10, 18, 13, 10, 17, 0], "total": 254, "isTopResearch": false, "rank": 376, "fortune500_rank": 145}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 2, 9, 10, 16, 19, 25, 28, 26, 32, 0], "total": 167, "isTopResearch": false, "rank": 416, "fortune500_rank": 120}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 2.0, 0, 0, 0, 0, 25.0, 0, 0, 0, 0], "total": 83.5, "isTopResearch": false, "rank": 47, "fortune500_rank": 11}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 10, 0, 0, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 721, "rank": 415, "fortune500_rank": 229}, "ai_jobs": {"counts": null, "total": 131, "rank": 292, "fortune500_rank": 159}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services", "wikipedia_description": "Kimberly-Clark Corporation is an American multinational personal care corporation that produces mostly paper-based consumer products. The company manufactures sanitary paper products and surgical & medical instruments. Kimberly-Clark brand name products include Kleenex facial tissue, Kotex feminine hygiene products, Cottonelle, Scott and Andrex toilet paper, Wypall utility wipes, KimWipes scientific cleaning wipes and Huggies disposable diapers and baby wipes.", "wikipedia_link": "https://en.wikipedia.org/wiki/Kimberly-Clark", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2450, "country": "United States", "website": "http://www.parker.com/", "crunchbase": {"text": "3d934282-bdd8-b5ad-ff8a-3d56a5c11ccd", "url": "https://www.crunchbase.com/organization/parker-hannifin"}, "child_crunchbase": [{"text": "8831b819-3467-932f-77ec-7486246fb72d", "url": "https://www.crunchbase.com/organization/meggitt-plc"}], "linkedin": ["https://www.linkedin.com/company/parker-hannifin", "https://www.linkedin.com/company/meggitt-plc"], "stage": "Mature", "name": "Parker-Hannifin Corp", "patent_name": "parker-hannifin corp", "continent": "North America", "local_logo": "parker-hannifin_corp.png", "aliases": "Parker; Parker Hannifin; Parker Hannifin Corp", "permid_links": [{"text": 4295903206, "url": "https://permid.org/1-4295903206"}, {"text": 4295895717, "url": "https://permid.org/1-4295895717"}], "parent_info": null, "agg_child_info": "Meggitt Plc", "unagg_child_info": null, "market_filt": [{"text": "NYSE:PH", "url": "https://www.google.com/finance/quote/nyse:ph"}], "market_full": [{"text": "MEX:PH*", "url": "https://www.google.com/finance/quote/mex:ph*"}, {"text": "SAO:P1HC34", "url": "https://www.google.com/finance/quote/p1hc34:sao"}, {"text": "LSE:0KFZ", "url": "https://www.google.com/finance/quote/0kfz:lse"}, {"text": "NYQ:PH", "url": "https://www.google.com/finance/quote/nyq:ph"}, {"text": "BER:PAR", "url": "https://www.google.com/finance/quote/ber:par"}, {"text": "VIE:PH", "url": "https://www.google.com/finance/quote/ph:vie"}, {"text": "MCX:PH-RM", "url": "https://www.google.com/finance/quote/mcx:ph-rm"}, {"text": "ASE:PH", "url": "https://www.google.com/finance/quote/ase:ph"}, {"text": "NYSE:PH", "url": "https://www.google.com/finance/quote/nyse:ph"}, {"text": "FRA:PAR", "url": "https://www.google.com/finance/quote/fra:par"}, {"text": "GER:PARX", "url": "https://www.google.com/finance/quote/ger:parx"}, {"text": "MUN:PAR", "url": "https://www.google.com/finance/quote/mun:par"}, {"text": "STU:PAR", "url": "https://www.google.com/finance/quote/par:stu"}, {"text": "DEU:PH", "url": "https://www.google.com/finance/quote/deu:ph"}, {"text": "DUS:PAR", "url": "https://www.google.com/finance/quote/dus:par"}, {"text": "BRN:PAR", "url": "https://www.google.com/finance/quote/brn:par"}, {"text": "HAN:PAR", "url": "https://www.google.com/finance/quote/han:par"}], "crunchbase_description": "Parker Hannifin is a diversified manufacturer of motion.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Kalman filter", "field_count": 1}], "clusters": [{"cluster_id": 33868, "cluster_count": 2}, {"cluster_id": 56414, "cluster_count": 2}, {"cluster_id": 2202, "cluster_count": 2}, {"cluster_id": 34528, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2450, "referenced_count": 5}, {"ref_CSET_id": 101, "referenced_count": 4}], "tasks": [{"referent": "action_localization", "task_count": 1}, {"referent": "attitude_estimation", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "industrial_robots", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "environmental_sound_classification", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "gait_recognition", "task_count": 1}, {"referent": "locomotion", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}], "methods": [{"referent": "wgan_gp", "method_count": 2}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "fixed_factorized_attention", "method_count": 1}, {"referent": "edgeboxes", "method_count": 1}, {"referent": "estimation_statistics", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [12, 9, 16, 17, 19, 16, 18, 19, 12, 10, 0], "total": 148, "isTopResearch": false, "rank": 456, "fortune500_rank": 174}, "ai_publications": {"counts": [1, 0, 2, 1, 1, 0, 0, 1, 1, 0, 0], "total": 7, "isTopResearch": false, "rank": 481, "fortune500_rank": 134}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "fortune500_rank": 419}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 2, 16, 31, 29, 34, 29, 40, 54, 24, 1], "total": 260, "isTopResearch": false, "rank": 353, "fortune500_rank": 105}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0], "total": 5, "isTopResearch": true, "rank": 171, "fortune500_rank": 44}, "citations_per_article": {"counts": [0.0, 0, 8.0, 31.0, 29.0, 0, 0, 40.0, 54.0, 0, 0], "total": 37.142857142857146, "isTopResearch": false, "rank": 147, "fortune500_rank": 38}}, "patents": {"ai_patents": {"counts": [1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 565, "fortune500_rank": 176}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 10, 10, 0, 0, 10, 0, 0, 0, 0, 0], "total": 40, "table": null, "rank": 565, "fortune500_rank": 176}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 97, "fortune500_rank": 24}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 721, "rank": 415, "fortune500_rank": 229}, "ai_jobs": {"counts": null, "total": 40, "rank": 527, "fortune500_rank": 274}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Parker-Hannifin Corporation, originally Parker Appliance Company, usually referred to as just Parker, is an American corporation specializing in motion and control technologies. Its corporate headquarters are in Mayfield Heights, Ohio, in Greater Cleveland (with a Cleveland mailing address).", "wikipedia_link": "https://en.wikipedia.org/wiki/Parker_Hannifin", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2120, "country": "Taiwan", "website": "https://www.wistron.com/", "crunchbase": {"text": " b1861b4f-b1cc-817f-7a26-a0c64adbd194 ", "url": " https://www.crunchbase.com/organization/wistron-corporation "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/wistron"], "stage": "Mature", "name": "Wistron", "patent_name": "Wistron", "continent": "Asia", "local_logo": null, "aliases": "Wistron; Wistron Corporation", "permid_links": [{"text": 4295892600, "url": "https://permid.org/1-4295892600"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "TAI:3231", "url": "https://www.google.com/finance/quote/3231:TAI"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Codebook", "field_count": 1}, {"field_name": "Frame rate", "field_count": 1}, {"field_name": "Activity recognition", "field_count": 1}, {"field_name": "Contrast (statistics)", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Kalman filter", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Parsing", "field_count": 1}, {"field_name": "Actuator", "field_count": 1}], "clusters": [{"cluster_id": 5689, "cluster_count": 1}, {"cluster_id": 23892, "cluster_count": 1}, {"cluster_id": 2304, "cluster_count": 1}, {"cluster_id": 39157, "cluster_count": 1}, {"cluster_id": 4473, "cluster_count": 1}, {"cluster_id": 88164, "cluster_count": 1}, {"cluster_id": 35833, "cluster_count": 1}, {"cluster_id": 6567, "cluster_count": 1}, {"cluster_id": 2418, "cluster_count": 1}, {"cluster_id": 13727, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 1897, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "system_identification", "task_count": 2}, {"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "patch_matching", "task_count": 2}, {"referent": "image_recognition", "task_count": 1}, {"referent": "robotic_grasping", "task_count": 1}, {"referent": "protein_function_prediction", "task_count": 1}, {"referent": "face_anti_spoofing", "task_count": 1}, {"referent": "individual_identification", "task_count": 1}, {"referent": "blood_pressure_estimation", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 4}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "linear_warmup_with_linear_decay", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "linear_regression", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "r_fcn", "method_count": 1}, {"referent": "wfst", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "rule_based_systems", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [9, 4, 7, 4, 8, 10, 7, 10, 13, 10, 1], "total": 83, "isTopResearch": false, "rank": 541, "sp500_rank": 304}, "ai_publications": {"counts": [5, 0, 0, 0, 0, 1, 0, 4, 3, 1, 0], "total": 14, "isTopResearch": false, "rank": 359, "sp500_rank": 192}, "ai_publications_growth": {"counts": [], "total": -45.833333333333336, "isTopResearch": false, "rank": 1437, "sp500_rank": 398}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [2, 4, 5, 5, 9, 7, 11, 12, 42, 33, 3], "total": 133, "isTopResearch": false, "rank": 459, "sp500_rank": 205}, "cv_pubs": {"counts": [3, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "sp500_rank": 146}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [2, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0], "total": 6, "isTopResearch": true, "rank": 156, "sp500_rank": 101}, "citations_per_article": {"counts": [0.4, 0, 0, 0, 0, 7.0, 0, 3.0, 14.0, 33.0, 0], "total": 9.5, "isTopResearch": false, "rank": 558, "sp500_rank": 209}}, "patents": {"ai_patents": {"counts": [0, 1, 5, 2, 2, 7, 17, 20, 8, 0, 0], "total": 62, "table": null, "rank": 202, "sp500_rank": 126}, "ai_patents_growth": {"counts": [], "total": 136.83473389355743, "table": null, "rank": 83, "sp500_rank": 36}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 10, 50, 20, 20, 70, 170, 200, 80, 0, 0], "total": 620, "table": null, "rank": 202, "sp500_rank": 126}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 2, 4, 3, 2, 0, 0], "total": 12, "table": "industry", "rank": 74, "sp500_rank": 50}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 1, 2, 0, 1, 2, 0, 0], "total": 7, "table": "industry", "rank": 112, "sp500_rank": 79}, "Transportation": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "sp500_rank": 119}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 2, 1, 0, 3, 4, 3, 1, 0, 0], "total": 14, "table": "industry", "rank": 226, "sp500_rank": 123}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 2, 1, 2, 1, 8, 6, 4, 0, 0], "total": 24, "table": "industry", "rank": 124, "sp500_rank": 79}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0], "total": 3, "table": "application", "rank": 139, "sp500_rank": 81}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 162, "sp500_rank": 88}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 244, "sp500_rank": 152}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0], "total": 3, "table": null, "rank": 212, "sp500_rank": 129}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 5, 12, 11, 5, 0, 0], "total": 33, "table": "application", "rank": 145, "sp500_rank": 88}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 2, 1, 6, 1, 2, 0, 0], "total": 12, "table": "application", "rank": 99, "sp500_rank": 73}, "Measuring_and_Testing": {"counts": [0, 1, 0, 1, 0, 2, 7, 0, 2, 0, 0], "total": 13, "table": "application", "rank": 104, "sp500_rank": 80}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 719, "rank": 417, "sp500_rank": 201}, "ai_jobs": {"counts": null, "total": 44, "rank": 506, "sp500_rank": 236}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 1957, "country": "Australia", "website": "https://www.woolworthsgroup.com.au/", "crunchbase": {"text": " e5b2946a-f8e9-4e2f-8987-14ae591cd749 ", "url": " https://www.crunchbase.com/organization/woolworths-group "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/woolworths-group"], "stage": "Mature", "name": "Woolworths Group", "patent_name": "Woolworths Group", "continent": "Oceania", "local_logo": null, "aliases": "Woolworths Group; Woolworths Group Limited", "permid_links": [{"text": 4295856585, "url": "https://permid.org/1-4295856585"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "HAM:WWR", "url": "https://www.google.com/finance/quote/HAM:WWR"}, {"text": "STU:WWR", "url": "https://www.google.com/finance/quote/STU:WWR"}, {"text": "DEU:WWR0", "url": "https://www.google.com/finance/quote/DEU:WWR0"}, {"text": "DEU:WOW", "url": "https://www.google.com/finance/quote/DEU:WOW"}, {"text": "FRA:WWR", "url": "https://www.google.com/finance/quote/FRA:WWR"}, {"text": "PKC:WOLWF", "url": "https://www.google.com/finance/quote/PKC:WOLWF"}, {"text": "PKC:WOLZY", "url": "https://www.google.com/finance/quote/PKC:WOLZY"}, {"text": "MUN:WWR", "url": "https://www.google.com/finance/quote/MUN:WWR"}, {"text": "ASX:WOW", "url": "https://www.google.com/finance/quote/ASX:WOW"}, {"text": "FRA:WWR0", "url": "https://www.google.com/finance/quote/FRA:WWR0"}, {"text": "BRN:WWR", "url": "https://www.google.com/finance/quote/BRN:WWR"}, {"text": "DUS:WWR", "url": "https://www.google.com/finance/quote/DUS:WWR"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 713, "rank": 418, "sp500_rank": 202}, "ai_jobs": {"counts": null, "total": 115, "rank": 314, "sp500_rank": 175}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 399, "country": "United States", "website": "http://www.corning.com/", "crunchbase": {"text": "d2d2d14c-84ed-a85c-3e3a-52eb330083e2", "url": "https://www.crunchbase.com/organization/corning"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/corning-incorporated"], "stage": "Mature", "name": "Corning Incorporated", "patent_name": "corning incorporated", "continent": "North America", "local_logo": "corning_incorporated.png", "aliases": "Corning; Corning Inc", "permid_links": [{"text": 4295903798, "url": "https://permid.org/1-4295903798"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:GLW", "url": "https://www.google.com/finance/quote/glw:nyse"}], "market_full": [{"text": "MEX:GLW", "url": "https://www.google.com/finance/quote/glw:mex"}, {"text": "MOEX:GLW-RM", "url": "https://www.google.com/finance/quote/glw-rm:moex"}, {"text": "NYSE:GLW", "url": "https://www.google.com/finance/quote/glw:nyse"}, {"text": "FRA:GLW", "url": "https://www.google.com/finance/quote/fra:glw"}], "crunchbase_description": "Corning is a manufacturer of building materials including glass, ceramic, related materials and technologies, and more.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Hyperspectral imaging", "field_count": 2}, {"field_name": "Linear model", "field_count": 1}, {"field_name": "Imaging science", "field_count": 1}, {"field_name": "Eye tracking", "field_count": 1}, {"field_name": "Automated guided vehicle", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Conditional random field", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Feature vector", "field_count": 1}, {"field_name": "Machine vision", "field_count": 1}], "clusters": [{"cluster_id": 49985, "cluster_count": 3}, {"cluster_id": 33159, "cluster_count": 2}, {"cluster_id": 23169, "cluster_count": 1}, {"cluster_id": 1105, "cluster_count": 1}, {"cluster_id": 5590, "cluster_count": 1}, {"cluster_id": 8293, "cluster_count": 1}, {"cluster_id": 64286, "cluster_count": 1}, {"cluster_id": 18076, "cluster_count": 1}, {"cluster_id": 387, "cluster_count": 1}, {"cluster_id": 4607, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 9}, {"ref_CSET_id": 1797, "referenced_count": 4}, {"ref_CSET_id": 399, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 1850, "referenced_count": 2}, {"ref_CSET_id": 2601, "referenced_count": 2}, {"ref_CSET_id": 1861, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 800, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "mobile_robot", "task_count": 2}, {"referent": "unmanned_aerial_vehicles", "task_count": 2}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "locomotion", "task_count": 1}, {"referent": "iris_recognition", "task_count": 1}, {"referent": "hyperspectral", "task_count": 1}, {"referent": "hand_gesture_recognition", "task_count": 1}, {"referent": "gaze_estimation", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "vqa_models", "method_count": 3}, {"referent": "linear_regression", "method_count": 2}, {"referent": "composite_fields", "method_count": 1}, {"referent": "hit_detector", "method_count": 1}, {"referent": "hyperparameter_search", "method_count": 1}, {"referent": "bart", "method_count": 1}, {"referent": "sig", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [281, 265, 275, 284, 293, 261, 268, 243, 243, 206, 9], "total": 2628, "isTopResearch": false, "rank": 103, "fortune500_rank": 40}, "ai_publications": {"counts": [1, 0, 2, 1, 1, 1, 2, 4, 3, 2, 0], "total": 17, "isTopResearch": false, "rank": 330, "fortune500_rank": 102}, "ai_publications_growth": {"counts": [], "total": 13.888888888888888, "isTopResearch": false, "rank": 140, "fortune500_rank": 39}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [12, 6, 6, 16, 13, 12, 21, 35, 79, 112, 5], "total": 317, "isTopResearch": false, "rank": 324, "fortune500_rank": 96}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [12.0, 0, 3.0, 16.0, 13.0, 12.0, 10.5, 8.75, 26.333333333333332, 56.0, 0], "total": 18.647058823529413, "isTopResearch": false, "rank": 336, "fortune500_rank": 105}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 5, 1, 0, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": -80.0, "table": null, "rank": 1574, "fortune500_rank": 453}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 50, 10, 0, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "fortune500_rank": 39}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 55, "fortune500_rank": 23}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 711, "rank": 419, "fortune500_rank": 231}, "ai_jobs": {"counts": null, "total": 73, "rank": 403, "fortune500_rank": 214}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Corning Incorporated is an American multinational technology company that specializes in specialty glass, ceramics, and related materials and technologies including advanced optics, primarily for industrial and scientific applications. The company was named Corning Glass Works until 1989. Corning divested its consumer product lines (including CorningWare and Visions Pyroceram-based cookware, Corelle Vitrelle tableware, and Pyrex glass bakeware) in 1998 by selling the Corning Consumer Products Company subsidiary (now known as Corelle Brands) to Borden, but still holds an interest of about 8 percent.", "wikipedia_link": "https://en.wikipedia.org/wiki/Corning_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1735, "country": "United States", "website": "http://www.newyorklife.com", "crunchbase": {"text": " cc5389af-8464-438d-8a2c-34696b72cbeb ", "url": "https://www.crunchbase.com/organization/new-york-life-insurance-co"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/newyorklife"], "stage": "Unknown", "name": "New York Life Insurance Company", "patent_name": "New York Life Insurance Company", "continent": "North America", "local_logo": null, "aliases": "New York Life Insurance; New York Life Insurance Company", "permid_links": [{"text": 4298009074, "url": "https://permid.org/1-4298009074"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 1, 2, 3, 3, 6, 2, 0, 2, 0, 0], "total": 19, "isTopResearch": false, "rank": 818, "sp500_rank": 374}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 703, "rank": 420, "sp500_rank": 203}, "ai_jobs": {"counts": null, "total": 90, "rank": 358, "sp500_rank": 190}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2086, "country": "United Kingdom", "website": "https://www.bat.com/", "crunchbase": {"text": " 39e75812-13f0-0d48-4c04-ee6fa6f0bec1", "url": " https://www.crunchbase.com/organization/british-american-tobacco"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/british-american-tobacco"], "stage": "Mature", "name": "British American Tobacco", "patent_name": "British American Tobacco", "continent": "Europe", "local_logo": null, "aliases": "British American Tobacco; British American Tobacco Plc", "permid_links": [{"text": 4295894777, "url": "https://permid.org/1-4295894777"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BTI", "url": "https://www.google.com/finance/quote/BTI:NYSE"}], "market_full": [{"text": "MEX:BATSN", "url": "https://www.google.com/finance/quote/BATSN:MEX"}, {"text": "LSE:0A76", "url": "https://www.google.com/finance/quote/0A76:LSE"}, {"text": "DEU:BATS", "url": "https://www.google.com/finance/quote/BATS:DEU"}, {"text": "MUN:BMT", "url": "https://www.google.com/finance/quote/BMT:MUN"}, {"text": "FRA:BMTA", "url": "https://www.google.com/finance/quote/BMTA:FRA"}, {"text": "JNB:BTI", "url": "https://www.google.com/finance/quote/BTI:JNB"}, {"text": "FRA:BMT", "url": "https://www.google.com/finance/quote/BMT:FRA"}, {"text": "DEU:BMTA", "url": "https://www.google.com/finance/quote/BMTA:DEU"}, {"text": "HAM:BMT", "url": "https://www.google.com/finance/quote/BMT:HAM"}, {"text": "STU:BMTA", "url": "https://www.google.com/finance/quote/BMTA:STU"}, {"text": "HAN:BMT", "url": "https://www.google.com/finance/quote/BMT:HAN"}, {"text": "PKC:BTAFF", "url": "https://www.google.com/finance/quote/BTAFF:PKC"}, {"text": "NYQ:BTI", "url": "https://www.google.com/finance/quote/BTI:NYQ"}, {"text": "SWX:BATS", "url": "https://www.google.com/finance/quote/BATS:SWX"}, {"text": "GER:BMTX", "url": "https://www.google.com/finance/quote/BMTX:GER"}, {"text": "MUN:BMTA", "url": "https://www.google.com/finance/quote/BMTA:MUN"}, {"text": "STU:BMT", "url": "https://www.google.com/finance/quote/BMT:STU"}, {"text": "BER:BMT", "url": "https://www.google.com/finance/quote/BER:BMT"}, {"text": "BRN:BMT", "url": "https://www.google.com/finance/quote/BMT:BRN"}, {"text": "LSE:BATS", "url": "https://www.google.com/finance/quote/BATS:LSE"}, {"text": "SAO:B1TI34", "url": "https://www.google.com/finance/quote/B1TI34:SAO"}, {"text": "ASE:BTI", "url": "https://www.google.com/finance/quote/ASE:BTI"}, {"text": "NYSE:BTI", "url": "https://www.google.com/finance/quote/BTI:NYSE"}, {"text": "DUS:BMT", "url": "https://www.google.com/finance/quote/BMT:DUS"}, {"text": "DUS:BMTA", "url": "https://www.google.com/finance/quote/BMTA:DUS"}, {"text": "BER:BMTA", "url": "https://www.google.com/finance/quote/BER:BMTA"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Linear discriminant analysis", "field_count": 1}, {"field_name": "Chemometrics", "field_count": 1}], "clusters": [{"cluster_id": 14043, "cluster_count": 1}, {"cluster_id": 60349, "cluster_count": 1}, {"cluster_id": 72211, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2086, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "target_recognition", "task_count": 1}, {"referent": "human_activity_recognition", "task_count": 1}, {"referent": "hyperspectral", "task_count": 1}, {"referent": "hyperspectral_image_classification", "task_count": 1}, {"referent": "disease_detection", "task_count": 1}], "methods": [{"referent": "dnas", "method_count": 1}, {"referent": "ltls", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "automl", "method_count": 1}, {"referent": "schnet", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [40, 43, 43, 31, 57, 45, 35, 32, 33, 17, 0], "total": 376, "isTopResearch": false, "rank": 324, "sp500_rank": 212}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "sp500_rank": 285}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 1, 3, 5, 3, 3, 16, 9, 11, 0], "total": 51, "isTopResearch": false, "rank": 582, "sp500_rank": 252}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 0, 1.5, 0, 0, 0, 0], "total": 17.0, "isTopResearch": false, "rank": 364, "sp500_rank": 119}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0], "total": 4, "table": null, "rank": 565, "sp500_rank": 235}, "ai_patents_growth": {"counts": [], "total": 100.0, "table": null, "rank": 116, "sp500_rank": 57}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 20, 10, 0, 0], "total": 40, "table": null, "rank": 565, "sp500_rank": 235}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 38, "sp500_rank": 31}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 695, "rank": 421, "sp500_rank": 204}, "ai_jobs": {"counts": null, "total": 175, "rank": 245, "sp500_rank": 152}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages"}, {"cset_id": 2233, "country": "United States", "website": "https://www.borgwarner.com/", "crunchbase": {"text": "869c70b8-6b87-2674-f902-bd8562908cf3", "url": "https://www.crunchbase.com/organization/borg-warner-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/borgwarner"], "stage": "Mature", "name": "BorgWarner", "patent_name": "borgwarner", "continent": "North America", "local_logo": "borgwarner.png", "aliases": "BorgWarner Inc; Borgwarner Inc", "permid_links": [{"text": 4295903602, "url": "https://permid.org/1-4295903602"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BWA", "url": "https://www.google.com/finance/quote/bwa:nyse"}], "market_full": [{"text": "GER:BGWX", "url": "https://www.google.com/finance/quote/bgwx:ger"}, {"text": "LSE:0HOU", "url": "https://www.google.com/finance/quote/0hou:lse"}, {"text": "MCX:BWA-RM", "url": "https://www.google.com/finance/quote/bwa-rm:mcx"}, {"text": "DUS:BGW", "url": "https://www.google.com/finance/quote/bgw:dus"}, {"text": "BER:BGW", "url": "https://www.google.com/finance/quote/ber:bgw"}, {"text": "FRA:BGW", "url": "https://www.google.com/finance/quote/bgw:fra"}, {"text": "SAO:B1WA34", "url": "https://www.google.com/finance/quote/b1wa34:sao"}, {"text": "BRN:BGW", "url": "https://www.google.com/finance/quote/bgw:brn"}, {"text": "MEX:BWA*", "url": "https://www.google.com/finance/quote/bwa*:mex"}, {"text": "NYQ:BWA", "url": "https://www.google.com/finance/quote/bwa:nyq"}, {"text": "MUN:BGW", "url": "https://www.google.com/finance/quote/bgw:mun"}, {"text": "DEU:BWA", "url": "https://www.google.com/finance/quote/bwa:deu"}, {"text": "NYSE:BWA", "url": "https://www.google.com/finance/quote/bwa:nyse"}, {"text": "ASE:BWA", "url": "https://www.google.com/finance/quote/ase:bwa"}, {"text": "STU:BGW", "url": "https://www.google.com/finance/quote/bgw:stu"}], "crunchbase_description": "BorgWarner is an automotive supplier of sustainable and innovative mobility solutions for the vehicle market.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 19418, "cluster_count": 1}, {"cluster_id": 12084, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "human_dynamics", "task_count": 1}], "methods": [{"referent": "ghost_module", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [28, 43, 39, 33, 38, 30, 38, 46, 44, 48, 0], "total": 387, "isTopResearch": false, "rank": 320, "fortune500_rank": 122}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 44, 48, 3], "total": 95, "isTopResearch": false, "rank": 513, "fortune500_rank": 140}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "fortune500_rank": 67}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0.0, 0, 0, 0], "total": 31.666666666666668, "isTopResearch": false, "rank": 182, "fortune500_rank": 52}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 3, 7, 12, 0, 2, 0, 0, 0], "total": 24, "table": null, "rank": 295, "fortune500_rank": 100}, "ai_patents_growth": {"counts": [], "total": -14.285714285714285, "table": null, "rank": 1446, "fortune500_rank": 417}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 30, 70, 120, 0, 20, 0, 0, 0], "total": 240, "table": null, "rank": 295, "fortune500_rank": 100}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "fortune500_rank": 39}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 2, 4, 12, 0, 2, 0, 0, 0], "total": 20, "table": "industry", "rank": 71, "fortune500_rank": 22}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 363, "fortune500_rank": 124}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 2, 1, 3, 0, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 204, "fortune500_rank": 77}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "fortune500_rank": 34}, "Business": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 2, 3, 12, 0, 2, 0, 0, 0], "total": 19, "table": "application", "rank": 95, "fortune500_rank": 31}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 5, 4, 0, 0, 0, 0, 0], "total": 10, "table": "application", "rank": 241, "fortune500_rank": 73}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 2, 7, 0, 1, 0, 0, 0], "total": 11, "table": "application", "rank": 114, "fortune500_rank": 34}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 690, "rank": 422, "fortune500_rank": 232}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "fortune500_rank": 437}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "BorgWarner Inc. is a U.S. automotive supplier headquartered in Auburn Hills, Michigan. The company maintains production facilities and technical systems at 96 sites (as of February 23, 2021) in 24 countries worldwide and has around 50,000 employees. BorgWarner is one of the 25 largest automotive suppliers in the world. Fr\u00e9d\u00e9ric Lissalde has been CEO of BorgWarner Inc. since August 1, 2018.", "wikipedia_link": "https://en.wikipedia.org/wiki/BorgWarner", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 36, "country": "United States", "website": "https://www.automationanywhere.com/", "crunchbase": {"text": "a3ccf23f-0342-9b08-51aa-c6e5b540ef0d", "url": "https://www.crunchbase.com/organization/automation-anywhere"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/automation-anywhere"], "stage": "Mature", "name": "Automation Anywhere", "patent_name": "automation anywhere", "continent": "North America", "local_logo": "automation_anywhere.png", "aliases": "Automation Anywhere, Inc", "permid_links": [{"text": 5036288748, "url": "https://permid.org/1-5036288748"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Automation Anywhere is an enterprise-grade, cognitive Robotic Process Automation (RPA) platform.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 3, 3, 2, 5, 0, 0, 0], "total": 13, "table": null, "rank": 372}, "ai_patents_growth": {"counts": [], "total": 38.888888888888886, "table": null, "rank": 246}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 30, 30, 20, 50, 0, 0, 0], "total": 130, "table": null, "rank": 372}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 2, 1, 5, 0, 0, 0], "total": 8, "table": "industry", "rank": 273}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 3, 3, 1, 3, 0, 0, 0], "total": 10, "table": "application", "rank": 241}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 688, "rank": 423}, "ai_jobs": {"counts": null, "total": 60, "rank": 442}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Automation Anywhere is a developer of robotic process automation (RPA) software, which employs software bots to complete business processes.", "wikipedia_link": "https://en.wikipedia.org/wiki/Automation_Anywhere", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2292, "country": "United States", "website": "https://www.dow.com/", "crunchbase": {"text": "59b7688c-0df2-df63-2ad1-b67bfb092879", "url": "https://www.crunchbase.com/organization/the-dow-chemical-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dow-chemical"], "stage": "Mature", "name": "Dow Inc.", "patent_name": "dow inc.", "continent": "North America", "local_logo": "dow_inc.png", "aliases": "Dow; Dow Chemical Co; Dow Jones Industrial Average; The Dow Company", "permid_links": [{"text": 4295903880, "url": "https://permid.org/1-4295903880"}], "parent_info": "Dowdupont (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DOW", "url": "https://www.google.com/finance/quote/dow:nyse"}], "market_full": [{"text": "ASE:DOW", "url": "https://www.google.com/finance/quote/ase:dow"}, {"text": "HAM:2OY", "url": "https://www.google.com/finance/quote/2oy:ham"}, {"text": "SAO:D1OW34", "url": "https://www.google.com/finance/quote/d1ow34:sao"}, {"text": "STU:2OY", "url": "https://www.google.com/finance/quote/2oy:stu"}, {"text": "NYSE:DOW", "url": "https://www.google.com/finance/quote/dow:nyse"}, {"text": "LSE:0A1S", "url": "https://www.google.com/finance/quote/0a1s:lse"}, {"text": "MOEX:DOW-RM", "url": "https://www.google.com/finance/quote/dow-rm:moex"}, {"text": "BRN:2OY", "url": "https://www.google.com/finance/quote/2oy:brn"}, {"text": "DEU:2OY", "url": "https://www.google.com/finance/quote/2oy:deu"}, {"text": "VIE:DOW", "url": "https://www.google.com/finance/quote/dow:vie"}, {"text": "HAN:2OY", "url": "https://www.google.com/finance/quote/2oy:han"}, {"text": "FRA:2OY", "url": "https://www.google.com/finance/quote/2oy:fra"}, {"text": "BER:2OY", "url": "https://www.google.com/finance/quote/2oy:ber"}, {"text": "UAX:DOW", "url": "https://www.google.com/finance/quote/dow:uax"}, {"text": "NYQ:DOW", "url": "https://www.google.com/finance/quote/dow:nyq"}, {"text": "DUS:2OY", "url": "https://www.google.com/finance/quote/2oy:dus"}, {"text": "GER:2OYX", "url": "https://www.google.com/finance/quote/2oyx:ger"}, {"text": "MEX:DOW1", "url": "https://www.google.com/finance/quote/dow1:mex"}], "crunchbase_description": "Dow Global Technologies LLC manufactures chemicals such as polymers.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Feature selection", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Intelligent decision support system", "field_count": 2}, {"field_name": "Genetic programming", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Predictive analytics", "field_count": 1}, {"field_name": "Big data", "field_count": 1}, {"field_name": "Surrogate model", "field_count": 1}, {"field_name": "Dimensionality reduction", "field_count": 1}], "clusters": [{"cluster_id": 8939, "cluster_count": 6}, {"cluster_id": 14668, "cluster_count": 3}, {"cluster_id": 5290, "cluster_count": 3}, {"cluster_id": 83588, "cluster_count": 3}, {"cluster_id": 77923, "cluster_count": 3}, {"cluster_id": 109, "cluster_count": 2}, {"cluster_id": 29329, "cluster_count": 2}, {"cluster_id": 11523, "cluster_count": 1}, {"cluster_id": 87363, "cluster_count": 1}, {"cluster_id": 33918, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 28}, {"ref_CSET_id": 2292, "referenced_count": 22}, {"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 1385, "referenced_count": 5}, {"ref_CSET_id": 341, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 1570, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "building_extraction", "task_count": 3}, {"referent": "developmental_learning", "task_count": 3}, {"referent": "feature_selection", "task_count": 2}, {"referent": "steering_control", "task_count": 2}, {"referent": "fault_detection", "task_count": 2}, {"referent": "image_recognition", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "supervised_learning", "task_count": 2}, {"referent": "system_identification", "task_count": 2}], "methods": [{"referent": "mad_learning", "method_count": 6}, {"referent": "ltls", "method_count": 4}, {"referent": "wgan_gp", "method_count": 3}, {"referent": "reinforcement_learning", "method_count": 3}, {"referent": "contrastive_predictive_coding", "method_count": 3}, {"referent": "optimization", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "vqa_models", "method_count": 3}, {"referent": "q_learning", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [634, 621, 681, 753, 665, 606, 529, 234, 271, 217, 5], "total": 5216, "isTopResearch": false, "rank": 65, "sp500_rank": 56, "fortune500_rank": 22}, "ai_publications": {"counts": [5, 1, 5, 4, 3, 3, 7, 2, 6, 6, 0], "total": 42, "isTopResearch": false, "rank": 198, "sp500_rank": 121, "fortune500_rank": 63}, "ai_publications_growth": {"counts": [], "total": 42.857142857142854, "isTopResearch": false, "rank": 73, "sp500_rank": 36, "fortune500_rank": 23}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [15, 17, 42, 53, 101, 115, 187, 244, 280, 272, 19], "total": 1345, "isTopResearch": false, "rank": 169, "sp500_rank": 99, "fortune500_rank": 52}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 313, "sp500_rank": 158, "fortune500_rank": 84}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140, "fortune500_rank": 67}, "citations_per_article": {"counts": [3.0, 17.0, 8.4, 13.25, 33.666666666666664, 38.333333333333336, 26.714285714285715, 122.0, 46.666666666666664, 45.333333333333336, 0], "total": 32.023809523809526, "isTopResearch": false, "rank": 178, "sp500_rank": 42, "fortune500_rank": 50}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 0, 2, 5, 2, 0, 0, 0, 0], "total": 11, "table": null, "rank": 394, "sp500_rank": 188, "fortune500_rank": 126}, "ai_patents_growth": {"counts": [], "total": -3.3333333333333335, "table": null, "rank": 1430, "sp500_rank": 416, "fortune500_rank": 408}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [20, 0, 0, 0, 20, 50, 20, 0, 0, 0, 0], "total": 110, "table": null, "rank": 394, "sp500_rank": 188, "fortune500_rank": 126}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158, "sp500_rank": 91, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "sp500_rank": 130, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "sp500_rank": 187, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172, "fortune500_rank": 94}, "Control": {"counts": [1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212, "sp500_rank": 129, "fortune500_rank": 73}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "sp500_rank": 134, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 675, "rank": 424, "sp500_rank": 205, "fortune500_rank": 233}, "ai_jobs": {"counts": null, "total": 72, "rank": 406, "sp500_rank": 208, "fortune500_rank": 216}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "Dow Inc. is an American commodity chemical company. It was spun off of DowDuPont on April 1, 2019, at which time it became a public company and was added to the Dow Jones Industrial Average. The company is headquartered in Midland, Michigan.", "wikipedia_link": "https://en.wikipedia.org/wiki/Dow_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1865, "country": "Luxembourg", "website": "https://corporate.arcelormittal.com/", "crunchbase": {"text": " fe088d9d-3892-e0d5-9c27-cb0e0fdce561", "url": " https://www.crunchbase.com/organization/arcelormittal"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/arcelormittal"], "stage": "Mature", "name": "Arcelormittal", "patent_name": "ArcelorMittal", "continent": "Europe", "local_logo": null, "aliases": "Arcelor; ArcelorMittal; Mittal Steel", "permid_links": [{"text": 5000030092, "url": "https://permid.org/1-5000030092"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MTCN", "url": "https://www.google.com/finance/quote/MTCN:NYSE"}, {"text": "NYSE:MT", "url": "https://www.google.com/finance/quote/MT:NYSE"}], "market_full": [{"text": "NYQ:MT", "url": "https://www.google.com/finance/quote/MT:NYQ"}, {"text": "MEX:MTN", "url": "https://www.google.com/finance/quote/MEX:MTN"}, {"text": "STU:ARRD", "url": "https://www.google.com/finance/quote/ARRD:STU"}, {"text": "MUN:ARRD", "url": "https://www.google.com/finance/quote/ARRD:MUN"}, {"text": "BER:ARRD", "url": "https://www.google.com/finance/quote/ARRD:BER"}, {"text": "ASE:MT", "url": "https://www.google.com/finance/quote/ASE:MT"}, {"text": "MCE:MTS", "url": "https://www.google.com/finance/quote/MCE:MTS"}, {"text": "DEU:ARRD", "url": "https://www.google.com/finance/quote/ARRD:DEU"}, {"text": "GER:ARRDX", "url": "https://www.google.com/finance/quote/ARRDX:GER"}, {"text": "SWX:MT", "url": "https://www.google.com/finance/quote/MT:SWX"}, {"text": "NYSE:MTCN", "url": "https://www.google.com/finance/quote/MTCN:NYSE"}, {"text": "HAN:ARRJ", "url": "https://www.google.com/finance/quote/ARRJ:HAN"}, {"text": "DUS:ARRJ", "url": "https://www.google.com/finance/quote/ARRJ:DUS"}, {"text": "FRA:ARRD", "url": "https://www.google.com/finance/quote/ARRD:FRA"}, {"text": "MUN:ARRJ", "url": "https://www.google.com/finance/quote/ARRJ:MUN"}, {"text": "FRA:ARRJ", "url": "https://www.google.com/finance/quote/ARRJ:FRA"}, {"text": "MEX:MT1N", "url": "https://www.google.com/finance/quote/MEX:MT1N"}, {"text": "BER:ARRJ", "url": "https://www.google.com/finance/quote/ARRJ:BER"}, {"text": "DUS:ARRD", "url": "https://www.google.com/finance/quote/ARRD:DUS"}, {"text": "DEU:ARRJ", "url": "https://www.google.com/finance/quote/ARRJ:DEU"}, {"text": "VIE:MT", "url": "https://www.google.com/finance/quote/MT:VIE"}, {"text": "PKC:AMSYF", "url": "https://www.google.com/finance/quote/AMSYF:PKC"}, {"text": "BRN:ARRD", "url": "https://www.google.com/finance/quote/ARRD:BRN"}, {"text": "LSE:0RP9", "url": "https://www.google.com/finance/quote/0RP9:LSE"}, {"text": "EBT:ARRDD", "url": "https://www.google.com/finance/quote/ARRDd:EBT"}, {"text": "NYQ:MTCN", "url": "https://www.google.com/finance/quote/MTCN:NYQ"}, {"text": "NYSE:MT", "url": "https://www.google.com/finance/quote/MT:NYSE"}, {"text": "STU:ARRJ", "url": "https://www.google.com/finance/quote/ARRJ:STU"}, {"text": "HAN:ARRD", "url": "https://www.google.com/finance/quote/ARRD:HAN"}, {"text": "HAM:ARRJ", "url": "https://www.google.com/finance/quote/ARRJ:HAM"}, {"text": "ASE:MTCN", "url": "https://www.google.com/finance/quote/ASE:MTCN"}, {"text": "HAM:ARRD", "url": "https://www.google.com/finance/quote/ARRD:HAM"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Segmentation", "field_count": 4}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Ant colony optimization algorithms", "field_count": 2}, {"field_name": "Machine vision", "field_count": 2}, {"field_name": "Prognostics", "field_count": 2}, {"field_name": "Multi-objective optimization", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Dimensionality reduction", "field_count": 1}, {"field_name": "STRIPS", "field_count": 1}, {"field_name": "Sensor fusion", "field_count": 1}], "clusters": [{"cluster_id": 39341, "cluster_count": 3}, {"cluster_id": 71758, "cluster_count": 2}, {"cluster_id": 65581, "cluster_count": 2}, {"cluster_id": 28870, "cluster_count": 2}, {"cluster_id": 484, "cluster_count": 2}, {"cluster_id": 80895, "cluster_count": 1}, {"cluster_id": 6347, "cluster_count": 1}, {"cluster_id": 2655, "cluster_count": 1}, {"cluster_id": 14530, "cluster_count": 1}, {"cluster_id": 22754, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 15}, {"ref_CSET_id": 87, "referenced_count": 9}, {"ref_CSET_id": 1865, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 7}, {"ref_CSET_id": 127, "referenced_count": 4}, {"ref_CSET_id": 223, "referenced_count": 3}, {"ref_CSET_id": 671, "referenced_count": 2}, {"ref_CSET_id": 1918, "referenced_count": 2}, {"ref_CSET_id": 112, "referenced_count": 2}, {"ref_CSET_id": 557, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 6}, {"referent": "image_processing", "task_count": 6}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "semantic_segmentation", "task_count": 3}, {"referent": "segmentation", "task_count": 3}, {"referent": "point_processes", "task_count": 3}, {"referent": "continuous_object_recognition", "task_count": 2}, {"referent": "speech_production", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "automated_writing_evaluation", "task_count": 2}], "methods": [{"referent": "vqa_models", "method_count": 4}, {"referent": "mad_learning", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "computer_vision", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "1d_cnn", "method_count": 3}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "optimization", "method_count": 2}, {"referent": "cdcc_net", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [242, 231, 178, 194, 180, 196, 208, 190, 149, 134, 4], "total": 1906, "isTopResearch": false, "rank": 128, "sp500_rank": 100}, "ai_publications": {"counts": [4, 1, 3, 1, 2, 3, 2, 4, 9, 12, 0], "total": 41, "isTopResearch": false, "rank": 203, "sp500_rank": 124}, "ai_publications_growth": {"counts": [], "total": 86.1111111111111, "isTopResearch": false, "rank": 27, "sp500_rank": 14}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [14, 29, 36, 40, 31, 34, 41, 34, 62, 72, 10], "total": 403, "isTopResearch": false, "rank": 292, "sp500_rank": 147}, "cv_pubs": {"counts": [3, 0, 0, 0, 0, 0, 1, 0, 1, 3, 0], "total": 8, "isTopResearch": true, "rank": 229, "sp500_rank": 126}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [3.5, 29.0, 12.0, 40.0, 15.5, 11.333333333333334, 20.5, 8.5, 6.888888888888889, 6.0, 0], "total": 9.829268292682928, "isTopResearch": false, "rank": 546, "sp500_rank": 203}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 668, "rank": 425, "sp500_rank": 206}, "ai_jobs": {"counts": null, "total": 36, "rank": 551, "sp500_rank": 248}}, "sector": "Basic Materials", "business_sector": "Mineral Resources"}, {"cset_id": 1516, "country": "United States", "website": "http://www.intuitivesurgical.com", "crunchbase": {"text": "3da3df90-2b31-2167-c427-92a3fe0d3fad", "url": "https://www.crunchbase.com/organization/intuitive-surgical"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/intuitivesurgical"], "stage": "Mature", "name": "Intuitive Surgical", "patent_name": "intuitive surgical", "continent": "North America", "local_logo": "intuitive_surgical.png", "aliases": "Intuitive", "permid_links": [{"text": 4295913928, "url": "https://permid.org/1-4295913928"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ISRG", "url": "https://www.google.com/finance/quote/isrg:nasdaq"}], "market_full": [{"text": "STU:IUI1", "url": "https://www.google.com/finance/quote/iui1:stu"}, {"text": "VIE:ISRG", "url": "https://www.google.com/finance/quote/isrg:vie"}, {"text": "FRA:IUI1", "url": "https://www.google.com/finance/quote/fra:iui1"}, {"text": "HAN:IUI1", "url": "https://www.google.com/finance/quote/han:iui1"}, {"text": "MUN:IUI1", "url": "https://www.google.com/finance/quote/iui1:mun"}, {"text": "GER:IUIX.A", "url": "https://www.google.com/finance/quote/ger:iuix.a"}, {"text": "BRN:IUI1", "url": "https://www.google.com/finance/quote/brn:iui1"}, {"text": "MEX:ISRG*", "url": "https://www.google.com/finance/quote/isrg*:mex"}, {"text": "NASDAQ:ISRG", "url": "https://www.google.com/finance/quote/isrg:nasdaq"}, {"text": "HAM:IUI1", "url": "https://www.google.com/finance/quote/ham:iui1"}, {"text": "LSE:0R29", "url": "https://www.google.com/finance/quote/0r29:lse"}, {"text": "BER:IUI1", "url": "https://www.google.com/finance/quote/ber:iui1"}, {"text": "MCX:ISRG-RM", "url": "https://www.google.com/finance/quote/isrg-rm:mcx"}, {"text": "DEU:ISRGD", "url": "https://www.google.com/finance/quote/deu:isrgd"}, {"text": "DUS:IUI1", "url": "https://www.google.com/finance/quote/dus:iui1"}, {"text": "SAO:I1SR34", "url": "https://www.google.com/finance/quote/i1sr34:sao"}], "crunchbase_description": "Intuitive Surgical designs, manufactures, and markets da vinci surgical systems, and related instruments and accessories.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Segmentation", "field_count": 4}, {"field_name": "Activity recognition", "field_count": 4}, {"field_name": "Robotic surgery", "field_count": 3}, {"field_name": "Feature (computer vision)", "field_count": 3}, {"field_name": "Robot", "field_count": 3}, {"field_name": "Landmark", "field_count": 2}, {"field_name": "Visualization", "field_count": 2}, {"field_name": "Virtual reality", "field_count": 2}, {"field_name": "Eye tracking", "field_count": 2}, {"field_name": "Task (computing)", "field_count": 2}], "clusters": [{"cluster_id": 25918, "cluster_count": 20}, {"cluster_id": 3763, "cluster_count": 7}, {"cluster_id": 29631, "cluster_count": 7}, {"cluster_id": 25818, "cluster_count": 7}, {"cluster_id": 15950, "cluster_count": 5}, {"cluster_id": 32356, "cluster_count": 3}, {"cluster_id": 4473, "cluster_count": 2}, {"cluster_id": 22476, "cluster_count": 2}, {"cluster_id": 4429, "cluster_count": 2}, {"cluster_id": 64410, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 1516, "referenced_count": 85}, {"ref_CSET_id": 101, "referenced_count": 47}, {"ref_CSET_id": 163, "referenced_count": 27}, {"ref_CSET_id": 87, "referenced_count": 21}, {"ref_CSET_id": 789, "referenced_count": 10}, {"ref_CSET_id": 795, "referenced_count": 5}, {"ref_CSET_id": 37, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 4}, {"ref_CSET_id": 1126, "referenced_count": 4}], "tasks": [{"referent": "robots", "task_count": 19}, {"referent": "classification", "task_count": 13}, {"referent": "segmentation", "task_count": 8}, {"referent": "medical_procedure", "task_count": 6}, {"referent": "image_manipulation", "task_count": 5}, {"referent": "skills_assessment", "task_count": 5}, {"referent": "surgical_gesture_recognition", "task_count": 4}, {"referent": "autonomous_navigation", "task_count": 4}, {"referent": "image_registration", "task_count": 4}, {"referent": "steering_control", "task_count": 3}], "methods": [{"referent": "q_learning", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "residual_srm", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "3d_reconstruction", "method_count": 3}, {"referent": "cdcc_net", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "trpo", "method_count": 2}, {"referent": "dilated_convolution", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [24, 21, 26, 25, 44, 39, 53, 59, 71, 82, 0], "total": 444, "isTopResearch": false, "rank": 292, "fortune500_rank": 116}, "ai_publications": {"counts": [12, 7, 9, 3, 13, 10, 14, 9, 9, 11, 0], "total": 97, "isTopResearch": false, "rank": 121, "fortune500_rank": 39}, "ai_publications_growth": {"counts": [], "total": -4.497354497354498, "isTopResearch": false, "rank": 1230, "fortune500_rank": 354}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [24, 72, 102, 105, 159, 157, 209, 300, 308, 271, 7], "total": 1714, "isTopResearch": false, "rank": 151, "fortune500_rank": 45}, "cv_pubs": {"counts": [3, 1, 2, 0, 2, 5, 5, 4, 2, 7, 0], "total": 31, "isTopResearch": true, "rank": 110, "fortune500_rank": 32}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [9, 7, 8, 2, 9, 6, 9, 6, 8, 3, 0], "total": 67, "isTopResearch": true, "rank": 39, "fortune500_rank": 10}, "citations_per_article": {"counts": [2.0, 10.285714285714286, 11.333333333333334, 35.0, 12.23076923076923, 15.7, 14.928571428571429, 33.333333333333336, 34.22222222222222, 24.636363636363637, 0], "total": 17.670103092783506, "isTopResearch": false, "rank": 356, "fortune500_rank": 111}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 5, 2, 5, 1, 0, 0], "total": 14, "table": null, "rank": 365, "fortune500_rank": 121}, "ai_patents_growth": {"counts": [], "total": 45.0, "table": null, "rank": 225, "fortune500_rank": 69}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 50, 20, 50, 10, 0, 0], "total": 140, "table": null, "rank": 365, "fortune500_rank": 121}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 4, 2, 1, 1, 0, 0], "total": 9, "table": "industry", "rank": 89, "fortune500_rank": 36}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 1, 0, 0, 3, 2, 2, 0, 0, 0], "total": 8, "table": "application", "rank": 269, "fortune500_rank": 82}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 667, "rank": 426, "fortune500_rank": 234}, "ai_jobs": {"counts": null, "total": 93, "rank": 353, "fortune500_rank": 188}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Intuitive Surgical, Inc. is an American corporation that develops, manufactures, and markets robotic products designed to improve clinical outcomes of patients through minimally invasive surgery, most notably with the da Vinci Surgical System. The company is part of the NASDAQ-100 and S&P 500. As of December 31, 2019, Intuitive Surgical had an installed base of 5,582 da Vinci Surgical Systems, including 3,531 in the U.S., 977 in Europe, 780 in Asia, and 294 in the rest of the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/Intuitive_Surgical", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2603, "country": "Japan", "website": "https://www.takeda.com/", "crunchbase": {"text": " 98b11458-1ab5-d187-9f07-9aecf9455aa8", "url": " https://www.crunchbase.com/organization/takeda-pharmaceutical"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/takeda-pharmaceuticals"], "stage": "Unknown", "name": "Takeda Pharamaceuticals", "patent_name": "Takeda Pharamaceuticals", "continent": "Asia", "local_logo": null, "aliases": "Takeda; Takeda Pharamaceuticals; Takeda Pharmaceutical Company Limited; Tap Pharmaceuticals; \u6b66\u7530\u85ac\u54c1\u5de5\u696d", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Ensemble learning", "field_count": 2}, {"field_name": "DICOM", "field_count": 2}, {"field_name": "Projection pursuit", "field_count": 1}, {"field_name": "Evaluation function", "field_count": 1}, {"field_name": "Missing data", "field_count": 1}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Liquid handling robot", "field_count": 1}, {"field_name": "Feature vector", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Linear regression", "field_count": 1}], "clusters": [{"cluster_id": 33502, "cluster_count": 2}, {"cluster_id": 10728, "cluster_count": 2}, {"cluster_id": 23169, "cluster_count": 2}, {"cluster_id": 37967, "cluster_count": 1}, {"cluster_id": 4310, "cluster_count": 1}, {"cluster_id": 49283, "cluster_count": 1}, {"cluster_id": 31138, "cluster_count": 1}, {"cluster_id": 87067, "cluster_count": 1}, {"cluster_id": 30471, "cluster_count": 1}, {"cluster_id": 1374, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 22}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 3116, "referenced_count": 3}, {"ref_CSET_id": 2603, "referenced_count": 3}, {"ref_CSET_id": 341, "referenced_count": 3}, {"ref_CSET_id": 1962, "referenced_count": 3}, {"ref_CSET_id": 1990, "referenced_count": 2}, {"ref_CSET_id": 434, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 6}, {"referent": "drug_discovery", "task_count": 4}, {"referent": "decision_making", "task_count": 3}, {"referent": "developmental_learning", "task_count": 3}, {"referent": "disease_detection", "task_count": 3}, {"referent": "imputation", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "adl", "task_count": 2}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 2}, {"referent": "activity_detection", "task_count": 2}], "methods": [{"referent": "mad_learning", "method_count": 6}, {"referent": "q_learning", "method_count": 4}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "vqa_models", "method_count": 3}, {"referent": "mim", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "gaussian_process", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "shap", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [730, 704, 759, 1045, 1184, 988, 1047, 1036, 1151, 840, 7], "total": 9491, "isTopResearch": false, "rank": 38, "sp500_rank": 34}, "ai_publications": {"counts": [1, 0, 3, 3, 2, 5, 4, 4, 9, 4, 0], "total": 35, "isTopResearch": false, "rank": 216, "sp500_rank": 132}, "ai_publications_growth": {"counts": [], "total": 23.14814814814815, "isTopResearch": false, "rank": 109, "sp500_rank": 53}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [13, 28, 29, 32, 30, 30, 93, 292, 518, 504, 16], "total": 1585, "isTopResearch": false, "rank": 158, "sp500_rank": 92}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114}, "citations_per_article": {"counts": [13.0, 0, 9.666666666666666, 10.666666666666666, 15.0, 6.0, 23.25, 73.0, 57.55555555555556, 126.0, 0], "total": 45.285714285714285, "isTopResearch": false, "rank": 107, "sp500_rank": 22}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 0, 1, 2, 0, 3, 0, 0, 0], "total": 8, "table": null, "rank": 443, "sp500_rank": 203}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [20, 0, 0, 0, 10, 20, 0, 30, 0, 0, 0], "total": 80, "table": null, "rank": 443, "sp500_rank": 203}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [2, 0, 0, 0, 1, 2, 0, 2, 0, 0, 0], "total": 7, "table": "industry", "rank": 104, "sp500_rank": 68}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [2, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 336, "sp500_rank": 166}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "sp500_rank": 196}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 666, "rank": 427, "sp500_rank": 207}, "ai_jobs": {"counts": null, "total": 243, "rank": 211, "sp500_rank": 137}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1936, "country": null, "website": "https://www.bahn.com/", "crunchbase": {"text": " 7e65d993-40b9-c150-2594-cadeb1fc67c1 ", "url": " https://www.crunchbase.com/organization/deutsche-bahn "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/deutschebahn"], "stage": "Unknown", "name": "Deutsche Bahn", "patent_name": "Deutsche Bahn", "continent": null, "local_logo": null, "aliases": "Deutsche Bahn; Deutsche Bahn Ag", "permid_links": [{"text": 4295869671, "url": "https://permid.org/1-4295869671"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Tabu search", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}, {"field_name": "Dynamic time warping", "field_count": 1}, {"field_name": "Ground truth", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Relevance (information retrieval)", "field_count": 1}, {"field_name": "Visual inspection", "field_count": 1}], "clusters": [{"cluster_id": 484, "cluster_count": 2}, {"cluster_id": 22493, "cluster_count": 2}, {"cluster_id": 6568, "cluster_count": 1}, {"cluster_id": 6499, "cluster_count": 1}, {"cluster_id": 16876, "cluster_count": 1}, {"cluster_id": 2149, "cluster_count": 1}, {"cluster_id": 24046, "cluster_count": 1}, {"cluster_id": 390, "cluster_count": 1}, {"cluster_id": 36701, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 617, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 564, "referenced_count": 1}, {"ref_CSET_id": 789, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "decision_making", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "fault_detection", "task_count": 1}, {"referent": "small_data_image_classification", "task_count": 1}, {"referent": "information_extraction", "task_count": 1}], "methods": [{"referent": "logistic_regression", "method_count": 2}, {"referent": "word_embeddings", "method_count": 2}, {"referent": "dimensionality_reduction", "method_count": 1}, {"referent": "gts", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "metrix", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "auxiliary_classifier", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [23, 18, 13, 23, 25, 30, 27, 27, 51, 32, 0], "total": 269, "isTopResearch": false, "rank": 371, "sp500_rank": 237}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 2, 0, 3, 4, 3, 0], "total": 12, "isTopResearch": false, "rank": 384, "sp500_rank": 205}, "ai_publications_growth": {"counts": [], "total": 4.166666666666668, "isTopResearch": false, "rank": 183, "sp500_rank": 93}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 4, 22, 29, 33, 36, 1], "total": 125, "isTopResearch": false, "rank": 472, "sp500_rank": 209}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 2.0, 0, 9.666666666666666, 8.25, 12.0, 0], "total": 10.416666666666666, "isTopResearch": false, "rank": 526, "sp500_rank": 196}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 654, "rank": 428, "sp500_rank": 208}, "ai_jobs": {"counts": null, "total": 97, "rank": 341, "sp500_rank": 184}}, "sector": "Industrials", "business_sector": "Transportation"}, {"cset_id": 1903, "country": "United States", "website": "https://albertsonscompanies.com/", "crunchbase": {"text": " 24c7f7c1-ec8f-498d-bdb0-4cd8f7939e9b", "url": " https://www.crunchbase.com/organization/albertsons-companies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/albertsons"], "stage": "Unknown", "name": "Albertsons Cos.", "patent_name": "Albertsons Cos.", "continent": "North America", "local_logo": null, "aliases": "Albertsons Companies; Albertsons Cos.", "permid_links": [{"text": 5046318067, "url": "https://permid.org/1-5046318067"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 2, 2, 0, 2, 1, 0], "total": 8, "isTopResearch": false, "rank": 980, "sp500_rank": 400}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 654, "rank": 428, "sp500_rank": 208}, "ai_jobs": {"counts": null, "total": 83, "rank": 374, "sp500_rank": 197}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 2313, "country": "United States", "website": "http://www.expeditors.com/", "crunchbase": {"text": "1fcbc533-d4e5-6eb3-57a7-3ea002fc5903", "url": "https://www.crunchbase.com/organization/expeditors-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/expeditors"], "stage": "Mature", "name": "Expeditors", "patent_name": "expeditors", "continent": "North America", "local_logo": "expeditors.png", "aliases": "Expeditors International; Expeditors International Of Washington, Inc", "permid_links": [{"text": 4295906402, "url": "https://permid.org/1-4295906402"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:EXPD", "url": "https://www.google.com/finance/quote/expd:nasdaq"}], "market_full": [{"text": "SAO:E1XP34", "url": "https://www.google.com/finance/quote/e1xp34:sao"}, {"text": "DEU:EXPD", "url": "https://www.google.com/finance/quote/deu:expd"}, {"text": "FRA:EW1", "url": "https://www.google.com/finance/quote/ew1:fra"}, {"text": "GER:EWX", "url": "https://www.google.com/finance/quote/ewx:ger"}, {"text": "HAN:EW1", "url": "https://www.google.com/finance/quote/ew1:han"}, {"text": "STU:EW1", "url": "https://www.google.com/finance/quote/ew1:stu"}, {"text": "MEX:EXPD*", "url": "https://www.google.com/finance/quote/expd*:mex"}, {"text": "MOEX:EXPD-RM", "url": "https://www.google.com/finance/quote/expd-rm:moex"}, {"text": "HAM:EW1", "url": "https://www.google.com/finance/quote/ew1:ham"}, {"text": "BRN:EW1", "url": "https://www.google.com/finance/quote/brn:ew1"}, {"text": "BER:EW1", "url": "https://www.google.com/finance/quote/ber:ew1"}, {"text": "MUN:EW1", "url": "https://www.google.com/finance/quote/ew1:mun"}, {"text": "LSE:0IJR", "url": "https://www.google.com/finance/quote/0ijr:lse"}, {"text": "DUS:EW1", "url": "https://www.google.com/finance/quote/dus:ew1"}, {"text": "NASDAQ:EXPD", "url": "https://www.google.com/finance/quote/expd:nasdaq"}], "crunchbase_description": "Expeditors is a global logistics company headquartered in Seattle, Washington. As a Fortune 500 company, they employ over 13,000 trained", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 653, "rank": 430, "fortune500_rank": 235}, "ai_jobs": {"counts": null, "total": 35, "rank": 560, "fortune500_rank": 287}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "Expeditors (Expeditors International of Washington) is an American worldwide logistics and freight forwarding company headquartered in Seattle, Washington.", "wikipedia_link": "https://en.wikipedia.org/wiki/Expeditors_International", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2534, "country": "United States", "website": "https://www.wabteccorp.com/", "crunchbase": {"text": "165db160-f63f-c64b-ee4a-9b5b30cf1a96", "url": "https://www.crunchbase.com/organization/wabtec-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/wabtec-corporation"], "stage": "Mature", "name": "Wabtec Corporation", "patent_name": "wabtec corporation", "continent": "North America", "local_logo": "wabtec_corporation.png", "aliases": "Wabtec; Wabtec Corp; Westinghouse Air Brake Technologies Corporation (Wabtec)", "permid_links": [{"text": 5000115851, "url": "https://permid.org/1-5000115851"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WAB", "url": "https://www.google.com/finance/quote/nyse:wab"}], "market_full": [{"text": "STU:WB2", "url": "https://www.google.com/finance/quote/stu:wb2"}, {"text": "NYQ:WAB", "url": "https://www.google.com/finance/quote/nyq:wab"}, {"text": "GER:WB2X", "url": "https://www.google.com/finance/quote/ger:wb2x"}, {"text": "LSE:0A7Y", "url": "https://www.google.com/finance/quote/0a7y:lse"}, {"text": "ASE:WAB", "url": "https://www.google.com/finance/quote/ase:wab"}, {"text": "VIE:WAB", "url": "https://www.google.com/finance/quote/vie:wab"}, {"text": "FRA:WB2", "url": "https://www.google.com/finance/quote/fra:wb2"}, {"text": "BER:WB2", "url": "https://www.google.com/finance/quote/ber:wb2"}, {"text": "MCX:WAB-RM", "url": "https://www.google.com/finance/quote/mcx:wab-rm"}, {"text": "DUS:WB2", "url": "https://www.google.com/finance/quote/dus:wb2"}, {"text": "DEU:WAB", "url": "https://www.google.com/finance/quote/deu:wab"}, {"text": "MUN:WB2", "url": "https://www.google.com/finance/quote/mun:wb2"}, {"text": "MEX:WAB", "url": "https://www.google.com/finance/quote/mex:wab"}, {"text": "NYSE:WAB", "url": "https://www.google.com/finance/quote/nyse:wab"}, {"text": "SAO:W1AB34", "url": "https://www.google.com/finance/quote/sao:w1ab34"}, {"text": "BRN:WB2", "url": "https://www.google.com/finance/quote/brn:wb2"}], "crunchbase_description": "Wabtec Corporation is a global provider of value-added, technology-based products and services primarily for the rail and transit industry.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 0, 3, 3, 1, 2, 0], "total": 10, "isTopResearch": false, "rank": 942, "fortune500_rank": 327}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 1, 1, 1, 3, 0, 3, 6, 1, 0, 0], "total": 16, "table": null, "rank": 348, "fortune500_rank": 117}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 10, 10, 30, 0, 30, 60, 10, 0, 0], "total": 160, "table": null, "rank": 348, "fortune500_rank": 117}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 1, 1, 1, 3, 0, 3, 2, 0, 0, 0], "total": 11, "table": "industry", "rank": 97, "fortune500_rank": 26}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 2, 0, 0, 3, 0, 0, 0], "total": 5, "table": "industry", "rank": 103, "fortune500_rank": 36}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "fortune500_rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [0, 1, 1, 1, 3, 0, 1, 3, 0, 0, 0], "total": 10, "table": "application", "rank": 137, "fortune500_rank": 46}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 1, 0, 0, 3, 0, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 189, "fortune500_rank": 62}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 651, "rank": 431, "fortune500_rank": 236}, "ai_jobs": {"counts": null, "total": 29, "rank": 607, "fortune500_rank": 311}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Wabtec Corporation (derived from Westinghouse Air Brake Technologies Corporation) is an American company formed by the merger of the Westinghouse Air Brake Company (WABCO) and MotivePower Industries Corporation in 1999. It is headquartered in Pittsburgh, Pennsylvania.", "wikipedia_link": "https://en.wikipedia.org/wiki/Wabtec", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2027, "country": "United States", "website": "https://www.tjx.com/", "crunchbase": {"text": " 9460f733-f217-4a6d-100d-940be0049b42", "url": " https://www.crunchbase.com/organization/the-tjx-companies-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tjx"], "stage": "Mature", "name": "Tjx", "patent_name": "TJX", "continent": "North America", "local_logo": null, "aliases": "TJX; The Tjx Companies, Inc", "permid_links": [{"text": 4295905029, "url": "https://permid.org/1-4295905029"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TJX", "url": "https://www.google.com/finance/quote/NYSE:TJX"}], "market_full": [{"text": "ASE:TJX", "url": "https://www.google.com/finance/quote/ASE:TJX"}, {"text": "DEU:TJX", "url": "https://www.google.com/finance/quote/DEU:TJX"}, {"text": "DUS:TJX", "url": "https://www.google.com/finance/quote/DUS:TJX"}, {"text": "NYQ:TJX", "url": "https://www.google.com/finance/quote/NYQ:TJX"}, {"text": "MEX:TJX", "url": "https://www.google.com/finance/quote/MEX:TJX"}, {"text": "MUN:TJX", "url": "https://www.google.com/finance/quote/MUN:TJX"}, {"text": "BRN:TJX", "url": "https://www.google.com/finance/quote/BRN:TJX"}, {"text": "LSE:0LCE", "url": "https://www.google.com/finance/quote/0LCE:LSE"}, {"text": "STU:TJX", "url": "https://www.google.com/finance/quote/STU:TJX"}, {"text": "GER:TJXX", "url": "https://www.google.com/finance/quote/GER:TJXX"}, {"text": "NYSE:TJX", "url": "https://www.google.com/finance/quote/NYSE:TJX"}, {"text": "FRA:TJX", "url": "https://www.google.com/finance/quote/FRA:TJX"}, {"text": "VIE:TJXC", "url": "https://www.google.com/finance/quote/TJXC:VIE"}, {"text": "MCX:TJX-RM", "url": "https://www.google.com/finance/quote/MCX:TJX-RM"}, {"text": "SAO:TJXC34", "url": "https://www.google.com/finance/quote/SAO:TJXC34"}, {"text": "BER:TJX", "url": "https://www.google.com/finance/quote/BER:TJX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "sp500_rank": 446, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 638, "rank": 432, "sp500_rank": 210, "fortune500_rank": 237}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "sp500_rank": 255, "fortune500_rank": 294}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers"}, {"cset_id": 1886, "country": null, "website": "https://www.munichre.com/", "crunchbase": {"text": " 329ebb26-97c5-4305-8421-75ca76bf02f0", "url": " https://www.crunchbase.com/organization/munich-re"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/munich-re"], "stage": "Unknown", "name": "Munich Re Group", "patent_name": "Munich Re Group", "continent": null, "local_logo": null, "aliases": "Munich Re Group; M\u00fcnchener R\u00fcckversicherungs-Gesellschaft", "permid_links": [{"text": 4295868986, "url": "https://permid.org/1-4295868986"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 1038, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}], "tasks": [{"referent": "natural_language_processing", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "transfer_learning", "task_count": 1}, {"referent": "sequence_to_sequence_speech_recognition", "task_count": 1}, {"referent": "text_classification", "task_count": 1}], "methods": [{"referent": "ggs_nns", "method_count": 1}, {"referent": "fine_tuning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2, 2, 2, 1, 1, 1, 6, 4, 3, 6, 0], "total": 28, "isTopResearch": false, "rank": 727, "sp500_rank": 356}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "isTopResearch": false, "rank": 857, "sp500_rank": 343}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 1.0, 0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779, "sp500_rank": 312}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 635, "rank": 433, "sp500_rank": 211}, "ai_jobs": {"counts": null, "total": 204, "rank": 228, "sp500_rank": 146}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2391, "country": "United States", "website": "http://www.lamresearch.com", "crunchbase": {"text": "60c14dcb-789b-edd0-1f68-8a10f02bc9fa", "url": "https://www.crunchbase.com/organization/lam-research"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lam-research"], "stage": "Mature", "name": "Lam Research", "patent_name": "lam research", "continent": "North America", "local_logo": "lam_research.png", "aliases": "Lam Research Corp; Lam Research Corporation", "permid_links": [{"text": 4295906961, "url": "https://permid.org/1-4295906961"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:LRCX", "url": "https://www.google.com/finance/quote/lrcx:nasdaq"}], "market_full": [{"text": "SAO:L1RC34", "url": "https://www.google.com/finance/quote/l1rc34:sao"}, {"text": "GER:LARX", "url": "https://www.google.com/finance/quote/ger:larx"}, {"text": "DUS:LAR", "url": "https://www.google.com/finance/quote/dus:lar"}, {"text": "HAN:LAR", "url": "https://www.google.com/finance/quote/han:lar"}, {"text": "NASDAQ:LRCX", "url": "https://www.google.com/finance/quote/lrcx:nasdaq"}, {"text": "MEX:LRCX*", "url": "https://www.google.com/finance/quote/lrcx*:mex"}, {"text": "LSE:0JT5", "url": "https://www.google.com/finance/quote/0jt5:lse"}, {"text": "FRA:LAR", "url": "https://www.google.com/finance/quote/fra:lar"}, {"text": "BER:LAR", "url": "https://www.google.com/finance/quote/ber:lar"}, {"text": "DEU:LRCX", "url": "https://www.google.com/finance/quote/deu:lrcx"}, {"text": "VIE:LRCX", "url": "https://www.google.com/finance/quote/lrcx:vie"}, {"text": "MOEX:LRCX-RM", "url": "https://www.google.com/finance/quote/lrcx-rm:moex"}, {"text": "BRN:LAR", "url": "https://www.google.com/finance/quote/brn:lar"}, {"text": "STU:LAR", "url": "https://www.google.com/finance/quote/lar:stu"}, {"text": "HAM:LAR", "url": "https://www.google.com/finance/quote/ham:lar"}, {"text": "MUN:LAR", "url": "https://www.google.com/finance/quote/lar:mun"}], "crunchbase_description": "Lam Research supplies wafer fabrication equipment and services to the worldwide semiconductor industry.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Discriminative model", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Iterative reconstruction", "field_count": 1}], "clusters": [{"cluster_id": 86817, "cluster_count": 3}, {"cluster_id": 23733, "cluster_count": 2}, {"cluster_id": 36706, "cluster_count": 1}, {"cluster_id": 5788, "cluster_count": 1}, {"cluster_id": 2846, "cluster_count": 1}, {"cluster_id": 74260, "cluster_count": 1}, {"cluster_id": 17917, "cluster_count": 1}, {"cluster_id": 19878, "cluster_count": 1}, {"cluster_id": 51523, "cluster_count": 1}, {"cluster_id": 6238, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 671, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 833, "referenced_count": 2}, {"ref_CSET_id": 434, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 2075, "referenced_count": 1}, {"ref_CSET_id": 2391, "referenced_count": 1}], "tasks": [{"referent": "robots", "task_count": 4}, {"referent": "image_processing", "task_count": 3}, {"referent": "transfer_learning", "task_count": 3}, {"referent": "system_identification", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "speech_production", "task_count": 2}, {"referent": "3d_object_classification", "task_count": 1}, {"referent": "3d_object_reconstruction", "task_count": 1}, {"referent": "x_ray", "task_count": 1}, {"referent": "cluster_analysis", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "clusterfit", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "semantic_segmentation_models", "method_count": 1}, {"referent": "video_sampling", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [49, 55, 82, 67, 72, 101, 99, 58, 63, 90, 1], "total": 737, "isTopResearch": false, "rank": 228, "fortune500_rank": 88}, "ai_publications": {"counts": [2, 1, 1, 0, 1, 0, 1, 4, 2, 1, 0], "total": 13, "isTopResearch": false, "rank": 375, "fortune500_rank": 111}, "ai_publications_growth": {"counts": [], "total": 66.66666666666667, "isTopResearch": false, "rank": 44, "fortune500_rank": 9}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 5, 5, 16, 16, 19, 17, 43, 94, 76, 3], "total": 295, "isTopResearch": false, "rank": 335, "fortune500_rank": 98}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 187, "fortune500_rank": 49}, "citations_per_article": {"counts": [0.5, 5.0, 5.0, 0, 16.0, 0, 17.0, 10.75, 47.0, 76.0, 0], "total": 22.692307692307693, "isTopResearch": false, "rank": 271, "fortune500_rank": 85}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 5, 4, 5, 10, 5, 2, 0, 0], "total": 31, "table": null, "rank": 266, "fortune500_rank": 90}, "ai_patents_growth": {"counts": [], "total": 25.0, "table": null, "rank": 287, "fortune500_rank": 88}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 50, 40, 50, 100, 50, 20, 0, 0], "total": 310, "table": null, "rank": 266, "fortune500_rank": 90}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 2, 1, 1, 5, 1, 0, 0, 0], "total": 10, "table": "industry", "rank": 51, "fortune500_rank": 17}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 3, 1, 1, 0, 0], "total": 6, "table": "industry", "rank": 94, "fortune500_rank": 29}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 3, 3, 3, 2, 0, 0, 0, 0], "total": 11, "table": "industry", "rank": 250, "fortune500_rank": 94}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 10, "fortune500_rank": 5}, "Semiconductors": {"counts": [0, 0, 0, 4, 4, 4, 7, 4, 0, 0, 0], "total": 23, "table": "industry", "rank": 10, "fortune500_rank": 6}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 1, 1, 4, 1, 1, 0, 0], "total": 8, "table": "application", "rank": 150, "fortune500_rank": 50}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 2, 1, 3, 2, 0, 0, 0], "total": 9, "table": "application", "rank": 128, "fortune500_rank": 40}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 626, "rank": 434, "fortune500_rank": 238}, "ai_jobs": {"counts": null, "total": 59, "rank": 446, "fortune500_rank": 236}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Lam Research Corporation is an American corporation that engages in the design, manufacture, marketing, and service of semiconductor processing equipment used in the fabrication of integrated circuits. Its products are used primarily in front-end wafer processing, which involves the steps that create the active components of semiconductor devices (transistors, capacitors) and their wiring (interconnects). The company also builds equipment for back-end wafer-level packaging (WLP), and for related manufacturing markets such as for microelectromechanical systems (MEMS).", "wikipedia_link": "https://en.wikipedia.org/wiki/Lam_Research", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3152, "country": "Russian Federation", "website": "https://www.x5.ru/", "crunchbase": {"text": " 764cdde1-62f7-ce7f-2a12-a51f1bfbf622", "url": " https://www.crunchbase.com/organization/x5-retail-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/x5group"], "stage": "Mature", "name": "X5 Retail Group", "patent_name": "X5 Retail Group", "continent": "Europe", "local_logo": null, "aliases": null, "permid_links": [{"text": 4295887239, "url": "https://permid.org/1-4295887239"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MCX:FIVE", "url": "https://www.google.com/finance/quote/FIVE:MCX"}, {"text": "FRA:PJP", "url": "https://www.google.com/finance/quote/FRA:PJP"}, {"text": "BER:PJP", "url": "https://www.google.com/finance/quote/BER:PJP"}, {"text": "VIE:FIVE", "url": "https://www.google.com/finance/quote/FIVE:VIE"}, {"text": "MUN:PJP", "url": "https://www.google.com/finance/quote/MUN:PJP"}, {"text": "STU:PJP", "url": "https://www.google.com/finance/quote/PJP:STU"}, {"text": "LSE:89VS", "url": "https://www.google.com/finance/quote/89VS:LSE"}, {"text": "LSE:FIVE", "url": "https://www.google.com/finance/quote/FIVE:LSE"}, {"text": "DEU:PJP", "url": "https://www.google.com/finance/quote/DEU:PJP"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 1, 1, 1, 0, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063, "sp500_rank": 414}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 622, "rank": 435, "sp500_rank": 212}, "ai_jobs": {"counts": null, "total": 110, "rank": 321, "sp500_rank": 176}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 2752, "country": "United States", "website": "https://www.amentum.com/", "crunchbase": {"text": "b0de8192-92e4-471a-8451-9d52ff05fd28", "url": "https://www.crunchbase.com/organization/amentum"}, "child_crunchbase": [{"text": "56c83d5a-2d22-4be4-3ffe-c27cdd60f1b8", "url": "https://www.crunchbase.com/organization/pacific-architects-and-engineers-inc"}, {"text": "2e99fac4-6982-a15b-ef3c-fa9422dbba89", "url": "https://www.crunchbase.com/organization/dyncorp"}], "linkedin": ["https://www.linkedin.com/company/amentumcorp", "https://www.linkedin.com/company/pae", "https://www.linkedin.com/company/dyncorp-international"], "stage": "Mature", "name": "Amentum Services Inc", "patent_name": "amentum services inc", "continent": "North America", "local_logo": "amentum_services_inc.png", "aliases": "Amentum; Amentum Services, Inc", "permid_links": [{"text": 5039612490, "url": "https://permid.org/1-5039612490"}, {"text": 4297412586, "url": "https://permid.org/1-4297412586"}, {"text": 4295909993, "url": "https://permid.org/1-4295909993"}], "parent_info": null, "agg_child_info": "PAE Inc, Dyncorp International Inc", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Amentum deal with global technology and engineering services for security, defence, energy, intelligence and environment.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 0, 0, 2, 0, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 610, "rank": 436}, "ai_jobs": {"counts": null, "total": 30, "rank": 597}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 35, "country": "United States", "website": "https://aurora.tech/", "crunchbase": {"text": "e922b33b-0242-45e4-a1b2-2ea31ed06292", "url": "https://www.crunchbase.com/organization/aurora-6292"}, "child_crunchbase": [{"text": "30e6426e-729c-4105-9424-b03fdbe6045f", "url": "https://www.crunchbase.com/organization/uber-advanced-technologies-group"}, {"text": "c45dde87-bf25-85bc-931f-5eb839ee4ecb", "url": "https://www.crunchbase.com/organization/ours-technology-inc"}], "linkedin": ["https://www.linkedin.com/company/auroradriver", "https://www.linkedin.com/company/ourstechnologyinc"], "stage": "Mature", "name": "Aurora Innovation", "patent_name": "aurora innovation", "continent": "North America", "local_logo": "aurora_innovation.png", "aliases": "Aurora Innovation Inc; Aurora Innovation, Inc", "permid_links": [{"text": 5055417330, "url": "https://permid.org/1-5055417330"}], "parent_info": null, "agg_child_info": "Uber Advanced Technologies Group, OURS", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Aurora is a self-driving vehicle company providing a platform that brings software and data services to operate passenger vehicles.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Segmentation", "field_count": 5}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Convolutional neural network", "field_count": 5}, {"field_name": "Point cloud", "field_count": 4}, {"field_name": "Probabilistic logic", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Data compression", "field_count": 3}, {"field_name": "Pose", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Convolution", "field_count": 2}], "clusters": [{"cluster_id": 19977, "cluster_count": 25}, {"cluster_id": 23307, "cluster_count": 15}, {"cluster_id": 3446, "cluster_count": 10}, {"cluster_id": 2505, "cluster_count": 7}, {"cluster_id": 5300, "cluster_count": 3}, {"cluster_id": 1609, "cluster_count": 3}, {"cluster_id": 2381, "cluster_count": 3}, {"cluster_id": 3742, "cluster_count": 2}, {"cluster_id": 47174, "cluster_count": 2}, {"cluster_id": 31912, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 356}, {"ref_CSET_id": 35, "referenced_count": 267}, {"ref_CSET_id": 163, "referenced_count": 240}, {"ref_CSET_id": 87, "referenced_count": 173}, {"ref_CSET_id": 6, "referenced_count": 73}, {"ref_CSET_id": 184, "referenced_count": 65}, {"ref_CSET_id": 37, "referenced_count": 63}, {"ref_CSET_id": 127, "referenced_count": 56}, {"ref_CSET_id": 223, "referenced_count": 50}, {"ref_CSET_id": 336, "referenced_count": 46}], "tasks": [{"referent": "self_driving_cars", "task_count": 17}, {"referent": "autonomous_driving", "task_count": 16}, {"referent": "motion_planning", "task_count": 15}, {"referent": "autonomous_vehicles", "task_count": 13}, {"referent": "motion_detection", "task_count": 13}, {"referent": "classification", "task_count": 12}, {"referent": "object_detection", "task_count": 11}, {"referent": "3d_object_classification", "task_count": 6}, {"referent": "inference_attack", "task_count": 5}, {"referent": "future_prediction", "task_count": 5}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 19}, {"referent": "q_learning", "method_count": 16}, {"referent": "3d_representations", "method_count": 14}, {"referent": "convolutional_neural_networks", "method_count": 11}, {"referent": "vqa_models", "method_count": 9}, {"referent": "convolutions", "method_count": 8}, {"referent": "double_q_learning", "method_count": 7}, {"referent": "griffin_lim_algorithm", "method_count": 7}, {"referent": "1d_cnn", "method_count": 6}, {"referent": "optimization", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 2, 6, 25, 30, 53, 59, 28, 9, 0], "total": 213, "isTopResearch": false, "rank": 403}, "ai_publications": {"counts": [0, 0, 0, 2, 15, 21, 38, 45, 16, 2, 0], "total": 139, "isTopResearch": false, "rank": 100}, "ai_publications_growth": {"counts": [], "total": -44.507797270955166, "isTopResearch": false, "rank": 1433}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 7, 10, 20, 23, 10, 1, 0], "total": 72, "isTopResearch": false, "rank": 35}, "citation_counts": {"counts": [0, 0, 0, 0, 76, 372, 1078, 1904, 2607, 1755, 26], "total": 7818, "isTopResearch": false, "rank": 57}, "cv_pubs": {"counts": [0, 0, 0, 2, 6, 17, 20, 30, 10, 0, 0], "total": 85, "isTopResearch": true, "rank": 62}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 5, 9, 23, 8, 0, 0], "total": 46, "isTopResearch": true, "rank": 49}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 5.066666666666666, 17.714285714285715, 28.36842105263158, 42.31111111111111, 162.9375, 877.5, 0], "total": 56.24460431654676, "isTopResearch": false, "rank": 80}}, "patents": {"ai_patents": {"counts": [0, 1, 14, 31, 120, 72, 33, 21, 2, 0, 0], "total": 294, "table": null, "rank": 80}, "ai_patents_growth": {"counts": [], "total": -43.51010101010101, "table": null, "rank": 1504}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 140, 310, 1200, 720, 330, 210, 20, 0, 0], "total": 2940, "table": null, "rank": 80}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 2, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 105}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 2, 2, 2, 4, 1, 0, 0, 0, 0], "total": 11, "table": null, "rank": 86}, "Transportation": {"counts": [0, 0, 13, 23, 91, 49, 26, 16, 1, 0, 0], "total": 219, "table": "industry", "rank": 12}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 0, 1, 4, 0, 0, 0, 0, 0], "total": 6, "table": null, "rank": 94}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 5, 23, 18, 7, 5, 0, 0, 0], "total": 58, "table": "industry", "rank": 104}, "Banking_and_Finance": {"counts": [0, 0, 1, 5, 9, 5, 4, 1, 0, 0, 0], "total": 25, "table": "industry", "rank": 42}, "Telecommunications": {"counts": [0, 0, 7, 12, 24, 18, 17, 7, 0, 0, 0], "total": 85, "table": "industry", "rank": 50}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 0, 3, 9, 20, 16, 7, 4, 1, 0, 0], "total": 60, "table": "industry", "rank": 47}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 2, 4, 2, 1, 1, 0, 0, 0], "total": 10, "table": "application", "rank": 72}, "Planning_and_Scheduling": {"counts": [0, 0, 3, 8, 15, 14, 5, 3, 1, 0, 0], "total": 49, "table": "application", "rank": 35}, "Control": {"counts": [0, 0, 13, 22, 92, 50, 20, 13, 0, 0, 0], "total": 210, "table": "application", "rank": 18}, "Distributed_AI": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 1, 2, 4, 30, 27, 7, 8, 0, 0, 0], "total": 79, "table": "application", "rank": 83}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 2, 3, 0, 3, 0, 0, 0], "total": 8, "table": null, "rank": 131}, "Measuring_and_Testing": {"counts": [0, 0, 9, 5, 55, 28, 17, 13, 1, 0, 0], "total": 128, "table": "application", "rank": 16}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 607, "rank": 437}, "ai_jobs": {"counts": null, "total": 38, "rank": 538}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "Urmson founded Aurora Innovation with Sterling Anderson, the former director of Tesla Autopilot and Drew Bagnell, Uber's former autonomy and perception lead. Aurora is a startup dedicated to driverless car software, data and hardware, though not the cars themselves. With Aurora, Urmson aims to apply machine learning to the motion planning and perception components of autonomy simultaneously.", "wikipedia_link": "https://en.wikipedia.org/wiki/Aurora_Innovation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2472, "country": "United States", "website": "https://www.raymondjames.com/", "crunchbase": {"text": "b7f2a0af-8eab-8a64-8200-a9411c472365", "url": "https://www.crunchbase.com/organization/raymond-james"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/raymond-james-financial-inc-"], "stage": "Mature", "name": "Raymond James Financial Inc.", "patent_name": "raymond james financial inc.", "continent": "North America", "local_logo": "raymond_james_financial_inc.png", "aliases": "Raymond James; Raymond James Financial Services, Inc; Raymond James Technology And Communications Investment Banking Group", "permid_links": [{"text": 8589934220, "url": "https://permid.org/1-8589934220"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:RJF", "url": "https://www.google.com/finance/quote/nyse:rjf"}], "market_full": [{"text": "HAN:RJF", "url": "https://www.google.com/finance/quote/han:rjf"}, {"text": "MCX:RJF-RM", "url": "https://www.google.com/finance/quote/mcx:rjf-rm"}, {"text": "NYQ:RJF", "url": "https://www.google.com/finance/quote/nyq:rjf"}, {"text": "DUS:RJF", "url": "https://www.google.com/finance/quote/dus:rjf"}, {"text": "DEU:RJF", "url": "https://www.google.com/finance/quote/deu:rjf"}, {"text": "LSE:0KU1", "url": "https://www.google.com/finance/quote/0ku1:lse"}, {"text": "FRA:RJF", "url": "https://www.google.com/finance/quote/fra:rjf"}, {"text": "MUN:RJF", "url": "https://www.google.com/finance/quote/mun:rjf"}, {"text": "ASE:RJF", "url": "https://www.google.com/finance/quote/ase:rjf"}, {"text": "SAO:R1JF34", "url": "https://www.google.com/finance/quote/r1jf34:sao"}, {"text": "MEX:RJF*", "url": "https://www.google.com/finance/quote/mex:rjf*"}, {"text": "NYSE:RJF", "url": "https://www.google.com/finance/quote/nyse:rjf"}], "crunchbase_description": "Raymond James provides a range of investment banking services focused on the telecommunications and communications sectors.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 2, 1, 0, 1, 0, 1, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063, "fortune500_rank": 359}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 603, "rank": 438, "fortune500_rank": 239}, "ai_jobs": {"counts": null, "total": 52, "rank": 474, "fortune500_rank": 253}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Raymond James Financial is an American multinational independent investment bank and financial services company providing financial services to individuals, corporations, and municipalities through its subsidiary companies that engage primarily in investment and financial planning, in addition to investment banking and asset management. Raymond James Financial is one of the largest banking institutions in the United States", "wikipedia_link": "https://en.wikipedia.org/wiki/Raymond_James_Financial", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2145, "country": "Spain", "website": "https://www.mapfre.com/", "crunchbase": {"text": "4f267073-b791-4580-9f92-33a38e90c99b", "url": "https://www.crunchbase.com/organization/mapfre"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mapfre"], "stage": "Mature", "name": "Mapfre Group", "patent_name": "Mapfre Group", "continent": "Europe", "local_logo": "mapfre_group.png", "aliases": "Mapfre Espana S.A; Mapfre Group", "permid_links": [{"text": 4295889568, "url": "https://permid.org/1-4295889568"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "STU:CMAB", "url": "https://www.google.com/finance/quote/CMAB:STU"}, {"text": "DEU:MAP", "url": "https://www.google.com/finance/quote/DEU:MAP"}, {"text": "EBT:MAPE", "url": "https://www.google.com/finance/quote/EBT:MAPe"}, {"text": "FRA:CMAB", "url": "https://www.google.com/finance/quote/CMAB:FRA"}, {"text": "MCE:MAP", "url": "https://www.google.com/finance/quote/MAP:MCE"}, {"text": "MUN:CMA", "url": "https://www.google.com/finance/quote/CMA:MUN"}, {"text": "DUS:CMAB", "url": "https://www.google.com/finance/quote/CMAB:DUS"}, {"text": "LSE:0NQ2", "url": "https://www.google.com/finance/quote/0NQ2:LSE"}, {"text": "FRA:CMA", "url": "https://www.google.com/finance/quote/CMA:FRA"}, {"text": "BRN:CMAB", "url": "https://www.google.com/finance/quote/BRN:CMAB"}, {"text": "HAN:CMAB", "url": "https://www.google.com/finance/quote/CMAB:HAN"}, {"text": "MUN:CMAB", "url": "https://www.google.com/finance/quote/CMAB:MUN"}, {"text": "VIE:MAP", "url": "https://www.google.com/finance/quote/MAP:VIE"}, {"text": "BER:CMAB", "url": "https://www.google.com/finance/quote/BER:CMAB"}, {"text": "DEU:CMA", "url": "https://www.google.com/finance/quote/CMA:DEU"}], "crunchbase_description": "MAPFRE a global insurance company.", "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "sp500_rank": 446}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 602, "rank": 439, "sp500_rank": 213}, "ai_jobs": {"counts": null, "total": 96, "rank": 344, "sp500_rank": 185}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 3112, "country": "Australia", "website": "https://www.colesgroup.com.au/", "crunchbase": {"text": " ba72b66e-6de4-42d5-8205-b15219d8eb66", "url": " https://www.crunchbase.com/organization/coles-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/colesgroup"], "stage": "Mature", "name": "Coles Group", "patent_name": "Coles Group", "continent": "Oceania", "local_logo": null, "aliases": "Coles Group; Coles Group Pty Ltd", "permid_links": [{"text": 4295857398, "url": "https://permid.org/1-4295857398"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "FRA:2OF", "url": "https://www.google.com/finance/quote/2OF:FRA"}, {"text": "PNK:CLEGY", "url": "https://www.google.com/finance/quote/CLEGY:PNK"}, {"text": "ASX:COL", "url": "https://www.google.com/finance/quote/ASX:COL"}, {"text": "DEU:2OF", "url": "https://www.google.com/finance/quote/2OF:DEU"}, {"text": "STU:2OF", "url": "https://www.google.com/finance/quote/2OF:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Inference", "field_count": 1}, {"field_name": "Bayesian probability", "field_count": 1}], "clusters": [{"cluster_id": 7095, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 674, "referenced_count": 2}, {"ref_CSET_id": 1126, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}], "tasks": [{"referent": "time_series", "task_count": 1}, {"referent": "parameter_estimation", "task_count": 1}], "methods": [{"referent": "markov_chain_monte_carlo", "method_count": 2}, {"referent": "distribution_approximation", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148, "sp500_rank": 428}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0], "total": 5, "isTopResearch": false, "rank": 820, "sp500_rank": 333}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 1.0, 0, 2.0, 0, 0], "total": 2.5, "isTopResearch": false, "rank": 809, "sp500_rank": 322}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 600, "rank": 440, "sp500_rank": 214}, "ai_jobs": {"counts": null, "total": 96, "rank": 344, "sp500_rank": 185}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 1563, "country": "United States", "website": "http://www.dolby.com", "crunchbase": {"text": "10a9be75-917b-fd30-4260-2ca00398f061", "url": "https://www.crunchbase.com/organization/dolby-laboratories"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dolby-laboratories"], "stage": "Mature", "name": "Dolby Laboratories", "patent_name": "dolby laboratories", "continent": "North America", "local_logo": "dolby_laboratories.png", "aliases": "Dolby Laboratories, Llc, Dolby", "permid_links": [{"text": 4295899994, "url": "https://permid.org/1-4295899994"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DLB", "url": "https://www.google.com/finance/quote/dlb:nyse"}], "market_full": [{"text": "NYSE:DLB", "url": "https://www.google.com/finance/quote/dlb:nyse"}, {"text": "BRN:FUO", "url": "https://www.google.com/finance/quote/brn:fuo"}, {"text": "BER:FUO", "url": "https://www.google.com/finance/quote/ber:fuo"}, {"text": "STU:FUO", "url": "https://www.google.com/finance/quote/fuo:stu"}, {"text": "FRA:FUO", "url": "https://www.google.com/finance/quote/fra:fuo"}, {"text": "GER:DLBX,A", "url": "https://www.google.com/finance/quote/dlbx,a:ger"}, {"text": "NYQ:DLB", "url": "https://www.google.com/finance/quote/dlb:nyq"}, {"text": "ASE:DLB", "url": "https://www.google.com/finance/quote/ase:dlb"}, {"text": "DEU:DLBA", "url": "https://www.google.com/finance/quote/deu:dlba"}, {"text": "DUS:FUO", "url": "https://www.google.com/finance/quote/dus:fuo"}, {"text": "MUN:FUO", "url": "https://www.google.com/finance/quote/fuo:mun"}], "crunchbase_description": "Dolby creates surround sound, imaging, and voice technologies for cinemas, home theaters, PCs, mobile devices, games, and more.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Gamut", "field_count": 6}, {"field_name": "Robustness (computer science)", "field_count": 5}, {"field_name": "Luminance", "field_count": 2}, {"field_name": "Data compression", "field_count": 2}, {"field_name": "Speech synthesis", "field_count": 2}, {"field_name": "Nearest neighbor search", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "Source separation", "field_count": 2}, {"field_name": "Gaussian noise", "field_count": 1}], "clusters": [{"cluster_id": 2479, "cluster_count": 13}, {"cluster_id": 3291, "cluster_count": 4}, {"cluster_id": 5507, "cluster_count": 4}, {"cluster_id": 20690, "cluster_count": 4}, {"cluster_id": 3240, "cluster_count": 4}, {"cluster_id": 1052, "cluster_count": 3}, {"cluster_id": 41140, "cluster_count": 2}, {"cluster_id": 10799, "cluster_count": 2}, {"cluster_id": 25609, "cluster_count": 1}, {"cluster_id": 61532, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 64}, {"ref_CSET_id": 1563, "referenced_count": 36}, {"ref_CSET_id": 163, "referenced_count": 21}, {"ref_CSET_id": 1784, "referenced_count": 13}, {"ref_CSET_id": 786, "referenced_count": 12}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 6, "referenced_count": 7}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 1132, "referenced_count": 5}, {"ref_CSET_id": 37, "referenced_count": 5}], "tasks": [{"referent": "image_quality_assessment", "task_count": 4}, {"referent": "classification", "task_count": 4}, {"referent": "image_processing", "task_count": 4}, {"referent": "image_analysis", "task_count": 3}, {"referent": "source_separation", "task_count": 3}, {"referent": "lexical_analysis", "task_count": 2}, {"referent": "video", "task_count": 2}, {"referent": "video_synchronization", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "motion_capture", "task_count": 2}], "methods": [{"referent": "multiplicative_attention", "method_count": 3}, {"referent": "(2+1)d_convolution", "method_count": 3}, {"referent": "linear_regression", "method_count": 3}, {"referent": "mad_learning", "method_count": 3}, {"referent": "generative_models", "method_count": 3}, {"referent": "generative_adversarial_networks", "method_count": 3}, {"referent": "metrix", "method_count": 3}, {"referent": "adaptive_input_representations", "method_count": 2}, {"referent": "dimensionality_reduction", "method_count": 2}, {"referent": "clustering", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [18, 20, 17, 28, 23, 33, 33, 28, 16, 13, 0], "total": 229, "isTopResearch": false, "rank": 394}, "ai_publications": {"counts": [5, 3, 3, 3, 3, 7, 11, 13, 8, 2, 0], "total": 58, "isTopResearch": false, "rank": 166}, "ai_publications_growth": {"counts": [], "total": -31.75990675990676, "isTopResearch": false, "rank": 1398}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [31, 37, 38, 25, 35, 35, 56, 86, 141, 58, 2], "total": 544, "isTopResearch": false, "rank": 264}, "cv_pubs": {"counts": [3, 2, 2, 3, 1, 2, 5, 5, 2, 0, 0], "total": 25, "isTopResearch": true, "rank": 125}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [6.2, 12.333333333333334, 12.666666666666666, 8.333333333333334, 11.666666666666666, 5.0, 5.090909090909091, 6.615384615384615, 17.625, 29.0, 0], "total": 9.379310344827585, "isTopResearch": false, "rank": 565}}, "patents": {"ai_patents": {"counts": [2, 0, 4, 2, 2, 11, 15, 26, 3, 0, 0], "total": 65, "table": null, "rank": 197}, "ai_patents_growth": {"counts": [], "total": 186.56565656565658, "table": null, "rank": 48}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [20, 0, 40, 20, 20, 110, 150, 260, 30, 0, 0], "total": 650, "table": null, "rank": 197}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 3, 0, 0, 3, 1, 1, 0, 0, 0], "total": 8, "table": "industry", "rank": 273}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [2, 0, 3, 1, 1, 7, 4, 5, 1, 0, 0], "total": 24, "table": "industry", "rank": 124}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 45}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [2, 0, 2, 2, 0, 7, 13, 19, 2, 0, 0], "total": 47, "table": "application", "rank": 20}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 4, 2, 0, 0, 0, 0], "total": 8, "table": "application", "rank": 269}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 600, "rank": 440}, "ai_jobs": {"counts": null, "total": 22, "rank": 667}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Dolby Laboratories, Inc. (often shortened to Dolby Labs and known simply as Dolby) is an American company specializing in audio noise reduction and audio encoding/compression. Dolby licenses its technologies to consumer electronics manufacturers.", "wikipedia_link": "https://en.wikipedia.org/wiki/Dolby_Laboratories", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2169, "country": "United States", "website": "https://www.mondelezinternational.com/", "crunchbase": {"text": " e001d2ec-8e3d-0b78-6266-504079afab11", "url": " https://www.crunchbase.com/organization/mondelez-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mondelezinternational"], "stage": "Mature", "name": "Mondelez International", "patent_name": "Mondelez International", "continent": "North America", "local_logo": null, "aliases": "Kraft Foods; Mondelez International; Mondelez International, Inc", "permid_links": [{"text": 4295899791, "url": "https://permid.org/1-4295899791"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:MDLZ", "url": "https://www.google.com/finance/quote/MDLZ:NASDAQ"}], "market_full": [{"text": "SGO:MDLZCL", "url": "https://www.google.com/finance/quote/MDLZCL:SGO"}, {"text": "DUS:KTF", "url": "https://www.google.com/finance/quote/DUS:KTF"}, {"text": "SWX:MDLZ", "url": "https://www.google.com/finance/quote/MDLZ:SWX"}, {"text": "GER:KTFX", "url": "https://www.google.com/finance/quote/GER:KTFX"}, {"text": "STU:KTF", "url": "https://www.google.com/finance/quote/KTF:STU"}, {"text": "MEX:MDLZ", "url": "https://www.google.com/finance/quote/MDLZ:MEX"}, {"text": "MCX:MDLZ-RM", "url": "https://www.google.com/finance/quote/MCX:MDLZ-RM"}, {"text": "BER:KTF", "url": "https://www.google.com/finance/quote/BER:KTF"}, {"text": "FRA:KTF", "url": "https://www.google.com/finance/quote/FRA:KTF"}, {"text": "SAO:MDLZ34", "url": "https://www.google.com/finance/quote/MDLZ34:SAO"}, {"text": "VIE:MDLZ", "url": "https://www.google.com/finance/quote/MDLZ:VIE"}, {"text": "HAM:KTF", "url": "https://www.google.com/finance/quote/HAM:KTF"}, {"text": "SGO:MDLZ", "url": "https://www.google.com/finance/quote/MDLZ:SGO"}, {"text": "LSE:0R0G", "url": "https://www.google.com/finance/quote/0R0G:LSE"}, {"text": "BRN:KTF", "url": "https://www.google.com/finance/quote/BRN:KTF"}, {"text": "NASDAQ:MDLZ", "url": "https://www.google.com/finance/quote/MDLZ:NASDAQ"}, {"text": "DEU:KFT", "url": "https://www.google.com/finance/quote/DEU:KFT"}, {"text": "MUN:KTF", "url": "https://www.google.com/finance/quote/KTF:MUN"}, {"text": "HAN:KTF", "url": "https://www.google.com/finance/quote/HAN:KTF"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [21, 20, 30, 7, 15, 13, 14, 24, 26, 10, 1], "total": 181, "isTopResearch": false, "rank": 421, "sp500_rank": 253, "fortune500_rank": 162}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 599, "rank": 442, "sp500_rank": 215, "fortune500_rank": 240}, "ai_jobs": {"counts": null, "total": 171, "rank": 248, "sp500_rank": 154, "fortune500_rank": 132}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2245, "country": "United States", "website": "https://www.carmax.com/", "crunchbase": {"text": "fb76eea2-315b-666d-497e-6fd2c9614d46", "url": "https://www.crunchbase.com/organization/carmax"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/carmax"], "stage": "Mature", "name": "Carmax Inc", "patent_name": "carmax inc", "continent": "North America", "local_logo": "carmax_inc.png", "aliases": "Carmax; Carmax Business Services, Llc", "permid_links": [{"text": 4295903702, "url": "https://permid.org/1-4295903702"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:KMX", "url": "https://www.google.com/finance/quote/kmx:nyse"}], "market_full": [{"text": "NYSE:KMX", "url": "https://www.google.com/finance/quote/kmx:nyse"}, {"text": "DEU:KMX", "url": "https://www.google.com/finance/quote/deu:kmx"}, {"text": "MCX:KMX-RM", "url": "https://www.google.com/finance/quote/kmx-rm:mcx"}, {"text": "ASE:KMX", "url": "https://www.google.com/finance/quote/ase:kmx"}, {"text": "MEX:KMX*", "url": "https://www.google.com/finance/quote/kmx*:mex"}, {"text": "FRA:XA4", "url": "https://www.google.com/finance/quote/fra:xa4"}, {"text": "NYQ:KMX", "url": "https://www.google.com/finance/quote/kmx:nyq"}, {"text": "BER:XA4", "url": "https://www.google.com/finance/quote/ber:xa4"}, {"text": "DUS:XA4", "url": "https://www.google.com/finance/quote/dus:xa4"}, {"text": "LSE:0HTQ", "url": "https://www.google.com/finance/quote/0htq:lse"}, {"text": "MUN:XA4", "url": "https://www.google.com/finance/quote/mun:xa4"}, {"text": "SAO:K1MX34", "url": "https://www.google.com/finance/quote/k1mx34:sao"}, {"text": "STU:XA4", "url": "https://www.google.com/finance/quote/stu:xa4"}, {"text": "HAN:XA4", "url": "https://www.google.com/finance/quote/han:xa4"}, {"text": "BRN:XA4", "url": "https://www.google.com/finance/quote/brn:xa4"}], "crunchbase_description": "CarMax provides an online platform to search for new and used cars, research models, and compare cars.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 596, "rank": 443, "fortune500_rank": 241}, "ai_jobs": {"counts": null, "total": 83, "rank": 374, "fortune500_rank": 197}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "CarMax is America's largest used-car retailer and a Fortune 500 company. The corporate entity behind the formation of CarMax was Circuit City Stores, Inc. The first CarMax used-car store opened in September 1993, 1.7 miles (2.7 km) from Circuit City's corporate offices in Richmond, Virginia. As of November 30, 2018, CarMax operated 195 locations in 95 television media markets.", "wikipedia_link": "https://en.wikipedia.org/wiki/CarMax", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2299, "country": "United States", "website": "https://www.ecolab.com/", "crunchbase": {"text": "166709e1-e92a-6d1d-9331-9135db57f9a7", "url": "https://www.crunchbase.com/organization/ecolab"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ecolab"], "stage": "Mature", "name": "Ecolab Inc.", "patent_name": "ecolab inc.", "continent": "North America", "local_logo": "ecolab_inc.png", "aliases": "Ecolab; Economics Laboratory", "permid_links": [{"text": 4295903916, "url": "https://permid.org/1-4295903916"}], "parent_info": "Bill & Melinda Gates Foundation Trust", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ECL", "url": "https://www.google.com/finance/quote/ecl:nyse"}], "market_full": [{"text": "NYQ:ECL", "url": "https://www.google.com/finance/quote/ecl:nyq"}, {"text": "BRN:ECJ", "url": "https://www.google.com/finance/quote/brn:ecj"}, {"text": "MEX:ECL*", "url": "https://www.google.com/finance/quote/ecl*:mex"}, {"text": "NYSE:ECL", "url": "https://www.google.com/finance/quote/ecl:nyse"}, {"text": "VIE:ECL*", "url": "https://www.google.com/finance/quote/ecl*:vie"}, {"text": "DEU:ECL", "url": "https://www.google.com/finance/quote/deu:ecl"}, {"text": "ASE:ECL", "url": "https://www.google.com/finance/quote/ase:ecl"}, {"text": "GER:ECJX", "url": "https://www.google.com/finance/quote/ecjx:ger"}, {"text": "MUN:ECJ", "url": "https://www.google.com/finance/quote/ecj:mun"}, {"text": "LSE:0IFA", "url": "https://www.google.com/finance/quote/0ifa:lse"}, {"text": "FRA:ECJ", "url": "https://www.google.com/finance/quote/ecj:fra"}, {"text": "STU:ECJ", "url": "https://www.google.com/finance/quote/ecj:stu"}, {"text": "DUS:ECJ", "url": "https://www.google.com/finance/quote/dus:ecj"}, {"text": "MOEX:ECL-RM", "url": "https://www.google.com/finance/quote/ecl-rm:moex"}, {"text": "BER:ECJ", "url": "https://www.google.com/finance/quote/ber:ecj"}, {"text": "SAO:E1CL34", "url": "https://www.google.com/finance/quote/e1cl34:sao"}], "crunchbase_description": "Ecolab is a global leader in water, hygiene, and energy technologies and services.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 27561, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "automl", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "electron_microscopy", "task_count": 1}, {"referent": "home_activity_monitoring", "task_count": 1}, {"referent": "steering_control", "task_count": 1}], "methods": [{"referent": "esp", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "squeezenet", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [40, 49, 33, 35, 50, 34, 37, 19, 17, 16, 0], "total": 330, "isTopResearch": false, "rank": 343, "fortune500_rank": 130}, "ai_publications": {"counts": [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 1, 0, 2, 1, 1, 1, 0, 0], "total": 6, "isTopResearch": false, "rank": 805, "fortune500_rank": 220}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0.0, 0, 0, 0, 0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779, "fortune500_rank": 213}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": null, "rank": 606, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 20, 10, 0, 0], "total": 30, "table": null, "rank": 606, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 48, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 595, "rank": 444, "fortune500_rank": 242}, "ai_jobs": {"counts": null, "total": 93, "rank": 353, "fortune500_rank": 188}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "Ecolab Inc., headquartered in St. Paul, Minnesota, is an American corporation that develops and offers services, technology and systems that specialize in water treatment, purification, cleaning and hygiene in a wide variety of applications. It helps organizations both private market as well as public treat their water, not only for drinking directly, but also for use in food, healthcare, hospitality related safety and industry. It was founded as Economics Laboratory in 1923 by Merritt J. Osborn, and renamed \"Ecolab\" in 1986.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ecolab", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2321, "country": "United States", "website": "https://www.firstrepublic.com/", "crunchbase": {"text": "91846c8f-6ef9-6477-1fd3-ad238fd36ae0", "url": "https://www.crunchbase.com/organization/first-republic-bank"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/first-republic-bank"], "stage": "Mature", "name": "First Republic Bank", "patent_name": "first republic bank", "continent": "North America", "local_logo": "first_republic_bank.png", "aliases": "First Republic", "permid_links": [{"text": 5001218533, "url": "https://permid.org/1-5001218533"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:FRC", "url": "https://www.google.com/finance/quote/frc:nyse"}], "market_full": [{"text": "MEX:FRC*", "url": "https://www.google.com/finance/quote/frc*:mex"}, {"text": "VIE:FRC", "url": "https://www.google.com/finance/quote/frc:vie"}, {"text": "NYQ:FRC", "url": "https://www.google.com/finance/quote/frc:nyq"}, {"text": "FRA:81R", "url": "https://www.google.com/finance/quote/81r:fra"}, {"text": "DEU:81R", "url": "https://www.google.com/finance/quote/81r:deu"}, {"text": "BER:81R", "url": "https://www.google.com/finance/quote/81r:ber"}, {"text": "GER:81RX", "url": "https://www.google.com/finance/quote/81rx:ger"}, {"text": "SAO:F1RC34", "url": "https://www.google.com/finance/quote/f1rc34:sao"}, {"text": "HAN:81R", "url": "https://www.google.com/finance/quote/81r:han"}, {"text": "NYSE:FRC", "url": "https://www.google.com/finance/quote/frc:nyse"}, {"text": "ASE:FRC", "url": "https://www.google.com/finance/quote/ase:frc"}], "crunchbase_description": "First Republic offers banking for individuals and businesses, wealth management and more with a focus on tailored services and solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 591, "rank": 445}, "ai_jobs": {"counts": null, "total": 95, "rank": 348}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "First Republic Bank is an American bank and wealth management company offering personal banking, business banking, trust and wealth management services, catering to low-risk, high net-worth clientele. The bank specializes in delivering personalized relationship-based service through preferred banking or trust offices in the United States, including San Francisco, Palo Alto, Los Angeles, Santa Barbara, Newport Beach, San Diego, Portland, Palm Beach, Boston, Greenwich, New York City, Jackson, Wyoming, and Manhattan Beach.", "wikipedia_link": "https://en.wikipedia.org/wiki/First_Republic_Bank", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2460, "country": "United States", "website": "https://www.ppg.com/", "crunchbase": {"text": "02729e96-1867-b9e2-fb52-bc50ff6629bb", "url": "https://www.crunchbase.com/organization/ppg-industries"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ppg"], "stage": "Mature", "name": "PPG Industries", "patent_name": "ppg industries", "continent": "North America", "local_logo": "ppg_industries.png", "aliases": "Ppg; Ppg Industries Ohio, Inc; Ppg Industries, Inc", "permid_links": [{"text": 4295904686, "url": "https://permid.org/1-4295904686"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PPG", "url": "https://www.google.com/finance/quote/nyse:ppg"}], "market_full": [{"text": "MEX:PPG*", "url": "https://www.google.com/finance/quote/mex:ppg*"}, {"text": "FRA:PPQ", "url": "https://www.google.com/finance/quote/fra:ppq"}, {"text": "LSE:0KEI", "url": "https://www.google.com/finance/quote/0kei:lse"}, {"text": "BER:PPQ", "url": "https://www.google.com/finance/quote/ber:ppq"}, {"text": "DUS:PPQ", "url": "https://www.google.com/finance/quote/dus:ppq"}, {"text": "NYQ:PPG", "url": "https://www.google.com/finance/quote/nyq:ppg"}, {"text": "BRN:PPQ", "url": "https://www.google.com/finance/quote/brn:ppq"}, {"text": "VIE:PPG", "url": "https://www.google.com/finance/quote/ppg:vie"}, {"text": "ASE:PPG", "url": "https://www.google.com/finance/quote/ase:ppg"}, {"text": "NYSE:PPG", "url": "https://www.google.com/finance/quote/nyse:ppg"}, {"text": "SAO:P1PG34", "url": "https://www.google.com/finance/quote/p1pg34:sao"}, {"text": "STU:PPQ", "url": "https://www.google.com/finance/quote/ppq:stu"}, {"text": "MUN:PPQ", "url": "https://www.google.com/finance/quote/mun:ppq"}, {"text": "DEU:PPG", "url": "https://www.google.com/finance/quote/deu:ppg"}, {"text": "GER:PPQX", "url": "https://www.google.com/finance/quote/ger:ppqx"}, {"text": "MCX:PPG-RM", "url": "https://www.google.com/finance/quote/mcx:ppg-rm"}], "crunchbase_description": "PPG Industries is an American global supplier of paints, coatings, optical products, specialty materials, chemicals, glass, and fiberglass.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Structured light", "field_count": 5}, {"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 11611, "cluster_count": 3}, {"cluster_id": 875, "cluster_count": 2}, {"cluster_id": 51400, "cluster_count": 1}, {"cluster_id": 40809, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2460, "referenced_count": 3}], "tasks": [{"referent": "3d_reconstruction", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "manufacturing_quality_control", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "transparent_object_detection", "task_count": 1}], "methods": [{"referent": "phase_reconstruction", "method_count": 1}, {"referent": "attention_patterns", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "root", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [15, 13, 7, 13, 8, 7, 14, 8, 7, 11, 0], "total": 103, "isTopResearch": false, "rank": 509, "fortune500_rank": 189}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [15, 24, 24, 22, 36, 22, 39, 34, 37, 12, 0], "total": 265, "isTopResearch": false, "rank": 346, "fortune500_rank": 102}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 24.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 265.0, "isTopResearch": false, "rank": 7, "fortune500_rank": 1}}, "patents": {"ai_patents": {"counts": [4, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0], "total": 9, "table": null, "rank": 424, "fortune500_rank": 134}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [40, 0, 0, 0, 0, 40, 0, 10, 0, 0, 0], "total": 90, "table": null, "rank": 424, "fortune500_rank": 134}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [2, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 318, "fortune500_rank": 96}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [3, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 158, "fortune500_rank": 51}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 591, "rank": 445, "fortune500_rank": 243}, "ai_jobs": {"counts": null, "total": 91, "rank": 357, "fortune500_rank": 191}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "PPG Industries, Inc. is an American Fortune 500 company and global supplier of paints, coatings, and specialty materials. With headquarters in Pittsburgh, Pennsylvania, PPG operates in more than 70 countries around the globe. By revenue it is the largest coatings company in the world followed by AkzoNobel. It is headquartered in PPG Place, an office and retail complex in downtown Pittsburgh, and is known for its glass facade designed by Philip Johnson.", "wikipedia_link": "https://en.wikipedia.org/wiki/PPG_Industries", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1835, "country": "Italy", "website": "https://www.eni.com/", "crunchbase": {"text": " 58cb5fc9-5887-8a66-2deb-147c35f3dc3a ", "url": "https://www.crunchbase.com/organization/eni"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/eni"], "stage": "Mature", "name": "Eni", "patent_name": "ENI", "continent": "Europe", "local_logo": null, "aliases": "ENI; Eni S.P.A", "permid_links": [{"text": 4295875633, "url": "https://permid.org/1-4295875633"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:E", "url": "https://www.google.com/finance/quote/E:NYSE"}], "market_full": [{"text": "BER:ENI", "url": "https://www.google.com/finance/quote/BER:ENI"}, {"text": "MUN:ENI", "url": "https://www.google.com/finance/quote/ENI:MUN"}, {"text": "HAM:ENI", "url": "https://www.google.com/finance/quote/ENI:HAM"}, {"text": "FRA:ENI", "url": "https://www.google.com/finance/quote/ENI:FRA"}, {"text": "ASE:E", "url": "https://www.google.com/finance/quote/ASE:E"}, {"text": "BUE:E3", "url": "https://www.google.com/finance/quote/BUE:E3"}, {"text": "MUN:ENI1", "url": "https://www.google.com/finance/quote/ENI1:MUN"}, {"text": "GER:ENIX", "url": "https://www.google.com/finance/quote/ENIX:GER"}, {"text": "STU:ENI1", "url": "https://www.google.com/finance/quote/ENI1:STU"}, {"text": "VIE:ENI", "url": "https://www.google.com/finance/quote/ENI:VIE"}, {"text": "FRA:ENI1", "url": "https://www.google.com/finance/quote/ENI1:FRA"}, {"text": "PKC:EIPAF", "url": "https://www.google.com/finance/quote/EIPAF:PKC"}, {"text": "LSE:0N9S", "url": "https://www.google.com/finance/quote/0N9S:LSE"}, {"text": "HAN:ENI", "url": "https://www.google.com/finance/quote/ENI:HAN"}, {"text": "DEU:ENI1", "url": "https://www.google.com/finance/quote/DEU:ENI1"}, {"text": "DUS:ENI", "url": "https://www.google.com/finance/quote/DUS:ENI"}, {"text": "BRU:ENI", "url": "https://www.google.com/finance/quote/BRU:ENI"}, {"text": "MIL:ENI", "url": "https://www.google.com/finance/quote/ENI:MIL"}, {"text": "BER:ENI1", "url": "https://www.google.com/finance/quote/BER:ENI1"}, {"text": "EBT:ENIM", "url": "https://www.google.com/finance/quote/EBT:ENIm"}, {"text": "LSE:0TD2", "url": "https://www.google.com/finance/quote/0TD2:LSE"}, {"text": "STU:ENI", "url": "https://www.google.com/finance/quote/ENI:STU"}, {"text": "NYQ:E", "url": "https://www.google.com/finance/quote/E:NYQ"}, {"text": "NYSE:E", "url": "https://www.google.com/finance/quote/E:NYSE"}, {"text": "DEU:ENI", "url": "https://www.google.com/finance/quote/DEU:ENI"}, {"text": "MEX:EN", "url": "https://www.google.com/finance/quote/EN:MEX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Statistical classification", "field_count": 3}, {"field_name": "Statistical model", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Particle swarm optimization", "field_count": 2}, {"field_name": "Hyperspectral imaging", "field_count": 2}, {"field_name": "Smoothing", "field_count": 1}, {"field_name": "Robotic arm", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 4179, "cluster_count": 4}, {"cluster_id": 50212, "cluster_count": 3}, {"cluster_id": 50349, "cluster_count": 2}, {"cluster_id": 49423, "cluster_count": 2}, {"cluster_id": 11616, "cluster_count": 2}, {"cluster_id": 4286, "cluster_count": 2}, {"cluster_id": 54676, "cluster_count": 2}, {"cluster_id": 61387, "cluster_count": 1}, {"cluster_id": 3501, "cluster_count": 1}, {"cluster_id": 18150, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1835, "referenced_count": 14}, {"ref_CSET_id": 101, "referenced_count": 10}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 1797, "referenced_count": 3}, {"ref_CSET_id": 718, "referenced_count": 3}, {"ref_CSET_id": 682, "referenced_count": 2}, {"ref_CSET_id": 1828, "referenced_count": 2}, {"ref_CSET_id": 456, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 11}, {"referent": "speech_production", "task_count": 7}, {"referent": "facies_classification", "task_count": 4}, {"referent": "image_analysis", "task_count": 4}, {"referent": "system_identification", "task_count": 3}, {"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "point_processes", "task_count": 3}, {"referent": "decision_making", "task_count": 2}, {"referent": "pattern_classification", "task_count": 2}, {"referent": "home_activity_monitoring", "task_count": 2}], "methods": [{"referent": "vqa_models", "method_count": 10}, {"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "mad_learning", "method_count": 8}, {"referent": "meta_learning_algorithms", "method_count": 7}, {"referent": "double_q_learning", "method_count": 5}, {"referent": "optimization", "method_count": 4}, {"referent": "q_learning", "method_count": 3}, {"referent": "self_supervised_learning", "method_count": 3}, {"referent": "clustering", "method_count": 3}, {"referent": "auto_classifier", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [443, 362, 423, 302, 360, 241, 302, 275, 338, 234, 6], "total": 3286, "isTopResearch": false, "rank": 87, "sp500_rank": 72}, "ai_publications": {"counts": [5, 4, 8, 1, 3, 8, 13, 10, 9, 4, 0], "total": 65, "isTopResearch": false, "rank": 156, "sp500_rank": 102}, "ai_publications_growth": {"counts": [], "total": -29.544159544159545, "isTopResearch": false, "rank": 1391, "sp500_rank": 381}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [45, 46, 66, 81, 78, 70, 101, 152, 161, 183, 7], "total": 990, "isTopResearch": false, "rank": 195, "sp500_rank": 109}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 2, 3, 0, 0, 1, 0], "total": 7, "isTopResearch": true, "rank": 142, "sp500_rank": 97}, "citations_per_article": {"counts": [9.0, 11.5, 8.25, 81.0, 26.0, 8.75, 7.769230769230769, 15.2, 17.88888888888889, 45.75, 0], "total": 15.23076923076923, "isTopResearch": false, "rank": 398, "sp500_rank": 131}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 583, "rank": 447, "sp500_rank": 216}, "ai_jobs": {"counts": null, "total": 52, "rank": 474, "sp500_rank": 229}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2293, "country": "United States", "website": "https://www.newlook.dteenergy.com/", "crunchbase": {"text": "1d66fcd7-c5d2-0645-0586-02013cefbd3b", "url": "https://www.crunchbase.com/organization/dte-energy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dte-energy"], "stage": "Mature", "name": "DTE Energy Co.", "patent_name": "dte energy co.", "continent": "North America", "local_logo": "dte_energy_co.png", "aliases": "Dte; Dte Energy", "permid_links": [{"text": 4295903858, "url": "https://permid.org/1-4295903858"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DTE", "url": "https://www.google.com/finance/quote/dte:nyse"}], "market_full": [{"text": "BRN:DGY", "url": "https://www.google.com/finance/quote/brn:dgy"}, {"text": "SAO:D1TE34", "url": "https://www.google.com/finance/quote/d1te34:sao"}, {"text": "NYSE:DTE", "url": "https://www.google.com/finance/quote/dte:nyse"}, {"text": "LSE:0I6Q", "url": "https://www.google.com/finance/quote/0i6q:lse"}, {"text": "BER:DGY", "url": "https://www.google.com/finance/quote/ber:dgy"}, {"text": "ASE:DTE", "url": "https://www.google.com/finance/quote/ase:dte"}, {"text": "STU:DGY", "url": "https://www.google.com/finance/quote/dgy:stu"}, {"text": "FRA:DGY", "url": "https://www.google.com/finance/quote/dgy:fra"}, {"text": "DUS:DGY", "url": "https://www.google.com/finance/quote/dgy:dus"}, {"text": "NYQ:DTE", "url": "https://www.google.com/finance/quote/dte:nyq"}, {"text": "DEU:DGY", "url": "https://www.google.com/finance/quote/deu:dgy"}, {"text": "MUN:DGY", "url": "https://www.google.com/finance/quote/dgy:mun"}], "crunchbase_description": "DTE Energy provides gas & electric utility services to MI homes and businesses.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 4884, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 1897, "referenced_count": 1}], "tasks": [{"referent": "remote_sensing", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "remote_sensing_image_classification", "task_count": 1}], "methods": [{"referent": "gradual_self_training", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 2, 8, 12, 2, 1, 1, 1, 2, 1, 0], "total": 30, "isTopResearch": false, "rank": 713, "fortune500_rank": 255}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 3, 1, 0], "total": 4, "isTopResearch": false, "rank": 833, "fortune500_rank": 228}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 1.0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "fortune500_rank": 217}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 581, "rank": 448, "fortune500_rank": 244}, "ai_jobs": {"counts": null, "total": 129, "rank": 299, "fortune500_rank": 163}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "DTE Energy (formerly Detroit Edison until 1996) is a Detroit-based diversified energy company involved in the development and management of energy-related businesses and services in the United States and Canada. Its operating units include an electric utility serving 2.2 million customers and a natural gas utility serving 1.3 million customers in Michigan.", "wikipedia_link": "https://en.wikipedia.org/wiki/DTE_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2426, "country": "United States", "website": "http://nov.com/", "crunchbase": {"text": "b0d74f3f-3efb-47c1-01e8-04b86f36d8b1", "url": "https://www.crunchbase.com/organization/national-oilwell-varco"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/novglobal"], "stage": "Mature", "name": "Nov Inc.", "patent_name": "NOV Inc.", "continent": "North America", "local_logo": "nov_inc.png", "aliases": "NOV Inc.; National Oilwell Varco; National Oilwell Varco Inc; Nov; Nov Inc; Nov, Inc", "permid_links": [{"text": 4295904589, "url": "https://permid.org/1-4295904589"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NOV", "url": "https://www.google.com/finance/quote/nov:nyse"}], "market_full": [{"text": "NYSE:NOV", "url": "https://www.google.com/finance/quote/nov:nyse"}, {"text": "BRN:NO8", "url": "https://www.google.com/finance/quote/brn:no8"}, {"text": "DUS:NO8", "url": "https://www.google.com/finance/quote/dus:no8"}, {"text": "BER:NO8", "url": "https://www.google.com/finance/quote/ber:no8"}, {"text": "MCX:NOV-RM", "url": "https://www.google.com/finance/quote/mcx:nov-rm"}, {"text": "LSE:N1OV34", "url": "https://www.google.com/finance/quote/lse:n1ov34"}, {"text": "MUN:NO8", "url": "https://www.google.com/finance/quote/mun:no8"}, {"text": "NYQ:NOV", "url": "https://www.google.com/finance/quote/nov:nyq"}, {"text": "MEX:NOV*", "url": "https://www.google.com/finance/quote/mex:nov*"}, {"text": "STU:NO8", "url": "https://www.google.com/finance/quote/no8:stu"}, {"text": "FRA:NO8", "url": "https://www.google.com/finance/quote/fra:no8"}, {"text": "ASE:NOV", "url": "https://www.google.com/finance/quote/ase:nov"}, {"text": "DEU:NOV", "url": "https://www.google.com/finance/quote/deu:nov"}], "crunchbase_description": "NOV offers industrial equipment, components, and solutions such as artificial lifts, pole structures, hydrogen solutions, and composites.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Data analysis", "field_count": 1}, {"field_name": "Navigation system", "field_count": 1}], "clusters": [{"cluster_id": 53446, "cluster_count": 3}, {"cluster_id": 54676, "cluster_count": 2}, {"cluster_id": 29455, "cluster_count": 2}, {"cluster_id": 3370, "cluster_count": 1}, {"cluster_id": 35889, "cluster_count": 1}, {"cluster_id": 24881, "cluster_count": 1}, {"cluster_id": 33762, "cluster_count": 1}, {"cluster_id": 81101, "cluster_count": 1}, {"cluster_id": 10926, "cluster_count": 1}, {"cluster_id": 43226, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 80, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 2029, "referenced_count": 1}, {"ref_CSET_id": 1860, "referenced_count": 1}, {"ref_CSET_id": 1861, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "autonomous_driving", "task_count": 3}, {"referent": "portfolio_optimization", "task_count": 3}, {"referent": "system_identification", "task_count": 2}, {"referent": "robotic_process_automation", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "surgical_tool_detection", "task_count": 2}, {"referent": "automl", "task_count": 2}, {"referent": "decision_making", "task_count": 2}, {"referent": "steering_control", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 3}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "contrastive_predictive_coding", "method_count": 1}, {"referent": "hyperparameter_search", "method_count": 1}, {"referent": "use", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "colorjitter", "method_count": 1}, {"referent": "deit", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [61, 26, 34, 30, 21, 29, 26, 40, 24, 12, 0], "total": 303, "isTopResearch": false, "rank": 354, "fortune500_rank": 135}, "ai_publications": {"counts": [1, 0, 2, 0, 0, 2, 1, 4, 3, 0, 0], "total": 13, "isTopResearch": false, "rank": 375, "fortune500_rank": 111}, "ai_publications_growth": {"counts": [], "total": 58.333333333333336, "isTopResearch": false, "rank": 56, "fortune500_rank": 16}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [2, 5, 8, 8, 4, 2, 7, 10, 30, 29, 3], "total": 108, "isTopResearch": false, "rank": 493, "fortune500_rank": 134}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "fortune500_rank": 67}, "citations_per_article": {"counts": [2.0, 0, 4.0, 0, 0, 1.0, 7.0, 2.5, 10.0, 0, 0], "total": 8.307692307692308, "isTopResearch": false, "rank": 591, "fortune500_rank": 170}}, "patents": {"ai_patents": {"counts": [1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 10, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 105, "fortune500_rank": 36}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 578, "rank": 449, "fortune500_rank": 245}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "fortune500_rank": 294}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2106, "country": "France", "website": "https://www.veolia.com/", "crunchbase": {"text": " 17882f3e-348d-5aa0-b1dc-a01ff9a59280", "url": " https://www.crunchbase.com/organization/veolia-environmental-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/veolia-environnement"], "stage": "Mature", "name": "Veolia Environnement", "patent_name": "Veolia Environnement", "continent": "Europe", "local_logo": null, "aliases": "Veolia Environmental; Veolia Environmental Sa; Veolia Environmental Solutions; Veolia Environnement", "permid_links": [{"text": 4295867473, "url": "https://permid.org/1-4295867473"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "HAM:VVD", "url": "https://www.google.com/finance/quote/HAM:VVD"}, {"text": "DUS:VVD", "url": "https://www.google.com/finance/quote/DUS:VVD"}, {"text": "MUN:VVD", "url": "https://www.google.com/finance/quote/MUN:VVD"}, {"text": "FRA:VVD", "url": "https://www.google.com/finance/quote/FRA:VVD"}, {"text": "LSE:0NY8", "url": "https://www.google.com/finance/quote/0NY8:LSE"}, {"text": "STU:VVDH", "url": "https://www.google.com/finance/quote/STU:VVDH"}, {"text": "MUN:VVDH", "url": "https://www.google.com/finance/quote/MUN:VVDH"}, {"text": "GER:VVDX", "url": "https://www.google.com/finance/quote/GER:VVDX"}, {"text": "DEU:VVDH", "url": "https://www.google.com/finance/quote/DEU:VVDH"}, {"text": "STU:VVD", "url": "https://www.google.com/finance/quote/STU:VVD"}, {"text": "EBT:VIEP", "url": "https://www.google.com/finance/quote/EBT:VIEp"}, {"text": "HAN:VVD", "url": "https://www.google.com/finance/quote/HAN:VVD"}, {"text": "DEU:VIE", "url": "https://www.google.com/finance/quote/DEU:VIE"}, {"text": "BER:VVDH", "url": "https://www.google.com/finance/quote/BER:VVDH"}, {"text": "FRA:VVDH", "url": "https://www.google.com/finance/quote/FRA:VVDH"}, {"text": "PAR:VIE", "url": "https://www.google.com/finance/quote/PAR:VIE"}, {"text": "PKL:VEOEY", "url": "https://www.google.com/finance/quote/PKL:VEOEY"}, {"text": "VIE:VIE", "url": "https://www.google.com/finance/quote/VIE:VIE"}, {"text": "BER:VVD", "url": "https://www.google.com/finance/quote/BER:VVD"}, {"text": "PKL:VEOEF", "url": "https://www.google.com/finance/quote/PKL:VEOEF"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Bayesian optimization", "field_count": 1}], "clusters": [{"cluster_id": 52419, "cluster_count": 1}, {"cluster_id": 56378, "cluster_count": 1}, {"cluster_id": 22947, "cluster_count": 1}, {"cluster_id": 33970, "cluster_count": 1}, {"cluster_id": 14369, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 798, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "change_point_detection", "task_count": 2}, {"referent": "cbc_test", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "steering_control", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "video_surveillance", "task_count": 1}, {"referent": "intrusion_detection", "task_count": 1}, {"referent": "fraud_detection", "task_count": 1}], "methods": [{"referent": "generative_models", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [65, 47, 27, 20, 15, 7, 15, 15, 19, 7, 1], "total": 238, "isTopResearch": false, "rank": 388, "sp500_rank": 243}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [2, 6, 3, 5, 3, 6, 9, 9, 15, 15, 5], "total": 78, "isTopResearch": false, "rank": 536, "sp500_rank": 235}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [2.0, 0, 0, 0, 0, 0, 0, 0, 0, 15.0, 0], "total": 39.0, "isTopResearch": false, "rank": 136, "sp500_rank": 31}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": null, "rank": 606, "sp500_rank": 248}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 20, 10, 0, 0], "total": 30, "table": null, "rank": 606, "sp500_rank": 248}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": "application", "rank": 209, "sp500_rank": 132}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 577, "rank": 450, "sp500_rank": 217}, "ai_jobs": {"counts": null, "total": 68, "rank": 412, "sp500_rank": 213}}, "sector": "Utilities", "business_sector": "Utilities"}, {"cset_id": 2047, "country": "United States", "website": "https://www.publix.com/", "crunchbase": {"text": "904f118b-1065-c676-ba03-feed0d60a0e5", "url": "https://www.crunchbase.com/organization/publix-asset-management"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/publix-super-markets"], "stage": "Unknown", "name": "Publix Super Markets", "patent_name": "Publix Super Markets", "continent": "North America", "local_logo": "publix_super_markets.png", "aliases": "Publix; Publix Asset Management; Publix Asset Management Company; Publix Super Markets; Publix Super Markets, Inc; Publix Supermarkets", "permid_links": [{"text": 4295914632, "url": "https://permid.org/1-4295914632"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Publix is the largest employee-owned grocery chain in the United States.", "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 0, 1, 0, 1, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105, "sp500_rank": 421}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 576, "rank": 451, "sp500_rank": 218}, "ai_jobs": {"counts": null, "total": 36, "rank": 551, "sp500_rank": 248}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 2069, "country": "Taiwan", "website": "https://www.quantatw.com/", "crunchbase": {"text": " e238e310-afc8-b33b-2d4b-da274d005f3f", "url": " https://www.crunchbase.com/organization/quanta-computer"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/quanta-computer-inc-"], "stage": "Mature", "name": "Quanta Computer", "patent_name": "Quanta Computer", "continent": "Asia", "local_logo": null, "aliases": "Quanta Computer; Quanta Computer Inc; Quanta Group", "permid_links": [{"text": 4295891823, "url": "https://permid.org/1-4295891823"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "TAI:2382", "url": "https://www.google.com/finance/quote/2382:TAI"}, {"text": "PKL:QUCCF", "url": "https://www.google.com/finance/quote/PKL:QUCCF"}, {"text": "PKL:QUCPY", "url": "https://www.google.com/finance/quote/PKL:QUCPY"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Case-based reasoning", "field_count": 1}, {"field_name": "Fuzzy logic", "field_count": 1}, {"field_name": "Evolutionary algorithm", "field_count": 1}, {"field_name": "Actuator", "field_count": 1}, {"field_name": "Singular value decomposition", "field_count": 1}, {"field_name": "Robot", "field_count": 1}], "clusters": [{"cluster_id": 8171, "cluster_count": 2}, {"cluster_id": 73072, "cluster_count": 2}, {"cluster_id": 8908, "cluster_count": 2}, {"cluster_id": 24687, "cluster_count": 1}, {"cluster_id": 49574, "cluster_count": 1}, {"cluster_id": 15593, "cluster_count": 1}, {"cluster_id": 54295, "cluster_count": 1}, {"cluster_id": 40909, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 1897, "referenced_count": 2}, {"ref_CSET_id": 456, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "path_planning", "task_count": 1}, {"referent": "speech_production", "task_count": 1}, {"referent": "visual_localization", "task_count": 1}, {"referent": "personal_identification", "task_count": 1}, {"referent": "math_word_problem_solving", "task_count": 1}, {"referent": "character_recognition", "task_count": 1}, {"referent": "feature_engineering", "task_count": 1}, {"referent": "recommendation_systems", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}], "methods": [{"referent": "atss", "method_count": 3}, {"referent": "use", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "ltls", "method_count": 2}, {"referent": "resnet_d", "method_count": 2}, {"referent": "r_cnn", "method_count": 2}, {"referent": "metrix", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [6, 0, 4, 1, 1, 8, 5, 4, 6, 2, 0], "total": 37, "isTopResearch": false, "rank": 679, "sp500_rank": 349}, "ai_publications": {"counts": [2, 0, 1, 0, 0, 0, 2, 0, 1, 1, 0], "total": 7, "isTopResearch": false, "rank": 481, "sp500_rank": 243}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [5, 8, 5, 14, 15, 12, 27, 21, 12, 15, 0], "total": 134, "isTopResearch": false, "rank": 456, "sp500_rank": 204}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [2.5, 0, 5.0, 0, 0, 0, 13.5, 0, 12.0, 15.0, 0], "total": 19.142857142857142, "isTopResearch": false, "rank": 324, "sp500_rank": 99}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 3, 2, 7, 3, 0, 0], "total": 16, "table": null, "rank": 348, "sp500_rank": 173}, "ai_patents_growth": {"counts": [], "total": 108.33333333333333, "table": null, "rank": 104, "sp500_rank": 48}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 30, 20, 70, 30, 0, 0], "total": 160, "table": null, "rank": 348, "sp500_rank": 173}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0], "total": 6, "table": "industry", "rank": 113, "sp500_rank": 73}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 2, 0, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 363, "sp500_rank": 174}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 5, 3, 0, 0], "total": 10, "table": "application", "rank": 241, "sp500_rank": 134}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "sp500_rank": 134}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 574, "rank": 452, "sp500_rank": 219}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "sp500_rank": 335}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 63, "country": "United States", "website": "http://datarobot.com", "crunchbase": {"text": "d85e447c-b492-9be4-71d7-6763eeb3a945", "url": "https://www.crunchbase.com/organization/datarobot"}, "child_crunchbase": [{"text": "d77ea3aa-88f2-6a24-eff2-fec8333283d4", "url": "https://www.crunchbase.com/organization/algorithmia"}], "linkedin": ["https://www.linkedin.com/company/datarobot", "https://www.linkedin.com/company/algorithmia-inc"], "stage": "Mature", "name": "Datarobot", "patent_name": "datarobot", "continent": "North America", "local_logo": "datarobot.png", "aliases": "Datarobot Inc; Datarobot, Inc", "permid_links": [{"text": 5040047785, "url": "https://permid.org/1-5040047785"}, {"text": 5043335364, "url": "https://permid.org/1-5043335364"}], "parent_info": null, "agg_child_info": "Algorithmia", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "DataRobot provides AI technology and ROI enablement services to global enterprises.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Association rule learning", "field_count": 1}, {"field_name": "Data stream mining", "field_count": 1}], "clusters": [{"cluster_id": 44788, "cluster_count": 2}, {"cluster_id": 29644, "cluster_count": 2}, {"cluster_id": 51789, "cluster_count": 1}, {"cluster_id": 4949, "cluster_count": 1}, {"cluster_id": 1519, "cluster_count": 1}, {"cluster_id": 65, "cluster_count": 1}, {"cluster_id": 126, "cluster_count": 1}, {"cluster_id": 2001, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 63, "referenced_count": 3}, {"ref_CSET_id": 341, "referenced_count": 2}, {"ref_CSET_id": 209, "referenced_count": 2}, {"ref_CSET_id": 722, "referenced_count": 2}, {"ref_CSET_id": 949, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "brain_tumor_segmentation", "task_count": 2}, {"referent": "medical_computer_vision", "task_count": 1}, {"referent": "predicting_patient_outcomes", "task_count": 1}, {"referent": "data_mining", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "continuous_object_recognition", "task_count": 1}, {"referent": "length_of_stay_prediction", "task_count": 1}, {"referent": "active_learning", "task_count": 1}, {"referent": "automatic_machine_learning_model_selection", "task_count": 1}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "deep_ensembles", "method_count": 2}, {"referent": "automl", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "generative_audio_models", "method_count": 1}, {"referent": "momentum_rules", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 3, 4, 4, 2, 2, 4, 6, 10, 0], "total": 36, "isTopResearch": false, "rank": 680}, "ai_publications": {"counts": [0, 0, 0, 1, 3, 1, 2, 1, 1, 1, 0], "total": 10, "isTopResearch": false, "rank": 417}, "ai_publications_growth": {"counts": [], "total": -16.666666666666668, "isTopResearch": false, "rank": 1303}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 4, 10, 14, 28, 30, 49, 38, 1], "total": 174, "isTopResearch": false, "rank": 406}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 4.0, 3.3333333333333335, 14.0, 14.0, 30.0, 49.0, 38.0, 0], "total": 17.4, "isTopResearch": false, "rank": 358}}, "patents": {"ai_patents": {"counts": [0, 4, 2, 2, 1, 4, 0, 7, 6, 0, 0], "total": 26, "table": null, "rank": 288}, "ai_patents_growth": {"counts": [], "total": 100.0, "table": null, "rank": 116}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 40, 20, 20, 10, 40, 0, 70, 60, 0, 0], "total": 260, "table": null, "rank": 288}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 3, 2, 2, 1, 4, 0, 3, 0, 0, 0], "total": 15, "table": "industry", "rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 4, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 196}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 4, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 109}, "Planning_and_Scheduling": {"counts": [0, 4, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 163}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 3, 0, 0, 1, 0, 0], "total": 5, "table": "application", "rank": 318}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 573, "rank": 453}, "ai_jobs": {"counts": null, "total": 248, "rank": 209}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "DataRobot is the leading end-to-end enterprise AI platform that automates and accelerates every step of your path from data to value.", "company_site_link": "http://datarobot.com", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1871, "country": "Netherlands", "website": "https://www.aholddelhaize.com/", "crunchbase": {"text": " 87242027-b5c2-1645-330e-5d6ab740da76", "url": " https://www.crunchbase.com/organization/ahold"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ahold-delhaize"], "stage": "Unknown", "name": "Royal Ahold Delhaize", "patent_name": "Royal Ahold Delhaize", "continent": "Europe", "local_logo": null, "aliases": "Koninklijke Ahold Delhaize N.V, Ahold; Royal Ahold Delhaize", "permid_links": [{"text": 4295884672, "url": "https://permid.org/1-4295884672"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Taxonomy (general)", "field_count": 1}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Black box", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Relevance (information retrieval)", "field_count": 1}, {"field_name": "Inference", "field_count": 1}], "clusters": [{"cluster_id": 68929, "cluster_count": 2}, {"cluster_id": 22278, "cluster_count": 1}, {"cluster_id": 10485, "cluster_count": 1}, {"cluster_id": 2644, "cluster_count": 1}, {"cluster_id": 5109, "cluster_count": 1}, {"cluster_id": 13405, "cluster_count": 1}, {"cluster_id": 13494, "cluster_count": 1}, {"cluster_id": 4184, "cluster_count": 1}, {"cluster_id": 44101, "cluster_count": 1}, {"cluster_id": 18647, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 53}, {"ref_CSET_id": 101, "referenced_count": 28}, {"ref_CSET_id": 87, "referenced_count": 12}, {"ref_CSET_id": 21, "referenced_count": 9}, {"ref_CSET_id": 37, "referenced_count": 8}, {"ref_CSET_id": 112, "referenced_count": 8}, {"ref_CSET_id": 133, "referenced_count": 8}, {"ref_CSET_id": 245, "referenced_count": 6}, {"ref_CSET_id": 23, "referenced_count": 6}, {"ref_CSET_id": 792, "referenced_count": 4}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "conversational_response_generation", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "dialogue", "task_count": 1}, {"referent": "dialogue_generation", "task_count": 1}, {"referent": "hierarchical_reinforcement_learning", "task_count": 1}, {"referent": "multi_task_learning", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 3}, {"referent": "semi_supervised_learning_methods", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "stochastic_gradient_variational_bayes", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "hit_detector", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 1, 1, 0, 3, 3, 15, 3, 0], "total": 27, "isTopResearch": false, "rank": 736, "sp500_rank": 359}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 8, 2, 0], "total": 14, "isTopResearch": false, "rank": 359, "sp500_rank": 192}, "ai_publications_growth": {"counts": [], "total": 75.0, "isTopResearch": false, "rank": 35, "sp500_rank": 19}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 8, 1, 0], "total": 9, "isTopResearch": false, "rank": 122, "sp500_rank": 62}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 14, 38, 51, 2], "total": 105, "isTopResearch": false, "rank": 496, "sp500_rank": 219}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 4, 0, 0], "total": 5, "isTopResearch": true, "rank": 141, "sp500_rank": 83}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 7.0, 4.75, 25.5, 0], "total": 7.5, "isTopResearch": false, "rank": 625, "sp500_rank": 242}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 571, "rank": 454, "sp500_rank": 220}, "ai_jobs": {"counts": null, "total": 65, "rank": 426, "sp500_rank": 218}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 2777, "country": "United States", "website": "http://cubic.com/", "crunchbase": {"text": "c5e4d6d4-6bbb-562e-c0b1-36e9ba550ffc", "url": "https://www.crunchbase.com/organization/cubic-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cubic"], "stage": "Mature", "name": "Cubic Corp", "patent_name": "cubic corp", "continent": "North America", "local_logo": "cubic_corp.png", "aliases": "Cubic; Cubic Corporation", "permid_links": [{"text": 4295903849, "url": "https://permid.org/1-4295903849"}], "parent_info": "Veritas Capital Evergreen Coast Capital (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CUB", "url": "https://www.google.com/finance/quote/cub:nyse"}], "market_full": [{"text": "NYSE:CUB", "url": "https://www.google.com/finance/quote/cub:nyse"}, {"text": "ASE:CUB", "url": "https://www.google.com/finance/quote/ase:cub"}, {"text": "FRA:UBQ", "url": "https://www.google.com/finance/quote/fra:ubq"}, {"text": "DEU:CUB", "url": "https://www.google.com/finance/quote/cub:deu"}, {"text": "NYQ:CUB", "url": "https://www.google.com/finance/quote/cub:nyq"}], "crunchbase_description": "Cubic Corporation (Cubic) is an international provider of systems and solutions that address the mass transit and global defense markets.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 5, 1, 1, 3, 0, 0, 0], "total": 12, "table": null, "rank": 384}, "ai_patents_growth": {"counts": [], "total": 40.0, "table": null, "rank": 243}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 50, 10, 10, 30, 0, 0, 0], "total": 120, "table": null, "rank": 384}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 2, 0, 0, 3, 0, 0, 0], "total": 6, "table": "industry", "rank": 121}, "Transportation": {"counts": [0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 1, 1, 1, 3, 0, 0, 0], "total": 7, "table": "industry", "rank": 88}, "Telecommunications": {"counts": [0, 0, 0, 1, 2, 0, 0, 2, 0, 0, 0], "total": 5, "table": "industry", "rank": 225}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 1, 1, 0, 1, 3, 0, 0, 0], "total": 6, "table": "industry", "rank": 196}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 3, 0, 0, 0], "total": 4, "table": "application", "rank": 198}, "Control": {"counts": [0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 182}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 243}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 571, "rank": 454}, "ai_jobs": {"counts": null, "total": 28, "rank": 616}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Cubic Corporation is an American public transportation and defense corporation. It operates two business segments, Cubic Transportation Systems and Cubic Mission and Performance Solutions, respectively.", "wikipedia_link": "https://en.wikipedia.org/wiki/Cubic_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2183, "country": "Netherlands", "website": "https://www.achmea.nl/", "crunchbase": {"text": " bd421f9c-0848-d4c8-84a1-67a69a9f89f7", "url": " https://www.crunchbase.com/organization/achmea"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/achmea"], "stage": "Unknown", "name": "Achmea", "patent_name": "Achmea", "continent": "Europe", "local_logo": null, "aliases": "Achmea; Achmea Holding N.V", "permid_links": [{"text": 4296540298, "url": "https://permid.org/1-4296540298"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Synthetic data", "field_count": 1}], "clusters": [{"cluster_id": 12631, "cluster_count": 1}, {"cluster_id": 5109, "cluster_count": 1}, {"cluster_id": 56309, "cluster_count": 1}, {"cluster_id": 36919, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 711, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 514, "referenced_count": 1}], "tasks": [{"referent": "fraud_detection", "task_count": 3}, {"referent": "classification", "task_count": 2}, {"referent": "congestive_heart_failure_detection", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "domain_labelling", "task_count": 1}], "methods": [{"referent": "dac", "method_count": 2}, {"referent": "mad_learning", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [8, 16, 16, 22, 7, 19, 15, 10, 14, 9, 0], "total": 136, "isTopResearch": false, "rank": 469, "sp500_rank": 279}, "ai_publications": {"counts": [0, 1, 0, 0, 1, 2, 0, 0, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "sp500_rank": 262}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 0, 1, 0, 1, 4, 4, 9, 10, 9, 0], "total": 38, "isTopResearch": false, "rank": 625, "sp500_rank": 268}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 1.0, 2.0, 0, 0, 10.0, 0, 0], "total": 7.6, "isTopResearch": false, "rank": 619, "sp500_rank": 236}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 565, "rank": 456, "sp500_rank": 221}, "ai_jobs": {"counts": null, "total": 61, "rank": 438, "sp500_rank": 222}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 488, "country": "United States", "website": "https://www.highmarkhealth.org/hmk/index.shtml", "crunchbase": {"text": "f13a5282-714a-0df5-5c07-27260ef80c1c", "url": "https://www.crunchbase.com/organization/highmark"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/highmark-health"], "stage": "Mature", "name": "Highmark Health", "patent_name": "highmark health", "continent": "North America", "local_logo": "highmark_health.png", "aliases": "Highmark Blue Cross Blue Shield; Highmark Inc; Highmark, Inc", "permid_links": [{"text": 4298009159, "url": "https://permid.org/1-4298009159"}], "parent_info": "Allegheny Health Network", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Highmark Health and its subsidiaries and affiliates comprise a diversified health and wellness enterprise based in Pittsburgh.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [4, 6, 2, 1, 1, 4, 13, 8, 23, 24, 0], "total": 86, "isTopResearch": false, "rank": 536}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 563, "rank": 457}, "ai_jobs": {"counts": null, "total": 110, "rank": 321}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Highmark is a non-profit healthcare company and Integrated Delivery Network based in Pittsburgh, Pennsylvania, United States. It is a large individual not-for-profit health insurer in the United States, which operates several for-profit subsidiaries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Highmark", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2090, "country": "China", "website": "https://www.aia.com/", "crunchbase": {"text": " ed2ac160-1172-50b2-bef2-38854faff25f", "url": " https://www.crunchbase.com/organization/aia-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aia"], "stage": "Mature", "name": "Aia Group", "patent_name": "AIA Group", "continent": "Asia", "local_logo": null, "aliases": "AIA Group; Aia Group Limited", "permid_links": [{"text": 5000789191, "url": "https://permid.org/1-5000789191"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:1299", "url": "https://www.google.com/finance/quote/1299:HKG"}], "market_full": [{"text": "HKG.HS:1299", "url": "https://www.google.com/finance/quote/1299:HKG.HS"}, {"text": "MUN:7A2", "url": "https://www.google.com/finance/quote/7A2:MUN"}, {"text": "DEU:1299", "url": "https://www.google.com/finance/quote/1299:DEU"}, {"text": "HKG.HZ:1299", "url": "https://www.google.com/finance/quote/1299:HKG.HZ"}, {"text": "BER:7A2", "url": "https://www.google.com/finance/quote/7A2:BER"}, {"text": "DUS:7A2", "url": "https://www.google.com/finance/quote/7A2:DUS"}, {"text": "PKC:AAIGF", "url": "https://www.google.com/finance/quote/AAIGF:PKC"}, {"text": "STU:7A2", "url": "https://www.google.com/finance/quote/7A2:STU"}, {"text": "PKC:AAGIY", "url": "https://www.google.com/finance/quote/AAGIY:PKC"}, {"text": "LSE:0A6Q", "url": "https://www.google.com/finance/quote/0A6Q:LSE"}, {"text": "HKG:1299", "url": "https://www.google.com/finance/quote/1299:HKG"}, {"text": "DEU:7A2S", "url": "https://www.google.com/finance/quote/7A2S:DEU"}, {"text": "BRN:7A2", "url": "https://www.google.com/finance/quote/7A2:BRN"}, {"text": "MEX:1299N", "url": "https://www.google.com/finance/quote/1299N:MEX"}, {"text": "FRA:7A2", "url": "https://www.google.com/finance/quote/7A2:FRA"}, {"text": "FRA:7A2S", "url": "https://www.google.com/finance/quote/7A2S:FRA"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 560, "rank": 458, "sp500_rank": 222}, "ai_jobs": {"counts": null, "total": 84, "rank": 372, "sp500_rank": 195}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 1954, "country": "Japan", "website": "https://www.denso.com/", "crunchbase": {"text": " adcbd69c-9e4b-601f-8aeb-1cb035eba0a9 ", "url": " https://www.crunchbase.com/organization/denso "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/denso"], "stage": "Mature", "name": "Denso", "patent_name": "Denso", "continent": "Asia", "local_logo": null, "aliases": "Denso; Denso Corporation; \u30c7\u30f3\u30bd\u30fc", "permid_links": [{"text": 4295877361, "url": "https://permid.org/1-4295877361"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:6902", "url": "https://www.google.com/finance/quote/6902:TYO"}], "market_full": [{"text": "STU:DNO", "url": "https://www.google.com/finance/quote/DNO:STU"}, {"text": "FRA:DNOA", "url": "https://www.google.com/finance/quote/DNOA:FRA"}, {"text": "DEU:6902", "url": "https://www.google.com/finance/quote/6902:DEU"}, {"text": "TYO:6902", "url": "https://www.google.com/finance/quote/6902:TYO"}, {"text": "MUN:DNO", "url": "https://www.google.com/finance/quote/DNO:MUN"}, {"text": "DUS:DNO", "url": "https://www.google.com/finance/quote/DNO:DUS"}, {"text": "DEU:DNOA", "url": "https://www.google.com/finance/quote/DEU:DNOA"}, {"text": "FRA:DNO", "url": "https://www.google.com/finance/quote/DNO:FRA"}, {"text": "BER:DNO", "url": "https://www.google.com/finance/quote/BER:DNO"}, {"text": "HAN:DNO", "url": "https://www.google.com/finance/quote/DNO:HAN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 10}, {"field_name": "Robustness (computer science)", "field_count": 8}, {"field_name": "Convolutional neural network", "field_count": 7}, {"field_name": "Deep learning", "field_count": 6}, {"field_name": "Point cloud", "field_count": 5}, {"field_name": "Feature (computer vision)", "field_count": 5}, {"field_name": "Line segment", "field_count": 5}, {"field_name": "Hidden Markov model", "field_count": 5}, {"field_name": "Segmentation", "field_count": 4}, {"field_name": "Dropout (neural networks)", "field_count": 4}], "clusters": [{"cluster_id": 88650, "cluster_count": 27}, {"cluster_id": 35663, "cluster_count": 13}, {"cluster_id": 32715, "cluster_count": 11}, {"cluster_id": 2410, "cluster_count": 11}, {"cluster_id": 49744, "cluster_count": 9}, {"cluster_id": 14335, "cluster_count": 9}, {"cluster_id": 177, "cluster_count": 7}, {"cluster_id": 10862, "cluster_count": 7}, {"cluster_id": 29685, "cluster_count": 6}, {"cluster_id": 2505, "cluster_count": 5}], "company_references": [{"ref_CSET_id": 1954, "referenced_count": 276}, {"ref_CSET_id": 101, "referenced_count": 252}, {"ref_CSET_id": 163, "referenced_count": 106}, {"ref_CSET_id": 87, "referenced_count": 105}, {"ref_CSET_id": 790, "referenced_count": 72}, {"ref_CSET_id": 115, "referenced_count": 38}, {"ref_CSET_id": 800, "referenced_count": 28}, {"ref_CSET_id": 127, "referenced_count": 28}, {"ref_CSET_id": 783, "referenced_count": 27}, {"ref_CSET_id": 184, "referenced_count": 26}], "tasks": [{"referent": "autonomous_driving", "task_count": 88}, {"referent": "autonomous_vehicles", "task_count": 41}, {"referent": "classification", "task_count": 40}, {"referent": "object_detection", "task_count": 21}, {"referent": "vehicle_detection", "task_count": 19}, {"referent": "image_processing", "task_count": 18}, {"referent": "system_identification", "task_count": 16}, {"referent": "robots", "task_count": 14}, {"referent": "pedestrian_detection", "task_count": 14}, {"referent": "environmental_sound_classification", "task_count": 11}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 38}, {"referent": "double_q_learning", "method_count": 22}, {"referent": "optimization", "method_count": 20}, {"referent": "convolutional_neural_networks", "method_count": 19}, {"referent": "mad_learning", "method_count": 12}, {"referent": "ggs_nns", "method_count": 11}, {"referent": "vqa_models", "method_count": 11}, {"referent": "auto_classifier", "method_count": 11}, {"referent": "symbolic_deep_learning", "method_count": 10}, {"referent": "3d_representations", "method_count": 10}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [197, 274, 272, 242, 292, 304, 285, 217, 206, 132, 3], "total": 2424, "isTopResearch": false, "rank": 113, "sp500_rank": 89}, "ai_publications": {"counts": [23, 21, 30, 30, 45, 59, 44, 40, 30, 15, 0], "total": 337, "isTopResearch": false, "rank": 55, "sp500_rank": 44}, "ai_publications_growth": {"counts": [], "total": -28.03030303030303, "isTopResearch": false, "rank": 1387, "sp500_rank": 378}, "ai_pubs_top_conf": {"counts": [0, 2, 3, 0, 2, 5, 3, 2, 2, 3, 0], "total": 22, "isTopResearch": false, "rank": 74, "sp500_rank": 39}, "citation_counts": {"counts": [73, 117, 142, 215, 266, 393, 552, 595, 699, 545, 22], "total": 3619, "isTopResearch": false, "rank": 88, "sp500_rank": 58}, "cv_pubs": {"counts": [7, 10, 9, 6, 18, 20, 16, 11, 13, 7, 0], "total": 117, "isTopResearch": true, "rank": 49, "sp500_rank": 35}, "nlp_pubs": {"counts": [0, 0, 4, 2, 1, 2, 2, 5, 3, 2, 0], "total": 21, "isTopResearch": true, "rank": 63, "sp500_rank": 45}, "robotics_pubs": {"counts": [8, 6, 5, 7, 13, 19, 10, 4, 5, 2, 0], "total": 79, "isTopResearch": true, "rank": 37, "sp500_rank": 35}, "citations_per_article": {"counts": [3.1739130434782608, 5.571428571428571, 4.733333333333333, 7.166666666666667, 5.911111111111111, 6.661016949152542, 12.545454545454545, 14.875, 23.3, 36.333333333333336, 0], "total": 10.738872403560832, "isTopResearch": false, "rank": 517, "sp500_rank": 189}}, "patents": {"ai_patents": {"counts": [18, 20, 18, 35, 58, 56, 56, 25, 17, 0, 0], "total": 303, "table": null, "rank": 76, "sp500_rank": 59}, "ai_patents_growth": {"counts": [], "total": -19.601806239737275, "table": null, "rank": 1462, "sp500_rank": 430}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [180, 200, 180, 350, 580, 560, 560, 250, 170, 0, 0], "total": 3030, "table": null, "rank": 76, "sp500_rank": 59}, "Physical_Sciences_and_Engineering": {"counts": [4, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 6, "table": null, "rank": 68, "sp500_rank": 56}, "Life_Sciences": {"counts": [0, 2, 1, 3, 1, 1, 3, 0, 0, 0, 0], "total": 11, "table": "industry", "rank": 78, "sp500_rank": 54}, "Security__eg_cybersecurity": {"counts": [0, 3, 0, 2, 0, 2, 1, 0, 0, 0, 0], "total": 8, "table": null, "rank": 103, "sp500_rank": 73}, "Transportation": {"counts": [3, 10, 11, 21, 33, 25, 26, 10, 4, 0, 0], "total": 143, "table": "industry", "rank": 20, "sp500_rank": 16}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0], "total": 5, "table": null, "rank": 104, "sp500_rank": 72}, "Education": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [0, 2, 3, 5, 15, 11, 12, 1, 2, 0, 0], "total": 51, "table": "industry", "rank": 115, "sp500_rank": 74}, "Banking_and_Finance": {"counts": [0, 1, 1, 1, 4, 6, 3, 0, 0, 0, 0], "total": 16, "table": "industry", "rank": 56, "sp500_rank": 46}, "Telecommunications": {"counts": [2, 4, 1, 3, 4, 16, 5, 3, 1, 0, 0], "total": 39, "table": "industry", "rank": 92, "sp500_rank": 66}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [1, 0, 0, 2, 1, 3, 2, 1, 0, 0, 0], "total": 10, "table": null, "rank": 149, "sp500_rank": 101}, "Energy_Management": {"counts": [2, 0, 0, 0, 3, 2, 2, 2, 0, 0, 0], "total": 11, "table": null, "rank": 47, "sp500_rank": 44}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "sp500_rank": 57}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 2, 1, 0, 3, 2, 0, 1, 0, 0, 0], "total": 9, "table": "application", "rank": 78, "sp500_rank": 55}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 1, 1, 1, 2, 1, 0, 0, 0], "total": 7, "table": null, "rank": 153, "sp500_rank": 105}, "Control": {"counts": [4, 11, 10, 20, 29, 26, 19, 6, 2, 0, 0], "total": 127, "table": "application", "rank": 29, "sp500_rank": 23}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [1, 5, 1, 5, 17, 17, 15, 9, 2, 0, 0], "total": 72, "table": "application", "rank": 88, "sp500_rank": 60}, "Analytics_and_Algorithms": {"counts": [0, 2, 1, 2, 0, 1, 3, 0, 0, 0, 0], "total": 9, "table": "application", "rank": 122, "sp500_rank": 88}, "Measuring_and_Testing": {"counts": [2, 4, 3, 5, 9, 5, 4, 3, 0, 0, 0], "total": 35, "table": "application", "rank": 56, "sp500_rank": 43}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 559, "rank": 459, "sp500_rank": 223}, "ai_jobs": {"counts": null, "total": 30, "rank": 597, "sp500_rank": 258}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 2309, "country": "United States", "website": "https://www.elcompanies.com/", "crunchbase": {"text": "980d3930-d59f-4747-1099-9a422150a741", "url": "https://www.crunchbase.com/organization/estee-lauder-companies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-estee-lauder-companies-inc"], "stage": "Mature", "name": "Est\u00e9e Lauder Companies", "patent_name": "est\u00e9e lauder companies", "continent": "North America", "local_logo": "est\u00e9e_lauder_companies.png", "aliases": "Estee Lauder Companies Inc; Est\u00e9e Lauder; The Est\u00e9e Lauder Companies", "permid_links": [{"text": 4295903171, "url": "https://permid.org/1-4295903171"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EL", "url": "https://www.google.com/finance/quote/el:nyse"}], "market_full": [{"text": "NYSE:EL", "url": "https://www.google.com/finance/quote/el:nyse"}, {"text": "MOEX:EL-RM", "url": "https://www.google.com/finance/quote/el-rm:moex"}, {"text": "GER:ELAX.A", "url": "https://www.google.com/finance/quote/elax.a:ger"}, {"text": "FRA:ELAA", "url": "https://www.google.com/finance/quote/elaa:fra"}, {"text": "DUS:ELAA", "url": "https://www.google.com/finance/quote/dus:elaa"}, {"text": "DEU:EL", "url": "https://www.google.com/finance/quote/deu:el"}, {"text": "BRN:ELAA", "url": "https://www.google.com/finance/quote/brn:elaa"}, {"text": "NYQ:EL", "url": "https://www.google.com/finance/quote/el:nyq"}, {"text": "MEX:EL*", "url": "https://www.google.com/finance/quote/el*:mex"}, {"text": "SAO:ELCI34", "url": "https://www.google.com/finance/quote/elci34:sao"}, {"text": "LSE:0JTM", "url": "https://www.google.com/finance/quote/0jtm:lse"}, {"text": "ASE:EL", "url": "https://www.google.com/finance/quote/ase:el"}, {"text": "MUN:ELAA", "url": "https://www.google.com/finance/quote/elaa:mun"}, {"text": "BER:ELAA", "url": "https://www.google.com/finance/quote/ber:elaa"}, {"text": "STU:ELAA", "url": "https://www.google.com/finance/quote/elaa:stu"}, {"text": "VIE:ESLA", "url": "https://www.google.com/finance/quote/esla:vie"}], "crunchbase_description": "Estee Lauder is a manufacturer and marketer of skincare products, makeup, perfumes, and hair care products.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [6, 4, 9, 12, 13, 15, 5, 8, 13, 17, 1], "total": 103, "isTopResearch": false, "rank": 509, "fortune500_rank": 189}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 558, "rank": 460, "fortune500_rank": 246}, "ai_jobs": {"counts": null, "total": 95, "rank": 348, "fortune500_rank": 186}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services", "wikipedia_description": "The Est\u00e9e Lauder Companies Inc. is an American multinational manufacturer and marketer of prestige skincare, makeup, fragrance and hair care products, based in Midtown Manhattan, New York City. The company owns a diverse portfolio of brands, distributed internationally through both digital commerce and retail channels.", "wikipedia_link": "https://en.wikipedia.org/wiki/Est\u00e9e_Lauder_Companies", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2265, "country": "United States", "website": "https://www.colgate.com/", "crunchbase": {"text": "0ec80d2c-a5bd-d11d-eba5-a30dc4c609be", "url": "https://www.crunchbase.com/organization/colgate-palmolive"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/colgate-palmolive"], "stage": "Mature", "name": "Colgate-Palmolive", "patent_name": "colgate-palmolive", "continent": "North America", "local_logo": "colgate-palmolive.png", "aliases": "Colgate; Colgate Palmolive; Colgate-Palmolive Co; Colgate-Palmolive Company", "permid_links": [{"text": 4295903113, "url": "https://permid.org/1-4295903113"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CL", "url": "https://www.google.com/finance/quote/cl:nyse"}], "market_full": [{"text": "DEU:CL", "url": "https://www.google.com/finance/quote/cl:deu"}, {"text": "LSE:0P59", "url": "https://www.google.com/finance/quote/0p59:lse"}, {"text": "BER:CPA", "url": "https://www.google.com/finance/quote/ber:cpa"}, {"text": "MCX:CL-RM", "url": "https://www.google.com/finance/quote/cl-rm:mcx"}, {"text": "FRA:CPA", "url": "https://www.google.com/finance/quote/cpa:fra"}, {"text": "STU:CPA", "url": "https://www.google.com/finance/quote/cpa:stu"}, {"text": "ASE:CL", "url": "https://www.google.com/finance/quote/ase:cl"}, {"text": "SAO:COLG34", "url": "https://www.google.com/finance/quote/colg34:sao"}, {"text": "DUS:CPA", "url": "https://www.google.com/finance/quote/cpa:dus"}, {"text": "BRN:CPA", "url": "https://www.google.com/finance/quote/brn:cpa"}, {"text": "MUN:CPA", "url": "https://www.google.com/finance/quote/cpa:mun"}, {"text": "NYQ:CL", "url": "https://www.google.com/finance/quote/cl:nyq"}, {"text": "MEX:CL*", "url": "https://www.google.com/finance/quote/cl*:mex"}, {"text": "BUE:CL3", "url": "https://www.google.com/finance/quote/bue:cl3"}, {"text": "SWX:CL", "url": "https://www.google.com/finance/quote/cl:swx"}, {"text": "NYSE:CL", "url": "https://www.google.com/finance/quote/cl:nyse"}, {"text": "GER:CPAX", "url": "https://www.google.com/finance/quote/cpax:ger"}, {"text": "HAM:CPA", "url": "https://www.google.com/finance/quote/cpa:ham"}, {"text": "HAN:CPA", "url": "https://www.google.com/finance/quote/cpa:han"}, {"text": "VIE:COLG", "url": "https://www.google.com/finance/quote/colg:vie"}], "crunchbase_description": "Colgate-Palmolive is a consumer products company that produces, distributes, and provides household, healthcare, and personal products.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Coefficient of determination", "field_count": 1}, {"field_name": "Virtual reality", "field_count": 1}, {"field_name": "Statistical classification", "field_count": 1}, {"field_name": "Statistical model", "field_count": 1}], "clusters": [{"cluster_id": 21897, "cluster_count": 2}, {"cluster_id": 62261, "cluster_count": 2}, {"cluster_id": 21109, "cluster_count": 1}, {"cluster_id": 41422, "cluster_count": 1}, {"cluster_id": 22443, "cluster_count": 1}, {"cluster_id": 15776, "cluster_count": 1}, {"cluster_id": 7486, "cluster_count": 1}, {"cluster_id": 67387, "cluster_count": 1}, {"cluster_id": 60519, "cluster_count": 1}, {"cluster_id": 49051, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 2265, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 820, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "system_identification", "task_count": 2}, {"referent": "quantization", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "segmentation", "task_count": 1}, {"referent": "optical_coherence_tomography", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "learning_to_paint", "task_count": 1}, {"referent": "active_object_detection", "task_count": 1}, {"referent": "action_localization", "task_count": 1}, {"referent": "human_activity_recognition", "task_count": 1}], "methods": [{"referent": "optimization", "method_count": 1}, {"referent": "bifpn", "method_count": 1}, {"referent": "random_gaussian_blur", "method_count": 1}, {"referent": "npid", "method_count": 1}, {"referent": "cgnn", "method_count": 1}, {"referent": "hopfield_layer", "method_count": 1}, {"referent": "layerscale", "method_count": 1}, {"referent": "memory_network", "method_count": 1}, {"referent": "(2+1)d_convolution", "method_count": 1}, {"referent": "nt_asgd", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [48, 35, 32, 59, 56, 73, 54, 61, 85, 74, 0], "total": 577, "isTopResearch": false, "rank": 255, "fortune500_rank": 98}, "ai_publications": {"counts": [0, 2, 0, 0, 1, 2, 2, 2, 0, 2, 0], "total": 11, "isTopResearch": false, "rank": 397, "fortune500_rank": 116}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "fortune500_rank": 419}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [12, 16, 17, 14, 19, 14, 26, 31, 45, 39, 2], "total": 235, "isTopResearch": false, "rank": 368, "fortune500_rank": 110}, "cv_pubs": {"counts": [0, 2, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 4, "isTopResearch": true, "rank": 313, "fortune500_rank": 84}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 8.0, 0, 0, 19.0, 7.0, 13.0, 15.5, 0, 19.5, 0], "total": 21.363636363636363, "isTopResearch": false, "rank": 289, "fortune500_rank": 94}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 2, 0, 0], "total": 5, "table": null, "rank": 525, "fortune500_rank": 169}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "fortune500_rank": 438}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 20, 10, 20, 0, 0], "total": 50, "table": null, "rank": 525, "fortune500_rank": 169}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": "industry", "rank": 158, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 61, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": "application", "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 557, "rank": 461, "fortune500_rank": 247}, "ai_jobs": {"counts": null, "total": 115, "rank": 314, "fortune500_rank": 172}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services", "wikipedia_description": "Colgate-Palmolive Company is an American multinational consumer products company headquartered on Park Avenue in Midtown Manhattan, New York City. It specializes in the production, distribution and provision of household, health care, personal care and veterinary products.", "wikipedia_link": "https://en.wikipedia.org/wiki/Colgate-Palmolive", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2339, "country": "United States", "website": "https://www.gilead.com/", "crunchbase": {"text": "46e8888f-9880-12cf-8d47-a8f6b0d80204", "url": "https://www.crunchbase.com/organization/gilead-sciences"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/gilead-sciences"], "stage": "Mature", "name": "Gilead Sciences", "patent_name": "gilead sciences", "continent": "North America", "local_logo": "gilead_sciences.png", "aliases": "Gilead; Gilead Sciences Inc; Gilead Sciences, Inc", "permid_links": [{"text": 4295906595, "url": "https://permid.org/1-4295906595"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:GILD", "url": "https://www.google.com/finance/quote/gild:nasdaq"}], "market_full": [{"text": "MEX:GILD", "url": "https://www.google.com/finance/quote/gild:mex"}, {"text": "NASDAQ:GILD", "url": "https://www.google.com/finance/quote/gild:nasdaq"}, {"text": "SAO:GILD34", "url": "https://www.google.com/finance/quote/gild34:sao"}, {"text": "BCBA:GILD", "url": "https://www.google.com/finance/quote/bcba:gild"}, {"text": "XETR:GIS", "url": "https://www.google.com/finance/quote/gis:xetr"}, {"text": "VIE:GILD", "url": "https://www.google.com/finance/quote/gild:vie"}, {"text": "MOEX:GILD-RM", "url": "https://www.google.com/finance/quote/gild-rm:moex"}, {"text": "FWB:GIS", "url": "https://www.google.com/finance/quote/fwb:gis"}, {"text": "MIL:GILD", "url": "https://www.google.com/finance/quote/gild:mil"}, {"text": "FRA:GILD", "url": "https://www.google.com/finance/quote/fra:gild"}, {"text": "BMV:GILD", "url": "https://www.google.com/finance/quote/bmv:gild"}], "crunchbase_description": "Gilead Sciences is a biopharmaceutical company that discovers, develops, manufactures and commercializes therapies for critical diseases.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Predictive analytics", "field_count": 1}, {"field_name": "Fingerprint (computing)", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}], "clusters": [{"cluster_id": 78660, "cluster_count": 1}, {"cluster_id": 3085, "cluster_count": 1}, {"cluster_id": 5864, "cluster_count": 1}, {"cluster_id": 15078, "cluster_count": 1}, {"cluster_id": 23169, "cluster_count": 1}, {"cluster_id": 35111, "cluster_count": 1}, {"cluster_id": 9972, "cluster_count": 1}, {"cluster_id": 57618, "cluster_count": 1}, {"cluster_id": 1683, "cluster_count": 1}, {"cluster_id": 76639, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 1633, "referenced_count": 2}, {"ref_CSET_id": 1861, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 3108, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}], "tasks": [{"referent": "disease_detection", "task_count": 2}, {"referent": "translation", "task_count": 1}, {"referent": "lung_cancer", "task_count": 1}, {"referent": "survival_analysis", "task_count": 1}, {"referent": "medical_image_analysis", "task_count": 1}, {"referent": "semi_supervised_image_classification", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "td3", "method_count": 2}, {"referent": "distributions", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "merl", "method_count": 1}, {"referent": "reduction_b", "method_count": 1}, {"referent": "taypo", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [380, 434, 624, 593, 550, 530, 486, 620, 576, 634, 7], "total": 5434, "isTopResearch": false, "rank": 62, "sp500_rank": 54, "fortune500_rank": 21}, "ai_publications": {"counts": [0, 0, 0, 2, 0, 2, 0, 3, 1, 4, 0], "total": 12, "isTopResearch": false, "rank": 384, "sp500_rank": 205, "fortune500_rank": 114}, "ai_publications_growth": {"counts": [], "total": 116.66666666666666, "isTopResearch": false, "rank": 15, "sp500_rank": 9, "fortune500_rank": 4}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113, "fortune500_rank": 66}, "citation_counts": {"counts": [3, 1, 0, 1, 11, 12, 24, 5, 38, 33, 2], "total": 130, "isTopResearch": false, "rank": 463, "sp500_rank": 206, "fortune500_rank": 132}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0.5, 0, 6.0, 0, 1.6666666666666667, 38.0, 8.25, 0], "total": 10.833333333333334, "isTopResearch": false, "rank": 510, "sp500_rank": 183, "fortune500_rank": 152}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 555, "rank": 462, "sp500_rank": 224, "fortune500_rank": 248}, "ai_jobs": {"counts": null, "total": 145, "rank": 277, "sp500_rank": 164, "fortune500_rank": 148}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Gilead Sciences, Inc. /\u02c8\u0261\u026ali\u0259d/, is an American biopharmaceutical company headquartered in Foster City, California, that focuses on researching and developing antiviral drugs used in the treatment of HIV, hepatitis B, hepatitis C, and influenza, including Harvoni and Sovaldi.", "wikipedia_link": "https://en.wikipedia.org/wiki/Gilead_Sciences", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2369, "country": "United States", "website": "https://www.internationalpaper.com/", "crunchbase": {"text": "3d0c67ab-9ee4-80bf-94f0-0a071cd507da", "url": "https://www.crunchbase.com/organization/international-paper"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/international-paper"], "stage": "Mature", "name": "International Paper", "patent_name": "international paper", "continent": "North America", "local_logo": "international_paper.png", "aliases": "International Paper Co", "permid_links": [{"text": 4295903177, "url": "https://permid.org/1-4295903177"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:IP", "url": "https://www.google.com/finance/quote/ip:nyse"}], "market_full": [{"text": "NYSE:IP", "url": "https://www.google.com/finance/quote/ip:nyse"}, {"text": "NYQ:IP", "url": "https://www.google.com/finance/quote/ip:nyq"}, {"text": "LSE:0JCB", "url": "https://www.google.com/finance/quote/0jcb:lse"}, {"text": "BER:INP", "url": "https://www.google.com/finance/quote/ber:inp"}, {"text": "BUE:IP3", "url": "https://www.google.com/finance/quote/bue:ip3"}, {"text": "GER:INPX", "url": "https://www.google.com/finance/quote/ger:inpx"}, {"text": "PKC:INPAP", "url": "https://www.google.com/finance/quote/inpap:pkc"}, {"text": "DUS:INP", "url": "https://www.google.com/finance/quote/dus:inp"}, {"text": "HAM:INP", "url": "https://www.google.com/finance/quote/ham:inp"}, {"text": "MUN:INP", "url": "https://www.google.com/finance/quote/inp:mun"}, {"text": "MCX:IP-RM", "url": "https://www.google.com/finance/quote/ip-rm:mcx"}, {"text": "MEX:IP", "url": "https://www.google.com/finance/quote/ip:mex"}, {"text": "DEU:IP", "url": "https://www.google.com/finance/quote/deu:ip"}, {"text": "ASE:IP", "url": "https://www.google.com/finance/quote/ase:ip"}, {"text": "SAO:I1PC34", "url": "https://www.google.com/finance/quote/i1pc34:sao"}, {"text": "STU:INP", "url": "https://www.google.com/finance/quote/inp:stu"}, {"text": "FRA:INP", "url": "https://www.google.com/finance/quote/fra:inp"}, {"text": "HAN:INP", "url": "https://www.google.com/finance/quote/han:inp"}, {"text": "BRN:INP", "url": "https://www.google.com/finance/quote/brn:inp"}], "crunchbase_description": "International Paper manufactures paper and paper-packaging products.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 14263, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [{"referent": "auto_classifier", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "pafs", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 5, 4, 2, 3, 9, 7, 6, 3, 6, 0], "total": 47, "isTopResearch": false, "rank": 625, "fortune500_rank": 232}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 7, 5, 0], "total": 12, "isTopResearch": false, "rank": 740, "fortune500_rank": 200}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 7.0, 0, 0], "total": 12.0, "isTopResearch": false, "rank": 470, "fortune500_rank": 141}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 554, "rank": 463, "fortune500_rank": 249}, "ai_jobs": {"counts": null, "total": 25, "rank": 646, "fortune500_rank": 327}}, "sector": "Basic Materials", "business_sector": "Applied Resources", "wikipedia_description": "The International Paper Company(NYSE: IP) is an American pulp and paper company, the largest such company in the world. It has approximately 56,000 employees, and is headquartered in Memphis, Tennessee.", "wikipedia_link": "https://en.wikipedia.org/wiki/International_Paper", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2208, "country": "United States", "website": "https://www.ameren.com/", "crunchbase": {"text": "fa3d8616-afc6-abc5-c103-a7a1074eeb79", "url": "https://www.crunchbase.com/organization/ameren"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ameren"], "stage": "Mature", "name": "Ameren Corp", "patent_name": "ameren corp", "continent": "North America", "local_logo": "ameren_corp.png", "aliases": "Ameren; Ameren Services", "permid_links": [{"text": 4295903332, "url": "https://permid.org/1-4295903332"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AEE", "url": "https://www.google.com/finance/quote/aee:nyse"}], "market_full": [{"text": "DUS:AE4", "url": "https://www.google.com/finance/quote/ae4:dus"}, {"text": "LSE:0HE2", "url": "https://www.google.com/finance/quote/0he2:lse"}, {"text": "BRN:AE4", "url": "https://www.google.com/finance/quote/ae4:brn"}, {"text": "GER:AE4X", "url": "https://www.google.com/finance/quote/ae4x:ger"}, {"text": "NYQ:AEE", "url": "https://www.google.com/finance/quote/aee:nyq"}, {"text": "NYSE:AEE", "url": "https://www.google.com/finance/quote/aee:nyse"}, {"text": "FRA:AE4", "url": "https://www.google.com/finance/quote/ae4:fra"}, {"text": "MUN:AE4", "url": "https://www.google.com/finance/quote/ae4:mun"}, {"text": "ASE:AEE", "url": "https://www.google.com/finance/quote/aee:ase"}, {"text": "STU:AE4", "url": "https://www.google.com/finance/quote/ae4:stu"}, {"text": "SAO:A1EE34", "url": "https://www.google.com/finance/quote/a1ee34:sao"}, {"text": "DEU:AEE", "url": "https://www.google.com/finance/quote/aee:deu"}, {"text": "MCX:AEE-RM", "url": "https://www.google.com/finance/quote/aee-rm:mcx"}, {"text": "STU:LID", "url": "https://www.google.com/finance/quote/lid:stu"}], "crunchbase_description": "Ameren Corporation (Ameren) is a utility holding company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 3, 1, 0, 0, 1, 1, 0, 0, 1, 0], "total": 7, "isTopResearch": false, "rank": 1006, "fortune500_rank": 339}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 551, "rank": 464, "fortune500_rank": 250}, "ai_jobs": {"counts": null, "total": 43, "rank": 508, "fortune500_rank": 264}}, "sector": "Utilities", "business_sector": "Utilities", "wikipedia_description": "Ameren Corporation is an American power company created December 31, 1997, by the merger of St. Louis, Missouri's Union Electric Company (formerly NYSE: UEP) and the neighboring Central Illinois Public Service Company (CIPSCO Inc. holding, formerly NYSE: CIP) of Springfield, Illinois. It is now a holding company for several power companies and energy companies. The company is based in St. Louis, serving 2.4 million electric, and 900,000 natural gas customers across 64,000 square miles in central and eastern Missouri and the southern four-fifths of Illinois.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ameren", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2495, "country": "United States", "website": "https://www.stanleyblackanddecker.com/", "crunchbase": {"text": "130bbfe4-ba54-b9ce-6022-75c0c2212d4a", "url": "https://www.crunchbase.com/organization/stanley-black-decker"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/stanley-black-decker-inc"], "stage": "Mature", "name": "Stanley Black & Decker", "patent_name": "stanley black & decker", "continent": "North America", "local_logo": "stanley_black_&_decker.png", "aliases": "Stanley Black & Decker, Inc; The Stanley Works", "permid_links": [{"text": 4295904973, "url": "https://permid.org/1-4295904973"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SWK", "url": "https://www.google.com/finance/quote/nyse:swk"}, {"text": "NYSE:SWT", "url": "https://www.google.com/finance/quote/nyse:swt"}], "market_full": [{"text": "BRN:SWF", "url": "https://www.google.com/finance/quote/brn:swf"}, {"text": "DUS:SWF", "url": "https://www.google.com/finance/quote/dus:swf"}, {"text": "DEU:SWK", "url": "https://www.google.com/finance/quote/deu:swk"}, {"text": "MUN:SWF", "url": "https://www.google.com/finance/quote/mun:swf"}, {"text": "MEX:SWK", "url": "https://www.google.com/finance/quote/mex:swk"}, {"text": "NYQ:SWT", "url": "https://www.google.com/finance/quote/nyq:swt"}, {"text": "FRA:SWF", "url": "https://www.google.com/finance/quote/fra:swf"}, {"text": "SAO:S1WK34", "url": "https://www.google.com/finance/quote/s1wk34:sao"}, {"text": "VIE:SWK", "url": "https://www.google.com/finance/quote/swk:vie"}, {"text": "NYQ:SWK", "url": "https://www.google.com/finance/quote/nyq:swk"}, {"text": "PKC:SBDKP", "url": "https://www.google.com/finance/quote/pkc:sbdkp"}, {"text": "HAN:SWF", "url": "https://www.google.com/finance/quote/han:swf"}, {"text": "STU:SWF", "url": "https://www.google.com/finance/quote/stu:swf"}, {"text": "ASE:SWT", "url": "https://www.google.com/finance/quote/ase:swt"}, {"text": "ASE:SWK", "url": "https://www.google.com/finance/quote/ase:swk"}, {"text": "NYSE:SWK", "url": "https://www.google.com/finance/quote/nyse:swk"}, {"text": "MCX:SWK-RM", "url": "https://www.google.com/finance/quote/mcx:swk-rm"}, {"text": "GER:SWFX", "url": "https://www.google.com/finance/quote/ger:swfx"}, {"text": "LSE:0L9E", "url": "https://www.google.com/finance/quote/0l9e:lse"}, {"text": "NYSE:SWT", "url": "https://www.google.com/finance/quote/nyse:swt"}, {"text": "BER:SWF", "url": "https://www.google.com/finance/quote/ber:swf"}], "crunchbase_description": "Stanley Black & Decker focuses on operating in the hand and power tools, and storage industries.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 28870, "cluster_count": 2}, {"cluster_id": 2149, "cluster_count": 1}, {"cluster_id": 64772, "cluster_count": 1}, {"cluster_id": 3568, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 14}, {"ref_CSET_id": 87, "referenced_count": 9}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 2495, "referenced_count": 3}, {"ref_CSET_id": 27, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}], "tasks": [{"referent": "image_restoration", "task_count": 2}, {"referent": "social_network_analysis", "task_count": 1}, {"referent": "image_similarity_search", "task_count": 1}, {"referent": "code_search", "task_count": 1}, {"referent": "medical_procedure", "task_count": 1}, {"referent": "crack_detection", "task_count": 1}, {"referent": "road_damage_detection", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "bearing_fault_diagnosis", "task_count": 1}, {"referent": "fault_detection", "task_count": 1}], "methods": [{"referent": "hit_detector", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 2, 2, 5, 3, 6, 2, 9, 4, 4, 0], "total": 39, "isTopResearch": false, "rank": 667, "fortune500_rank": 244}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 2, 0, 1, 1, 1, 0], "total": 6, "isTopResearch": false, "rank": 514, "fortune500_rank": 139}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 2, 1, 3, 0, 0, 1, 2, 6, 20, 1], "total": 37, "isTopResearch": false, "rank": 630, "fortune500_rank": 171}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], "total": 3, "isTopResearch": true, "rank": 344, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [1.0, 0, 0, 0, 0, 0.0, 0, 2.0, 6.0, 20.0, 0], "total": 6.166666666666667, "isTopResearch": false, "rank": 678, "fortune500_rank": 195}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 10, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 548, "rank": 465, "fortune500_rank": 251}, "ai_jobs": {"counts": null, "total": 97, "rank": 341, "fortune500_rank": 182}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Stanley Black & Decker, Inc., formerly known as The Stanley Works, is a Fortune 500 American manufacturer of industrial tools and household hardware and provider of security products. Headquartered in the greater Hartford city of New Britain, Connecticut, Stanley Black & Decker is the result of the merger of Stanley Works and Black & Decker on March 12, 2010.", "wikipedia_link": "https://en.wikipedia.org/wiki/Stanley_Black_%26_Decker", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2846, "country": "France", "website": "https://www.cma-cgm.com/", "crunchbase": {"text": "e184f17e-cfd3-41df-47fb-75c9299bdb41", "url": "https://www.crunchbase.com/organization/cma-cgm"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cma-cgm"], "stage": "Unknown", "name": "CMA CGM SA", "patent_name": "cma cgm sa", "continent": "Europe", "local_logo": "cma_cgm_sa.png", "aliases": "Cma Cgm Group; Cma Cgmn", "permid_links": [{"text": 4297035536, "url": "https://permid.org/1-4297035536"}], "parent_info": "Merit Corporation", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "CMA CGM is a shipping company that ships fleets, containers, and cargo.", "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1, 1, 0, 0, 1, 2, 3, 5, 1, 1, 0], "total": 15, "isTopResearch": false, "rank": 859, "sp500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 543, "rank": 466, "sp500_rank": 225}, "ai_jobs": {"counts": null, "total": 77, "rank": 388, "sp500_rank": 201}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "The new airfreight division of the CMA CGM Group offers cargo flights to the United States, linking Europe to North America in record time.", "company_site_link": "https://services.cmacgm-group.com/cma-cgm-air-cargo", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2512, "country": "Ireland", "website": "https://www.tranetechnologies.com/", "crunchbase": {"text": "b88a8b82-7af6-c5d0-3948-32b441dbfb5d", "url": "https://www.crunchbase.com/organization/trane"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tranetechnologies"], "stage": "Mature", "name": "Trane Technologies plc", "patent_name": "trane technologies plc", "continent": "Europe", "local_logo": "trane_technologies_plc.png", "aliases": "American Standard Companies; The Trane Company; Trane; Trane Technologies", "permid_links": [{"text": 5000668795, "url": "https://permid.org/1-5000668795"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:IR", "url": "https://www.google.com/finance/quote/ir:nyse"}], "market_full": [{"text": "MEX:TTN", "url": "https://www.google.com/finance/quote/mex:ttn"}, {"text": "LSE:0Y2S", "url": "https://www.google.com/finance/quote/0y2s:lse"}, {"text": "NYQ:IR", "url": "https://www.google.com/finance/quote/ir:nyq"}, {"text": "HAN:2IS", "url": "https://www.google.com/finance/quote/2is:han"}, {"text": "DUS:2IS", "url": "https://www.google.com/finance/quote/2is:dus"}, {"text": "ASE:IR", "url": "https://www.google.com/finance/quote/ase:ir"}, {"text": "SAO:I1RP34", "url": "https://www.google.com/finance/quote/i1rp34:sao"}, {"text": "MUN:2IS", "url": "https://www.google.com/finance/quote/2is:mun"}, {"text": "BER:2IS", "url": "https://www.google.com/finance/quote/2is:ber"}, {"text": "FRA:2IS", "url": "https://www.google.com/finance/quote/2is:fra"}, {"text": "STU:2IS", "url": "https://www.google.com/finance/quote/2is:stu"}, {"text": "NYSE:IR", "url": "https://www.google.com/finance/quote/ir:nyse"}, {"text": "DEU:2IS", "url": "https://www.google.com/finance/quote/2is:deu"}], "crunchbase_description": "Situs tiruan Penipu HATI HATI jika WD BESAR kamu TIDAK AKAN DI BAYAR", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 13, 0], "total": 15, "isTopResearch": false, "rank": 859, "fortune500_rank": 305}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 543, "rank": 466, "fortune500_rank": 252}, "ai_jobs": {"counts": null, "total": 42, "rank": 516, "fortune500_rank": 268}}, "sector": "Industrials", "business_sector": "Industrial Goods"}, {"cset_id": 2217, "country": "United States", "website": "https://www.aosmith.com/", "crunchbase": {"text": "7859fa18-932f-653d-fd67-5865fab714d1", "url": "https://www.crunchbase.com/organization/a-o-smith"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/a.-o.-smith-corporation"], "stage": "Mature", "name": "A.O. Smith Corp", "patent_name": "a.o. smith corp", "continent": "North America", "local_logo": "ao_smith_corp.png", "aliases": "A. O. Smith; A. O. Smith Corporation", "permid_links": [{"text": 4295908678, "url": "https://permid.org/1-4295908678"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AOS", "url": "https://www.google.com/finance/quote/aos:nyse"}], "market_full": [{"text": "NYQ:AOS", "url": "https://www.google.com/finance/quote/aos:nyq"}, {"text": "MEX:AOS*", "url": "https://www.google.com/finance/quote/aos*:mex"}, {"text": "DUS:3SM", "url": "https://www.google.com/finance/quote/3sm:dus"}, {"text": "MCX:AOS-RM", "url": "https://www.google.com/finance/quote/aos-rm:mcx"}, {"text": "BRN:3SM", "url": "https://www.google.com/finance/quote/3sm:brn"}, {"text": "NYSE:AOS", "url": "https://www.google.com/finance/quote/aos:nyse"}, {"text": "FRA:3SM", "url": "https://www.google.com/finance/quote/3sm:fra"}, {"text": "STU:3SM", "url": "https://www.google.com/finance/quote/3sm:stu"}, {"text": "HAN:3SM", "url": "https://www.google.com/finance/quote/3sm:han"}, {"text": "DEU:3SM", "url": "https://www.google.com/finance/quote/3sm:deu"}, {"text": "ASE:AOS", "url": "https://www.google.com/finance/quote/aos:ase"}, {"text": "MUN:3SM", "url": "https://www.google.com/finance/quote/3sm:mun"}, {"text": "LSE:0L7A", "url": "https://www.google.com/finance/quote/0l7a:lse"}, {"text": "SAO:A1OS34", "url": "https://www.google.com/finance/quote/a1os34:sao"}], "crunchbase_description": "A.O. Smith(1874) Corporation is a global leader applying innovative technology and energyefficient solutions to products marketed worldwide.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 18479, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "autonomous_navigation", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}], "methods": [{"referent": "automl", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [4, 1, 0, 1, 1, 2, 1, 5, 4, 1, 0], "total": 20, "isTopResearch": false, "rank": 809, "fortune500_rank": 286}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 1, 4, 4, 1, 3, 5, 3, 4, 1, 0], "total": 26, "isTopResearch": false, "rank": 656, "fortune500_rank": 179}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 26.0, "isTopResearch": false, "rank": 223, "fortune500_rank": 69}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 542, "rank": 468, "fortune500_rank": 253}, "ai_jobs": {"counts": null, "total": 17, "rank": 728, "fortune500_rank": 367}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "A. O. Smith Corporation is an American manufacturer of both residential and commercial water heaters and boilers and the largest manufacturer and marketer of water heaters in North America. It also supplies water treatment products in the Asian market. The company has 24 locations worldwide, including five manufacturing facilities in North America, as well as plants in Bengaluru in India, Nanjing in China and Veldhoven in The Netherlands.", "wikipedia_link": "https://en.wikipedia.org/wiki/A._O._Smith", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 122, "country": "China", "website": "https://www.iflytek.com/", "crunchbase": {"text": "10ea2431-f439-5bf6-a5d2-a027196e0514", "url": "https://www.crunchbase.com/organization/anhui-ustc-iflytek-science-and-technology-co-ltd"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/iflytekcoltd."], "stage": "Mature", "name": "iFlyTek", "patent_name": "iflytek", "continent": "Asia", "local_logo": "iflytek.png", "aliases": "Anhui Ustc Iflytek Science And Technology Co. Ltd; Iflytek Co Ltd; Keda Xunfei Co., Ltd; \u79d1\u5927\u8baf\u98de; \u79d1\u5927\u8baf\u98de\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4298007693, "url": "https://permid.org/1-4298007693"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "SZSE:002230", "url": "https://www.google.com/finance/quote/002230:szse"}], "market_full": [{"text": "SZSE:002230", "url": "https://www.google.com/finance/quote/002230:szse"}], "crunchbase_description": "USTC iFLYTEK Science & Technology focuses on research and development of speech technology, software, and chip products and services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Word error rate", "field_count": 8}, {"field_name": "Feature learning", "field_count": 6}, {"field_name": "Speech synthesis", "field_count": 6}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Feature extraction", "field_count": 4}, {"field_name": "Intelligibility (communication)", "field_count": 3}, {"field_name": "Convolutional neural network", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Automatic summarization", "field_count": 3}], "clusters": [{"cluster_id": 1960, "cluster_count": 10}, {"cluster_id": 1193, "cluster_count": 9}, {"cluster_id": 1422, "cluster_count": 8}, {"cluster_id": 3291, "cluster_count": 7}, {"cluster_id": 5507, "cluster_count": 7}, {"cluster_id": 7496, "cluster_count": 7}, {"cluster_id": 13431, "cluster_count": 6}, {"cluster_id": 9371, "cluster_count": 5}, {"cluster_id": 16472, "cluster_count": 4}, {"cluster_id": 15731, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 340}, {"ref_CSET_id": 101, "referenced_count": 328}, {"ref_CSET_id": 87, "referenced_count": 172}, {"ref_CSET_id": 115, "referenced_count": 72}, {"ref_CSET_id": 122, "referenced_count": 67}, {"ref_CSET_id": 37, "referenced_count": 42}, {"ref_CSET_id": 245, "referenced_count": 37}, {"ref_CSET_id": 1784, "referenced_count": 33}, {"ref_CSET_id": 112, "referenced_count": 32}, {"ref_CSET_id": 21, "referenced_count": 31}], "tasks": [{"referent": "classification", "task_count": 23}, {"referent": "speech_recognition", "task_count": 16}, {"referent": "disease_detection", "task_count": 10}, {"referent": "classification_tasks", "task_count": 9}, {"referent": "feature_selection", "task_count": 8}, {"referent": "speech_synthesis", "task_count": 7}, {"referent": "recommendation", "task_count": 7}, {"referent": "natural_language_processing", "task_count": 6}, {"referent": "image_analysis", "task_count": 6}, {"referent": "system_identification", "task_count": 6}], "methods": [{"referent": "3d_representations", "method_count": 24}, {"referent": "recurrent_neural_networks", "method_count": 23}, {"referent": "attention_mechanisms", "method_count": 18}, {"referent": "vqa_models", "method_count": 15}, {"referent": "double_q_learning", "method_count": 15}, {"referent": "convolutional_neural_networks", "method_count": 12}, {"referent": "deep_belief_network", "method_count": 9}, {"referent": "auto_classifier", "method_count": 8}, {"referent": "cgnn", "method_count": 8}, {"referent": "linear_regression", "method_count": 7}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 6, 8, 16, 18, 25, 39, 34, 52, 49, 2], "total": 251, "isTopResearch": false, "rank": 379}, "ai_publications": {"counts": [2, 5, 6, 14, 12, 18, 33, 29, 40, 26, 1], "total": 186, "isTopResearch": false, "rank": 82}, "ai_publications_growth": {"counts": [], "total": -3.0633925461511673, "isTopResearch": false, "rank": 1225}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 2, 2, 4, 6, 11, 11, 4, 0], "total": 40, "isTopResearch": false, "rank": 48}, "citation_counts": {"counts": [29, 21, 30, 50, 107, 227, 377, 532, 838, 678, 22], "total": 2911, "isTopResearch": false, "rank": 102}, "cv_pubs": {"counts": [1, 2, 1, 1, 2, 3, 5, 7, 7, 13, 0], "total": 42, "isTopResearch": true, "rank": 94}, "nlp_pubs": {"counts": [1, 0, 2, 8, 4, 9, 15, 14, 21, 8, 1], "total": 83, "isTopResearch": true, "rank": 28}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [14.5, 4.2, 5.0, 3.5714285714285716, 8.916666666666666, 12.61111111111111, 11.424242424242424, 18.344827586206897, 20.95, 26.076923076923077, 22.0], "total": 15.650537634408602, "isTopResearch": false, "rank": 392}}, "patents": {"ai_patents": {"counts": [3, 2, 4, 7, 13, 25, 57, 82, 90, 24, 0], "total": 307, "table": null, "rank": 75}, "ai_patents_growth": {"counts": [], "total": 88.0557804768331, "table": null, "rank": 127}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [30, 20, 40, 70, 130, 250, 570, 820, 900, 240, 0], "total": 3070, "table": null, "rank": 75}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 6, 3, 0, 1, 0], "total": 11, "table": "industry", "rank": 78}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 131}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 3, 3, 0, 1, 0], "total": 8, "table": "industry", "rank": 18}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 1, 3, 6, 9, 36, 33, 7, 0], "total": 96, "table": "industry", "rank": 77}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0], "total": 3, "table": null, "rank": 277}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 1, 3, 3, 4, 2, 1, 0], "total": 14, "table": "industry", "rank": 131}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 87}, "Speech_Processing": {"counts": [0, 0, 1, 4, 6, 10, 20, 32, 23, 5, 0], "total": 101, "table": "application", "rank": 11}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 1, 0, 1, 1, 2, 0, 0], "total": 6, "table": "application", "rank": 109}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 3, 3, 2, 1, 0], "total": 10, "table": "application", "rank": 124}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 239}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 2, 3, 4, 17, 21, 31, 6, 0], "total": 84, "table": "application", "rank": 77}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 243}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 541, "rank": 469}, "ai_jobs": {"counts": null, "total": 55, "rank": 461}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "iFlytek (Chinese: \u79d1\u5927\u8baf\u98de; pinyin: K\u0113d\u00e0 X\u00f9nf\u0113i), styled as iFLYTEK, is a partially state-owned Chinese information technology company established in 1999. It creates voice recognition software and 10+ voice-based internet/mobile products covering education, communication, music, intelligent toys industries. State-owned enterprise China Mobile is the company's largest shareholder. The company is listed in the Shenzhen Stock Exchange with market capitalization at 25 billion RMB and it is backed by several state-owned investment funds.", "wikipedia_link": "https://en.wikipedia.org/wiki/IFlytek", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2519, "country": "United States", "website": "http://www.up.com/", "crunchbase": {"text": "ea3b927a-7d93-4f50-5d72-c5daf94828f5", "url": "https://www.crunchbase.com/organization/union-pacific-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/unionpacific"], "stage": "Mature", "name": "Union Pacific Corp", "patent_name": "union pacific corp", "continent": "North America", "local_logo": "union_pacific_corp.png", "aliases": "Union Pacific; Union Pacific Corporation; Union Pacific Railroad; Union Pacific Railroad Company", "permid_links": [{"text": 4295905161, "url": "https://permid.org/1-4295905161"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:UNP", "url": "https://www.google.com/finance/quote/nyse:unp"}], "market_full": [{"text": "SGO:UNP", "url": "https://www.google.com/finance/quote/sgo:unp"}, {"text": "DUS:UNP", "url": "https://www.google.com/finance/quote/dus:unp"}, {"text": "BER:UNP", "url": "https://www.google.com/finance/quote/ber:unp"}, {"text": "STU:UNP", "url": "https://www.google.com/finance/quote/stu:unp"}, {"text": "VIE:UNPC", "url": "https://www.google.com/finance/quote/unpc:vie"}, {"text": "MEX:UNP*", "url": "https://www.google.com/finance/quote/mex:unp*"}, {"text": "BRU:UNPA", "url": "https://www.google.com/finance/quote/bru:unpa"}, {"text": "FRA:UNP", "url": "https://www.google.com/finance/quote/fra:unp"}, {"text": "NYQ:UNP", "url": "https://www.google.com/finance/quote/nyq:unp"}, {"text": "DEU:UNP", "url": "https://www.google.com/finance/quote/deu:unp"}, {"text": "BUE:UNPC", "url": "https://www.google.com/finance/quote/bue:unpc"}, {"text": "SGO:UNPCL", "url": "https://www.google.com/finance/quote/sgo:unpcl"}, {"text": "ASE:UNP", "url": "https://www.google.com/finance/quote/ase:unp"}, {"text": "GER:UNPX", "url": "https://www.google.com/finance/quote/ger:unpx"}, {"text": "MUN:UNP", "url": "https://www.google.com/finance/quote/mun:unp"}, {"text": "NYSE:UNP", "url": "https://www.google.com/finance/quote/nyse:unp"}, {"text": "SAO:UPAC34", "url": "https://www.google.com/finance/quote/sao:upac34"}, {"text": "LSE:0R2E", "url": "https://www.google.com/finance/quote/0r2e:lse"}, {"text": "MCX:UNP-RM", "url": "https://www.google.com/finance/quote/mcx:unp-rm"}, {"text": "HAN:UNP", "url": "https://www.google.com/finance/quote/han:unp"}, {"text": "HAM:UNP", "url": "https://www.google.com/finance/quote/ham:unp"}, {"text": "BRN:UNP", "url": "https://www.google.com/finance/quote/brn:unp"}], "crunchbase_description": "Union Pacific Railroad is the principal operating company of Union Pacific Corporation both are headquartered in Omaha, Nebraska", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 38981, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "decision_making", "task_count": 1}, {"referent": "multi_armed_bandits", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 7, 5, 1, 1, 5, 0, 2, 0, 0, 0], "total": 24, "isTopResearch": false, "rank": 767, "fortune500_rank": 275}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 1, 0, 2, 1, 2, 1, 3, 1, 1, 0], "total": 12, "isTopResearch": false, "rank": 740, "fortune500_rank": 200}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 541, "rank": 469, "fortune500_rank": 254}, "ai_jobs": {"counts": null, "total": 29, "rank": 607, "fortune500_rank": 311}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "The Union Pacific Corporation (Union Pacific) is a publicly traded railroad holding company. It was incorporated in Utah in 1969 and is headquartered in Omaha, Nebraska. It is the parent company of the current, Delaware-registered, form of the Union Pacific Railroad.", "wikipedia_link": "https://en.wikipedia.org/wiki/Union_Pacific_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2550, "country": "United States", "website": "https://www.yum.com/wps/portal/yumbrands/Yumbrands/", "crunchbase": {"text": "4e55b304-7b45-d574-b01f-871fe3b0e646", "url": "https://www.crunchbase.com/organization/yum-brands-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/yum-brands"], "stage": "Mature", "name": "Yum! Brands Inc", "patent_name": "yum! brands inc", "continent": "North America", "local_logo": "yum_brands_inc.png", "aliases": "Tricon Global Restaurants; Yum!; Yum! Brands; Yum! Brands Rsc; Yum! Brands, Inc", "permid_links": [{"text": 4295905127, "url": "https://permid.org/1-4295905127"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:YUM", "url": "https://www.google.com/finance/quote/nyse:yum"}], "market_full": [{"text": "LSE:0QYD", "url": "https://www.google.com/finance/quote/0qyd:lse"}, {"text": "HAN:TGR", "url": "https://www.google.com/finance/quote/han:tgr"}, {"text": "DUS:TGR", "url": "https://www.google.com/finance/quote/dus:tgr"}, {"text": "DEU:YUM", "url": "https://www.google.com/finance/quote/deu:yum"}, {"text": "NYQ:YUM", "url": "https://www.google.com/finance/quote/nyq:yum"}, {"text": "MUN:TGR", "url": "https://www.google.com/finance/quote/mun:tgr"}, {"text": "FRA:TGR", "url": "https://www.google.com/finance/quote/fra:tgr"}, {"text": "SAO:YUMR34", "url": "https://www.google.com/finance/quote/sao:yumr34"}, {"text": "MEX:YUM*", "url": "https://www.google.com/finance/quote/mex:yum*"}, {"text": "BER:TGR", "url": "https://www.google.com/finance/quote/ber:tgr"}, {"text": "VIE:YUM", "url": "https://www.google.com/finance/quote/vie:yum"}, {"text": "STU:TGR", "url": "https://www.google.com/finance/quote/stu:tgr"}, {"text": "HAM:TGR", "url": "https://www.google.com/finance/quote/ham:tgr"}, {"text": "NYSE:YUM", "url": "https://www.google.com/finance/quote/nyse:yum"}, {"text": "ASE:YUM", "url": "https://www.google.com/finance/quote/ase:yum"}, {"text": "GER:TGRX", "url": "https://www.google.com/finance/quote/ger:tgrx"}, {"text": "SWX:YUM", "url": "https://www.google.com/finance/quote/swx:yum"}, {"text": "MCX:YUM-RM", "url": "https://www.google.com/finance/quote/mcx:yum-rm"}, {"text": "BRN:TGR", "url": "https://www.google.com/finance/quote/brn:tgr"}], "crunchbase_description": "Yum! is a quick-service restaurant brand that primarily operates the likes of KFC, Pizza Hut, and Taco Bell.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 5300, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 792, "referenced_count": 2}], "tasks": [{"referent": "voice_conversion", "task_count": 1}, {"referent": "personal_identification", "task_count": 1}], "methods": [{"referent": "context2vec", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "video_sampling", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 2, 1, 0, 0, 0, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105, "fortune500_rank": 368}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "isTopResearch": false, "rank": 881, "fortune500_rank": 245}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1.0, 0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "fortune500_rank": 217}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 540, "rank": 471, "fortune500_rank": 255}, "ai_jobs": {"counts": null, "total": 68, "rank": 412, "fortune500_rank": 219}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Yum! Brands, Inc. (or Yum!), formerly Tricon Global Restaurants, Inc., is an American fast food corporation listed on the Fortune 1000. Yum! operates the brands KFC, Pizza Hut, Taco Bell, The Habit Burger Grill, and WingStreet worldwide, except in China, where the brands are operated by a separate company, Yum China. Before 2011, Yum! also owned Long John Silver's and A&W Restaurants.", "wikipedia_link": "https://en.wikipedia.org/wiki/Yum!_Brands", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2547, "country": "United States", "website": "https://www.xcelenergy.com/", "crunchbase": {"text": "d2856768-b353-6156-2c0d-56198b8af9bf", "url": "https://www.crunchbase.com/organization/xcel-energy-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/xcel-energy"], "stage": "Mature", "name": "Xcel Energy Inc", "patent_name": "xcel energy inc", "continent": "North America", "local_logo": "xcel_energy_inc.png", "aliases": "Xcel Energy; Xcel Energy Inc", "permid_links": [{"text": 4295904627, "url": "https://permid.org/1-4295904627"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:XEL", "url": "https://www.google.com/finance/quote/nasdaq:xel"}], "market_full": [{"text": "NASDAQ:XEL", "url": "https://www.google.com/finance/quote/nasdaq:xel"}, {"text": "LSE:0M1R", "url": "https://www.google.com/finance/quote/0m1r:lse"}, {"text": "MEX:XEL", "url": "https://www.google.com/finance/quote/mex:xel"}, {"text": "BER:NRN", "url": "https://www.google.com/finance/quote/ber:nrn"}, {"text": "BRN:NRN", "url": "https://www.google.com/finance/quote/brn:nrn"}, {"text": "SAO:X1EL34", "url": "https://www.google.com/finance/quote/sao:x1el34"}, {"text": "GER:NRNX", "url": "https://www.google.com/finance/quote/ger:nrnx"}, {"text": "DUS:NRN", "url": "https://www.google.com/finance/quote/dus:nrn"}, {"text": "VIE:XCEL", "url": "https://www.google.com/finance/quote/vie:xcel"}, {"text": "STU:NRN", "url": "https://www.google.com/finance/quote/nrn:stu"}, {"text": "MCX:XEL-RM", "url": "https://www.google.com/finance/quote/mcx:xel-rm"}, {"text": "DEU:XEL", "url": "https://www.google.com/finance/quote/deu:xel"}, {"text": "FRA:NRN", "url": "https://www.google.com/finance/quote/fra:nrn"}, {"text": "MUN:NRN", "url": "https://www.google.com/finance/quote/mun:nrn"}], "crunchbase_description": "Xcel Energy is engaged in the generation, purchase, transmission, distribution, and sale of electricity.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 5, 2, 2, 3, 6, 6, 4, 4, 7, 0], "total": 44, "isTopResearch": false, "rank": 644, "fortune500_rank": 239}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 538, "rank": 472, "fortune500_rank": 256}, "ai_jobs": {"counts": null, "total": 59, "rank": 446, "fortune500_rank": 236}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Xcel Energy Inc. is a utility holding company based in Minneapolis, Minnesota, serving more than 3.3 million electric customers and 1.8 million natural gas customers in Minnesota, Michigan, Wisconsin, North Dakota, South Dakota, Colorado, Texas and New Mexico in 2017. It consists of four operating subsidiaries: Northern States Power-Minnesota, Northern States Power-Wisconsin, Public Service Company of Colorado, and Southwestern Public Service Co.", "wikipedia_link": "https://en.wikipedia.org/wiki/Xcel_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1910, "country": "Indonesia", "website": "https://pertamina.com/", "crunchbase": {"text": " 085f7269-3583-3541-29cf-421ed6c8c407", "url": " https://www.crunchbase.com/organization/pt-pertamina-persero"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pertamina"], "stage": "Unknown", "name": "Pertamina", "patent_name": "Pertamina", "continent": "Asia", "local_logo": null, "aliases": "Pertamina; Pertamina University", "permid_links": [{"text": 5000067369, "url": "https://permid.org/1-5000067369"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Metaheuristic", "field_count": 2}, {"field_name": "Correlation coefficient", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Association rule learning", "field_count": 1}], "clusters": [{"cluster_id": 39998, "cluster_count": 1}, {"cluster_id": 69074, "cluster_count": 1}, {"cluster_id": 21949, "cluster_count": 1}, {"cluster_id": 23363, "cluster_count": 1}, {"cluster_id": 54613, "cluster_count": 1}, {"cluster_id": 60922, "cluster_count": 1}, {"cluster_id": 76778, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "clustering", "task_count": 1}, {"referent": "cluster_analysis", "task_count": 1}, {"referent": "customer_segmentation", "task_count": 1}, {"referent": "air_pollution_prediction", "task_count": 1}, {"referent": "object_discovery", "task_count": 1}], "methods": [{"referent": "optimization", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "impala", "method_count": 1}, {"referent": "emf", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "awd_lstm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [4, 3, 8, 8, 13, 22, 23, 39, 53, 33, 0], "total": 206, "isTopResearch": false, "rank": 409, "sp500_rank": 248}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 1, 1, 1, 3, 0, 0], "total": 7, "isTopResearch": false, "rank": 481, "sp500_rank": 243}, "ai_publications_growth": {"counts": [], "total": 33.333333333333336, "isTopResearch": false, "rank": 86, "sp500_rank": 43}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 2, 10, 36, 59, 50, 3], "total": 160, "isTopResearch": false, "rank": 426, "sp500_rank": 193}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 2.0, 10.0, 36.0, 19.666666666666668, 0, 0], "total": 22.857142857142858, "isTopResearch": false, "rank": 269, "sp500_rank": 74}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 538, "rank": 472, "sp500_rank": 226}, "ai_jobs": {"counts": null, "total": 52, "rank": 474, "sp500_rank": 229}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 746, "country": "United States", "website": "https://www.verizonmedia.com/", "crunchbase": {"text": "7c28cb05-95bc-4b84-98b1-88064eee80f4", "url": "https://www.crunchbase.com/organization/verizon-media"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/verizon-media"], "stage": "Unknown", "name": "Verizon Media", "patent_name": "verizon media", "continent": "North America", "local_logo": "verizon_media.png", "aliases": "Verizon Media Llc", "permid_links": [{"text": 5052791256, "url": "https://permid.org/1-5052791256"}], "parent_info": "Apollo", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Verizon Media offers services in content, advertising, and technology with its brands such as Yahoo, TechCrunch, and more.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Modality (human\u2013computer interaction)", "field_count": 2}, {"field_name": "Encoding (memory)", "field_count": 1}, {"field_name": "Augmented reality", "field_count": 1}, {"field_name": "Embedding", "field_count": 1}, {"field_name": "Taxonomy (general)", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Classifier (UML)", "field_count": 1}], "clusters": [{"cluster_id": 23858, "cluster_count": 2}, {"cluster_id": 11956, "cluster_count": 1}, {"cluster_id": 4182, "cluster_count": 1}, {"cluster_id": 40911, "cluster_count": 1}, {"cluster_id": 53587, "cluster_count": 1}, {"cluster_id": 20179, "cluster_count": 1}, {"cluster_id": 7880, "cluster_count": 1}, {"cluster_id": 13618, "cluster_count": 1}, {"cluster_id": 5273, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 6, "referenced_count": 15}, {"ref_CSET_id": 101, "referenced_count": 14}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 792, "referenced_count": 4}, {"ref_CSET_id": 21, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 550, "referenced_count": 1}, {"ref_CSET_id": 209, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "natural_language_transduction", "task_count": 2}, {"referent": "visual_localization", "task_count": 2}, {"referent": "efficient_exploration", "task_count": 2}, {"referent": "visual_crowd_analysis", "task_count": 2}, {"referent": "taxonomy_learning", "task_count": 1}, {"referent": "link_prediction", "task_count": 1}, {"referent": "information_retrieval", "task_count": 1}, {"referent": "adversarial", "task_count": 1}, {"referent": "automatic_writing", "task_count": 1}], "methods": [{"referent": "mim", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "estimation_statistics", "method_count": 1}, {"referent": "gan", "method_count": 1}, {"referent": "discriminators", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}, {"referent": "adversarial_training", "method_count": 1}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 4, 11, 3, 3, 0], "total": 22, "isTopResearch": false, "rank": 784}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 7, 1, 1, 0], "total": 10, "isTopResearch": false, "rank": 417}, "ai_publications_growth": {"counts": [], "total": 171.42857142857144, "isTopResearch": false, "rank": 6}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 4, 13, 24, 20, 1], "total": 62, "isTopResearch": false, "rank": 559}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 4.0, 1.8571428571428572, 24.0, 20.0, 0], "total": 6.2, "isTopResearch": false, "rank": 677}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 20, 0, 0, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 78}, "Business": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 536, "rank": 474}, "ai_jobs": {"counts": null, "total": 59, "rank": 446}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2030, "country": "United Kingdom", "website": "https://www.sainsburys.co.uk/", "crunchbase": {"text": "34d765d3-7468-402e-93e6-ab11e29b8718", "url": "https://www.crunchbase.com/organization/sainsburys-supermarkets-ltd"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sainsburys"], "stage": "Mature", "name": "J. Sainsbury", "patent_name": "J. Sainsbury", "continent": "Europe", "local_logo": "j_sainsbury.png", "aliases": "J Sainsbury Plc; J. Sainsbury; Sainsbury'S; Sainsbury'S Plc; Sainsbury'S Supermarkets Ltd", "permid_links": [{"text": 4295895145, "url": "https://permid.org/1-4295895145"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "QXI:JSNSF", "url": "https://www.google.com/finance/quote/JSNSF:QXI"}, {"text": "DEU:SBRY", "url": "https://www.google.com/finance/quote/DEU:SBRY"}, {"text": "DUS:SUY1", "url": "https://www.google.com/finance/quote/DUS:SUY1"}, {"text": "DEU:SUY", "url": "https://www.google.com/finance/quote/DEU:SUY"}, {"text": "MUN:SUY1", "url": "https://www.google.com/finance/quote/MUN:SUY1"}, {"text": "BRN:SUY1", "url": "https://www.google.com/finance/quote/BRN:SUY1"}, {"text": "HAN:SUY1", "url": "https://www.google.com/finance/quote/HAN:SUY1"}, {"text": "FRA:SUY1", "url": "https://www.google.com/finance/quote/FRA:SUY1"}, {"text": "STU:SUY1", "url": "https://www.google.com/finance/quote/STU:SUY1"}, {"text": "FRA:SUY", "url": "https://www.google.com/finance/quote/FRA:SUY"}, {"text": "BER:SUY1", "url": "https://www.google.com/finance/quote/BER:SUY1"}, {"text": "LSE:SBRY", "url": "https://www.google.com/finance/quote/LSE:SBRY"}, {"text": "QXI:JSAIY", "url": "https://www.google.com/finance/quote/JSAIY:QXI"}, {"text": "MEX:SBRYN", "url": "https://www.google.com/finance/quote/MEX:SBRYN"}], "crunchbase_description": "Sainsbury\u2019s operates supermarkets and convenience stores, an online grocery and general merchandise operation, as well as Sainsbury\u2019s Bank.", "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [3, 5, 0, 2, 0, 0, 0, 6, 2, 4, 0], "total": 22, "isTopResearch": false, "rank": 784, "sp500_rank": 367}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 535, "rank": 475, "sp500_rank": 227}, "ai_jobs": {"counts": null, "total": 85, "rank": 367, "sp500_rank": 194}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 3088, "country": "United States", "website": "https://www.dexcom.com/", "crunchbase": {"text": " 21125c53-39ee-e735-27a2-a87c25435013", "url": " https://www.crunchbase.com/organization/dexcom"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dexcom"], "stage": "Mature", "name": "Dexcom", "patent_name": "DexCom", "continent": "North America", "local_logo": null, "aliases": "DexCom; Dexcom, Inc", "permid_links": [{"text": 4295902139, "url": "https://permid.org/1-4295902139"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:DXCM", "url": "https://www.google.com/finance/quote/DXCM:NASDAQ"}], "market_full": [{"text": "SAO:D1EX34", "url": "https://www.google.com/finance/quote/D1EX34:SAO"}, {"text": "MCX:DC4X", "url": "https://www.google.com/finance/quote/DC4X:MCX"}, {"text": "DUS:DC4", "url": "https://www.google.com/finance/quote/DC4:DUS"}, {"text": "BER:DC4", "url": "https://www.google.com/finance/quote/BER:DC4"}, {"text": "GER:DC4X", "url": "https://www.google.com/finance/quote/DC4X:GER"}, {"text": "STU:DC4", "url": "https://www.google.com/finance/quote/DC4:STU"}, {"text": "DEU:DXCM", "url": "https://www.google.com/finance/quote/DEU:DXCM"}, {"text": "VIE:DXCM", "url": "https://www.google.com/finance/quote/DXCM:VIE"}, {"text": "HAN:DC4", "url": "https://www.google.com/finance/quote/DC4:HAN"}, {"text": "MUN:DC4", "url": "https://www.google.com/finance/quote/DC4:MUN"}, {"text": "BRN:DC4", "url": "https://www.google.com/finance/quote/BRN:DC4"}, {"text": "MEX:DXCM*", "url": "https://www.google.com/finance/quote/DXCM*:MEX"}, {"text": "LSE:0A4M", "url": "https://www.google.com/finance/quote/0A4M:LSE"}, {"text": "FRA:DC4", "url": "https://www.google.com/finance/quote/DC4:FRA"}, {"text": "HAM:DC4", "url": "https://www.google.com/finance/quote/DC4:HAM"}, {"text": "NASDAQ:DXCM", "url": "https://www.google.com/finance/quote/DXCM:NASDAQ"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Missing data", "field_count": 1}], "clusters": [{"cluster_id": 24441, "cluster_count": 1}, {"cluster_id": 2850, "cluster_count": 1}, {"cluster_id": 15224, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "multi_task_learning", "task_count": 1}], "methods": [{"referent": "appo", "method_count": 1}, {"referent": "fourier_related_transforms", "method_count": 1}, {"referent": "cgnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 10, 12, 11, 28, 24, 25, 25, 36, 36, 0], "total": 216, "isTopResearch": false, "rank": 401, "fortune500_rank": 154}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 5, 4, 7, 8, 3, 12, 8, 0], "total": 47, "isTopResearch": false, "rank": 591, "fortune500_rank": 163}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0, 0, 8.0, 0, 0, 8.0, 0], "total": 15.666666666666666, "isTopResearch": false, "rank": 390, "fortune500_rank": 120}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 1, 4, 4, 11, 1, 0, 0], "total": 23, "table": null, "rank": 304, "fortune500_rank": 104}, "ai_patents_growth": {"counts": [], "total": 158.33333333333334, "table": null, "rank": 66, "fortune500_rank": 13}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 10, 40, 40, 110, 10, 0, 0], "total": 230, "table": null, "rank": 304, "fortune500_rank": 104}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 2, 1, 4, 4, 8, 1, 0, 0], "total": 20, "table": "industry", "rank": 54, "fortune500_rank": 21}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 0, 2, 1, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 305, "fortune500_rank": 110}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "fortune500_rank": 23}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 47, "fortune500_rank": 27}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 1, 3, 3, 6, 1, 0, 0], "total": 15, "table": "application", "rank": 84, "fortune500_rank": 36}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 535, "rank": 475, "fortune500_rank": 257}, "ai_jobs": {"counts": null, "total": 52, "rank": 474, "fortune500_rank": 253}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment"}, {"cset_id": 1129, "country": "Japan", "website": "https://www.panasonic.com", "crunchbase": {"text": "824fd405-fe30-fb47-a462-6d0e056c3d1d", "url": "https://www.crunchbase.com/organization/panasonic"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/panasonic"], "stage": "Mature", "name": "Panasonic", "patent_name": "Panasonic", "continent": "Asia", "local_logo": "panasonic.png", "aliases": "Panasonic; Panasonic Corp; Panasonic Corporation; Panasonic Holdings Corp; \u30d1\u30ca\u30bd\u30cb\u30c3\u30af", "permid_links": [{"text": 4295877797, "url": "https://permid.org/1-4295877797"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:6752", "url": "https://www.google.com/finance/quote/6752:TYO"}], "market_full": [{"text": "HAN:MAT1", "url": "https://www.google.com/finance/quote/HAN:MAT1"}, {"text": "PKC:PCRFY", "url": "https://www.google.com/finance/quote/PCRFY:PKC"}, {"text": "STU:MAT1", "url": "https://www.google.com/finance/quote/MAT1:STU"}, {"text": "BUE:PCRF3", "url": "https://www.google.com/finance/quote/BUE:PCRF3"}, {"text": "DUS:MAT1", "url": "https://www.google.com/finance/quote/DUS:MAT1"}, {"text": "STU:MATA", "url": "https://www.google.com/finance/quote/MATA:STU"}, {"text": "VIE:MAT1", "url": "https://www.google.com/finance/quote/MAT1:VIE"}, {"text": "LSE:0QYR", "url": "https://www.google.com/finance/quote/0QYR:LSE"}, {"text": "FRA:MAT1", "url": "https://www.google.com/finance/quote/FRA:MAT1"}, {"text": "MEX:PANASN", "url": "https://www.google.com/finance/quote/MEX:PANASN"}, {"text": "FRA:MATA", "url": "https://www.google.com/finance/quote/FRA:MATA"}, {"text": "PKC:PCRFF", "url": "https://www.google.com/finance/quote/PCRFF:PKC"}, {"text": "BER:MAT1", "url": "https://www.google.com/finance/quote/BER:MAT1"}, {"text": "DEU:MAT1", "url": "https://www.google.com/finance/quote/DEU:MAT1"}, {"text": "TYO:6752", "url": "https://www.google.com/finance/quote/6752:TYO"}, {"text": "MUN:MAT1", "url": "https://www.google.com/finance/quote/MAT1:MUN"}, {"text": "DEU:MATA", "url": "https://www.google.com/finance/quote/DEU:MATA"}, {"text": "MUN:MATA", "url": "https://www.google.com/finance/quote/MATA:MUN"}], "crunchbase_description": "Panasonic manufactures and sells various electronic and electric products around the world.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 19}, {"field_name": "Robot", "field_count": 18}, {"field_name": "Convolutional neural network", "field_count": 9}, {"field_name": "Anomaly detection", "field_count": 9}, {"field_name": "Reinforcement learning", "field_count": 9}, {"field_name": "Pixel", "field_count": 8}, {"field_name": "Robustness (computer science)", "field_count": 8}, {"field_name": "Deep learning", "field_count": 6}, {"field_name": "Relational database", "field_count": 6}, {"field_name": "Pose", "field_count": 6}], "clusters": [{"cluster_id": 1123, "cluster_count": 10}, {"cluster_id": 4634, "cluster_count": 8}, {"cluster_id": 2202, "cluster_count": 7}, {"cluster_id": 7962, "cluster_count": 6}, {"cluster_id": 749, "cluster_count": 6}, {"cluster_id": 6975, "cluster_count": 6}, {"cluster_id": 3842, "cluster_count": 6}, {"cluster_id": 24706, "cluster_count": 5}, {"cluster_id": 10638, "cluster_count": 4}, {"cluster_id": 214, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 300}, {"ref_CSET_id": 163, "referenced_count": 210}, {"ref_CSET_id": 1129, "referenced_count": 152}, {"ref_CSET_id": 87, "referenced_count": 138}, {"ref_CSET_id": 127, "referenced_count": 27}, {"ref_CSET_id": 223, "referenced_count": 27}, {"ref_CSET_id": 1126, "referenced_count": 24}, {"ref_CSET_id": 6, "referenced_count": 23}, {"ref_CSET_id": 23, "referenced_count": 23}, {"ref_CSET_id": 184, "referenced_count": 19}], "tasks": [{"referent": "classification", "task_count": 62}, {"referent": "robots", "task_count": 30}, {"referent": "object_detection", "task_count": 16}, {"referent": "mobile_robot", "task_count": 14}, {"referent": "pedestrian_detection", "task_count": 14}, {"referent": "face_recognition", "task_count": 12}, {"referent": "feature_selection", "task_count": 12}, {"referent": "video_surveillance", "task_count": 11}, {"referent": "autonomous_vehicles", "task_count": 10}, {"referent": "image_processing", "task_count": 10}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 20}, {"referent": "recurrent_neural_networks", "method_count": 19}, {"referent": "3d_representations", "method_count": 18}, {"referent": "q_learning", "method_count": 17}, {"referent": "image_to_image_translation", "method_count": 15}, {"referent": "1d_cnn", "method_count": 14}, {"referent": "vqa_models", "method_count": 14}, {"referent": "double_q_learning", "method_count": 12}, {"referent": "reinforcement_learning", "method_count": 12}, {"referent": "mad_learning", "method_count": 11}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [295, 260, 273, 298, 310, 266, 286, 235, 233, 156, 1], "total": 2613, "isTopResearch": false, "rank": 104, "sp500_rank": 83}, "ai_publications": {"counts": [28, 25, 30, 27, 36, 26, 50, 45, 39, 19, 0], "total": 325, "isTopResearch": false, "rank": 56, "sp500_rank": 45}, "ai_publications_growth": {"counts": [], "total": -24.871794871794872, "isTopResearch": false, "rank": 1364, "sp500_rank": 369}, "ai_pubs_top_conf": {"counts": [5, 1, 3, 1, 6, 5, 2, 4, 3, 2, 0], "total": 32, "isTopResearch": false, "rank": 55, "sp500_rank": 29}, "citation_counts": {"counts": [151, 228, 334, 453, 565, 753, 1077, 1269, 1252, 768, 25], "total": 6875, "isTopResearch": false, "rank": 64, "sp500_rank": 43}, "cv_pubs": {"counts": [13, 14, 15, 10, 18, 15, 12, 12, 12, 7, 0], "total": 128, "isTopResearch": true, "rank": 45, "sp500_rank": 33}, "nlp_pubs": {"counts": [1, 0, 1, 3, 1, 0, 1, 3, 1, 0, 0], "total": 11, "isTopResearch": true, "rank": 87, "sp500_rank": 59}, "robotics_pubs": {"counts": [5, 5, 5, 4, 9, 5, 25, 16, 12, 9, 0], "total": 95, "isTopResearch": true, "rank": 29, "sp500_rank": 27}, "citations_per_article": {"counts": [5.392857142857143, 9.12, 11.133333333333333, 16.77777777777778, 15.694444444444445, 28.96153846153846, 21.54, 28.2, 32.1025641025641, 40.421052631578945, 0], "total": 21.153846153846153, "isTopResearch": false, "rank": 292, "sp500_rank": 85}}, "patents": {"ai_patents": {"counts": [15, 13, 36, 55, 108, 100, 77, 64, 30, 2, 0], "total": 500, "table": null, "rank": 59, "sp500_rank": 47}, "ai_patents_growth": {"counts": [], "total": -15.763508096841429, "table": null, "rank": 1449, "sp500_rank": 427}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [150, 130, 360, 550, 1080, 1000, 770, 640, 300, 20, 0], "total": 5000, "table": null, "rank": 59, "sp500_rank": 47}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 0, 0, 2, 4, 1, 2, 0, 0, 0], "total": 10, "table": null, "rank": 51, "sp500_rank": 44}, "Life_Sciences": {"counts": [3, 0, 6, 5, 10, 7, 10, 2, 1, 0, 0], "total": 44, "table": "industry", "rank": 25, "sp500_rank": 20}, "Security__eg_cybersecurity": {"counts": [0, 1, 1, 3, 4, 1, 2, 2, 1, 0, 0], "total": 15, "table": null, "rank": 72, "sp500_rank": 54}, "Transportation": {"counts": [2, 3, 9, 25, 45, 16, 7, 3, 2, 0, 0], "total": 112, "table": "industry", "rank": 26, "sp500_rank": 21}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 2, 9, 9, 8, 7, 4, 1, 0], "total": 41, "table": null, "rank": 17, "sp500_rank": 15}, "Education": {"counts": [0, 0, 0, 2, 2, 1, 1, 0, 0, 0, 0], "total": 6, "table": null, "rank": 22, "sp500_rank": 16}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 34, "sp500_rank": 26}, "Personal_Devices_and_Computing": {"counts": [2, 4, 17, 18, 29, 14, 10, 14, 3, 0, 0], "total": 111, "table": "industry", "rank": 68, "sp500_rank": 50}, "Banking_and_Finance": {"counts": [0, 0, 0, 2, 8, 6, 5, 1, 0, 0, 0], "total": 22, "table": null, "rank": 45, "sp500_rank": 35}, "Telecommunications": {"counts": [5, 1, 6, 10, 32, 16, 8, 8, 3, 0, 0], "total": 89, "table": "industry", "rank": 48, "sp500_rank": 43}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 55, "sp500_rank": 41}, "Business": {"counts": [2, 5, 5, 4, 20, 11, 7, 7, 0, 0, 0], "total": 61, "table": "industry", "rank": 43, "sp500_rank": 34}, "Energy_Management": {"counts": [2, 3, 1, 1, 6, 5, 3, 3, 2, 0, 0], "total": 26, "table": null, "rank": 24, "sp500_rank": 21}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 1, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 28, "sp500_rank": 17}, "Language_Processing": {"counts": [0, 0, 5, 7, 4, 1, 0, 0, 0, 0, 0], "total": 17, "table": null, "rank": 28, "sp500_rank": 21}, "Speech_Processing": {"counts": [1, 0, 4, 10, 4, 9, 6, 6, 0, 0, 0], "total": 40, "table": "application", "rank": 25, "sp500_rank": 17}, "Knowledge_Representation": {"counts": [0, 1, 0, 1, 0, 1, 5, 0, 0, 0, 0], "total": 8, "table": null, "rank": 88, "sp500_rank": 59}, "Planning_and_Scheduling": {"counts": [2, 3, 3, 1, 18, 10, 5, 4, 0, 0, 0], "total": 46, "table": "application", "rank": 40, "sp500_rank": 34}, "Control": {"counts": [4, 4, 8, 22, 49, 25, 10, 7, 1, 0, 0], "total": 130, "table": "application", "rank": 25, "sp500_rank": 20}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 7, "sp500_rank": 3}, "Computer_Vision": {"counts": [3, 2, 16, 25, 37, 39, 25, 21, 9, 0, 0], "total": 177, "table": "application", "rank": 49, "sp500_rank": 38}, "Analytics_and_Algorithms": {"counts": [3, 0, 3, 3, 7, 4, 4, 3, 0, 0, 0], "total": 27, "table": null, "rank": 52, "sp500_rank": 41}, "Measuring_and_Testing": {"counts": [3, 3, 1, 9, 10, 19, 8, 8, 3, 1, 0], "total": 65, "table": "application", "rank": 37, "sp500_rank": 28}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 533, "rank": 477, "sp500_rank": 228}, "ai_jobs": {"counts": null, "total": 34, "rank": 564, "sp500_rank": 251}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 2756, "country": "United States", "website": "https://www.vectrus.com/", "crunchbase": {"text": "bdd0efa6-1bf8-27bb-2ad5-309fe4b408fc", "url": "https://www.crunchbase.com/organization/vectrus-2"}, "child_crunchbase": [{"text": "22e0e979-0a5e-409c-a04b-47866dc8422d", "url": "https://www.crunchbase.com/organization/zenetex"}], "linkedin": ["https://www.linkedin.com/company/vectrus", "https://www.linkedin.com/company/zenetex"], "stage": "Mature", "name": "Vectrus Inc", "patent_name": "vectrus inc", "continent": "North America", "local_logo": "vectrus_inc.png", "aliases": "Vectrus; Vectrus 2020", "permid_links": [{"text": 5041981860, "url": "https://permid.org/1-5041981860"}, {"text": 5013232931, "url": "https://permid.org/1-5013232931"}], "parent_info": null, "agg_child_info": "Zenetex LLC", "unagg_child_info": null, "market_filt": [{"text": "NYSE:VEC", "url": "https://www.google.com/finance/quote/nyse:vec"}], "market_full": [{"text": "FRA:1V1", "url": "https://www.google.com/finance/quote/1v1:fra"}, {"text": "ASE:VEC", "url": "https://www.google.com/finance/quote/ase:vec"}, {"text": "NYSE:VEC", "url": "https://www.google.com/finance/quote/nyse:vec"}, {"text": "NYQ:VEC", "url": "https://www.google.com/finance/quote/nyq:vec"}, {"text": "DEU:1V1", "url": "https://www.google.com/finance/quote/1v1:deu"}], "crunchbase_description": "Vectrus operates as a global government services company.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Virtual reality", "field_count": 1}], "clusters": [{"cluster_id": 56369, "cluster_count": 1}, {"cluster_id": 41061, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2361, "referenced_count": 1}], "tasks": [], "methods": [{"referent": "atmo", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 1, 3, 0], "total": 8, "isTopResearch": false, "rank": 980}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0], "total": 3, "isTopResearch": false, "rank": 857}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 1.5, "isTopResearch": false, "rank": 855}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 532, "rank": 478}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Vectrus is an American defense contractor. They are one of the largest federal contractors.", "wikipedia_link": "https://en.wikipedia.org/wiki/Vectrus", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1841, "country": "France", "website": "https://www.credit-agricole.fr/", "crunchbase": {"text": " d656d52a-8324-322a-278a-632b82bdef2b", "url": " https://www.crunchbase.com/organization/credit-agricole"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/credit-agricole"], "stage": "Unknown", "name": "Cr\u00e9dit Agricole", "patent_name": "Cr\u00e9dit Agricole", "continent": "Europe", "local_logo": null, "aliases": "Credit Agricole Sa; Cr\u00e9dit Agricole", "permid_links": [{"text": 8589934312, "url": "https://permid.org/1-8589934312"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Classifier (UML)", "field_count": 1}], "clusters": [{"cluster_id": 73844, "cluster_count": 1}, {"cluster_id": 4182, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}], "tasks": [{"referent": "information_retrieval", "task_count": 1}, {"referent": "semi_supervised_object_detection", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "autoencoder", "method_count": 1}, {"referent": "awd_lstm", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "semi_supervised_learning_methods", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1, 6, 1, 16, 4, 2, 2, 2, 1, 1, 0], "total": 36, "isTopResearch": false, "rank": 680, "sp500_rank": 350}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 820, "sp500_rank": 333}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0.0, 0, 0, 0, 0], "total": 2.5, "isTopResearch": false, "rank": 809, "sp500_rank": 322}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 525, "rank": 479, "sp500_rank": 229}, "ai_jobs": {"counts": null, "total": 84, "rank": 372, "sp500_rank": 195}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 208, "country": "China", "website": "https://www.360totalsecurity.com", "crunchbase": {"text": "8aff7875-d403-3c0d-f815-f660000e8361", "url": "https://www.crunchbase.com/organization/qihoo-360-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/qihoo-360"], "stage": "Mature", "name": "Qihoo 360", "patent_name": "qihoo 360", "continent": "Asia", "local_logo": "qihoo_360.png", "aliases": "360\u516c\u53f8; Beijing Qihu Keji Co. Ltd; Qihoo 360 Technology; \u4e09\u516d\u96f6\u5b89\u5168\u79d1\u6280\u80a1\u4efd\u6709\u9650\u516c\u53f8; \u5947\u864e360", "permid_links": [{"text": 5030764283, "url": "https://permid.org/1-5030764283"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:QIHU", "url": "https://www.google.com/finance/quote/nyse:qihu"}, {"text": "SSE:601360", "url": "https://www.google.com/finance/quote/601360:sse"}], "market_full": [{"text": "NYSE:QIHU", "url": "https://www.google.com/finance/quote/nyse:qihu"}, {"text": "SSE:601360", "url": "https://www.google.com/finance/quote/601360:sse"}], "crunchbase_description": "Qihoo 360 Technology offers internet and mobile security products, online advertising and internet value-added services in China.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Face (geometry)", "field_count": 4}, {"field_name": "Pose", "field_count": 4}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Parsing", "field_count": 3}, {"field_name": "Machine translation", "field_count": 2}, {"field_name": "Feature learning", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Phrase", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 2505, "cluster_count": 4}, {"cluster_id": 4634, "cluster_count": 3}, {"cluster_id": 3458, "cluster_count": 3}, {"cluster_id": 6975, "cluster_count": 3}, {"cluster_id": 1338, "cluster_count": 3}, {"cluster_id": 981, "cluster_count": 2}, {"cluster_id": 16824, "cluster_count": 2}, {"cluster_id": 3378, "cluster_count": 2}, {"cluster_id": 56285, "cluster_count": 2}, {"cluster_id": 22315, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 162}, {"ref_CSET_id": 163, "referenced_count": 153}, {"ref_CSET_id": 87, "referenced_count": 81}, {"ref_CSET_id": 6, "referenced_count": 49}, {"ref_CSET_id": 37, "referenced_count": 23}, {"ref_CSET_id": 208, "referenced_count": 17}, {"ref_CSET_id": 115, "referenced_count": 17}, {"ref_CSET_id": 223, "referenced_count": 15}, {"ref_CSET_id": 245, "referenced_count": 12}, {"ref_CSET_id": 127, "referenced_count": 11}], "tasks": [{"referent": "classification", "task_count": 12}, {"referent": "image_recognition", "task_count": 5}, {"referent": "6d_pose_estimation", "task_count": 4}, {"referent": "classification_tasks", "task_count": 4}, {"referent": "human_parsing", "task_count": 3}, {"referent": "amr_parsing", "task_count": 3}, {"referent": "human_pose_forecasting", "task_count": 3}, {"referent": "image_analysis", "task_count": 3}, {"referent": "object_detection", "task_count": 3}, {"referent": "scene_parsing", "task_count": 3}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 9}, {"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "vqa_models", "method_count": 6}, {"referent": "generative_adversarial_networks", "method_count": 6}, {"referent": "optimization", "method_count": 5}, {"referent": "gan", "method_count": 5}, {"referent": "auto_classifier", "method_count": 4}, {"referent": "residual_srm", "method_count": 4}, {"referent": "global_convolutional_network", "method_count": 4}, {"referent": "dcgan", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [4, 1, 4, 10, 22, 25, 23, 9, 9, 4, 0], "total": 111, "isTopResearch": false, "rank": 502}, "ai_publications": {"counts": [0, 1, 0, 6, 16, 22, 16, 2, 6, 2, 0], "total": 71, "isTopResearch": false, "rank": 149}, "ai_publications_growth": {"counts": [], "total": 15.277777777777777, "isTopResearch": false, "rank": 136}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 5, 11, 2, 0, 0, 0, 0], "total": 18, "isTopResearch": false, "rank": 85}, "citation_counts": {"counts": [0, 1, 2, 15, 102, 299, 648, 857, 965, 611, 26], "total": 3526, "isTopResearch": false, "rank": 91}, "cv_pubs": {"counts": [0, 1, 0, 3, 8, 14, 8, 2, 2, 1, 0], "total": 39, "isTopResearch": true, "rank": 96}, "nlp_pubs": {"counts": [0, 0, 0, 1, 1, 0, 5, 0, 0, 0, 0], "total": 7, "isTopResearch": true, "rank": 117}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 1.0, 0, 2.5, 6.375, 13.590909090909092, 40.5, 428.5, 160.83333333333334, 305.5, 0], "total": 49.66197183098591, "isTopResearch": false, "rank": 96}}, "patents": {"ai_patents": {"counts": [3, 3, 13, 13, 85, 50, 15, 4, 1, 0, 0], "total": 187, "table": null, "rank": 108}, "ai_patents_growth": {"counts": [], "total": -61.503267973856204, "table": null, "rank": 1545}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [30, 30, 130, 130, 850, 500, 150, 40, 10, 0, 0], "total": 1870, "table": null, "rank": 108}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 0, 5, 8, 0, 0, 0, 0, 0], "total": 14, "table": "industry", "rank": 76}, "Transportation": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 180}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [1, 2, 7, 6, 20, 14, 2, 2, 0, 0, 0], "total": 54, "table": "industry", "rank": 110}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 3, 3, 0, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 95}, "Telecommunications": {"counts": [0, 1, 5, 3, 23, 11, 0, 0, 0, 0, 0], "total": 43, "table": "industry", "rank": 86}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 3, 0, 4, 4, 0, 1, 0, 0, 0], "total": 12, "table": "industry", "rank": 140}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 4, 4, 0, 1, 0, 0, 0], "total": 9, "table": "application", "rank": 86}, "Knowledge_Representation": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 244}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 3, 0, 33, 19, 7, 0, 0, 0, 0], "total": 62, "table": "application", "rank": 100}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 2, 1, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 189}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 525, "rank": 479}, "ai_jobs": {"counts": null, "total": 48, "rank": 490}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Qihoo 360 (Chinese: \u5947\u864e 360; pinyin: Q\u00edh\u01d4 S\u0101nli\u00f9l\u00edng; approximate pronunciation CHEE-hoo), full name Qihoo 360 Technology Co. Ltd., is a Chinese internet security company known for its antivirus software (360 Safeguard, 360 Mobile Safe), Web browser (360 Secure Browser), and mobile application store (360 Mobile Assistant). It was founded by Zhou Hongyi and Qi Xiangdong in June 2005. Qihoo 360 have \u2248500 million users for its Internet Security products and over 600 million users for its Mobile Antivirus products as of June 2014.", "wikipedia_link": "https://en.wikipedia.org/wiki/Qihoo_360", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1908, "country": "United States", "website": "http://sysco.com/", "crunchbase": {"text": "198f4913-7461-779c-0052-f9430805f644", "url": "https://www.crunchbase.com/organization/sysco"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sysco"], "stage": "Mature", "name": "Sysco Corp", "patent_name": "sysco corp", "continent": "North America", "local_logo": "sysco_corp.png", "aliases": "Sysco; Sysco Corporation", "permid_links": [{"text": 4295905023, "url": "https://permid.org/1-4295905023"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SYY", "url": "https://www.google.com/finance/quote/nyse:syy"}], "market_full": [{"text": "ASE:SYY", "url": "https://www.google.com/finance/quote/ase:syy"}, {"text": "STU:SYY", "url": "https://www.google.com/finance/quote/stu:syy"}, {"text": "DEU:SYY", "url": "https://www.google.com/finance/quote/deu:syy"}, {"text": "VIE:SYY", "url": "https://www.google.com/finance/quote/syy:vie"}, {"text": "SAO:S1YY34", "url": "https://www.google.com/finance/quote/s1yy34:sao"}, {"text": "BUE:SYY3", "url": "https://www.google.com/finance/quote/bue:syy3"}, {"text": "DUS:SYY", "url": "https://www.google.com/finance/quote/dus:syy"}, {"text": "MUN:SYY", "url": "https://www.google.com/finance/quote/mun:syy"}, {"text": "MCX:SYY-RM", "url": "https://www.google.com/finance/quote/mcx:syy-rm"}, {"text": "GER:SYYX", "url": "https://www.google.com/finance/quote/ger:syyx"}, {"text": "BER:SYY", "url": "https://www.google.com/finance/quote/ber:syy"}, {"text": "LSE:0LC6", "url": "https://www.google.com/finance/quote/0lc6:lse"}, {"text": "FRA:SYY", "url": "https://www.google.com/finance/quote/fra:syy"}, {"text": "MEX:SYY*", "url": "https://www.google.com/finance/quote/mex:syy*"}, {"text": "NYQ:SYY", "url": "https://www.google.com/finance/quote/nyq:syy"}, {"text": "BRN:SYY", "url": "https://www.google.com/finance/quote/brn:syy"}, {"text": "NYSE:SYY", "url": "https://www.google.com/finance/quote/nyse:syy"}], "crunchbase_description": "Sysco sells, markets, and distributes food products to restaurants, hotels, and other hospitality businesses.", "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 4, 6, 1, 0, 1, 1, 1, 0, 0, 0], "total": 14, "isTopResearch": false, "rank": 875, "sp500_rank": 380, "fortune500_rank": 310}, "ai_publications": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 524, "rank": 481, "sp500_rank": 230, "fortune500_rank": 258}, "ai_jobs": {"counts": null, "total": 74, "rank": 397, "sp500_rank": 205, "fortune500_rank": 210}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing", "wikipedia_description": "Sysco Corporation is an American multinational corporation involved in marketing and distributing food products, smallwares, kitchen equipment and tabletop items to restaurants, healthcare and educational facilities, hospitality businesses like hotels and inns, and wholesale to other companies that provide foodservice (like Aramark and Sodexo). The company is headquartered in the Energy Corridor district of Houston, Texas.", "wikipedia_link": "https://en.wikipedia.org/wiki/Sysco", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2837, "country": "United States", "website": "http://www.blueorigin.com/", "crunchbase": {"text": "c6ae0ddb-fd71-e032-cb18-eba709c0528d", "url": "https://www.crunchbase.com/organization/blue-origin"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/blue-origin"], "stage": "Mature", "name": "Blue Origin Llc", "patent_name": "blue origin llc", "continent": "North America", "local_logo": "blue_origin_llc.png", "aliases": "Blue Origin", "permid_links": [{"text": 5001255706, "url": "https://permid.org/1-5001255706"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Blue Origin is an aerospace company that focuses on lowering the cost of spaceflight and helping to explore the solar system.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 1, 0, 0, 0, 1, 0, 1, 2, 12, 0], "total": 18, "isTopResearch": false, "rank": 825}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": 200.0, "isTopResearch": false, "rank": 4}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0], "total": 4, "isTopResearch": true, "rank": 187}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0.0, 0], "total": 0.0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 523, "rank": 482}, "ai_jobs": {"counts": null, "total": 16, "rank": 738}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Blue Origin, LLC is an American privately funded aerospace manufacturer and sub-orbital spaceflight services company headquartered in Kent, Washington. Founded in 2000 by Jeff Bezos, the company is led by CEO Bob Smith and aims to make access to space cheaper and more reliable through reusable launch vehicles.\nBlue Origin is employing an incremental approach from suborbital to orbital flight,[citation needed] with each developmental step building on its prior work. The company motto is Gradatim Ferociter, Latin for \"Step by Step, Ferociously\".", "wikipedia_link": "https://en.wikipedia.org/wiki/Blue_Origin", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3103, "country": "Netherlands", "website": "https://www.aegon.com/", "crunchbase": {"text": " ea702215-d506-4cd5-be2b-339460e96380", "url": " https://www.crunchbase.com/organization/aegon-nv"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aegon"], "stage": "Mature", "name": "Aegon", "patent_name": "Aegon", "continent": "Europe", "local_logo": null, "aliases": "Aegon; Aegon Netherlands; Aegon Nv", "permid_links": [{"text": 4295884931, "url": "https://permid.org/1-4295884931"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AEG", "url": "https://www.google.com/finance/quote/AEG:NYSE"}], "market_full": [{"text": "MIL:AGN", "url": "https://www.google.com/finance/quote/AGN:MIL"}, {"text": "FRA:AEND", "url": "https://www.google.com/finance/quote/AEND:FRA"}, {"text": "BER:AEND", "url": "https://www.google.com/finance/quote/AEND:BER"}, {"text": "BER:AENF", "url": "https://www.google.com/finance/quote/AENF:BER"}, {"text": "VIE:AGN", "url": "https://www.google.com/finance/quote/AGN:VIE"}, {"text": "AEX:AGN", "url": "https://www.google.com/finance/quote/AEX:AGN"}, {"text": "FRA:AENF", "url": "https://www.google.com/finance/quote/AENF:FRA"}, {"text": "MUN:AEND", "url": "https://www.google.com/finance/quote/AEND:MUN"}, {"text": "STU:AEND", "url": "https://www.google.com/finance/quote/AEND:STU"}, {"text": "ASE:AEG", "url": "https://www.google.com/finance/quote/AEG:ASE"}, {"text": "HAN:AEND", "url": "https://www.google.com/finance/quote/AEND:HAN"}, {"text": "BUE:AEG3", "url": "https://www.google.com/finance/quote/AEG3:BUE"}, {"text": "GER:ANEDX", "url": "https://www.google.com/finance/quote/ANEDX:GER"}, {"text": "MUN:AENF", "url": "https://www.google.com/finance/quote/AENF:MUN"}, {"text": "DEU:AEGN", "url": "https://www.google.com/finance/quote/AEGN:DEU"}, {"text": "BRN:AEND", "url": "https://www.google.com/finance/quote/AEND:BRN"}, {"text": "NYQ:AEG", "url": "https://www.google.com/finance/quote/AEG:NYQ"}, {"text": "MEX:AEGN", "url": "https://www.google.com/finance/quote/AEGN:MEX"}, {"text": "STU:AENF", "url": "https://www.google.com/finance/quote/AENF:STU"}, {"text": "PKC:AEGOF", "url": "https://www.google.com/finance/quote/AEGOF:PKC"}, {"text": "EBT:AGNA", "url": "https://www.google.com/finance/quote/AGNa:EBT"}, {"text": "NYSE:AEG", "url": "https://www.google.com/finance/quote/AEG:NYSE"}, {"text": "LSE:0Q0Y", "url": "https://www.google.com/finance/quote/0Q0Y:LSE"}, {"text": "HAM:AEND", "url": "https://www.google.com/finance/quote/AEND:HAM"}, {"text": "DUS:AEND", "url": "https://www.google.com/finance/quote/AEND:DUS"}, {"text": "SAO:A1EG34", "url": "https://www.google.com/finance/quote/A1EG34:SAO"}, {"text": "DEU:AENF", "url": "https://www.google.com/finance/quote/AENF:DEU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [4, 6, 2, 1, 6, 2, 4, 5, 5, 6, 0], "total": 41, "isTopResearch": false, "rank": 653, "sp500_rank": 342}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "industry", "rank": 172, "sp500_rank": 111}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 521, "rank": 483, "sp500_rank": 231}, "ai_jobs": {"counts": null, "total": 55, "rank": 461, "sp500_rank": 226}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2286, "country": "United States", "website": "https://corporate.discovery.com/", "crunchbase": {"text": "a6191449-771b-4aed-9a61-c9b63c4affd8", "url": "https://www.crunchbase.com/organization/discovery"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/discoveryinc"], "stage": "Mature", "name": "Discovery Inc", "patent_name": "Discovery Inc", "continent": "North America", "local_logo": "discovery_inc.png", "aliases": "Discovery; Discovery Communications; Discovery Communications, Llc; Discovery Inc; Discovery, Inc", "permid_links": [{"text": 4295907310, "url": "https://permid.org/1-4295907310"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:DISCA", "url": "https://www.google.com/finance/quote/disca:nasdaq"}], "market_full": [{"text": "NASDAQ:DISCA", "url": "https://www.google.com/finance/quote/disca:nasdaq"}, {"text": "MUN:DC6B", "url": "https://www.google.com/finance/quote/dc6b:mun"}, {"text": "STU:DC6B", "url": "https://www.google.com/finance/quote/dc6b:stu"}, {"text": "BER:DC6B", "url": "https://www.google.com/finance/quote/ber:dc6b"}, {"text": "MOEX:DISCA-RM", "url": "https://www.google.com/finance/quote/disca-rm:moex"}, {"text": "HAN:DC6B", "url": "https://www.google.com/finance/quote/dc6b:han"}, {"text": "GER: DISCX,A", "url": "https://www.google.com/finance/quote/ discx,a:ger"}, {"text": "DUS:DC6B", "url": "https://www.google.com/finance/quote/dc6b:dus"}, {"text": "LSE:0IBD", "url": "https://www.google.com/finance/quote/0ibd:lse"}, {"text": "VIE:DISA", "url": "https://www.google.com/finance/quote/disa:vie"}, {"text": "FRA:DC6B", "url": "https://www.google.com/finance/quote/dc6b:fra"}, {"text": "BRN:DC6B", "url": "https://www.google.com/finance/quote/brn:dc6b"}], "crunchbase_description": "Discovery is an American mass media company.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 1, 2, 0, 0, 0, 0, 0, 1, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 20, 10, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 519, "rank": 484}, "ai_jobs": {"counts": null, "total": 47, "rank": 497}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services"}, {"cset_id": 3092, "country": "United States", "website": "https://www.teradyne.com/", "crunchbase": {"text": " b0c66526-911d-6844-b99e-65adc1743024", "url": " https://www.crunchbase.com/organization/teradyne"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/teradyne"], "stage": "Mature", "name": "Teradyne", "patent_name": "Teradyne", "continent": "North America", "local_logo": null, "aliases": "Teradyne; Teradyne, Inc", "permid_links": [{"text": 4295905055, "url": "https://permid.org/1-4295905055"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:TER", "url": "https://www.google.com/finance/quote/NASDAQ:TER"}], "market_full": [{"text": "DUS:TEY", "url": "https://www.google.com/finance/quote/DUS:TEY"}, {"text": "STU:TEY", "url": "https://www.google.com/finance/quote/STU:TEY"}, {"text": "MUN:TEY", "url": "https://www.google.com/finance/quote/MUN:TEY"}, {"text": "LSE:0LEF", "url": "https://www.google.com/finance/quote/0LEF:LSE"}, {"text": "MCX:TER-RM", "url": "https://www.google.com/finance/quote/MCX:TER-RM"}, {"text": "GER:TEYX", "url": "https://www.google.com/finance/quote/GER:TEYX"}, {"text": "NASDAQ:TER", "url": "https://www.google.com/finance/quote/NASDAQ:TER"}, {"text": "SAO:T2ER34", "url": "https://www.google.com/finance/quote/SAO:T2ER34"}, {"text": "BER:TEY", "url": "https://www.google.com/finance/quote/BER:TEY"}, {"text": "FRA:TEY", "url": "https://www.google.com/finance/quote/FRA:TEY"}, {"text": "MEX:TER*", "url": "https://www.google.com/finance/quote/MEX:TER*"}, {"text": "DEU:TER", "url": "https://www.google.com/finance/quote/DEU:TER"}, {"text": "BRN:TEY", "url": "https://www.google.com/finance/quote/BRN:TEY"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 517, "rank": 485, "fortune500_rank": 259}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "fortune500_rank": 437}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 2477, "country": "United States", "website": "https://www.resmed.com/", "crunchbase": {"text": "42f7b3b9-6fc5-d3b8-5b55-bf939bc1accb", "url": "https://www.crunchbase.com/organization/resmed"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/resmed"], "stage": "Mature", "name": "Resmed", "patent_name": "resmed", "continent": "North America", "local_logo": "resmed.png", "aliases": "Resmed Corp; Resmed Inc", "permid_links": [{"text": 4295904819, "url": "https://permid.org/1-4295904819"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:RMD", "url": "https://www.google.com/finance/quote/nyse:rmd"}], "market_full": [{"text": "DEU:RMEA", "url": "https://www.google.com/finance/quote/deu:rmea"}, {"text": "PKC:RSMDF", "url": "https://www.google.com/finance/quote/pkc:rsmdf"}, {"text": "MUN:RME", "url": "https://www.google.com/finance/quote/mun:rme"}, {"text": "BRN:RME", "url": "https://www.google.com/finance/quote/brn:rme"}, {"text": "BER:RMEA", "url": "https://www.google.com/finance/quote/ber:rmea"}, {"text": "BER:RME", "url": "https://www.google.com/finance/quote/ber:rme"}, {"text": "NYQ:RMD", "url": "https://www.google.com/finance/quote/nyq:rmd"}, {"text": "ASX:RMD", "url": "https://www.google.com/finance/quote/asx:rmd"}, {"text": "NYSE:RMD", "url": "https://www.google.com/finance/quote/nyse:rmd"}, {"text": "MCX:RMD-RM", "url": "https://www.google.com/finance/quote/mcx:rmd-rm"}, {"text": "SAO:R1MD34", "url": "https://www.google.com/finance/quote/r1md34:sao"}, {"text": "FRA:RMEA", "url": "https://www.google.com/finance/quote/fra:rmea"}, {"text": "DUS:RME", "url": "https://www.google.com/finance/quote/dus:rme"}, {"text": "LSE:0KW4", "url": "https://www.google.com/finance/quote/0kw4:lse"}, {"text": "ASE:RMD", "url": "https://www.google.com/finance/quote/ase:rmd"}, {"text": "DUS:RMEA", "url": "https://www.google.com/finance/quote/dus:rmea"}, {"text": "DEU:RMD", "url": "https://www.google.com/finance/quote/deu:rmd"}, {"text": "HAN:RME", "url": "https://www.google.com/finance/quote/han:rme"}, {"text": "MEX:RMD", "url": "https://www.google.com/finance/quote/mex:rmd"}, {"text": "STU:RME", "url": "https://www.google.com/finance/quote/rme:stu"}, {"text": "FRA:RME", "url": "https://www.google.com/finance/quote/fra:rme"}, {"text": "VIE:RMD", "url": "https://www.google.com/finance/quote/rmd:vie"}], "crunchbase_description": "A global leader in digital health and connected medical devices, plus software solutions that support out-of-hospital care providers.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Facial expression", "field_count": 1}], "clusters": [{"cluster_id": 4591, "cluster_count": 1}, {"cluster_id": 30075, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 161, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 2074, "referenced_count": 1}, {"ref_CSET_id": 2079, "referenced_count": 1}], "tasks": [{"referent": "3d_facial_landmark_localization", "task_count": 1}, {"referent": "facial_expression_analysis", "task_count": 1}, {"referent": "facial_landmark_detection", "task_count": 1}, {"referent": "face_recognition", "task_count": 1}, {"referent": "landmark_tracking", "task_count": 1}], "methods": [{"referent": "generative_models", "method_count": 1}, {"referent": "cbam", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [13, 22, 15, 22, 29, 35, 49, 24, 30, 33, 0], "total": 272, "isTopResearch": false, "rank": 367, "fortune500_rank": 140}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 0, 5, 7, 14, 16, 0], "total": 43, "isTopResearch": false, "rank": 605, "fortune500_rank": 168}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 21.5, "isTopResearch": false, "rank": 286, "fortune500_rank": 92}}, "patents": {"ai_patents": {"counts": [1, 0, 10, 4, 3, 2, 8, 13, 4, 0, 0], "total": 45, "table": null, "rank": 227, "fortune500_rank": 73}, "ai_patents_growth": {"counts": [], "total": 109.72222222222223, "table": null, "rank": 102, "fortune500_rank": 23}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 100, 40, 30, 20, 80, 130, 40, 0, 0], "total": 450, "table": null, "rank": 227, "fortune500_rank": 73}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [1, 0, 8, 4, 3, 2, 8, 13, 3, 0, 0], "total": 42, "table": "industry", "rank": 26, "fortune500_rank": 8}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 3, 0, 1, 1, 1, 1, 0, 0, 0], "total": 7, "table": "industry", "rank": 287, "fortune500_rank": 104}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "fortune500_rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 3, 0, 0, 1, 1, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 318, "fortune500_rank": 96}, "Analytics_and_Algorithms": {"counts": [1, 0, 5, 3, 3, 1, 4, 10, 3, 0, 0], "total": 30, "table": "application", "rank": 46, "fortune500_rank": 23}, "Measuring_and_Testing": {"counts": [0, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 516, "rank": 486, "fortune500_rank": 260}, "ai_jobs": {"counts": null, "total": 53, "rank": 471, "fortune500_rank": 250}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "ResMed is a San Diego, California-based medical equipment company. It primarily provides cloud-connectable medical devices for the treatment of sleep apnea (such as CPAP devices and masks), chronic obstructive pulmonary disease (COPD), and other respiratory conditions. ResMed has produced over 150,000 ventilators and bilevel devices to help treat the respiratory symptoms of patients with COVID-19. ResMed also provides software to out-of-hospital care agencies to streamline transitions of care into and between these care settings for seniors and their care providers (i.e. home health, hospice, skilled nursing facilities, life plan communities, senior living centers, and private duty).", "wikipedia_link": "https://en.wikipedia.org/wiki/ResMed", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2447, "country": "United States", "website": "https://www.otis.com/", "crunchbase": {"text": "f809fcb0-52f8-5590-2e02-59251ca3a8d4", "url": "https://www.crunchbase.com/organization/otis"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/otis_elevators"], "stage": "Mature", "name": "Otis Worldwide", "patent_name": "otis worldwide", "continent": "North America", "local_logo": "otis_worldwide.png", "aliases": "Otis; Otis Elevator Company; Otis Worldwide Corp; Zardoya Otis; Zardoya Otis, Sa", "permid_links": [{"text": 5068343942, "url": "https://permid.org/1-5068343942"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:OTIS", "url": "https://www.google.com/finance/quote/nyse:otis"}], "market_full": [{"text": "BER:4PG", "url": "https://www.google.com/finance/quote/4pg:ber"}, {"text": "NYQ:OTIS", "url": "https://www.google.com/finance/quote/nyq:otis"}, {"text": "STU:ZDO", "url": "https://www.google.com/finance/quote/stu:zdo"}, {"text": "FRA:4PG", "url": "https://www.google.com/finance/quote/4pg:fra"}, {"text": "SAO:O1TI34", "url": "https://www.google.com/finance/quote/o1ti34:sao"}, {"text": "ASE:OTIS", "url": "https://www.google.com/finance/quote/ase:otis"}, {"text": "DEU:4PG", "url": "https://www.google.com/finance/quote/4pg:deu"}, {"text": "DUS:4PG", "url": "https://www.google.com/finance/quote/4pg:dus"}, {"text": "EBT:ZOTE", "url": "https://www.google.com/finance/quote/ebt:zote"}, {"text": "BER:ZDO", "url": "https://www.google.com/finance/quote/ber:zdo"}, {"text": "DUS:ZDO", "url": "https://www.google.com/finance/quote/dus:zdo"}, {"text": "STU:4PG", "url": "https://www.google.com/finance/quote/4pg:stu"}, {"text": "DEU:ZOT", "url": "https://www.google.com/finance/quote/deu:zot"}, {"text": "FRA:ZDO", "url": "https://www.google.com/finance/quote/fra:zdo"}, {"text": "DEU:OTIS", "url": "https://www.google.com/finance/quote/deu:otis"}, {"text": "PKL:ZRDZF", "url": "https://www.google.com/finance/quote/pkl:zrdzf"}, {"text": "GER:4PGX", "url": "https://www.google.com/finance/quote/4pgx:ger"}, {"text": "LSE:0NR7", "url": "https://www.google.com/finance/quote/0nr7:lse"}, {"text": "MCX:OTIS-RM", "url": "https://www.google.com/finance/quote/mcx:otis-rm"}, {"text": "MCE:ZOT", "url": "https://www.google.com/finance/quote/mce:zot"}, {"text": "NYSE:OTIS", "url": "https://www.google.com/finance/quote/nyse:otis"}, {"text": "HAM:4PG", "url": "https://www.google.com/finance/quote/4pg:ham"}, {"text": "MUN:4PG", "url": "https://www.google.com/finance/quote/4pg:mun"}, {"text": "MEX:OTIS*", "url": "https://www.google.com/finance/quote/mex:otis*"}, {"text": "MEX:ZOTN", "url": "https://www.google.com/finance/quote/mex:zotn"}, {"text": "HAN:4PG", "url": "https://www.google.com/finance/quote/4pg:han"}, {"text": "BME:ZOT", "url": "https://www.google.com/finance/quote/bme:zot"}], "crunchbase_description": "OTIS is a manufacturer and service provider of elevators, escalators, and moving walkways.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 0, 2, 0], "total": 6, "isTopResearch": false, "rank": 1030, "fortune500_rank": 349}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 513, "rank": 487, "fortune500_rank": 261}, "ai_jobs": {"counts": null, "total": 21, "rank": 683, "fortune500_rank": 344}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Otis Worldwide Corporation (branded as the Otis Elevator Company, its former legal name) is an American company that develops, manufactures and markets elevators, escalators, moving walkways, and related equipment.", "wikipedia_link": "https://www.google.com/url?q=https://en.wikipedia.org/wiki/Special:Search?search%3Dotis%2Bworldwide&sa=D&source=editors&ust=1615941967487000&usg=AFQjCNExrEavyVNTym2Sl89hZCTXRavxyw", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2221, "country": "United States", "website": "https://www.ajg.com/", "crunchbase": {"text": "ca7c5678-f2e1-0d56-783f-bebff073050a", "url": "https://www.crunchbase.com/organization/arthur-j-gallagher-co"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/gallagher-global"], "stage": "Mature", "name": "Arthur J. Gallagher & Co.", "patent_name": "arthur j. gallagher & co.", "continent": "North America", "local_logo": "arthur_j_gallagher_&_co.png", "aliases": "Ajg; Arthur J. Gallagher; Gallagher", "permid_links": [{"text": 4295904043, "url": "https://permid.org/1-4295904043"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AJG", "url": "https://www.google.com/finance/quote/ajg:nyse"}], "market_full": [{"text": "BRN:GAH", "url": "https://www.google.com/finance/quote/brn:gah"}, {"text": "LSE:0ITL", "url": "https://www.google.com/finance/quote/0itl:lse"}, {"text": "STU:GAH", "url": "https://www.google.com/finance/quote/gah:stu"}, {"text": "DUS:GAH", "url": "https://www.google.com/finance/quote/dus:gah"}, {"text": "NYQ:AJG", "url": "https://www.google.com/finance/quote/ajg:nyq"}, {"text": "MUN:GAH", "url": "https://www.google.com/finance/quote/gah:mun"}, {"text": "SAO:A1JG34", "url": "https://www.google.com/finance/quote/a1jg34:sao"}, {"text": "ASE:AJG", "url": "https://www.google.com/finance/quote/ajg:ase"}, {"text": "DEU:AJGH", "url": "https://www.google.com/finance/quote/ajgh:deu"}, {"text": "FRA:GAH", "url": "https://www.google.com/finance/quote/fra:gah"}, {"text": "NYSE:AJG", "url": "https://www.google.com/finance/quote/ajg:nyse"}, {"text": "MEX:AJG", "url": "https://www.google.com/finance/quote/ajg:mex"}, {"text": "MCX:AJG-RM", "url": "https://www.google.com/finance/quote/ajg-rm:mcx"}, {"text": "HAN:GAH", "url": "https://www.google.com/finance/quote/gah:han"}], "crunchbase_description": "Gallagher is an international insurance brokerage and risk management services firm.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [14, 12, 14, 3, 11, 4, 1, 4, 2, 0, 0], "total": 65, "isTopResearch": false, "rank": 580, "fortune500_rank": 215}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 512, "rank": 488, "fortune500_rank": 262}, "ai_jobs": {"counts": null, "total": 88, "rank": 363, "fortune500_rank": 194}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Arthur J. Gallagher & Co. (AJG) is an American global insurance brokerage and risk management services firm headquartered in Rolling Meadows, Illinois (a suburb of Chicago). The firm was established in 1927 and is one of the largest insurance brokers in the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/Arthur_J._Gallagher_%26_Co.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1811, "country": "China", "website": "https://www.boc.cn/", "crunchbase": {"text": " 54b7ff49-57af-0f70-da39-a3d5df46a119 ", "url": " https://www.crunchbase.com/organization/bank-of-china "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bank-of-china"], "stage": "Mature", "name": "Bank Of China", "patent_name": "Bank of China", "continent": "Asia", "local_logo": null, "aliases": "Bank of China; \u4e2d\u56fd\u94f6\u884c; \u4e2d\u56fd\u94f6\u884c\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295863670, "url": "https://permid.org/1-4295863670"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:3988", "url": "https://www.google.com/finance/quote/3988:HKG"}, {"text": "HKG:4619", "url": "https://www.google.com/finance/quote/4619:HKG"}], "market_full": [{"text": "DUS:W8V", "url": "https://www.google.com/finance/quote/DUS:W8V"}, {"text": "PKC:BACHF", "url": "https://www.google.com/finance/quote/BACHF:PKC"}, {"text": "DEU:W8VS", "url": "https://www.google.com/finance/quote/DEU:W8VS"}, {"text": "HKG:3988", "url": "https://www.google.com/finance/quote/3988:HKG"}, {"text": "BER:W8V", "url": "https://www.google.com/finance/quote/BER:W8V"}, {"text": "STU:W8V", "url": "https://www.google.com/finance/quote/STU:W8V"}, {"text": "MUN:W8V", "url": "https://www.google.com/finance/quote/MUN:W8V"}, {"text": "FRA:W8VS", "url": "https://www.google.com/finance/quote/FRA:W8VS"}, {"text": "SHH:601988", "url": "https://www.google.com/finance/quote/601988:SHH"}, {"text": "VIE:BOCN", "url": "https://www.google.com/finance/quote/BOCN:VIE"}, {"text": "HKG:4619", "url": "https://www.google.com/finance/quote/4619:HKG"}, {"text": "DEU:3988", "url": "https://www.google.com/finance/quote/3988:DEU"}, {"text": "PKC:BACHY", "url": "https://www.google.com/finance/quote/BACHY:PKC"}, {"text": "FRA:W8V", "url": "https://www.google.com/finance/quote/FRA:W8V"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 9}, {"field_name": "Feature (computer vision)", "field_count": 8}, {"field_name": "Support vector machine", "field_count": 7}, {"field_name": "Intrusion detection system", "field_count": 5}, {"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Feature selection", "field_count": 4}, {"field_name": "Bayesian network", "field_count": 3}, {"field_name": "Dimensionality reduction", "field_count": 3}, {"field_name": "Particle swarm optimization", "field_count": 3}, {"field_name": "Convolutional neural network", "field_count": 2}], "clusters": [{"cluster_id": 23653, "cluster_count": 5}, {"cluster_id": 2304, "cluster_count": 3}, {"cluster_id": 13431, "cluster_count": 3}, {"cluster_id": 80997, "cluster_count": 3}, {"cluster_id": 1027, "cluster_count": 3}, {"cluster_id": 4147, "cluster_count": 3}, {"cluster_id": 21524, "cluster_count": 3}, {"cluster_id": 884, "cluster_count": 2}, {"cluster_id": 28037, "cluster_count": 2}, {"cluster_id": 20535, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 71}, {"ref_CSET_id": 101, "referenced_count": 42}, {"ref_CSET_id": 87, "referenced_count": 32}, {"ref_CSET_id": 115, "referenced_count": 13}, {"ref_CSET_id": 1811, "referenced_count": 11}, {"ref_CSET_id": 671, "referenced_count": 6}, {"ref_CSET_id": 1125, "referenced_count": 6}, {"ref_CSET_id": 161, "referenced_count": 6}, {"ref_CSET_id": 6, "referenced_count": 6}, {"ref_CSET_id": 21, "referenced_count": 5}], "tasks": [{"referent": "classification", "task_count": 23}, {"referent": "feature_selection", "task_count": 10}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 8}, {"referent": "clustering", "task_count": 7}, {"referent": "face_recognition", "task_count": 6}, {"referent": "image_analysis", "task_count": 5}, {"referent": "text_classification", "task_count": 5}, {"referent": "action_understanding", "task_count": 4}, {"referent": "system_identification", "task_count": 4}, {"referent": "dimensionality_reduction", "task_count": 4}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 16}, {"referent": "auto_classifier", "method_count": 15}, {"referent": "double_q_learning", "method_count": 14}, {"referent": "griffin_lim_algorithm", "method_count": 14}, {"referent": "symbolic_deep_learning", "method_count": 10}, {"referent": "3d_representations", "method_count": 9}, {"referent": "q_learning", "method_count": 8}, {"referent": "deep_belief_network", "method_count": 8}, {"referent": "clustering", "method_count": 8}, {"referent": "cgnn", "method_count": 7}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1879, 1961, 1798, 1591, 1636, 1731, 1641, 1955, 1814, 125, 6], "total": 16137, "isTopResearch": false, "rank": 25, "sp500_rank": 23}, "ai_publications": {"counts": [18, 12, 4, 9, 13, 7, 9, 17, 28, 9, 0], "total": 126, "isTopResearch": false, "rank": 108, "sp500_rank": 78}, "ai_publications_growth": {"counts": [], "total": 28.579209461562403, "isTopResearch": false, "rank": 95, "sp500_rank": 48}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [50, 88, 119, 170, 205, 251, 266, 293, 344, 276, 13], "total": 2075, "isTopResearch": false, "rank": 132, "sp500_rank": 82}, "cv_pubs": {"counts": [5, 2, 2, 2, 4, 1, 3, 2, 8, 3, 0], "total": 32, "isTopResearch": true, "rank": 109, "sp500_rank": 72}, "nlp_pubs": {"counts": [1, 1, 0, 1, 1, 3, 0, 3, 1, 3, 0], "total": 14, "isTopResearch": true, "rank": 78, "sp500_rank": 52}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 1, 2, 2, 0, 0], "total": 6, "isTopResearch": true, "rank": 156, "sp500_rank": 101}, "citations_per_article": {"counts": [2.7777777777777777, 7.333333333333333, 29.75, 18.88888888888889, 15.76923076923077, 35.857142857142854, 29.555555555555557, 17.235294117647058, 12.285714285714286, 30.666666666666668, 0], "total": 16.46825396825397, "isTopResearch": false, "rank": 378, "sp500_rank": 124}}, "patents": {"ai_patents": {"counts": [0, 2, 0, 3, 6, 16, 74, 385, 1039, 912, 0], "total": 2437, "table": null, "rank": 9, "sp500_rank": 8}, "ai_patents_growth": {"counts": [], "total": 316.478978978979, "table": null, "rank": 22, "sp500_rank": 8}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 20, 0, 30, 60, 160, 740, 3850, 10390, 9120, 0], "total": 24370, "table": null, "rank": 9, "sp500_rank": 8}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 3, 0, 0], "total": 5, "table": null, "rank": 78, "sp500_rank": 64}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 5, 0], "total": 8, "table": null, "rank": 95, "sp500_rank": 62}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 6, 19, 51, 32, 0], "total": 109, "table": "industry", "rank": 8, "sp500_rank": 8}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0], "total": 5, "table": null, "rank": 133, "sp500_rank": 96}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 5, 11, 0], "total": 19, "table": null, "rank": 43, "sp500_rank": 35}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 4, 0], "total": 7, "table": null, "rank": 17, "sp500_rank": 14}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0], "total": 4, "table": null, "rank": 20, "sp500_rank": 17}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 4, 4, 27, 163, 462, 206, 0], "total": 868, "table": "industry", "rank": 10, "sp500_rank": 8}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 7, 33, 164, 394, 137, 0], "total": 736, "table": "industry", "rank": 1, "sp500_rank": 1}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 3, 5, 31, 75, 36, 0], "total": 150, "table": "industry", "rank": 30, "sp500_rank": 27}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 0, 0, 3, 4, 2, 0], "total": 10, "table": null, "rank": 17, "sp500_rank": 13}, "Business": {"counts": [0, 0, 0, 0, 2, 7, 21, 108, 263, 91, 0], "total": 492, "table": "industry", "rank": 5, "sp500_rank": 5}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": null, "rank": 97, "sp500_rank": 78}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "sp500_rank": 57}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 14, 29, 10, 0], "total": 54, "table": "application", "rank": 18, "sp500_rank": 14}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 4, 10, 8, 0], "total": 23, "table": "application", "rank": 49, "sp500_rank": 38}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 2, 5, 15, 67, 187, 57, 0], "total": 333, "table": "application", "rank": 5, "sp500_rank": 5}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 2, 3, 0], "total": 7, "table": null, "rank": 159, "sp500_rank": 108}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 0, 1, 2, 3, 17, 91, 320, 113, 0], "total": 548, "table": "application", "rank": 14, "sp500_rank": 11}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 9, 6, 0], "total": 18, "table": "application", "rank": 72, "sp500_rank": 56}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 8, 3, 0], "total": 11, "table": null, "rank": 114, "sp500_rank": 88}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 509, "rank": 489, "sp500_rank": 232}, "ai_jobs": {"counts": null, "total": 55, "rank": 461, "sp500_rank": 226}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 1809, "country": "United States", "website": "https://www.walgreensbootsalliance.com/", "crunchbase": {"text": " 0f07f651-4ed6-3d83-0ab8-71b7de745530", "url": " https://www.crunchbase.com/organization/walgreens-boots-alliance"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/walgreens-boots-alliance"], "stage": "Mature", "name": "Walgreens Boots Alliance", "patent_name": "Walgreens Boots Alliance", "continent": "North America", "local_logo": null, "aliases": "Walgreens Boots Alliance; Walgreens Boots Alliance, Inc; Wba", "permid_links": [{"text": 5043951500, "url": "https://permid.org/1-5043951500"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:WBA", "url": "https://www.google.com/finance/quote/NASDAQ:WBA"}], "market_full": [{"text": "GER:W8AX", "url": "https://www.google.com/finance/quote/GER:W8AX"}, {"text": "MCX:WBA-RM", "url": "https://www.google.com/finance/quote/MCX:WBA-RM"}, {"text": "MEX:WBA", "url": "https://www.google.com/finance/quote/MEX:WBA"}, {"text": "LSE:0LSZ", "url": "https://www.google.com/finance/quote/0LSZ:LSE"}, {"text": "HAN:W8A", "url": "https://www.google.com/finance/quote/HAN:W8A"}, {"text": "MUN:W8A", "url": "https://www.google.com/finance/quote/MUN:W8A"}, {"text": "BRN:W8A", "url": "https://www.google.com/finance/quote/BRN:W8A"}, {"text": "BER:W8A", "url": "https://www.google.com/finance/quote/BER:W8A"}, {"text": "FRA:W8A", "url": "https://www.google.com/finance/quote/FRA:W8A"}, {"text": "DEU:W8A", "url": "https://www.google.com/finance/quote/DEU:W8A"}, {"text": "VIE:WBA", "url": "https://www.google.com/finance/quote/VIE:WBA"}, {"text": "BUE:WBA", "url": "https://www.google.com/finance/quote/BUE:WBA"}, {"text": "STU:W8A", "url": "https://www.google.com/finance/quote/STU:W8A"}, {"text": "NASDAQ:WBA", "url": "https://www.google.com/finance/quote/NASDAQ:WBA"}, {"text": "DUS:W8A", "url": "https://www.google.com/finance/quote/DUS:W8A"}, {"text": "HAM:W8A", "url": "https://www.google.com/finance/quote/HAM:W8A"}, {"text": "SAO:WGBA34", "url": "https://www.google.com/finance/quote/SAO:WGBA34"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Visual appearance", "field_count": 1}, {"field_name": "Object (computer science)", "field_count": 1}, {"field_name": "Semantic mapping", "field_count": 1}], "clusters": [{"cluster_id": 52544, "cluster_count": 2}, {"cluster_id": 28504, "cluster_count": 1}, {"cluster_id": 12940, "cluster_count": 1}, {"cluster_id": 79838, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 833, "referenced_count": 2}, {"ref_CSET_id": 176, "referenced_count": 2}, {"ref_CSET_id": 1809, "referenced_count": 2}, {"ref_CSET_id": 800, "referenced_count": 2}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "object_detection", "task_count": 2}, {"referent": "dynamic_region_segmentation", "task_count": 2}, {"referent": "product_recommendation", "task_count": 2}, {"referent": "path_planning", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "mobile_robot", "task_count": 1}, {"referent": "semantic_role_labeling", "task_count": 1}, {"referent": "environmental_sound_classification", "task_count": 1}, {"referent": "point_cloud_segmentation", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "clustering", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 7, 7, 19, 8, 25, 32, 25, 16, 16, 0], "total": 160, "isTopResearch": false, "rank": 444, "sp500_rank": 265, "fortune500_rank": 172}, "ai_publications": {"counts": [0, 0, 1, 2, 0, 1, 0, 1, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "sp500_rank": 262, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 7, 4, 8, 10, 9, 6, 12, 0], "total": 56, "isTopResearch": false, "rank": 571, "sp500_rank": 247, "fortune500_rank": 156}, "cv_pubs": {"counts": [0, 0, 1, 2, 0, 1, 0, 1, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "sp500_rank": 146, "fortune500_rank": 78}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140, "fortune500_rank": 67}, "citations_per_article": {"counts": [0, 0, 0.0, 3.5, 0, 8.0, 0, 9.0, 0, 0, 0], "total": 11.2, "isTopResearch": false, "rank": 498, "sp500_rank": 176, "fortune500_rank": 147}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 506, "rank": 490, "sp500_rank": 233, "fortune500_rank": 263}, "ai_jobs": {"counts": null, "total": 68, "rank": 412, "sp500_rank": 213, "fortune500_rank": 219}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 2275, "country": "United States", "website": "http://www.crowncastle.com/", "crunchbase": {"text": "40b837f4-0e62-adb9-e9e4-6247e18cb638", "url": "https://www.crunchbase.com/organization/crown-castle"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/crown-castle"], "stage": "Mature", "name": "Crown Castle International Corp.", "patent_name": "crown castle international corp.", "continent": "North America", "local_logo": "crown_castle_international_corp.png", "aliases": "Crown Castle; Crowncastle", "permid_links": [{"text": 5043415536, "url": "https://permid.org/1-5043415536"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CCI", "url": "https://www.google.com/finance/quote/cci:nyse"}], "market_full": [{"text": "DUS:8CW", "url": "https://www.google.com/finance/quote/8cw:dus"}, {"text": "ASE:CCI", "url": "https://www.google.com/finance/quote/ase:cci"}, {"text": "LSE:0I4W", "url": "https://www.google.com/finance/quote/0i4w:lse"}, {"text": "BRN:8CW", "url": "https://www.google.com/finance/quote/8cw:brn"}, {"text": "BMV:CCI1", "url": "https://www.google.com/finance/quote/bmv:cci1"}, {"text": "DEU:8CW", "url": "https://www.google.com/finance/quote/8cw:deu"}, {"text": "NYQ:CCI", "url": "https://www.google.com/finance/quote/cci:nyq"}, {"text": "FRA:8CW", "url": "https://www.google.com/finance/quote/8cw:fra"}, {"text": "VIE:CCIN", "url": "https://www.google.com/finance/quote/ccin:vie"}, {"text": "HAN:8CW", "url": "https://www.google.com/finance/quote/8cw:han"}, {"text": "STU:8CW", "url": "https://www.google.com/finance/quote/8cw:stu"}, {"text": "MEX:CCI1*", "url": "https://www.google.com/finance/quote/cci1*:mex"}, {"text": "MUN:8CW", "url": "https://www.google.com/finance/quote/8cw:mun"}, {"text": "NYSE:CCI", "url": "https://www.google.com/finance/quote/cci:nyse"}, {"text": "BER:8CW", "url": "https://www.google.com/finance/quote/8cw:ber"}], "crunchbase_description": "Crown Castle Provides communications infrastructure--connecting people & businesses to essential data, technology & wireless service.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 503, "rank": 491, "fortune500_rank": 264}, "ai_jobs": {"counts": null, "total": 29, "rank": 607, "fortune500_rank": 311}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Crown Castle is a real estate investment trust and provider of shared communications infrastructure in the United States. Its network includes over 40,000 cell towers and nearly 80,000 route miles of fiber supporting small cells and fiber solutions.", "wikipedia_link": "https://en.wikipedia.org/wiki/Crown_Castle", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 183, "country": "United States", "website": "https://nuro.ai/", "crunchbase": {"text": "c0e46886-79a3-afa6-5b73-4c9f910c646e", "url": "https://www.crunchbase.com/organization/nuro-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nuro-inc."], "stage": "Mature", "name": "Nuro", "patent_name": "nuro", "continent": "North America", "local_logo": "nuro.png", "aliases": "Nuro Inc; Nuro, Inc", "permid_links": [{"text": 5001352120, "url": "https://permid.org/1-5001352120"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Nuro develops and operates a fleet of electric self-driving vehicles that are built to deliver assorted local goods.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Pose", "field_count": 2}, {"field_name": "Point cloud", "field_count": 2}, {"field_name": "Domain knowledge", "field_count": 1}, {"field_name": "Subspace topology", "field_count": 1}, {"field_name": "Object (computer science)", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Rendering (computer graphics)", "field_count": 1}, {"field_name": "3D reconstruction", "field_count": 1}, {"field_name": "Smoothing", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 3446, "cluster_count": 3}, {"cluster_id": 12947, "cluster_count": 2}, {"cluster_id": 5622, "cluster_count": 2}, {"cluster_id": 37990, "cluster_count": 1}, {"cluster_id": 19500, "cluster_count": 1}, {"cluster_id": 20613, "cluster_count": 1}, {"cluster_id": 27589, "cluster_count": 1}, {"cluster_id": 29152, "cluster_count": 1}, {"cluster_id": 40884, "cluster_count": 1}, {"cluster_id": 21767, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 53}, {"ref_CSET_id": 163, "referenced_count": 48}, {"ref_CSET_id": 127, "referenced_count": 30}, {"ref_CSET_id": 87, "referenced_count": 25}, {"ref_CSET_id": 6, "referenced_count": 17}, {"ref_CSET_id": 184, "referenced_count": 12}, {"ref_CSET_id": 23, "referenced_count": 9}, {"ref_CSET_id": 223, "referenced_count": 8}, {"ref_CSET_id": 245, "referenced_count": 7}, {"ref_CSET_id": 37, "referenced_count": 6}], "tasks": [{"referent": "robots", "task_count": 3}, {"referent": "3d_reconstruction", "task_count": 2}, {"referent": "multi_view_learning", "task_count": 2}, {"referent": "environmental_sound_classification", "task_count": 2}, {"referent": "action_localization", "task_count": 2}, {"referent": "multi_agent_reinforcement_learning", "task_count": 1}, {"referent": "trajectory_planning", "task_count": 1}, {"referent": "human_interaction_recognition", "task_count": 1}, {"referent": "srl", "task_count": 1}, {"referent": "decision_making", "task_count": 1}], "methods": [{"referent": "cdcc_net", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "graph_convolutional_networks", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "atmo", "method_count": 2}, {"referent": "adaptive_nms", "method_count": 2}, {"referent": "adaptive_input_representations", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 2, 0, 6, 5, 7, 3, 1], "total": 24, "isTopResearch": false, "rank": 767}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 7, 5, 7, 2, 0], "total": 22, "isTopResearch": false, "rank": 286}, "ai_publications_growth": {"counts": [], "total": -20.0, "isTopResearch": false, "rank": 1324}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 5, 2, 2, 0, 0], "total": 10, "isTopResearch": false, "rank": 114}, "citation_counts": {"counts": [0, 0, 0, 0, 3, 57, 311, 489, 649, 493, 7], "total": 2009, "isTopResearch": false, "rank": 136}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 6, 4, 2, 1, 0], "total": 14, "isTopResearch": true, "rank": 171}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 0], "total": 7, "isTopResearch": true, "rank": 142}, "citations_per_article": {"counts": [0, 0, 0, 0, 3.0, 0, 44.42857142857143, 97.8, 92.71428571428571, 246.5, 0], "total": 91.31818181818181, "isTopResearch": false, "rank": 37}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 7, 1, 1, 0, 0, 0, 0], "total": 10, "table": null, "rank": 413}, "ai_patents_growth": {"counts": [], "total": -61.904761904761905, "table": null, "rank": 1546}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 70, 10, 10, 0, 0, 0, 0], "total": 100, "table": null, "rank": 413}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 3, 1, 1, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 133}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 305}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 190}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 5, 0, 1, 0, 0, 0, 0], "total": 6, "table": "application", "rank": 300}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 502, "rank": 492}, "ai_jobs": {"counts": null, "total": 39, "rank": 533}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Nuro is an American robotics company based in Mountain View, California and founded by Jiajun Zhu and Dave Ferguson. Nuro develops autonomous delivery vehicles, and was the first company to receive an autonomous exemption from the National Highway Traffic Safety Administration since its vehicles are designed to carry goods instead of humans. The R2 model would be designed with no steering wheel, side view mirrors, or pedals.", "wikipedia_link": "https://en.wikipedia.org/wiki/Nuro", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2075, "country": "Japan", "website": "https://www.global.toshiba/jp/top.html", "crunchbase": {"text": " a90068b2-647f-4662-b6cb-f9f509b9d3be", "url": " https://www.crunchbase.com/organization/toshiba-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/toshiba-americas"], "stage": "Mature", "name": "Toshiba", "patent_name": "Toshiba", "continent": "Asia", "local_logo": null, "aliases": null, "permid_links": [{"text": 4295877311, "url": "https://permid.org/1-4295877311"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:6502", "url": "https://www.google.com/finance/quote/6502:TYO"}], "market_full": [{"text": "TYO:6502", "url": "https://www.google.com/finance/quote/6502:TYO"}, {"text": "LSE:0Q0C", "url": "https://www.google.com/finance/quote/0Q0C:LSE"}, {"text": "STU:TSE1", "url": "https://www.google.com/finance/quote/STU:TSE1"}, {"text": "HAN:TSE1", "url": "https://www.google.com/finance/quote/HAN:TSE1"}, {"text": "DEU:6502", "url": "https://www.google.com/finance/quote/6502:DEU"}, {"text": "MUN:TSE1", "url": "https://www.google.com/finance/quote/MUN:TSE1"}, {"text": "FRA:TSE1", "url": "https://www.google.com/finance/quote/FRA:TSE1"}, {"text": "HAM:TSE1", "url": "https://www.google.com/finance/quote/HAM:TSE1"}, {"text": "DEU:TSE", "url": "https://www.google.com/finance/quote/DEU:TSE"}, {"text": "DUS:TSE1", "url": "https://www.google.com/finance/quote/DUS:TSE1"}, {"text": "FRA:TSE", "url": "https://www.google.com/finance/quote/FRA:TSE"}, {"text": "PKL:TOSBF", "url": "https://www.google.com/finance/quote/PKL:TOSBF"}, {"text": "PNK:TOSYY", "url": "https://www.google.com/finance/quote/PNK:TOSYY"}, {"text": "VIE:TSE1", "url": "https://www.google.com/finance/quote/TSE1:VIE"}, {"text": "BER:TSE1", "url": "https://www.google.com/finance/quote/BER:TSE1"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Speech synthesis", "field_count": 26}, {"field_name": "Robot", "field_count": 24}, {"field_name": "Artificial neural network", "field_count": 18}, {"field_name": "Segmentation", "field_count": 15}, {"field_name": "Cluster analysis", "field_count": 13}, {"field_name": "Word error rate", "field_count": 12}, {"field_name": "Feature (computer vision)", "field_count": 11}, {"field_name": "Deep learning", "field_count": 10}, {"field_name": "Convolutional neural network", "field_count": 10}, {"field_name": "Robotic arm", "field_count": 9}], "clusters": [{"cluster_id": 5507, "cluster_count": 46}, {"cluster_id": 2644, "cluster_count": 17}, {"cluster_id": 1422, "cluster_count": 14}, {"cluster_id": 6871, "cluster_count": 13}, {"cluster_id": 1821, "cluster_count": 8}, {"cluster_id": 13150, "cluster_count": 7}, {"cluster_id": 43348, "cluster_count": 6}, {"cluster_id": 484, "cluster_count": 6}, {"cluster_id": 3291, "cluster_count": 6}, {"cluster_id": 78285, "cluster_count": 6}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 416}, {"ref_CSET_id": 2075, "referenced_count": 409}, {"ref_CSET_id": 101, "referenced_count": 405}, {"ref_CSET_id": 87, "referenced_count": 97}, {"ref_CSET_id": 115, "referenced_count": 69}, {"ref_CSET_id": 786, "referenced_count": 65}, {"ref_CSET_id": 1784, "referenced_count": 63}, {"ref_CSET_id": 3131, "referenced_count": 48}, {"ref_CSET_id": 789, "referenced_count": 29}, {"ref_CSET_id": 27, "referenced_count": 25}], "tasks": [{"referent": "classification", "task_count": 88}, {"referent": "speech_synthesis", "task_count": 36}, {"referent": "speech_recognition", "task_count": 34}, {"referent": "segmentation", "task_count": 23}, {"referent": "robots", "task_count": 23}, {"referent": "system_identification", "task_count": 20}, {"referent": "image_registration", "task_count": 17}, {"referent": "autonomous_navigation", "task_count": 16}, {"referent": "steering_control", "task_count": 15}, {"referent": "tts", "task_count": 14}], "methods": [{"referent": "double_q_learning", "method_count": 46}, {"referent": "vqa_models", "method_count": 44}, {"referent": "recurrent_neural_networks", "method_count": 38}, {"referent": "auto_classifier", "method_count": 29}, {"referent": "convolutional_neural_networks", "method_count": 28}, {"referent": "q_learning", "method_count": 23}, {"referent": "clustering", "method_count": 22}, {"referent": "3d_representations", "method_count": 19}, {"referent": "gts", "method_count": 18}, {"referent": "cgnn", "method_count": 16}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [840, 801, 734, 687, 781, 608, 519, 401, 327, 213, 1], "total": 5912, "isTopResearch": false, "rank": 57, "sp500_rank": 51}, "ai_publications": {"counts": [52, 73, 45, 54, 57, 64, 58, 62, 43, 20, 0], "total": 528, "isTopResearch": false, "rank": 37, "sp500_rank": 29}, "ai_publications_growth": {"counts": [], "total": -25.745660553069303, "isTopResearch": false, "rank": 1373, "sp500_rank": 372}, "ai_pubs_top_conf": {"counts": [3, 4, 7, 6, 5, 5, 4, 2, 2, 1, 0], "total": 39, "isTopResearch": false, "rank": 50, "sp500_rank": 26}, "citation_counts": {"counts": [308, 382, 504, 656, 698, 1046, 1270, 1524, 1589, 1000, 22], "total": 8999, "isTopResearch": false, "rank": 51, "sp500_rank": 33}, "cv_pubs": {"counts": [18, 25, 14, 18, 21, 12, 15, 11, 12, 5, 0], "total": 151, "isTopResearch": true, "rank": 36, "sp500_rank": 27}, "nlp_pubs": {"counts": [8, 15, 6, 6, 10, 13, 11, 8, 7, 2, 0], "total": 86, "isTopResearch": true, "rank": 27, "sp500_rank": 21}, "robotics_pubs": {"counts": [9, 6, 9, 7, 8, 10, 8, 24, 9, 3, 0], "total": 93, "isTopResearch": true, "rank": 32, "sp500_rank": 30}, "citations_per_article": {"counts": [5.923076923076923, 5.232876712328767, 11.2, 12.148148148148149, 12.24561403508772, 16.34375, 21.896551724137932, 24.580645161290324, 36.95348837209303, 50.0, 0], "total": 17.043560606060606, "isTopResearch": false, "rank": 363, "sp500_rank": 118}}, "patents": {"ai_patents": {"counts": [15, 23, 26, 45, 84, 92, 115, 113, 48, 0, 0], "total": 561, "table": null, "rank": 52, "sp500_rank": 42}, "ai_patents_growth": {"counts": [], "total": 10.928226363008973, "table": null, "rank": 329, "sp500_rank": 154}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [150, 230, 260, 450, 840, 920, 1150, 1130, 480, 0, 0], "total": 5610, "table": null, "rank": 52, "sp500_rank": 42}, "Physical_Sciences_and_Engineering": {"counts": [0, 2, 2, 0, 1, 2, 1, 1, 0, 0, 0], "total": 9, "table": null, "rank": 56, "sp500_rank": 47}, "Life_Sciences": {"counts": [2, 5, 0, 2, 2, 2, 5, 3, 0, 0, 0], "total": 21, "table": null, "rank": 52, "sp500_rank": 36}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 0, 2, 1, 2, 5, 1, 0, 0], "total": 12, "table": null, "rank": 80, "sp500_rank": 59}, "Transportation": {"counts": [0, 2, 1, 13, 5, 5, 7, 3, 2, 0, 0], "total": 38, "table": "industry", "rank": 54, "sp500_rank": 42}, "Industrial_and_Manufacturing": {"counts": [0, 5, 0, 4, 7, 3, 6, 7, 3, 0, 0], "total": 35, "table": "industry", "rank": 20, "sp500_rank": 18}, "Education": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 29, "sp500_rank": 25}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [3, 7, 7, 11, 34, 37, 37, 40, 19, 0, 0], "total": 195, "table": "industry", "rank": 44, "sp500_rank": 34}, "Banking_and_Finance": {"counts": [0, 0, 1, 1, 0, 1, 2, 1, 1, 0, 0], "total": 7, "table": null, "rank": 88, "sp500_rank": 64}, "Telecommunications": {"counts": [2, 3, 1, 3, 14, 14, 12, 16, 5, 0, 0], "total": 70, "table": "industry", "rank": 57, "sp500_rank": 46}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0], "total": 4, "table": null, "rank": 40, "sp500_rank": 28}, "Business": {"counts": [0, 1, 1, 3, 7, 10, 11, 7, 5, 0, 0], "total": 45, "table": "industry", "rank": 58, "sp500_rank": 45}, "Energy_Management": {"counts": [1, 3, 2, 0, 1, 1, 2, 3, 2, 0, 0], "total": 15, "table": null, "rank": 37, "sp500_rank": 34}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 1, 0, 2, 1, 3, 2, 0, 1, 0, 0], "total": 10, "table": null, "rank": 13, "sp500_rank": 8}, "Language_Processing": {"counts": [1, 0, 2, 3, 3, 0, 1, 0, 0, 0, 0], "total": 10, "table": null, "rank": 42, "sp500_rank": 31}, "Speech_Processing": {"counts": [2, 1, 6, 12, 12, 9, 7, 4, 2, 0, 0], "total": 55, "table": "application", "rank": 17, "sp500_rank": 13}, "Knowledge_Representation": {"counts": [1, 0, 1, 3, 4, 7, 5, 2, 1, 0, 0], "total": 24, "table": null, "rank": 45, "sp500_rank": 35}, "Planning_and_Scheduling": {"counts": [0, 1, 1, 0, 6, 8, 6, 5, 2, 0, 0], "total": 29, "table": "application", "rank": 58, "sp500_rank": 47}, "Control": {"counts": [3, 10, 2, 16, 14, 15, 17, 11, 2, 0, 0], "total": 90, "table": "application", "rank": 35, "sp500_rank": 28}, "Distributed_AI": {"counts": [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 23, "sp500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [7, 5, 8, 13, 21, 35, 38, 41, 17, 0, 0], "total": 185, "table": "application", "rank": 46, "sp500_rank": 35}, "Analytics_and_Algorithms": {"counts": [1, 1, 0, 0, 1, 3, 8, 4, 3, 0, 0], "total": 21, "table": null, "rank": 62, "sp500_rank": 48}, "Measuring_and_Testing": {"counts": [2, 2, 0, 5, 4, 8, 10, 5, 3, 0, 0], "total": 39, "table": "application", "rank": 52, "sp500_rank": 40}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 501, "rank": 493, "sp500_rank": 234}, "ai_jobs": {"counts": null, "total": 9, "rank": 880, "sp500_rank": 304}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Consumer Goods Conglomerates"}, {"cset_id": 2266, "country": "United States", "website": "https://www.comerica.com/", "crunchbase": {"text": "4fae4543-f47c-f737-3ff4-c6f0e6fb2022", "url": "https://www.crunchbase.com/organization/comerica-incorporated"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/comerica-bank"], "stage": "Mature", "name": "Comerica Inc.", "patent_name": "comerica inc.", "continent": "North America", "local_logo": "comerica_inc.png", "aliases": "Comerica; Comerica Bank; Comerica Incorporated", "permid_links": [{"text": 4295903746, "url": "https://permid.org/1-4295903746"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CMA", "url": "https://www.google.com/finance/quote/cma:nyse"}], "market_full": [{"text": "ASE:CMA", "url": "https://www.google.com/finance/quote/ase:cma"}, {"text": "MCX:CMA-RM", "url": "https://www.google.com/finance/quote/cma-rm:mcx"}, {"text": "DUS:CA3", "url": "https://www.google.com/finance/quote/ca3:dus"}, {"text": "LSE:0I1P", "url": "https://www.google.com/finance/quote/0i1p:lse"}, {"text": "MUN:CA3", "url": "https://www.google.com/finance/quote/ca3:mun"}, {"text": "NYSE:CMA", "url": "https://www.google.com/finance/quote/cma:nyse"}, {"text": "STU:CA3", "url": "https://www.google.com/finance/quote/ca3:stu"}, {"text": "FRA:CA3", "url": "https://www.google.com/finance/quote/ca3:fra"}, {"text": "NYQ:CMA", "url": "https://www.google.com/finance/quote/cma:nyq"}, {"text": "SAO:C1MA34", "url": "https://www.google.com/finance/quote/c1ma34:sao"}, {"text": "BRN:CA3", "url": "https://www.google.com/finance/quote/brn:ca3"}, {"text": "DEU:CMA", "url": "https://www.google.com/finance/quote/CMA:DEU"}], "crunchbase_description": "Comerica Incorporated is a Texas-based financial services corporation that specializes in business & retail banking, & wealth management.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 15496, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "credit_card_fraud_detection", "task_count": 1}, {"referent": "q_learning", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "weight_tying", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 1, 0, 2, 2, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030, "fortune500_rank": 349}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0], "total": 4, "isTopResearch": false, "rank": 833, "fortune500_rank": 228}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735, "fortune500_rank": 206}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 498, "rank": 494, "fortune500_rank": 265}, "ai_jobs": {"counts": null, "total": 50, "rank": 483, "fortune500_rank": 256}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Comerica Incorporated is a financial services company headquartered in Dallas, Texas. It has retail banking operations in Texas, Michigan, Arizona, California and Florida, with select business operations in several other U.S. states, as well as in Canada and Mexico.", "wikipedia_link": "https://en.wikipedia.org/wiki/Comerica", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2928, "country": "United Kingdom", "website": "https://www.qinetiq.com/", "crunchbase": {"text": "cbc44e3a-e2f0-e9f2-4102-9971256a14ed", "url": "https://www.crunchbase.com/organization/qinetiq"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/qinetiq_2"], "stage": "Mature", "name": "QinetiQ Group PLC", "patent_name": "qinetiq group plc", "continent": "Europe", "local_logo": "qinetiq_group_plc.png", "aliases": "Qinetiq", "permid_links": [{"text": 4295897710, "url": "https://permid.org/1-4295897710"}], "parent_info": "The Carlyle Group (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:QQ", "url": "https://www.google.com/finance/quote/lse:qq"}], "crunchbase_description": "QinetiQ is an international provider of technology-based services and solutions to the defense, security and related markets.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Camouflage", "field_count": 5}, {"field_name": "Inertial measurement unit", "field_count": 3}, {"field_name": "Sensor fusion", "field_count": 2}, {"field_name": "Bayesian probability", "field_count": 2}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Image sensor", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}, {"field_name": "Autonomous system (mathematics)", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Mixture model", "field_count": 1}], "clusters": [{"cluster_id": 89575, "cluster_count": 4}, {"cluster_id": 8724, "cluster_count": 3}, {"cluster_id": 33143, "cluster_count": 3}, {"cluster_id": 10301, "cluster_count": 2}, {"cluster_id": 69045, "cluster_count": 2}, {"cluster_id": 2079, "cluster_count": 1}, {"cluster_id": 34395, "cluster_count": 1}, {"cluster_id": 34261, "cluster_count": 1}, {"cluster_id": 69074, "cluster_count": 1}, {"cluster_id": 13534, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2928, "referenced_count": 15}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 27, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 456, "referenced_count": 1}, {"ref_CSET_id": 2601, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 11}, {"referent": "target_recognition", "task_count": 6}, {"referent": "vehicle_detection", "task_count": 6}, {"referent": "unmanned_aerial_vehicles", "task_count": 5}, {"referent": "steering_control", "task_count": 4}, {"referent": "video_surveillance", "task_count": 3}, {"referent": "camouflage_segmentation", "task_count": 3}, {"referent": "developmental_learning", "task_count": 3}, {"referent": "motion_planning", "task_count": 3}, {"referent": "sensor_modeling", "task_count": 3}], "methods": [{"referent": "glow", "method_count": 2}, {"referent": "dnas", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "super_resolution_models", "method_count": 2}, {"referent": "image_scaling_strategies", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "impala", "method_count": 2}, {"referent": "orb_slam2", "method_count": 2}, {"referent": "clustering", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [85, 79, 35, 50, 35, 41, 28, 28, 33, 10, 0], "total": 424, "isTopResearch": false, "rank": 298}, "ai_publications": {"counts": [7, 1, 2, 6, 3, 4, 3, 2, 2, 0, 0], "total": 30, "isTopResearch": false, "rank": 240}, "ai_publications_growth": {"counts": [], "total": -44.44444444444445, "isTopResearch": false, "rank": 1432}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [44, 58, 78, 66, 91, 69, 93, 94, 93, 47, 1], "total": 734, "isTopResearch": false, "rank": 221}, "cv_pubs": {"counts": [1, 0, 2, 1, 0, 2, 0, 1, 1, 0, 0], "total": 8, "isTopResearch": true, "rank": 229}, "nlp_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [1, 0, 0, 0, 3, 2, 1, 0, 1, 0, 0], "total": 8, "isTopResearch": true, "rank": 135}, "citations_per_article": {"counts": [6.285714285714286, 58.0, 39.0, 11.0, 30.333333333333332, 17.25, 31.0, 47.0, 46.5, 0, 0], "total": 24.466666666666665, "isTopResearch": false, "rank": 248}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 497, "rank": 495}, "ai_jobs": {"counts": null, "total": 28, "rank": 616}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Qinetiq is a British multinational defence technology company headquartered in Farnborough, Hampshire. It is the world's 52nd-largest defence contractor measured by 2011 defence revenues, and the sixth-largest based in the UK.", "wikipedia_link": "https://en.wikipedia.org/wiki/Qinetiq", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2092, "country": "Taiwan", "website": "https://www.compal.com/", "crunchbase": {"text": " c48eab6b-eb8b-e482-ba2f-b1865e7ad305 ", "url": " https://www.crunchbase.com/organization/compal-electronics "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/compal"], "stage": "Mature", "name": "Compal Electronics", "patent_name": "Compal Electronics", "continent": "Asia", "local_logo": null, "aliases": "Compal Electronics; Compal Electronics, Inc; \u4ec1\u5b9d\u7535\u8111; \u4ec1\u5bf6\u96fb\u8166\u5de5\u696d\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295891343, "url": "https://permid.org/1-4295891343"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "TAI:2324", "url": "https://www.google.com/finance/quote/2324:TAI"}, {"text": "LSE:CEIA", "url": "https://www.google.com/finance/quote/CEIA:LSE"}, {"text": "LSE:CEIR", "url": "https://www.google.com/finance/quote/CEIR:LSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 2}, {"field_name": "Region of interest", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Ground truth", "field_count": 1}, {"field_name": "Data curation", "field_count": 1}], "clusters": [{"cluster_id": 29813, "cluster_count": 2}, {"cluster_id": 31316, "cluster_count": 2}, {"cluster_id": 1821, "cluster_count": 1}, {"cluster_id": 4634, "cluster_count": 1}, {"cluster_id": 49403, "cluster_count": 1}, {"cluster_id": 50740, "cluster_count": 1}, {"cluster_id": 24706, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 11}, {"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 6, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 125, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 27, "referenced_count": 1}, {"ref_CSET_id": 219, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "steering_control", "task_count": 2}, {"referent": "future_prediction", "task_count": 2}, {"referent": "human_activity_recognition", "task_count": 1}, {"referent": "model_selection", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "face_recognition", "task_count": 1}, {"referent": "image_manipulation", "task_count": 1}, {"referent": "image_recognition", "task_count": 1}, {"referent": "adversarial", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 2}, {"referent": "cgnn", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 2}, {"referent": "hit_detector", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "topic_embeddings", "method_count": 1}, {"referent": "polya_gamma_augmentation", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "schnet", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1, 2, 1, 2, 0, 0, 7, 7, 5, 2, 0], "total": 27, "isTopResearch": false, "rank": 736, "sp500_rank": 359}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 3, 4, 2, 0, 0], "total": 9, "isTopResearch": false, "rank": 437, "sp500_rank": 224}, "ai_publications_growth": {"counts": [], "total": -38.888888888888886, "isTopResearch": false, "rank": 1422, "sp500_rank": 393}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 2, 8, 15, 8, 0], "total": 33, "isTopResearch": false, "rank": 643, "sp500_rank": 274}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 2, 0, 0], "total": 6, "isTopResearch": true, "rank": 267, "sp500_rank": 137}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.6666666666666666, 2.0, 7.5, 0, 0], "total": 3.6666666666666665, "isTopResearch": false, "rank": 761, "sp500_rank": 302}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 6, 2, 0, 0, 0], "total": 8, "table": null, "rank": 443, "sp500_rank": 203}, "ai_patents_growth": {"counts": [], "total": -66.66666666666667, "table": null, "rank": 1550, "sp500_rank": 456}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 60, 20, 0, 0, 0], "total": 80, "table": null, "rank": 443, "sp500_rank": 203}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0], "total": 5, "table": "industry", "rank": 336, "sp500_rank": 166}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 160, "sp500_rank": 91}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "sp500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 495, "rank": 496, "sp500_rank": 235}, "ai_jobs": {"counts": null, "total": 7, "rank": 944, "sp500_rank": 319}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 2536, "country": "United States", "website": "https://www.waters.com/nextgen/us/en.html", "crunchbase": {"text": "e3d28b20-7d8d-a4a4-5c52-c11d32aa2254", "url": "https://www.crunchbase.com/organization/waters-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/waters"], "stage": "Mature", "name": "Waters Corporation", "patent_name": "waters corporation", "continent": "North America", "local_logo": "waters_corporation.png", "aliases": "Waters; Waters Corp; Waters Division", "permid_links": [{"text": 4295905309, "url": "https://permid.org/1-4295905309"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WAT", "url": "https://www.google.com/finance/quote/nyse:wat"}], "market_full": [{"text": "MCX:WAT-RM", "url": "https://www.google.com/finance/quote/mcx:wat-rm"}, {"text": "HAN:WAZ", "url": "https://www.google.com/finance/quote/han:waz"}, {"text": "NYSE:WAT", "url": "https://www.google.com/finance/quote/nyse:wat"}, {"text": "SAO:WATC34", "url": "https://www.google.com/finance/quote/sao:watc34"}, {"text": "DUS:WAZ", "url": "https://www.google.com/finance/quote/dus:waz"}, {"text": "BRN:WAZ", "url": "https://www.google.com/finance/quote/brn:waz"}, {"text": "BER:WAZ", "url": "https://www.google.com/finance/quote/ber:waz"}, {"text": "DEU:WAT", "url": "https://www.google.com/finance/quote/deu:wat"}, {"text": "MEX:WAT", "url": "https://www.google.com/finance/quote/mex:wat"}, {"text": "MUN:WAZ", "url": "https://www.google.com/finance/quote/mun:waz"}, {"text": "NYQ:WAT", "url": "https://www.google.com/finance/quote/nyq:wat"}, {"text": "STU:WAZ", "url": "https://www.google.com/finance/quote/stu:waz"}, {"text": "LSE:0LTI", "url": "https://www.google.com/finance/quote/0lti:lse"}, {"text": "ASE:WAT", "url": "https://www.google.com/finance/quote/ase:wat"}, {"text": "FRA:WAZ", "url": "https://www.google.com/finance/quote/fra:waz"}], "crunchbase_description": "Waters Division creates business advantages for laboratory-dependent organizations by delivering ultra performance liquid chromatography.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 71042, "cluster_count": 1}, {"cluster_id": 6673, "cluster_count": 1}, {"cluster_id": 298, "cluster_count": 1}, {"cluster_id": 53537, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "speaker_separation", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "cancer_metastasis_detection", "task_count": 1}, {"referent": "object_discovery", "task_count": 1}, {"referent": "oral_cancer_classification", "task_count": 1}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 1}, {"referent": "quantization", "task_count": 1}, {"referent": "fraud_detection", "task_count": 1}], "methods": [{"referent": "use", "method_count": 1}, {"referent": "hit_detector", "method_count": 1}, {"referent": "concatenation_affinity", "method_count": 1}, {"referent": "gaussian_affinity", "method_count": 1}, {"referent": "impala", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [89, 113, 151, 125, 137, 122, 143, 118, 121, 123, 0], "total": 1242, "isTopResearch": false, "rank": 169, "fortune500_rank": 64}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 1, 0, 1, 0, 1, 0], "total": 4, "isTopResearch": false, "rank": 573, "fortune500_rank": 157}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 2, 8, 7, 10, 25, 28, 50, 33, 1], "total": 164, "isTopResearch": false, "rank": 422, "fortune500_rank": 122}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 2.0, 0, 0, 10.0, 0, 28.0, 0, 33.0, 0], "total": 41.0, "isTopResearch": false, "rank": 125, "fortune500_rank": 34}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 1, 2, 2, 1, 0, 0], "total": 7, "table": null, "rank": 464, "fortune500_rank": 148}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198, "fortune500_rank": 56}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 10, 20, 20, 10, 0, 0], "total": 70, "table": null, "rank": 464, "fortune500_rank": 148}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 88, "fortune500_rank": 28}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0], "total": 3, "table": "industry", "rank": 158, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 0, 1, 1, 2, 1, 0, 0], "total": 6, "table": "application", "rank": 158, "fortune500_rank": 51}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 486, "rank": 497, "fortune500_rank": 266}, "ai_jobs": {"counts": null, "total": 18, "rank": 716, "fortune500_rank": 362}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Waters Corporation is a publicly traded Analytical Laboratory instrument and software company headquartered in Milford, Massachusetts. The company employs more than 7,500 people, with manufacturing facilities located in Milford, Taunton, Massachusetts; Wexford, Ireland; Wilmslow, around 13 miles south of Manchester, England; and contract manufacturing in Singapore. Waters has Sites in Frankfurt, in Germany and in Japan.", "wikipedia_link": "https://en.wikipedia.org/wiki/Waters_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1894, "country": "United States", "website": "https://www.adm.com/", "crunchbase": {"text": " 9885035a-91d1-5372-4eeb-31e13d62b765", "url": " https://www.crunchbase.com/organization/archer-daniels-midland-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/adm"], "stage": "Mature", "name": "Archer Daniels Midland", "patent_name": "Archer Daniels Midland", "continent": "North America", "local_logo": null, "aliases": "Archer Daniels Midland; Archer Daniels Midland Co", "permid_links": [{"text": 4295903463, "url": "https://permid.org/1-4295903463"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ADM", "url": "https://www.google.com/finance/quote/ADM:NYSE"}], "market_full": [{"text": "FRA:ADM", "url": "https://www.google.com/finance/quote/ADM:FRA"}, {"text": "MCX:ADM-RM", "url": "https://www.google.com/finance/quote/ADM-RM:MCX"}, {"text": "MEX:ADM", "url": "https://www.google.com/finance/quote/ADM:MEX"}, {"text": "GER:ADMX", "url": "https://www.google.com/finance/quote/ADMX:GER"}, {"text": "BRN:ADM", "url": "https://www.google.com/finance/quote/ADM:BRN"}, {"text": "DUS:ADM", "url": "https://www.google.com/finance/quote/ADM:DUS"}, {"text": "SAO:A1DM34", "url": "https://www.google.com/finance/quote/A1DM34:SAO"}, {"text": "NYQ:ADM", "url": "https://www.google.com/finance/quote/ADM:NYQ"}, {"text": "MUN:ADM", "url": "https://www.google.com/finance/quote/ADM:MUN"}, {"text": "LSE:0JQQ", "url": "https://www.google.com/finance/quote/0JQQ:LSE"}, {"text": "NYSE:ADM", "url": "https://www.google.com/finance/quote/ADM:NYSE"}, {"text": "BER:ADM", "url": "https://www.google.com/finance/quote/ADM:BER"}, {"text": "HAM:ADM", "url": "https://www.google.com/finance/quote/ADM:HAM"}, {"text": "STU:ADM", "url": "https://www.google.com/finance/quote/ADM:STU"}, {"text": "SWX:ADM", "url": "https://www.google.com/finance/quote/ADM:SWX"}, {"text": "ASE:ADM", "url": "https://www.google.com/finance/quote/ADM:ASE"}, {"text": "VIE:ARDA", "url": "https://www.google.com/finance/quote/ARDA:VIE"}, {"text": "DEU:ADM", "url": "https://www.google.com/finance/quote/ADM:DEU"}, {"text": "HAN:ADM", "url": "https://www.google.com/finance/quote/ADM:HAN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [12, 16, 23, 29, 18, 36, 26, 28, 33, 24, 0], "total": 245, "isTopResearch": false, "rank": 384, "sp500_rank": 242, "fortune500_rank": 147}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 482, "rank": 498, "sp500_rank": 236, "fortune500_rank": 267}, "ai_jobs": {"counts": null, "total": 82, "rank": 379, "sp500_rank": 198, "fortune500_rank": 200}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1536, "country": "United States", "website": "https://www.biogen.com/en_us/home.html", "crunchbase": {"text": "aaa4a215-5105-818e-55f9-b956a80f4dac", "url": "https://www.crunchbase.com/organization/biogen-idec"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/biogen-"], "stage": "Mature", "name": "Biogen", "patent_name": "biogen", "continent": "North America", "local_logo": "biogen.png", "aliases": "Biogen Inc", "permid_links": [{"text": 4295906748, "url": "https://permid.org/1-4295906748"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:BIIB", "url": "https://www.google.com/finance/quote/biib:nasdaq"}], "market_full": [{"text": "DUS:IDP", "url": "https://www.google.com/finance/quote/dus:idp"}, {"text": "SWX:BIIB", "url": "https://www.google.com/finance/quote/biib:swx"}, {"text": "BRN:IDP", "url": "https://www.google.com/finance/quote/brn:idp"}, {"text": "HAN:IDP", "url": "https://www.google.com/finance/quote/han:idp"}, {"text": "MCX:BIIB-RM", "url": "https://www.google.com/finance/quote/biib-rm:mcx"}, {"text": "HAM:IDP", "url": "https://www.google.com/finance/quote/ham:idp"}, {"text": "LSE:0R1B", "url": "https://www.google.com/finance/quote/0r1b:lse"}, {"text": "SAO:BIIB34", "url": "https://www.google.com/finance/quote/biib34:sao"}, {"text": "GER:IDPX", "url": "https://www.google.com/finance/quote/ger:idpx"}, {"text": "DEU:BIIB", "url": "https://www.google.com/finance/quote/biib:deu"}, {"text": "BER:IDP", "url": "https://www.google.com/finance/quote/ber:idp"}, {"text": "FRA:IDP", "url": "https://www.google.com/finance/quote/fra:idp"}, {"text": "BUE:BIIB3", "url": "https://www.google.com/finance/quote/biib3:bue"}, {"text": "NASDAQ:BIIB", "url": "https://www.google.com/finance/quote/biib:nasdaq"}, {"text": "MUN:IDP", "url": "https://www.google.com/finance/quote/idp:mun"}, {"text": "SGO:BIIB", "url": "https://www.google.com/finance/quote/biib:sgo"}, {"text": "MEX:BIIB*", "url": "https://www.google.com/finance/quote/biib*:mex"}, {"text": "STU:IDP", "url": "https://www.google.com/finance/quote/idp:stu"}, {"text": "VIE:BIIB", "url": "https://www.google.com/finance/quote/biib:vie"}, {"text": "SGO:BIIBCL", "url": "https://www.google.com/finance/quote/biibcl:sgo"}], "crunchbase_description": "Biogen Idec is an American biotechnology company that provides therapeutics for neurological, autoimmune, and rare diseases.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Bayesian probability", "field_count": 1}, {"field_name": "Fingerprint (computing)", "field_count": 1}, {"field_name": "Lasso (statistics)", "field_count": 1}, {"field_name": "Transfer of learning", "field_count": 1}, {"field_name": "Data integration", "field_count": 1}, {"field_name": "Hidden Markov model", "field_count": 1}], "clusters": [{"cluster_id": 298, "cluster_count": 5}, {"cluster_id": 27242, "cluster_count": 5}, {"cluster_id": 2825, "cluster_count": 2}, {"cluster_id": 23000, "cluster_count": 2}, {"cluster_id": 1851, "cluster_count": 2}, {"cluster_id": 47924, "cluster_count": 2}, {"cluster_id": 2265, "cluster_count": 2}, {"cluster_id": 3990, "cluster_count": 1}, {"cluster_id": 63151, "cluster_count": 1}, {"cluster_id": 5643, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 434, "referenced_count": 10}, {"ref_CSET_id": 1536, "referenced_count": 6}, {"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 341, "referenced_count": 4}, {"ref_CSET_id": 989, "referenced_count": 3}, {"ref_CSET_id": 785, "referenced_count": 2}, {"ref_CSET_id": 1633, "referenced_count": 2}, {"ref_CSET_id": 201, "referenced_count": 2}, {"ref_CSET_id": 789, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}], "tasks": [{"referent": "disease_detection", "task_count": 9}, {"referent": "als", "task_count": 7}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 6}, {"referent": "parkinson_'s_disease", "task_count": 5}, {"referent": "developmental_learning", "task_count": 4}, {"referent": "classification", "task_count": 4}, {"referent": "adl", "task_count": 4}, {"referent": "image_analysis", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "smac", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 4}, {"referent": "sm3", "method_count": 3}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "vqa_models", "method_count": 3}, {"referent": "nt_xent", "method_count": 2}, {"referent": "mckernel", "method_count": 2}, {"referent": "adagrad", "method_count": 2}, {"referent": "mim", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "ga", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [600, 482, 660, 653, 590, 538, 556, 579, 510, 433, 1], "total": 5602, "isTopResearch": false, "rank": 59, "fortune500_rank": 20}, "ai_publications": {"counts": [2, 2, 5, 5, 5, 6, 10, 6, 14, 4, 0], "total": 59, "isTopResearch": false, "rank": 163, "fortune500_rank": 53}, "ai_publications_growth": {"counts": [], "total": 7.301587301587304, "isTopResearch": false, "rank": 170, "fortune500_rank": 45}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [40, 54, 103, 130, 179, 376, 1057, 1435, 1750, 1690, 44], "total": 6858, "isTopResearch": false, "rank": 65, "fortune500_rank": 23}, "cv_pubs": {"counts": [0, 0, 1, 0, 1, 0, 0, 0, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 214, "fortune500_rank": 57}, "citations_per_article": {"counts": [20.0, 27.0, 20.6, 26.0, 35.8, 62.666666666666664, 105.7, 239.16666666666666, 125.0, 422.5, 0], "total": 116.23728813559322, "isTopResearch": false, "rank": 26, "fortune500_rank": 5}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 479, "rank": 499, "fortune500_rank": 268}, "ai_jobs": {"counts": null, "total": 123, "rank": 305, "fortune500_rank": 166}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Biogen Inc. is an American multinational biotechnology company based in Cambridge, Massachusetts, specializing in the discovery, development, and delivery of therapies for the treatment of neurological diseases to patients worldwide.", "wikipedia_link": "https://en.wikipedia.org/wiki/Biogen", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2018, "country": "United States", "website": "https://www.tysonfoods.com/", "crunchbase": {"text": " 5db38c5c-f8ec-d83a-9557-fcedb3d0d263", "url": " https://www.crunchbase.com/organization/tyson-food"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tyson-foods"], "stage": "Mature", "name": "Tyson Foods", "patent_name": "Tyson Foods", "continent": "North America", "local_logo": null, "aliases": "Tyson Foods; Tyson Foods, Inc", "permid_links": [{"text": 4295905141, "url": "https://permid.org/1-4295905141"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TSN", "url": "https://www.google.com/finance/quote/NYSE:TSN"}], "market_full": [{"text": "SAO:TSNF34", "url": "https://www.google.com/finance/quote/SAO:TSNF34"}, {"text": "VIE:TSN", "url": "https://www.google.com/finance/quote/TSN:VIE"}, {"text": "NYQ:TSN", "url": "https://www.google.com/finance/quote/NYQ:TSN"}, {"text": "BER:TF7A", "url": "https://www.google.com/finance/quote/BER:TF7A"}, {"text": "FRA:TF7A", "url": "https://www.google.com/finance/quote/FRA:TF7A"}, {"text": "NYSE:TSN", "url": "https://www.google.com/finance/quote/NYSE:TSN"}, {"text": "MUN:TF7A", "url": "https://www.google.com/finance/quote/MUN:TF7A"}, {"text": "MEX:TSN", "url": "https://www.google.com/finance/quote/MEX:TSN"}, {"text": "LSE:0LHR", "url": "https://www.google.com/finance/quote/0LHR:LSE"}, {"text": "STU:TF7A", "url": "https://www.google.com/finance/quote/STU:TF7A"}, {"text": "DUS:TF7A", "url": "https://www.google.com/finance/quote/DUS:TF7A"}, {"text": "DEU:TSNA", "url": "https://www.google.com/finance/quote/DEU:TSNa"}, {"text": "GER:TSNX,A", "url": "https://www.google.com/finance/quote/GER:TSNX,A"}, {"text": "BRN:TF7A", "url": "https://www.google.com/finance/quote/BRN:TF7A"}, {"text": "MCX:TSN-RM", "url": "https://www.google.com/finance/quote/MCX:TSN-RM"}, {"text": "ASE:TSN", "url": "https://www.google.com/finance/quote/ASE:TSN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [{"cluster_id": 1648, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [], "methods": [{"referent": "logistic_regression", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "cgnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [8, 13, 11, 17, 9, 13, 26, 26, 20, 18, 2], "total": 163, "isTopResearch": false, "rank": 440, "sp500_rank": 263, "fortune500_rank": 171}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 901, "sp500_rank": 355, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 1.0, 0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "sp500_rank": 345, "fortune500_rank": 237}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 478, "rank": 500, "sp500_rank": 237, "fortune500_rank": 269}, "ai_jobs": {"counts": null, "total": 70, "rank": 409, "sp500_rank": 210, "fortune500_rank": 217}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages"}, {"cset_id": 2527, "country": "United States", "website": "http://www.verisigninc.com/", "crunchbase": {"text": "57f25563-7693-bb4f-3cb4-bedecf93b13f", "url": "https://www.crunchbase.com/organization/verisign-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/verisign"], "stage": "Mature", "name": "Verisign Inc.", "patent_name": "verisign inc.", "continent": "North America", "local_logo": "verisign_inc.png", "aliases": "Verisign", "permid_links": [{"text": 4295908306, "url": "https://permid.org/1-4295908306"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:VRSN", "url": "https://www.google.com/finance/quote/nasdaq:vrsn"}], "market_full": [{"text": "HAN:VRS", "url": "https://www.google.com/finance/quote/han:vrs"}, {"text": "MUN:VRS", "url": "https://www.google.com/finance/quote/mun:vrs"}, {"text": "BRN:VRS", "url": "https://www.google.com/finance/quote/brn:vrs"}, {"text": "SAO:VRSN34", "url": "https://www.google.com/finance/quote/sao:vrsn34"}, {"text": "MCX:VRSN-RM", "url": "https://www.google.com/finance/quote/mcx:vrsn-rm"}, {"text": "STU:VRS", "url": "https://www.google.com/finance/quote/stu:vrs"}, {"text": "NASDAQ:VRSN", "url": "https://www.google.com/finance/quote/nasdaq:vrsn"}, {"text": "DUS:VRS", "url": "https://www.google.com/finance/quote/dus:vrs"}, {"text": "DEU:VRSN", "url": "https://www.google.com/finance/quote/deu:vrsn"}, {"text": "MEX:VRSN*", "url": "https://www.google.com/finance/quote/mex:vrsn*"}, {"text": "BUE:VRSN3", "url": "https://www.google.com/finance/quote/bue:vrsn3"}, {"text": "BER:VRS", "url": "https://www.google.com/finance/quote/ber:vrs"}, {"text": "HAM:VRS", "url": "https://www.google.com/finance/quote/ham:vrs"}, {"text": "LSE:0LOZ", "url": "https://www.google.com/finance/quote/0loz:lse"}, {"text": "FRA:VRS", "url": "https://www.google.com/finance/quote/fra:vrs"}, {"text": "GER:VRSX", "url": "https://www.google.com/finance/quote/ger:vrsx"}], "crunchbase_description": "Verisign operates as a global provider of domain name registry services and internet infrastructure.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Analytics", "field_count": 1}], "clusters": [{"cluster_id": 3064, "cluster_count": 8}, {"cluster_id": 23378, "cluster_count": 2}, {"cluster_id": 37786, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2527, "referenced_count": 11}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "malware_classification", "task_count": 6}, {"referent": "behavioral_malware_classification", "task_count": 3}, {"referent": "neural_rendering", "task_count": 2}, {"referent": "unsupervised_clustering", "task_count": 2}, {"referent": "language_identification", "task_count": 2}, {"referent": "motion_planning", "task_count": 1}, {"referent": "activity_detection", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "computational_manga", "task_count": 1}], "methods": [{"referent": "self_supervised_learning", "method_count": 3}, {"referent": "auto_classifier", "method_count": 3}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "clustering", "method_count": 2}, {"referent": "automl", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "machine_translation_models", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "adam", "method_count": 2}, {"referent": "nt_xent", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [19, 19, 14, 0, 4, 0, 5, 1, 1, 0, 0], "total": 63, "isTopResearch": false, "rank": 585, "fortune500_rank": 217}, "ai_publications": {"counts": [3, 4, 3, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "isTopResearch": false, "rank": 417, "fortune500_rank": 121}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [3, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 140, "fortune500_rank": 42}, "citation_counts": {"counts": [2, 9, 22, 30, 32, 36, 44, 65, 48, 43, 4], "total": 335, "isTopResearch": false, "rank": 316, "fortune500_rank": 94}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0.6666666666666666, 2.25, 7.333333333333333, 0, 0, 0, 0, 0, 0, 0, 0], "total": 33.5, "isTopResearch": false, "rank": 163, "fortune500_rank": 47}}, "patents": {"ai_patents": {"counts": [1, 0, 2, 3, 1, 3, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 413, "fortune500_rank": 130}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198, "fortune500_rank": 56}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 20, 30, 10, 30, 0, 0, 0, 0, 0], "total": 100, "table": null, "rank": 413, "fortune500_rank": 130}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 3, 1, 3, 0, 0, 0, 0, 0], "total": 8, "table": "industry", "rank": 273, "fortune500_rank": 99}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [1, 0, 2, 3, 1, 2, 0, 0, 0, 0, 0], "total": 9, "table": "industry", "rank": 174, "fortune500_rank": 64}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 475, "rank": 501, "fortune500_rank": 270}, "ai_jobs": {"counts": null, "total": 14, "rank": 775, "fortune500_rank": 384}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Verisign Inc. is an American company based in Reston, Virginia, United States that operates a diverse array of network infrastructure, including two of the Internet's thirteen root nameservers, the authoritative registry for the .com, .net, and .name generic top-level domains and the .cc and .tv country-code top-level domains, and the back-end systems for the .jobs, .gov, and .edu top-level domains. Verisign also offers a range of security services, including managed DNS, distributed denial-of-service (DDoS) attack mitigation and cyber-threat reporting.", "wikipedia_link": "https://en.wikipedia.org/wiki/Verisign", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2363, "country": "United States", "website": "https://www.idexx.com/", "crunchbase": {"text": "57b6bd82-07d1-50be-da2a-45fabbe98fb8", "url": "https://www.crunchbase.com/organization/idexx-laboratories"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/idexx-laboratories"], "stage": "Mature", "name": "IDEXX Laboratories", "patent_name": "idexx laboratories", "continent": "North America", "local_logo": "idexx_laboratories.png", "aliases": "IDEXX Laboratories Inc; IDEXX Laboratories, Inc; Idexx", "permid_links": [{"text": 4295906763, "url": "https://permid.org/1-4295906763"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:IDXX", "url": "https://www.google.com/finance/quote/idxx:nasdaq"}], "market_full": [{"text": "MCX:IDXX-RM", "url": "https://www.google.com/finance/quote/idxx-rm:mcx"}, {"text": "STU:IX1", "url": "https://www.google.com/finance/quote/ix1:stu"}, {"text": "GER:IX", "url": "https://www.google.com/finance/quote/ger:ix"}, {"text": "HAN:IX1", "url": "https://www.google.com/finance/quote/han:ix1"}, {"text": "DUS:IX1", "url": "https://www.google.com/finance/quote/dus:ix1"}, {"text": "BRN:IX1", "url": "https://www.google.com/finance/quote/brn:ix1"}, {"text": "MUN:IX1", "url": "https://www.google.com/finance/quote/ix1:mun"}, {"text": "DEU:IDXX", "url": "https://www.google.com/finance/quote/deu:idxx"}, {"text": "BER:IX1", "url": "https://www.google.com/finance/quote/ber:ix1"}, {"text": "NASDAQ:IDXX", "url": "https://www.google.com/finance/quote/idxx:nasdaq"}, {"text": "FRA:IX1", "url": "https://www.google.com/finance/quote/fra:ix1"}, {"text": "MEX:IDXX", "url": "https://www.google.com/finance/quote/idxx:mex"}, {"text": "VIE:IDXX", "url": "https://www.google.com/finance/quote/idxx:vie"}], "crunchbase_description": "IDEXX Laboratories, Inc. is a leader in pet healthcare innovation, serving practicing veterinarians around the world with a broad range of", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Turtle (robot)", "field_count": 1}], "clusters": [{"cluster_id": 26094, "cluster_count": 3}, {"cluster_id": 16172, "cluster_count": 1}, {"cluster_id": 48601, "cluster_count": 1}, {"cluster_id": 24389, "cluster_count": 1}, {"cluster_id": 14942, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 1129, "referenced_count": 2}, {"ref_CSET_id": 1126, "referenced_count": 2}, {"ref_CSET_id": 2363, "referenced_count": 2}, {"ref_CSET_id": 949, "referenced_count": 1}], "tasks": [{"referent": "cancer", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "video_surveillance", "task_count": 1}, {"referent": "histopathological_segmentation", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "object_counting", "task_count": 1}, {"referent": "position_estimation", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "hit_detector", "method_count": 1}, {"referent": "snet", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [46, 75, 125, 69, 85, 86, 86, 107, 109, 88, 0], "total": 876, "isTopResearch": false, "rank": 203, "fortune500_rank": 73}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0], "total": 6, "isTopResearch": false, "rank": 514, "fortune500_rank": 139}, "ai_publications_growth": {"counts": [], "total": 16.666666666666668, "isTopResearch": false, "rank": 124, "fortune500_rank": 36}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 1, 2, 0, 1, 0, 3, 3, 24, 19, 3], "total": 57, "isTopResearch": false, "rank": 568, "fortune500_rank": 155}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 3.0, 1.5, 8.0, 0, 0], "total": 9.5, "isTopResearch": false, "rank": 558, "fortune500_rank": 163}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 467, "rank": 502, "fortune500_rank": 271}, "ai_jobs": {"counts": null, "total": 77, "rank": 388, "fortune500_rank": 205}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "IDEXX Laboratories, Inc. is an American multinational corporation engaged in the development, manufacture, and distribution of products and services for the companion animal veterinary, livestock and poultry, water testing, and dairy markets. Incorporated in 1983 and headquartered in Westbrook, Maine, and EMEA in Hoofddorp, Netherlands, IDEXX offers products to customers in over 175 countries around the world and employs approximately 9,200 people in full-and part-time positions (as of 7 February 2020). There are three main segments of the company: Companion Animal Group, Water, and Livestock, Poultry and Dairy (LPD). In addition, the company also manufactures and sells pet-side SNAP tests for a variety of animal health diagnostic uses.", "wikipedia_link": "https://en.wikipedia.org/wiki/Idexx_Laboratories", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2455, "country": "United States", "website": "http://www.perkinelmer.com/", "crunchbase": {"text": "9dbcdc8e-6a6e-dd40-51c3-26d7ec27f354", "url": "https://www.crunchbase.com/organization/perkinelmer"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/perkinelmer"], "stage": "Mature", "name": "Perkinelmer", "patent_name": "perkinelmer", "continent": "North America", "local_logo": "perkinelmer.png", "aliases": "Perkin-Elmer; Perkinelmer, Inc", "permid_links": [{"text": 4295912239, "url": "https://permid.org/1-4295912239"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PKI", "url": "https://www.google.com/finance/quote/nyse:pki"}], "market_full": [{"text": "DUS:PKN", "url": "https://www.google.com/finance/quote/dus:pkn"}, {"text": "LSE:0KHE", "url": "https://www.google.com/finance/quote/0khe:lse"}, {"text": "DEU:PKI", "url": "https://www.google.com/finance/quote/deu:pki"}, {"text": "STU:PKN", "url": "https://www.google.com/finance/quote/pkn:stu"}, {"text": "BRN:PKN", "url": "https://www.google.com/finance/quote/brn:pkn"}, {"text": "ASE:PKI", "url": "https://www.google.com/finance/quote/ase:pki"}, {"text": "MEX:PKI", "url": "https://www.google.com/finance/quote/mex:pki"}, {"text": "FRA:PKN", "url": "https://www.google.com/finance/quote/fra:pkn"}, {"text": "NYQ:PKI", "url": "https://www.google.com/finance/quote/nyq:pki"}, {"text": "BER:PKN", "url": "https://www.google.com/finance/quote/ber:pkn"}, {"text": "SAO:P1KI34", "url": "https://www.google.com/finance/quote/p1ki34:sao"}, {"text": "NYSE:PKI", "url": "https://www.google.com/finance/quote/nyse:pki"}, {"text": "MUN:PKN", "url": "https://www.google.com/finance/quote/mun:pkn"}, {"text": "MCX:PKI-RM", "url": "https://www.google.com/finance/quote/mcx:pki-rm"}], "crunchbase_description": "PerkinElmer is a global leader focused on improving the health and safety of people and the environment.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Multispectral image", "field_count": 4}, {"field_name": "Segmentation", "field_count": 3}, {"field_name": "False positive rate", "field_count": 2}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Structured light", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Fingerprint (computing)", "field_count": 1}, {"field_name": "Principal component analysis", "field_count": 1}, {"field_name": "Partial volume", "field_count": 1}], "clusters": [{"cluster_id": 54074, "cluster_count": 3}, {"cluster_id": 27310, "cluster_count": 2}, {"cluster_id": 16005, "cluster_count": 2}, {"cluster_id": 7606, "cluster_count": 2}, {"cluster_id": 6969, "cluster_count": 1}, {"cluster_id": 18908, "cluster_count": 1}, {"cluster_id": 42017, "cluster_count": 1}, {"cluster_id": 19178, "cluster_count": 1}, {"cluster_id": 25681, "cluster_count": 1}, {"cluster_id": 42980, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 15}, {"ref_CSET_id": 2455, "referenced_count": 10}, {"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 341, "referenced_count": 3}, {"ref_CSET_id": 1950, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 161, "referenced_count": 2}, {"ref_CSET_id": 734, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "image_analysis", "task_count": 6}, {"referent": "segmentation", "task_count": 4}, {"referent": "nuclear_segmentation", "task_count": 4}, {"referent": "cancer", "task_count": 3}, {"referent": "breast_cancer_detection", "task_count": 3}, {"referent": "cancer_detection", "task_count": 2}, {"referent": "image_restoration", "task_count": 2}, {"referent": "survival_analysis", "task_count": 2}, {"referent": "electron_microscopy", "task_count": 2}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "cdcc_net", "method_count": 3}, {"referent": "softplus", "method_count": 2}, {"referent": "mask_r_cnn", "method_count": 2}, {"referent": "deepwalk", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "sm3", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [139, 137, 138, 132, 126, 110, 135, 114, 123, 120, 0], "total": 1274, "isTopResearch": false, "rank": 166, "fortune500_rank": 63}, "ai_publications": {"counts": [3, 1, 2, 2, 3, 1, 3, 3, 5, 3, 0], "total": 26, "isTopResearch": false, "rank": 266, "fortune500_rank": 81}, "ai_publications_growth": {"counts": [], "total": 8.888888888888891, "isTopResearch": false, "rank": 160, "fortune500_rank": 43}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [4, 9, 24, 44, 72, 71, 99, 103, 167, 152, 7], "total": 752, "isTopResearch": false, "rank": 217, "fortune500_rank": 68}, "cv_pubs": {"counts": [3, 1, 0, 1, 1, 0, 1, 0, 3, 1, 0], "total": 11, "isTopResearch": true, "rank": 196, "fortune500_rank": 53}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [1.3333333333333333, 9.0, 12.0, 22.0, 24.0, 71.0, 33.0, 34.333333333333336, 33.4, 50.666666666666664, 0], "total": 28.923076923076923, "isTopResearch": false, "rank": 204, "fortune500_rank": 62}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0], "total": 4, "table": null, "rank": 565, "fortune500_rank": 176}, "ai_patents_growth": {"counts": [], "total": 25.0, "table": null, "rank": 287, "fortune500_rank": 88}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 20, 10, 0, 0, 0], "total": 40, "table": null, "rank": 565, "fortune500_rank": 176}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 467, "rank": 502, "fortune500_rank": 271}, "ai_jobs": {"counts": null, "total": 30, "rank": 597, "fortune500_rank": 309}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "PerkinElmer, Inc., previously styled Perkin-Elmer, is an American global corporation focused in the business areas of diagnostics, life science research, food, environmental and industrial testing. Its capabilities include detection, imaging, informatics, and service. PerkinElmer produces analytical instruments, genetic testing and diagnostic tools, medical imaging components, software, instruments, and consumables for multiple end markets.\nPerkinElmer is part of the S&P 500 Index and operates in 150 countries.", "wikipedia_link": "https://en.wikipedia.org/wiki/PerkinElmer", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3094, "country": "United States", "website": "https://www.viatris.com/", "crunchbase": {"text": " 1900cecb-5005-4b3c-875c-58067b22a464", "url": " https://www.crunchbase.com/organization/viatris-a464"}, "child_crunchbase": [{"text": "b358eb18-2dfd-0124-348b-692d8b89a1d7", "url": "https://www.crunchbase.com/organization/mylan-inc"}, {"text": "ced9ff54-b3c8-5880-8f96-aabef06a4e48", "url": "https://www.crunchbase.com/organization/the-upjohn-company"}], "linkedin": ["https://www.linkedin.com/company/viatris", "https://www.linkedin.com/company/mylan"], "stage": "Mature", "name": "Viatris", "patent_name": "Viatris", "continent": "North America", "local_logo": null, "aliases": null, "permid_links": [{"text": 4297183581, "url": "https://permid.org/1-4297183581"}, {"text": 5043331389, "url": "https://permid.org/1-5043331389"}, {"text": 4295911534, "url": "https://permid.org/1-4295911534"}], "parent_info": null, "agg_child_info": "Mylan N.V., Upjohn", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:VTRS", "url": "https://www.google.com/finance/quote/NASDAQ:VTRS"}], "market_full": [{"text": "STU:VIA", "url": "https://www.google.com/finance/quote/STU:VIA"}, {"text": "BER:VIA", "url": "https://www.google.com/finance/quote/BER:VIA"}, {"text": "LSE:0A5V", "url": "https://www.google.com/finance/quote/0A5V:LSE"}, {"text": "MUN:VIA", "url": "https://www.google.com/finance/quote/MUN:VIA"}, {"text": "HAM:VIA", "url": "https://www.google.com/finance/quote/HAM:VIA"}, {"text": "DEU:VIA1", "url": "https://www.google.com/finance/quote/DEU:VIA1"}, {"text": "VIE:VTRS", "url": "https://www.google.com/finance/quote/VIE:VTRS"}, {"text": "NASDAQ:VTRS", "url": "https://www.google.com/finance/quote/NASDAQ:VTRS"}, {"text": "MCX:TRS-RM", "url": "https://www.google.com/finance/quote/MCX:TRS-RM"}, {"text": "GER:VIAX", "url": "https://www.google.com/finance/quote/GER:VIAX"}, {"text": "DUS:VIA", "url": "https://www.google.com/finance/quote/DUS:VIA"}, {"text": "MEX:VTRS*", "url": "https://www.google.com/finance/quote/MEX:VTRS*"}, {"text": "FRA:VIA", "url": "https://www.google.com/finance/quote/FRA:VIA"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [61, 46, 27, 33, 43, 53, 58, 63, 118, 68, 1], "total": 571, "isTopResearch": false, "rank": 258, "fortune500_rank": 99}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 464, "rank": 504, "fortune500_rank": 273}, "ai_jobs": {"counts": null, "total": 64, "rank": 430, "fortune500_rank": 230}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research"}, {"cset_id": 1980, "country": "Taiwan", "website": "https://www.pegatroncorp.com/", "crunchbase": {"text": " 2f9500a3-6a1d-52af-faf4-6096e0886d95", "url": " https://www.crunchbase.com/organization/pegatron"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pegatron"], "stage": "Mature", "name": "Pegatron", "patent_name": "Pegatron", "continent": "Asia", "local_logo": null, "aliases": "Pegatron; Pegatron Corporation", "permid_links": [{"text": 5000431932, "url": "https://permid.org/1-5000431932"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PKL:PGTRF", "url": "https://www.google.com/finance/quote/PGTRF:PKL"}, {"text": "TAI:4938", "url": "https://www.google.com/finance/quote/4938:TAI"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 1}, {"field_name": "Feature vector", "field_count": 1}], "clusters": [{"cluster_id": 6080, "cluster_count": 1}, {"cluster_id": 8412, "cluster_count": 1}, {"cluster_id": 49348, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "retrieval", "task_count": 1}, {"referent": "gait_analysis", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "steganalysis", "task_count": 1}], "methods": [{"referent": "merl", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1, 4, 3, 1, 3, 1, 2, 2, 1, 4, 0], "total": 22, "isTopResearch": false, "rank": 784, "sp500_rank": 367}, "ai_publications": {"counts": [0, 2, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "sp500_rank": 285}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 6, 10, 16, 10, 13, 2, 6, 5, 1], "total": 69, "isTopResearch": false, "rank": 546, "sp500_rank": 239}, "cv_pubs": {"counts": [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 16.0, 0, 0, 0, 0, 0, 0], "total": 23.0, "isTopResearch": false, "rank": 265, "sp500_rank": 73}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], "total": 4, "table": null, "rank": 565, "sp500_rank": 235}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 0, 20, 0, 0, 0], "total": 40, "table": null, "rank": 565, "sp500_rank": 235}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "sp500_rank": 67}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 460, "rank": 505, "sp500_rank": 238}, "ai_jobs": {"counts": null, "total": 8, "rank": 908, "sp500_rank": 311}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 3089, "country": "United States", "website": "https://www.dominos.com/", "crunchbase": {"text": " 69226909-a023-9758-8f50-e9585d6e1913", "url": "https://www.crunchbase.com/organization/dominos-pizza"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/domino's-pizza"], "stage": "Mature", "name": "Domino'S Pizza", "patent_name": "Domino's Pizza", "continent": "North America", "local_logo": null, "aliases": "Domino'S Pizza, Inc; Domino's Pizza", "permid_links": [{"text": 4295899533, "url": "https://permid.org/1-4295899533"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DPZ", "url": "https://www.google.com/finance/quote/DPZ:NYSE"}], "market_full": [{"text": "MEX:DPZ", "url": "https://www.google.com/finance/quote/DPZ:MEX"}, {"text": "DUS:EZV", "url": "https://www.google.com/finance/quote/DUS:EZV"}, {"text": "ASE:DPZ", "url": "https://www.google.com/finance/quote/ASE:DPZ"}, {"text": "MCX:EZV", "url": "https://www.google.com/finance/quote/EZV:MCX"}, {"text": "NYQ:DPZ", "url": "https://www.google.com/finance/quote/DPZ:NYQ"}, {"text": "VIE:DPZ", "url": "https://www.google.com/finance/quote/DPZ:VIE"}, {"text": "FRA:EZV", "url": "https://www.google.com/finance/quote/EZV:FRA"}, {"text": "SAO:D2PZ34", "url": "https://www.google.com/finance/quote/D2PZ34:SAO"}, {"text": "LSE:0A7E", "url": "https://www.google.com/finance/quote/0A7E:LSE"}, {"text": "BER:EZV", "url": "https://www.google.com/finance/quote/BER:EZV"}, {"text": "HAN:EZV", "url": "https://www.google.com/finance/quote/EZV:HAN"}, {"text": "BRN:EZV", "url": "https://www.google.com/finance/quote/BRN:EZV"}, {"text": "DEU:DPZ", "url": "https://www.google.com/finance/quote/DEU:DPZ"}, {"text": "MUN:EZV", "url": "https://www.google.com/finance/quote/EZV:MUN"}, {"text": "NYSE:DPZ", "url": "https://www.google.com/finance/quote/DPZ:NYSE"}, {"text": "STU:EZV", "url": "https://www.google.com/finance/quote/EZV:STU"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 457, "rank": 506, "fortune500_rank": 274}, "ai_jobs": {"counts": null, "total": 58, "rank": 450, "fortune500_rank": 238}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services"}, {"cset_id": 530, "country": "United States", "website": "http://www.jumptrading.com/", "crunchbase": {"text": "aeb24128-b2f6-a480-3607-6e684bac2208", "url": "https://www.crunchbase.com/organization/jump-trading-llc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/jump-trading"], "stage": "Unknown", "name": "Jump Trading Llc", "patent_name": "jump trading llc", "continent": "North America", "local_logo": "jump_trading_llc.png", "aliases": "Jump Trading; Jump Trading, Llc", "permid_links": [{"text": 5000723698, "url": "https://permid.org/1-5000723698"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Jump Trading is a globally-positioned, proprietary trading firm.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Topic model", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Medical imaging", "field_count": 1}], "clusters": [{"cluster_id": 37793, "cluster_count": 2}, {"cluster_id": 45915, "cluster_count": 1}, {"cluster_id": 3879, "cluster_count": 1}, {"cluster_id": 48789, "cluster_count": 1}, {"cluster_id": 9687, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 6, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 694, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 789, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "quantization", "task_count": 1}, {"referent": "computed_tomography_(ct)", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "super_resolution", "task_count": 1}, {"referent": "ctr", "task_count": 1}, {"referent": "clustering", "task_count": 1}, {"referent": "portfolio_optimization", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "ltls", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "glow", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "mckernel", "method_count": 1}, {"referent": "l1_regularization", "method_count": 1}, {"referent": "dnas", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "appo", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [3, 2, 1, 1, 4, 3, 4, 4, 3, 2, 0], "total": 27, "isTopResearch": false, "rank": 736}, "ai_publications": {"counts": [0, 1, 1, 0, 2, 1, 0, 0, 0, 1, 0], "total": 6, "isTopResearch": false, "rank": 514}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [9, 3, 13, 6, 4, 17, 25, 49, 78, 55, 3], "total": 262, "isTopResearch": false, "rank": 351}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 3.0, 13.0, 0, 2.0, 17.0, 0, 0, 0, 55.0, 0], "total": 43.666666666666664, "isTopResearch": false, "rank": 113}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 453, "rank": 507}, "ai_jobs": {"counts": null, "total": 63, "rank": 431}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Jump Trading LLC is a proprietary trading firm with a focus on algorithmic and high-frequency trading strategies. The firm has over 700 employees in New York, Chicago, London, Shanghai, and Singapore and is active in futures, options, cryptocurrency, and equities markets worldwide.", "wikipedia_link": "https://en.wikipedia.org/wiki/Jump_Trading", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 223, "country": "China", "website": "http://www.sensetime.com/", "crunchbase": {"text": "5260df21-a4af-7e6b-7da0-90def51cc36c", "url": "https://www.crunchbase.com/organization/sensetime"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sensetime-group-limited"], "stage": "Mature", "name": "Sensetime", "patent_name": "sensetime", "continent": "Asia", "local_logo": "sensetime.png", "aliases": "Beijing Sensetime Technology Development Co Ltd; Sensetime Group Ltd; \u5546\u6c64; \u5546\u6c64\u79d1\u6280; \u5546\u6c64\u96c6\u56e2\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5050912854, "url": "https://permid.org/1-5050912854"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "SenseTime is an AI software company focused on creating a better AI-empowered future through innovation.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 71}, {"field_name": "Segmentation", "field_count": 65}, {"field_name": "Convolutional neural network", "field_count": 36}, {"field_name": "Pose", "field_count": 28}, {"field_name": "Feature learning", "field_count": 23}, {"field_name": "Deep learning", "field_count": 22}, {"field_name": "Face (geometry)", "field_count": 18}, {"field_name": "Point cloud", "field_count": 16}, {"field_name": "Artificial neural network", "field_count": 13}, {"field_name": "Quantization (signal processing)", "field_count": 12}], "clusters": [{"cluster_id": 2505, "cluster_count": 38}, {"cluster_id": 6975, "cluster_count": 24}, {"cluster_id": 5070, "cluster_count": 24}, {"cluster_id": 1436, "cluster_count": 22}, {"cluster_id": 3886, "cluster_count": 21}, {"cluster_id": 4634, "cluster_count": 20}, {"cluster_id": 23307, "cluster_count": 20}, {"cluster_id": 214, "cluster_count": 20}, {"cluster_id": 4473, "cluster_count": 15}, {"cluster_id": 1621, "cluster_count": 15}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2898}, {"ref_CSET_id": 163, "referenced_count": 2577}, {"ref_CSET_id": 87, "referenced_count": 1729}, {"ref_CSET_id": 223, "referenced_count": 1405}, {"ref_CSET_id": 6, "referenced_count": 538}, {"ref_CSET_id": 184, "referenced_count": 532}, {"ref_CSET_id": 245, "referenced_count": 528}, {"ref_CSET_id": 37, "referenced_count": 336}, {"ref_CSET_id": 161, "referenced_count": 319}, {"ref_CSET_id": 23, "referenced_count": 314}], "tasks": [{"referent": "classification", "task_count": 99}, {"referent": "object_detection", "task_count": 61}, {"referent": "segmentation", "task_count": 60}, {"referent": "semantic_segmentation", "task_count": 57}, {"referent": "computer_vision", "task_count": 42}, {"referent": "image_recognition", "task_count": 31}, {"referent": "image_restoration", "task_count": 27}, {"referent": "inference_attack", "task_count": 23}, {"referent": "classification_tasks", "task_count": 22}, {"referent": "feature_selection", "task_count": 21}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 116}, {"referent": "3d_representations", "method_count": 80}, {"referent": "recurrent_neural_networks", "method_count": 75}, {"referent": "1d_cnn", "method_count": 73}, {"referent": "cdcc_net", "method_count": 48}, {"referent": "q_learning", "method_count": 46}, {"referent": "deep_belief_network", "method_count": 40}, {"referent": "dueling_network", "method_count": 36}, {"referent": "symbolic_deep_learning", "method_count": 34}, {"referent": "twin_networks", "method_count": 34}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 8, 34, 39, 100, 181, 234, 261, 221, 2], "total": 1081, "isTopResearch": false, "rank": 185}, "ai_publications": {"counts": [0, 1, 8, 32, 37, 98, 151, 210, 210, 136, 1], "total": 884, "isTopResearch": false, "rank": 28}, "ai_publications_growth": {"counts": [], "total": 1.278250814674654, "isTopResearch": false, "rank": 195}, "ai_pubs_top_conf": {"counts": [0, 1, 5, 16, 21, 69, 112, 129, 105, 54, 0], "total": 512, "isTopResearch": false, "rank": 11}, "citation_counts": {"counts": [0, 18, 114, 358, 1129, 2831, 6841, 10872, 15898, 13339, 470], "total": 51870, "isTopResearch": false, "rank": 15}, "cv_pubs": {"counts": [0, 1, 8, 31, 35, 94, 139, 190, 187, 119, 1], "total": 805, "isTopResearch": true, "rank": 12}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 2, 1, 0], "total": 6, "isTopResearch": true, "rank": 131}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 2, 8, 7, 4, 8, 0], "total": 30, "isTopResearch": true, "rank": 65}, "citations_per_article": {"counts": [0, 18.0, 14.25, 11.1875, 30.513513513513512, 28.887755102040817, 45.3046357615894, 51.77142857142857, 75.70476190476191, 98.08088235294117, 470.0], "total": 58.6764705882353, "isTopResearch": false, "rank": 75}}, "patents": {"ai_patents": {"counts": [3, 7, 14, 60, 116, 183, 306, 380, 461, 143, 0], "total": 1673, "table": null, "rank": 14}, "ai_patents_growth": {"counts": [], "total": 49.71824732656708, "table": null, "rank": 214}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [30, 70, 140, 600, 1160, 1830, 3060, 3800, 4610, 1430, 0], "total": 16730, "table": null, "rank": 14}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0], "total": 2, "table": null, "rank": 125}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 5, 4, 8, 28, 3, 0], "total": 48, "table": "industry", "rank": 24}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 0, 7, 2, 9, 6, 0, 0], "total": 25, "table": null, "rank": 47}, "Transportation": {"counts": [0, 0, 0, 0, 2, 14, 13, 11, 7, 0, 0], "total": 47, "table": "industry", "rank": 45}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 2, 6, 2, 5, 0], "total": 16, "table": null, "rank": 51}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "table": null, "rank": 60}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 3, 3, 1, 1, 0], "total": 8, "table": null, "rank": 7}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 5, 12, 19, 37, 58, 58, 9, 0], "total": 199, "table": "industry", "rank": 42}, "Banking_and_Finance": {"counts": [0, 0, 1, 0, 0, 4, 8, 15, 3, 1, 0], "total": 32, "table": "industry", "rank": 35}, "Telecommunications": {"counts": [0, 1, 1, 4, 4, 9, 14, 12, 15, 2, 0], "total": 62, "table": "industry", "rank": 67}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 0, 0, 2, 0, 1, 5, 8, 4, 2, 0], "total": 22, "table": null, "rank": 94}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 4, 4, 10, 0, 0], "total": 18, "table": null, "rank": 10}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 2, 3, 3, 4, 4, 0], "total": 16, "table": "application", "rank": 61}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 3, 2, 3, 0, 0], "total": 8, "table": null, "rank": 88}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 6, 4, 2, 0], "total": 14, "table": "application", "rank": 103}, "Control": {"counts": [0, 0, 0, 0, 2, 8, 6, 6, 3, 0, 0], "total": 25, "table": "application", "rank": 79}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [2, 6, 11, 52, 90, 140, 227, 268, 318, 81, 0], "total": 1195, "table": "application", "rank": 6}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 2, 1, 9, 1, 0], "total": 14, "table": null, "rank": 92}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 2, 5, 6, 7, 4, 0, 0], "total": 24, "table": "application", "rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 451, "rank": 508}, "ai_jobs": {"counts": null, "total": 124, "rank": 302}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "SenseTime (Chinese: \u5546\u6c64\u79d1\u6280) is currently the world's most valuable artificial intelligence (AI) company. It is established in Hong Kong with additional offices across China, Singapore, Japan, Abu Dhabi and the United States. The company has a portfolio of 700 clients and partners, including the Massachusetts Institute of Technology (MIT), Qualcomm, Honda, Alibaba, Weibo, and more. It was the world's first Artificial intelligence unicorn and is valued at over $7.7 billion.", "wikipedia_link": "https://en.wikipedia.org/wiki/SenseTime", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2225, "country": "United States", "website": "http://www.autozone.com/", "crunchbase": {"text": "c6593ccf-5245-502c-e1f3-839e22747c12", "url": "https://www.crunchbase.com/organization/autozone"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/autozone"], "stage": "Mature", "name": "AutoZone Inc", "patent_name": "autozone inc", "continent": "North America", "local_logo": "autozone_inc.png", "aliases": "Autozone; Autozone, Inc", "permid_links": [{"text": 4295903490, "url": "https://permid.org/1-4295903490"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AZO", "url": "https://www.google.com/finance/quote/azo:nyse"}], "market_full": [{"text": "SAO:AZOI34", "url": "https://www.google.com/finance/quote/azoi34:sao"}, {"text": "MCX:AZO-RM", "url": "https://www.google.com/finance/quote/azo-rm:mcx"}, {"text": "NYSE:AZO", "url": "https://www.google.com/finance/quote/azo:nyse"}, {"text": "BER:AZ5", "url": "https://www.google.com/finance/quote/az5:ber"}, {"text": "NYQ:AZO", "url": "https://www.google.com/finance/quote/azo:nyq"}, {"text": "VIE:AZO", "url": "https://www.google.com/finance/quote/azo:vie"}, {"text": "MEX:AZO", "url": "https://www.google.com/finance/quote/azo:mex"}, {"text": "MUN:AZ5", "url": "https://www.google.com/finance/quote/az5:mun"}, {"text": "DEU:AZO", "url": "https://www.google.com/finance/quote/azo:deu"}, {"text": "LSE:0HJL", "url": "https://www.google.com/finance/quote/0hjl:lse"}, {"text": "FRA:AZ5", "url": "https://www.google.com/finance/quote/az5:fra"}, {"text": "BRN:AZ5", "url": "https://www.google.com/finance/quote/az5:brn"}, {"text": "STU:AZ5", "url": "https://www.google.com/finance/quote/az5:stu"}, {"text": "ASE:AZO", "url": "https://www.google.com/finance/quote/ase:azo"}, {"text": "DUS:AZ5", "url": "https://www.google.com/finance/quote/az5:dus"}], "crunchbase_description": "AutoZone is a distributor of auto parts, spares and car accessories in Southern Africa.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 450, "rank": 509, "fortune500_rank": 275}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "fortune500_rank": 294}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "AutoZone, Inc. is an American retailer of aftermarket automotive parts and accessories, the largest in the United States. Founded in 1979, AutoZone has over 6,400 stores across the United States, Mexico, Puerto Rico and Brazil. The company is based in Memphis, Tennessee.", "wikipedia_link": "https://en.wikipedia.org/wiki/AutoZone", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2210, "country": "United States", "website": "http://www.americantower.com/", "crunchbase": {"text": "dde861cb-7911-727f-2961-b01b6fae3ae8", "url": "https://www.crunchbase.com/organization/american-tower"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/american-tower"], "stage": "Mature", "name": "American Tower Corp.", "patent_name": "american tower corp.", "continent": "North America", "local_logo": "american_tower_corp.png", "aliases": "American Tower; American Tower Corp; American Tower Corporation; Atc Ip Llc", "permid_links": [{"text": 4295903388, "url": "https://permid.org/1-4295903388"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AMT", "url": "https://www.google.com/finance/quote/amt:nyse"}], "market_full": [{"text": "FRA:LID", "url": "https://www.google.com/finance/quote/fra:lid"}, {"text": "MCX:AMT-RM", "url": "https://www.google.com/finance/quote/amt-rm:mcx"}, {"text": "HAN:A0T", "url": "https://www.google.com/finance/quote/a0t:han"}, {"text": "SAO:T1OW34", "url": "https://www.google.com/finance/quote/sao:t1ow34"}, {"text": "VIE:AMTG", "url": "https://www.google.com/finance/quote/amtg:vie"}, {"text": "BER:A0T", "url": "https://www.google.com/finance/quote/a0t:ber"}, {"text": "MUN:A0T", "url": "https://www.google.com/finance/quote/a0t:mun"}, {"text": "BRN:A0T", "url": "https://www.google.com/finance/quote/a0t:brn"}, {"text": "DEU:A0T", "url": "https://www.google.com/finance/quote/a0t:deu"}, {"text": "STU:A0T", "url": "https://www.google.com/finance/quote/a0t:stu"}, {"text": "MEX:AMT*", "url": "https://www.google.com/finance/quote/amt*:mex"}, {"text": "FRA:A0T", "url": "https://www.google.com/finance/quote/a0t:fra"}, {"text": "NYSE:AMT", "url": "https://www.google.com/finance/quote/amt:nyse"}, {"text": "NYQ:AMT", "url": "https://www.google.com/finance/quote/amt:nyq"}, {"text": "ASE:AMT", "url": "https://www.google.com/finance/quote/amt:ase"}, {"text": "LSE:0HEU", "url": "https://www.google.com/finance/quote/0heu:lse"}, {"text": "DUS:A0T", "url": "https://www.google.com/finance/quote/a0t:dus"}], "crunchbase_description": "American Tower offers its users with a variety of wireless infrastructure solutions around the world.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 2, 0, 1, 0, 2, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030, "fortune500_rank": 349}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 446, "rank": 510, "fortune500_rank": 276}, "ai_jobs": {"counts": null, "total": 20, "rank": 692, "fortune500_rank": 349}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "American Tower Corporation (also referred to as American Tower or ATC) is an American real estate investment trust and an owner and operator of wireless and broadcast communications infrastructure in several countries worldwide and is headquartered in Boston, Massachusetts.\nIt is ranked 410th on the Fortune 500.", "wikipedia_link": "https://en.wikipedia.org/wiki/American_Tower", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2413, "country": "United States", "website": "https://www.mt.com/", "crunchbase": {"text": "9c042dee-1486-aa92-0f92-e911a2f1dbc7", "url": "https://www.crunchbase.com/organization/mettler-toledo"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mettlertoledo"], "stage": "Mature", "name": "Mettler Toledo", "patent_name": "mettler toledo", "continent": "North America", "local_logo": "mettler_toledo.png", "aliases": "Mettler-Toledo International Inc", "permid_links": [{"text": 4295904529, "url": "https://permid.org/1-4295904529"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MTD", "url": "https://www.google.com/finance/quote/mtd:nyse"}], "market_full": [{"text": "NYSE:MTD", "url": "https://www.google.com/finance/quote/mtd:nyse"}, {"text": "MEX:MTD*", "url": "https://www.google.com/finance/quote/mex:mtd*"}, {"text": "MUN:MTO", "url": "https://www.google.com/finance/quote/mto:mun"}, {"text": "BER:MTO", "url": "https://www.google.com/finance/quote/ber:mto"}, {"text": "DEU:MTD", "url": "https://www.google.com/finance/quote/deu:mtd"}, {"text": "DUS:MTO", "url": "https://www.google.com/finance/quote/dus:mto"}, {"text": "NYQ:MTD", "url": "https://www.google.com/finance/quote/mtd:nyq"}, {"text": "MCX:MTD-RM", "url": "https://www.google.com/finance/quote/mcx:mtd-rm"}, {"text": "GER:MTOX", "url": "https://www.google.com/finance/quote/ger:mtox"}, {"text": "STU:MTO", "url": "https://www.google.com/finance/quote/mto:stu"}, {"text": "HAN:MTO", "url": "https://www.google.com/finance/quote/han:mto"}, {"text": "FRA:MTO", "url": "https://www.google.com/finance/quote/fra:mto"}, {"text": "VIE:MTD", "url": "https://www.google.com/finance/quote/mtd:vie"}, {"text": "SAO:M1TD34", "url": "https://www.google.com/finance/quote/m1td34:sao"}, {"text": "LSE:0K10", "url": "https://www.google.com/finance/quote/0k10:lse"}, {"text": "ASE:MTD", "url": "https://www.google.com/finance/quote/ase:mtd"}], "crunchbase_description": "Mettler Toledo is a manufacturer of industrial equipment like scales, X-ray machines, instruments and laboratory items.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Lane departure warning system", "field_count": 1}], "clusters": [{"cluster_id": 108262, "cluster_count": 1}, {"cluster_id": 3281, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "boundary_detection", "task_count": 1}, {"referent": "edge_detection", "task_count": 1}, {"referent": "lane_detection", "task_count": 1}, {"referent": "artificial_life", "task_count": 1}], "methods": [{"referent": "transformer_xl", "method_count": 1}, {"referent": "residual_connection", "method_count": 1}, {"referent": "bigru", "method_count": 1}, {"referent": "bilstm", "method_count": 1}, {"referent": "cgnn", "method_count": 1}, {"referent": "global_convolutional_network", "method_count": 1}, {"referent": "mrnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 8, 10, 20, 9, 10, 11, 11, 13, 15, 0], "total": 112, "isTopResearch": false, "rank": 499, "fortune500_rank": 186}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 4, 2, 5, 8, 4, 0], "total": 23, "isTopResearch": false, "rank": 670, "fortune500_rank": 184}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 0, 8.0, 0, 0], "total": 11.5, "isTopResearch": false, "rank": 484, "fortune500_rank": 144}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0], "total": 4, "table": null, "rank": 565, "fortune500_rank": 176}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 0, 0, 10, 0, 20, 0, 0], "total": 40, "table": null, "rank": 565, "fortune500_rank": 176}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 441, "rank": 511, "fortune500_rank": 277}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "fortune500_rank": 294}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Mettler Toledo (NYSE: MTD) is a multinational manufacturer of scales and analytical instruments. It is the largest provider of weighing instruments for use in laboratory, industrial, and food retailing applications. The company also provides various analytical instruments, process analytics instruments, and end-of-line inspection systems. The company operates worldwide with 70% of net sales, derived in equal parts, from Europe and from the Americas. Asian business is included in the remaining 30%. Mettler Toledo is headquartered in Switzerland and incorporated in the United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Mettler_Toledo", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2195, "country": "United States", "website": "https://www.aflac.com/", "crunchbase": {"text": "4ea7d009-4912-c9e6-7b77-9fea82f37788", "url": "https://www.crunchbase.com/organization/aflac"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aflac"], "stage": "Mature", "name": "AFLAC Inc", "patent_name": "aflac inc", "continent": "North America", "local_logo": "aflac_inc.png", "aliases": "Aflac; Aflac Inc; Aflac Incorporated; Aflac, Inc; American Family Life Assurance Company", "permid_links": [{"text": 4295903261, "url": "https://permid.org/1-4295903261"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AFL", "url": "https://www.google.com/finance/quote/afl:nyse"}], "market_full": [{"text": "VIE:AFL", "url": "https://www.google.com/finance/quote/afl:vie"}, {"text": "SAO:A1FL34", "url": "https://www.google.com/finance/quote/a1fl34:sao"}, {"text": "DUS:AFL", "url": "https://www.google.com/finance/quote/afl:dus"}, {"text": "FRA:AFL", "url": "https://www.google.com/finance/quote/afl:fra"}, {"text": "DEU:AFL", "url": "https://www.google.com/finance/quote/afl:deu"}, {"text": "BER:AFL", "url": "https://www.google.com/finance/quote/afl:ber"}, {"text": "NYSE:AFL", "url": "https://www.google.com/finance/quote/afl:nyse"}, {"text": "BRN:AFL", "url": "https://www.google.com/finance/quote/afl:brn"}, {"text": "NYQ:AFL", "url": "https://www.google.com/finance/quote/afl:nyq"}, {"text": "MUN:AFL", "url": "https://www.google.com/finance/quote/afl:mun"}, {"text": "ASE:AFL", "url": "https://www.google.com/finance/quote/afl:ase"}, {"text": "GER:AFLX", "url": "https://www.google.com/finance/quote/aflx:ger"}, {"text": "LSE:0H68", "url": "https://www.google.com/finance/quote/0h68:lse"}, {"text": "MCX:AFL-RM", "url": "https://www.google.com/finance/quote/afl-rm:mcx"}, {"text": "HAN:AFL", "url": "https://www.google.com/finance/quote/afl:han"}, {"text": "MEX:AFL*", "url": "https://www.google.com/finance/quote/afl*:mex"}, {"text": "STU:AFL", "url": "https://www.google.com/finance/quote/afl:stu"}, {"text": "HAM:AFL", "url": "https://www.google.com/finance/quote/afl:ham"}], "crunchbase_description": "Aflac is a company that offers individuals and companies supplemental disability insurance.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 1, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105, "fortune500_rank": 368}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 440, "rank": 512, "fortune500_rank": 278}, "ai_jobs": {"counts": null, "total": 58, "rank": 450, "fortune500_rank": 238}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Aflac Inc. /\u02c8\u00e6fl\u00e6k/ (American Family Life Assurance Company) is an American insurance company and is the largest provider of supplemental insurance in the United States. The company was founded in 1955 and is based in Columbus, Georgia. In the U.S., Aflac underwrites a wide range of insurance policies, but is perhaps more known for its payroll deduction insurance coverage, which pays cash benefits when a policyholder has a covered accident or illness. The company states it \"provides financial protection to more than 50 million people worldwide\".", "wikipedia_link": "https://en.wikipedia.org/wiki/Aflac", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2553, "country": "United States", "website": "https://www.zionsbank.com/", "crunchbase": {"text": "cca93f73-1630-334b-1898-03e247e4ae63", "url": "https://www.crunchbase.com/organization/zions-bancorporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/zions-bancorporation"], "stage": "Mature", "name": "Zions Bancorp", "patent_name": "zions bancorp", "continent": "North America", "local_logo": "zions_bancorp.png", "aliases": "Keystone Insurance And Investment Co; Zions Bancorporation; Zions Bancorporation, N.A; Zions Bancorporation, National Association; Zions Bank", "permid_links": [{"text": 4295999515, "url": "https://permid.org/1-4295999515"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ZIONL", "url": "https://www.google.com/finance/quote/nasdaq:zionl"}, {"text": "NASDAQ:ZIONO", "url": "https://www.google.com/finance/quote/nasdaq:ziono"}, {"text": "NASDAQ:ZION", "url": "https://www.google.com/finance/quote/nasdaq:zion"}, {"text": "NASDAQ:ZIONP", "url": "https://www.google.com/finance/quote/nasdaq:zionp"}], "market_full": [{"text": "DUS:ZB1", "url": "https://www.google.com/finance/quote/dus:zb1"}, {"text": "FRA:ZB1", "url": "https://www.google.com/finance/quote/fra:zb1"}, {"text": "NASDAQ:ZIONL", "url": "https://www.google.com/finance/quote/nasdaq:zionl"}, {"text": "DEU:ZB1", "url": "https://www.google.com/finance/quote/deu:zb1"}, {"text": "STU:ZB1", "url": "https://www.google.com/finance/quote/stu:zb1"}, {"text": "NASDAQ:ZIONO", "url": "https://www.google.com/finance/quote/nasdaq:ziono"}, {"text": "SAO:Z1IO34", "url": "https://www.google.com/finance/quote/sao:z1io34"}, {"text": "BRN:ZB1", "url": "https://www.google.com/finance/quote/brn:zb1"}, {"text": "NASDAQ:ZION", "url": "https://www.google.com/finance/quote/nasdaq:zion"}, {"text": "LSE:0M3L", "url": "https://www.google.com/finance/quote/0m3l:lse"}, {"text": "BER:ZB1", "url": "https://www.google.com/finance/quote/ber:zb1"}, {"text": "NASDAQ:ZIONP", "url": "https://www.google.com/finance/quote/nasdaq:zionp"}, {"text": "MCX:ZION-RM", "url": "https://www.google.com/finance/quote/mcx:zion-rm"}], "crunchbase_description": "Zions Bancorporation is a financial services company involved in SBA lending, public finance advisory services, and agricultural finance.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 440, "rank": 512}, "ai_jobs": {"counts": null, "total": 51, "rank": 479}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Zions Bancorporation is a bank holding company headquartered in Salt Lake City, Utah. Zions Bancorporation originated as Keystone Insurance and Investment Co., a Utah Corporation, in April 1955. In April 1960, Keystone, together with several individual investors, acquired a 57.5 percent interest in Zions First National Bank from the LDS Church. In 1965, the name of the company was changed to Zions Bancorporation. (However, it operated as Zions Utah Bancorporation from 1966 to 1987.) The first public offering of shares in Zions Bancorporation was made in January 1966. There continued to be some minority shareholders until April 1972, when the company exchanged the remaining minority shares for common shares. In 2018, Zions Bancorporation merged into its bank subsidiary, ZB, N.A., which was then renamed Zions Bancorporation, N.A. Zions Bancorporation now operates as a national bank doing business under eight local brands, rather than as a holding company.", "wikipedia_link": "https://en.wikipedia.org/wiki/Zions_Bancorporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1826, "country": "United States", "website": "https://www.marathonpetroleum.com/", "crunchbase": {"text": "3e98fae6-be2f-d4f4-9c49-b72c1731b965", "url": "https://www.crunchbase.com/organization/marathon-petroleum"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/marathon-petroleum-company"], "stage": "Mature", "name": "Marathon Petroleum Corp", "patent_name": "marathon petroleum corp", "continent": "North America", "local_logo": "marathon_petroleum_corp.png", "aliases": "Marathon Petroleum; Marathon Petroleum Corporation", "permid_links": [{"text": 5001438555, "url": "https://permid.org/1-5001438555"}], "parent_info": "Seven & I Holdings (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MPC", "url": "https://www.google.com/finance/quote/mpc:nyse"}], "market_full": [{"text": "MUN:MPN", "url": "https://www.google.com/finance/quote/mpn:mun"}, {"text": "DEU:MPN", "url": "https://www.google.com/finance/quote/deu:mpn"}, {"text": "NYSE:MPC", "url": "https://www.google.com/finance/quote/mpc:nyse"}, {"text": "NYQ:MPC", "url": "https://www.google.com/finance/quote/mpc:nyq"}, {"text": "VIE:MPC", "url": "https://www.google.com/finance/quote/mpc:vie"}, {"text": "BRN:MPN", "url": "https://www.google.com/finance/quote/brn:mpn"}, {"text": "DUS:MPN", "url": "https://www.google.com/finance/quote/dus:mpn"}, {"text": "MCX:MPC-RM", "url": "https://www.google.com/finance/quote/mcx:mpc-rm"}, {"text": "BER:MPN", "url": "https://www.google.com/finance/quote/ber:mpn"}, {"text": "SAO:M1PC34", "url": "https://www.google.com/finance/quote/m1pc34:sao"}, {"text": "ASE:MPC", "url": "https://www.google.com/finance/quote/ase:mpc"}, {"text": "MEX:MPC*", "url": "https://www.google.com/finance/quote/mex:mpc*"}, {"text": "FRA:MPN", "url": "https://www.google.com/finance/quote/fra:mpn"}, {"text": "GER:MPNX", "url": "https://www.google.com/finance/quote/ger:mpnx"}, {"text": "STU:MPN", "url": "https://www.google.com/finance/quote/mpn:stu"}, {"text": "LSE:0JYA", "url": "https://www.google.com/finance/quote/0jya:lse"}], "crunchbase_description": "MPC is the nation\u2019s fourth-largest refiner and the largest refiner in the Midwest. MPC\u2019s refining, marketing and transportation.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Analytics", "field_count": 1}, {"field_name": "Visualization", "field_count": 1}], "clusters": [{"cluster_id": 29670, "cluster_count": 4}, {"cluster_id": 458, "cluster_count": 1}, {"cluster_id": 5585, "cluster_count": 1}, {"cluster_id": 102984, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1826, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "crowds", "task_count": 1}, {"referent": "automl", "task_count": 1}, {"referent": "data_summarization", "task_count": 1}, {"referent": "active_learning", "task_count": 1}], "methods": [{"referent": "hri_pipeline", "method_count": 2}, {"referent": "glow", "method_count": 2}, {"referent": "automl", "method_count": 1}, {"referent": "metrix", "method_count": 1}, {"referent": "reformer", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "general", "method_count": 1}, {"referent": "contrastive_predictive_coding", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 5, 7, 11, 9, 7, 4, 0, 3, 2, 0], "total": 53, "isTopResearch": false, "rank": 608, "sp500_rank": 327, "fortune500_rank": 226}, "ai_publications": {"counts": [0, 0, 5, 4, 2, 0, 0, 0, 0, 0, 0], "total": 11, "isTopResearch": false, "rank": 397, "sp500_rank": 211, "fortune500_rank": 116}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 1, 3, 1, 3, 0, 0, 2, 0], "total": 10, "isTopResearch": false, "rank": 760, "sp500_rank": 314, "fortune500_rank": 204}, "cv_pubs": {"counts": [0, 0, 2, 2, 1, 0, 0, 0, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "sp500_rank": 146, "fortune500_rank": 78}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0.0, 0.25, 1.5, 0, 0, 0, 0, 0, 0], "total": 0.9090909090909091, "isTopResearch": false, "rank": 898, "sp500_rank": 352, "fortune500_rank": 248}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 440, "rank": 512, "sp500_rank": 239, "fortune500_rank": 278}, "ai_jobs": {"counts": null, "total": 37, "rank": 544, "sp500_rank": 247, "fortune500_rank": 280}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "Marathon Petroleum Corporation is an American petroleum refining, marketing, and transportation company headquartered in Findlay, Ohio. The company was a wholly owned subsidiary of Marathon Oil until a corporate spin-off in 2011.", "wikipedia_link": "https://en.wikipedia.org/wiki/Marathon_Petroleum", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2273, "country": "United States", "website": "https://www.corteva.com", "crunchbase": {"text": "a22ab27a-2ba8-49ac-abf8-b0ceb49e0a68", "url": "https://www.crunchbase.com/organization/corteva-agriscience"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/corteva"], "stage": "Mature", "name": "Corteva", "patent_name": "corteva", "continent": "North America", "local_logo": "corteva.png", "aliases": "Corteva Agriscience; Corteva Inc", "permid_links": [{"text": 5066581979, "url": "https://permid.org/1-5066581979"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CTVA", "url": "https://www.google.com/finance/quote/ctva:nyse"}], "market_full": [{"text": "DEU:2X0", "url": "https://www.google.com/finance/quote/2x0:deu"}, {"text": "LSE:0A1W", "url": "https://www.google.com/finance/quote/0a1w:lse"}, {"text": "FRA:2X0", "url": "https://www.google.com/finance/quote/2x0:fra"}, {"text": "MUN:2X0", "url": "https://www.google.com/finance/quote/2x0:mun"}, {"text": "ASE:CTVA", "url": "https://www.google.com/finance/quote/ase:ctva"}, {"text": "DUS:2X0", "url": "https://www.google.com/finance/quote/2x0:dus"}, {"text": "NYQ:CTVA", "url": "https://www.google.com/finance/quote/ctva:nyq"}, {"text": "VIE:CTVA", "url": "https://www.google.com/finance/quote/ctva:vie"}, {"text": "SAO:C1TV34", "url": "https://www.google.com/finance/quote/c1tv34:sao"}, {"text": "STU:2X0", "url": "https://www.google.com/finance/quote/2x0:stu"}, {"text": "MEX:CTVA", "url": "https://www.google.com/finance/quote/ctva:mex"}, {"text": "HAN:2X0", "url": "https://www.google.com/finance/quote/2x0:han"}, {"text": "BER:2X0", "url": "https://www.google.com/finance/quote/2x0:ber"}, {"text": "NYSE:CTVA", "url": "https://www.google.com/finance/quote/ctva:nyse"}, {"text": "MOEX:CTVA-RM", "url": "https://www.google.com/finance/quote/ctva-rm:moex"}, {"text": "HAM:2X0", "url": "https://www.google.com/finance/quote/2x0:ham"}, {"text": "GER:2X0X", "url": "https://www.google.com/finance/quote/2x0x:ger"}], "crunchbase_description": "Corteva Agriscience provides agronomic support and services to help increase farmer productivity and profitability.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Ground truth", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Errors-in-variables models", "field_count": 1}, {"field_name": "Unsupervised learning", "field_count": 1}], "clusters": [{"cluster_id": 11408, "cluster_count": 2}, {"cluster_id": 8513, "cluster_count": 1}, {"cluster_id": 7965, "cluster_count": 1}, {"cluster_id": 19629, "cluster_count": 1}, {"cluster_id": 10791, "cluster_count": 1}, {"cluster_id": 12231, "cluster_count": 1}, {"cluster_id": 46187, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 2273, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 75, "referenced_count": 1}], "tasks": [{"referent": "video_recognition", "task_count": 2}, {"referent": "damage_detection", "task_count": 1}, {"referent": "environmental_sound_classification", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "x_ray", "task_count": 1}, {"referent": "few_shot_regression", "task_count": 1}, {"referent": "visual_relationship_detection", "task_count": 1}, {"referent": "interpretable_machine_learning", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "self_supervised_learning", "method_count": 3}, {"referent": "npid", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "vilbert", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "dropout", "method_count": 1}, {"referent": "(2+1)d_convolution", "method_count": 1}, {"referent": "mrnn", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [7, 3, 7, 4, 3, 59, 165, 201, 226, 187, 7], "total": 869, "isTopResearch": false, "rank": 204, "fortune500_rank": 74}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 4, 1, 0], "total": 8, "isTopResearch": false, "rank": 455, "fortune500_rank": 128}, "ai_publications_growth": {"counts": [], "total": -20.833333333333332, "isTopResearch": false, "rank": 1335, "fortune500_rank": 389}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 19, 32, 2], "total": 55, "isTopResearch": false, "rank": 576, "fortune500_rank": 158}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 2, 1, 0], "total": 5, "isTopResearch": true, "rank": 287, "fortune500_rank": 78}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0.6666666666666666, 4.75, 32.0, 0], "total": 6.875, "isTopResearch": false, "rank": 648, "fortune500_rank": 185}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0], "total": 4, "table": null, "rank": 565, "fortune500_rank": 176}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 30, 0, 0, 0, 0], "total": 40, "table": null, "rank": 565, "fortune500_rank": 176}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 38, "fortune500_rank": 11}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 438, "rank": 515, "fortune500_rank": 280}, "ai_jobs": {"counts": null, "total": 102, "rank": 330, "fortune500_rank": 178}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "Corteva, Inc. (also known as Corteva Agriscience) is a major American agricultural chemical and seed company that was the agricultural unit of DowDuPont prior to being spun off as an independent public company.", "wikipedia_link": "https://en.wikipedia.org/wiki/Corteva", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2414, "country": "United States", "website": "https://www.mgmresorts.com/", "crunchbase": {"text": "54114ac0-d2d5-254a-4f81-243d3281ac62", "url": "https://www.crunchbase.com/organization/mgm-resorts-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mgm-resorts-international"], "stage": "Mature", "name": "Mgm Resorts International", "patent_name": "mgm resorts international", "continent": "North America", "local_logo": "mgm_resorts_international.png", "aliases": "Mgm Mirage; Mgm Resorts", "permid_links": [{"text": 4295904450, "url": "https://permid.org/1-4295904450"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MGM", "url": "https://www.google.com/finance/quote/mgm:nyse"}], "market_full": [{"text": "NYSE:MGM", "url": "https://www.google.com/finance/quote/mgm:nyse"}, {"text": "ASE:MGM", "url": "https://www.google.com/finance/quote/ase:mgm"}, {"text": "GER:MGGX", "url": "https://www.google.com/finance/quote/ger:mggx"}, {"text": "FRA:MGG", "url": "https://www.google.com/finance/quote/fra:mgg"}, {"text": "LSE:0JWC", "url": "https://www.google.com/finance/quote/0jwc:lse"}, {"text": "BRN:MGG", "url": "https://www.google.com/finance/quote/brn:mgg"}, {"text": "DUS:MGG", "url": "https://www.google.com/finance/quote/dus:mgg"}, {"text": "DEU:MGM", "url": "https://www.google.com/finance/quote/deu:mgm"}, {"text": "NYQ:MGM", "url": "https://www.google.com/finance/quote/mgm:nyq"}, {"text": "STU:MGG", "url": "https://www.google.com/finance/quote/mgg:stu"}, {"text": "MUN:MGG", "url": "https://www.google.com/finance/quote/mgg:mun"}, {"text": "MEX:MGM*", "url": "https://www.google.com/finance/quote/mex:mgm*"}, {"text": "BER:MGG", "url": "https://www.google.com/finance/quote/ber:mgg"}, {"text": "SAO:M1GM34", "url": "https://www.google.com/finance/quote/m1gm34:sao"}, {"text": "MCX:MGM-RM", "url": "https://www.google.com/finance/quote/mcx:mgm-rm"}], "crunchbase_description": "MGM Resorts International is a hospitality firm that operates casinos, restaurants, and recreational resorts.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 1, 0, 1, 1, 1, 0, 1, 0], "total": 6, "isTopResearch": false, "rank": 1030, "fortune500_rank": 349}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 438, "rank": 515, "fortune500_rank": 280}, "ai_jobs": {"counts": null, "total": 56, "rank": 459, "fortune500_rank": 243}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "MGM Resorts International is an American global hospitality and entertainment company operating destination resorts in Las Vegas, Massachusetts, Detroit, Mississippi, Maryland, and New Jersey, including Bellagio, Mandalay Bay, MGM Grand, and Park MGM. In January 2019 the company took over Empire City Casino in Yonkers, New York, and also opened MGM National Harbor in Maryland and MGM Springfield in Massachusetts. The company has a majority interest in MGM China Holdings Limited, which owns the MGM Macau resort and casino, and is developing a gaming resort in Cotai. MGM Resorts owns 50 percent of CityCenter in Las Vegas, which features Aria Resort & Casino. It has a majority controlling interest in MGM Growth Properties, a real estate investment trust.", "wikipedia_link": "https://en.wikipedia.org/wiki/MGM_Resorts_International", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 225, "country": "United States", "website": "https://www.sentinelone.com/", "crunchbase": {"text": "ef23ce54-7eb9-8420-61bc-5fc1cfd162fe", "url": "https://www.crunchbase.com/organization/sentinel"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sentinelone"], "stage": "Mature", "name": "Sentinelone", "patent_name": "sentinelone", "continent": "North America", "local_logo": "sentinelone.png", "aliases": "Sentinel Labs Inc; Sentinel One Solutions Inc", "permid_links": [{"text": 5046722406, "url": "https://permid.org/1-5046722406"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "SentinelOne delivers autonomous endpoint protection that prevents, detects, and responds to attacks across all major vectors.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 10, 10, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 437, "rank": 517}, "ai_jobs": {"counts": null, "total": 22, "rank": 667}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "SentinelOne is an American cybersecurity startup based out of Mountain View, California. The company was founded in 2013 by Tomer Weingarten and Almog Cohen. Weingarten acts as the company's CEO. Nicholas Warner is the company's COO. Currently the company has approximately 700 employees and offices in Mountain View, Boston, Tokyo, and Tel Aviv. The company uses machine learning for monitoring personal computers, IoT devices, and cloud workloads. The company's platform utilizes a heuristic model, specifically its patented behavioral AI. The company is AV-TEST certified.", "wikipedia_link": "https://en.wikipedia.org/wiki/SentinelOne", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1802, "country": "China", "website": "http://www.icbc-ltd.com/", "crunchbase": {"text": " dd3c754e-9070-68c0-6163-9687b1e80d11 ", "url": " https://www.crunchbase.com/organization/industrial-and-commercial-bank-of-china "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/icbc_2"], "stage": "Mature", "name": "Industrial & Commercial Bank Of China", "patent_name": "Industrial & Commercial Bank of China", "continent": "Asia", "local_logo": null, "aliases": "Icbc; Industrial & Commercial Bank of China; \u4e2d\u56fd\u5de5\u5546\u94f6\u884c", "permid_links": [{"text": 4295863742, "url": "https://permid.org/1-4295863742"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:1398", "url": "https://www.google.com/finance/quote/1398:HKG"}, {"text": "HKG:4620", "url": "https://www.google.com/finance/quote/4620:HKG"}], "market_full": [{"text": "DEU:ICKB", "url": "https://www.google.com/finance/quote/DEU:ICKB"}, {"text": "BER:ICK", "url": "https://www.google.com/finance/quote/BER:ICK"}, {"text": "SHH:501398", "url": "https://www.google.com/finance/quote/501398:SHH"}, {"text": "FRA:ICKB", "url": "https://www.google.com/finance/quote/FRA:ICKB"}, {"text": "HKG:1398", "url": "https://www.google.com/finance/quote/1398:HKG"}, {"text": "STU:ICK", "url": "https://www.google.com/finance/quote/ICK:STU"}, {"text": "PKC:IDCBY", "url": "https://www.google.com/finance/quote/IDCBY:PKC"}, {"text": "PKC:IDCBF", "url": "https://www.google.com/finance/quote/IDCBF:PKC"}, {"text": "HKG:4620", "url": "https://www.google.com/finance/quote/4620:HKG"}, {"text": "DEU:ICK", "url": "https://www.google.com/finance/quote/DEU:ICK"}, {"text": "MUN:ICK", "url": "https://www.google.com/finance/quote/ICK:MUN"}, {"text": "VIE:ICK", "url": "https://www.google.com/finance/quote/ICK:VIE"}, {"text": "FRA:ICK", "url": "https://www.google.com/finance/quote/FRA:ICK"}, {"text": "DUS:ICK", "url": "https://www.google.com/finance/quote/DUS:ICK"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 3}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Outlier", "field_count": 1}, {"field_name": "Question answering", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Channel (digital image)", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}], "clusters": [{"cluster_id": 1027, "cluster_count": 2}, {"cluster_id": 13431, "cluster_count": 2}, {"cluster_id": 7377, "cluster_count": 1}, {"cluster_id": 405, "cluster_count": 1}, {"cluster_id": 148, "cluster_count": 1}, {"cluster_id": 25609, "cluster_count": 1}, {"cluster_id": 9662, "cluster_count": 1}, {"cluster_id": 1467, "cluster_count": 1}, {"cluster_id": 24013, "cluster_count": 1}, {"cluster_id": 72455, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 26}, {"ref_CSET_id": 87, "referenced_count": 10}, {"ref_CSET_id": 101, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 5}, {"ref_CSET_id": 1125, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 4}, {"ref_CSET_id": 734, "referenced_count": 3}, {"ref_CSET_id": 112, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}], "tasks": [{"referent": "word_recognition", "task_count": 2}, {"referent": "data_augmentation", "task_count": 2}, {"referent": "traffic_prediction", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "handwritten_character_recognition", "task_count": 1}, {"referent": "synthetic_to_real_translation", "task_count": 1}, {"referent": "handwriting_recognition", "task_count": 1}, {"referent": "multi_label_learning", "task_count": 1}, {"referent": "traffic_flow_prediction", "task_count": 1}, {"referent": "traffic_flow", "task_count": 1}], "methods": [{"referent": "deep_belief_network", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "l1_regularization", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "awd_lstm", "method_count": 2}, {"referent": "clustering", "method_count": 2}, {"referent": "weight_tying", "method_count": 2}, {"referent": "twin_networks", "method_count": 1}, {"referent": "elmo", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [9, 6, 10, 12, 14, 16, 9, 20, 21, 24, 2], "total": 143, "isTopResearch": false, "rank": 461, "sp500_rank": 275}, "ai_publications": {"counts": [0, 0, 0, 0, 3, 1, 1, 3, 5, 4, 0], "total": 17, "isTopResearch": false, "rank": 330, "sp500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 82.22222222222223, "isTopResearch": false, "rank": 31, "sp500_rank": 16}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 1, 1, 0, 2, 31, 36, 74, 48, 49, 3], "total": 245, "isTopResearch": false, "rank": 361, "sp500_rank": 168}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 0], "total": 6, "isTopResearch": true, "rank": 267, "sp500_rank": 137}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.6666666666666666, 31.0, 36.0, 24.666666666666668, 9.6, 12.25, 0], "total": 14.411764705882353, "isTopResearch": false, "rank": 418, "sp500_rank": 139}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 2, 3, 42, 196, 632, 421, 0], "total": 1297, "table": null, "rank": 18, "sp500_rank": 15}, "ai_patents_growth": {"counts": [], "total": 572.2222222222223, "table": null, "rank": 10, "sp500_rank": 4}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 20, 30, 420, 1960, 6320, 4210, 0], "total": 12970, "table": null, "rank": 18, "sp500_rank": 15}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": null, "rank": 125, "sp500_rank": 92}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 2, 0], "total": 4, "table": null, "rank": 139, "sp500_rank": 85}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 4, 15, 22, 10, 0], "total": 51, "table": "industry", "rank": 22, "sp500_rank": 18}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], "total": 3, "table": null, "rank": 159, "sp500_rank": 107}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0], "total": 9, "table": null, "rank": 76, "sp500_rank": 53}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "table": null, "rank": 38, "sp500_rank": 31}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 2, 1, 19, 88, 274, 90, 0], "total": 475, "table": "industry", "rank": 21, "sp500_rank": 18}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 13, 67, 194, 57, 0], "total": 332, "table": "industry", "rank": 2, "sp500_rank": 2}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 3, 17, 58, 21, 0], "total": 100, "table": "industry", "rank": 41, "sp500_rank": 37}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 1, 2, 0], "total": 5, "table": null, "rank": 37, "sp500_rank": 25}, "Business": {"counts": [0, 0, 0, 0, 1, 1, 7, 42, 145, 48, 0], "total": 244, "table": "industry", "rank": 10, "sp500_rank": 10}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": null, "rank": 97, "sp500_rank": 78}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "sp500_rank": 57}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 7, 26, 5, 0], "total": 39, "table": "application", "rank": 28, "sp500_rank": 20}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 4, 2, 0], "total": 9, "table": "application", "rank": 78, "sp500_rank": 55}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 1, 4, 26, 105, 32, 0], "total": 169, "table": "application", "rank": 8, "sp500_rank": 8}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 2, 3, 0], "total": 7, "table": "application", "rank": 159, "sp500_rank": 108}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 13, 44, 211, 58, 0], "total": 326, "table": "application", "rank": 32, "sp500_rank": 23}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 3, 2, 0], "total": 7, "table": null, "rank": 137, "sp500_rank": 98}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0], "total": 5, "table": null, "rank": 170, "sp500_rank": 121}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 435, "rank": 518, "sp500_rank": 240}, "ai_jobs": {"counts": null, "total": 45, "rank": 500, "sp500_rank": 234}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2468, "country": "United States", "website": "https://www.qorvo.com/", "crunchbase": {"text": "5dfd2e8e-9ba2-87a0-cb28-13485e422ebc", "url": "https://www.crunchbase.com/organization/qorvo"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/qorvo"], "stage": "Mature", "name": "Qorvo", "patent_name": "qorvo", "continent": "North America", "local_logo": "qorvo.png", "aliases": "Qorvo Inc; Qorvo, Inc", "permid_links": [{"text": 5042255248, "url": "https://permid.org/1-5042255248"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:QRVO", "url": "https://www.google.com/finance/quote/nasdaq:qrvo"}], "market_full": [{"text": "MEX:QRVO*", "url": "https://www.google.com/finance/quote/mex:qrvo*"}, {"text": "BER:2QO", "url": "https://www.google.com/finance/quote/2qo:ber"}, {"text": "GER:2QOX", "url": "https://www.google.com/finance/quote/2qox:ger"}, {"text": "SAO:Q1RV34", "url": "https://www.google.com/finance/quote/q1rv34:sao"}, {"text": "STU:2QO", "url": "https://www.google.com/finance/quote/2qo:stu"}, {"text": "DEU:2QO", "url": "https://www.google.com/finance/quote/2qo:deu"}, {"text": "LSE:0KSJ", "url": "https://www.google.com/finance/quote/0ksj:lse"}, {"text": "DUS:2QO", "url": "https://www.google.com/finance/quote/2qo:dus"}, {"text": "HAN:2QO", "url": "https://www.google.com/finance/quote/2qo:han"}, {"text": "MCX:QRVO", "url": "https://www.google.com/finance/quote/mcx:qrvo"}, {"text": "MUN:2QO", "url": "https://www.google.com/finance/quote/2qo:mun"}, {"text": "BRN:2QO", "url": "https://www.google.com/finance/quote/2qo:brn"}, {"text": "FRA:2QO", "url": "https://www.google.com/finance/quote/2qo:fra"}, {"text": "NASDAQ:QRVO", "url": "https://www.google.com/finance/quote/nasdaq:qrvo"}], "crunchbase_description": "Qorvo (''kor-vo'') enables customers to launch next-generation designs even faster.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Activity recognition", "field_count": 1}], "clusters": [{"cluster_id": 36929, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 671, "referenced_count": 1}], "tasks": [{"referent": "human_activity_recognition", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 7, 33, 47, 54, 43, 52, 42, 41, 29, 0], "total": 357, "isTopResearch": false, "rank": 332, "fortune500_rank": 127}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 2, 4, 4, 3, 2, 3, 1, 1, 0], "total": 20, "isTopResearch": false, "rank": 684, "fortune500_rank": 187}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 20.0, "isTopResearch": false, "rank": 313, "fortune500_rank": 100}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 431, "rank": 519, "fortune500_rank": 282}, "ai_jobs": {"counts": null, "total": 14, "rank": 775, "fortune500_rank": 384}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Qorvo is an American semiconductor company that designs, manufactures, and supplies radio-frequency systems for applications that drive wireless and broadband communications, as well as foundry services. The company, which trades on NASDAQ, was created by the merger of TriQuint Semiconductor and RF Micro Devices, which was announced in 2014 and completed on January 1, 2015. The headquarters for the company originally were in both Hillsboro, Oregon (home of TriQuint), and Greensboro, North Carolina (home of RFMD), but in mid-2016 the company began referring to its North Carolina site as its exclusive headquarters.", "wikipedia_link": "https://en.wikipedia.org/wiki/Qorvo", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2227, "country": "United States", "website": "http://www.averydennison.com/", "crunchbase": {"text": "a3ab8d34-fe25-d08b-4981-1e4880fd3abb", "url": "https://www.crunchbase.com/organization/avery-dennison"}, "child_crunchbase": [{"text": "7dcbc94e-bf90-e146-fc57-b37671835b98", "url": "https://www.crunchbase.com/organization/stylewhere"}], "linkedin": ["https://www.linkedin.com/company/avery-dennison"], "stage": "Mature", "name": "Avery Dennison Corp", "patent_name": "avery dennison corp", "continent": "North America", "local_logo": "avery_dennison_corp.png", "aliases": "Avery Dennison; Avery Dennison Corporation", "permid_links": [{"text": 4295903492, "url": "https://permid.org/1-4295903492"}], "parent_info": null, "agg_child_info": "StyleWhere", "unagg_child_info": null, "market_filt": [{"text": "NYSE:AVY", "url": "https://www.google.com/finance/quote/avy:nyse"}], "market_full": [{"text": "LSE:0HJR", "url": "https://www.google.com/finance/quote/0hjr:lse"}, {"text": "STU:AV3", "url": "https://www.google.com/finance/quote/av3:stu"}, {"text": "BRN:AV3", "url": "https://www.google.com/finance/quote/av3:brn"}, {"text": "ASE:AVY", "url": "https://www.google.com/finance/quote/ase:avy"}, {"text": "GER:AV3X", "url": "https://www.google.com/finance/quote/av3x:ger"}, {"text": "DUS:AV3", "url": "https://www.google.com/finance/quote/av3:dus"}, {"text": "BUE:AVY3", "url": "https://www.google.com/finance/quote/avy3:bue"}, {"text": "FRA:AV3", "url": "https://www.google.com/finance/quote/av3:fra"}, {"text": "MUN:AV3", "url": "https://www.google.com/finance/quote/av3:mun"}, {"text": "MCX:AVY-RM", "url": "https://www.google.com/finance/quote/avy-rm:mcx"}, {"text": "SAO:A1VY34", "url": "https://www.google.com/finance/quote/a1vy34:sao"}, {"text": "NYQ:AVY", "url": "https://www.google.com/finance/quote/avy:nyq"}, {"text": "NYSE:AVY", "url": "https://www.google.com/finance/quote/avy:nyse"}, {"text": "DEU:AV3", "url": "https://www.google.com/finance/quote/av3:deu"}], "crunchbase_description": "Avery Dennison is a company focusing on labeling and packaging materials and solutions.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 3, 0, 3, 3, 1, 1, 2, 0], "total": 14, "isTopResearch": false, "rank": 875, "fortune500_rank": 310}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 430, "rank": 520, "fortune500_rank": 283}, "ai_jobs": {"counts": null, "total": 42, "rank": 516, "fortune500_rank": 268}}, "sector": "Basic Materials", "business_sector": "Applied Resources", "wikipedia_description": "Avery Dennison Corporation is a multinational manufacturer and distributor of pressure-sensitive adhesive materials (such as self-adhesive labels), apparel branding labels and tags, RFID inlays, and specialty medical products. The company is a member of the Fortune 500 and is headquartered in Glendale, California.", "wikipedia_link": "https://en.wikipedia.org/wiki/Avery_Dennison", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2552, "country": "United States", "website": "http://www.zimmerbiomet.com/", "crunchbase": {"text": "c65a6dcc-ba52-3662-fcee-d578fe9ceff8", "url": "https://www.crunchbase.com/organization/zimmer-holdings"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/zimmerbiomet"], "stage": "Mature", "name": "Zimmer Biomet Holdings", "patent_name": "zimmer biomet holdings", "continent": "North America", "local_logo": "zimmer_biomet_holdings.png", "aliases": "Zimmer Biomet; Zimmer Biomet Holdings, Inc", "permid_links": [{"text": 4295903020, "url": "https://permid.org/1-4295903020"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ZBH", "url": "https://www.google.com/finance/quote/nyse:zbh"}], "market_full": [{"text": "ASE:ZBH", "url": "https://www.google.com/finance/quote/ase:zbh"}, {"text": "NYQ:ZBH", "url": "https://www.google.com/finance/quote/nyq:zbh"}, {"text": "MEX:ZBH*", "url": "https://www.google.com/finance/quote/mex:zbh*"}, {"text": "GER:ZIMX", "url": "https://www.google.com/finance/quote/ger:zimx"}, {"text": "FRA:ZIM", "url": "https://www.google.com/finance/quote/fra:zim"}, {"text": "MCX:ZBH-RM", "url": "https://www.google.com/finance/quote/mcx:zbh-rm"}, {"text": "DEU:ZIMRHV", "url": "https://www.google.com/finance/quote/deu:zimrhv"}, {"text": "VIE:ZBH", "url": "https://www.google.com/finance/quote/vie:zbh"}, {"text": "STU:ZIM", "url": "https://www.google.com/finance/quote/stu:zim"}, {"text": "NYSE:ZBH", "url": "https://www.google.com/finance/quote/nyse:zbh"}, {"text": "BER:ZIM", "url": "https://www.google.com/finance/quote/ber:zim"}, {"text": "LSE:0QQD", "url": "https://www.google.com/finance/quote/0qqd:lse"}, {"text": "DUS:ZIM", "url": "https://www.google.com/finance/quote/dus:zim"}, {"text": "SAO:Z1BH34", "url": "https://www.google.com/finance/quote/sao:z1bh34"}, {"text": "MUN:ZIM", "url": "https://www.google.com/finance/quote/mun:zim"}], "crunchbase_description": "Zimmer Biomet is engaged in designing, manufacturing and marketing of orthopedic reconstructive products.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Robustness (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 1466, "cluster_count": 1}, {"cluster_id": 1777, "cluster_count": 1}, {"cluster_id": 44390, "cluster_count": 1}, {"cluster_id": 10165, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "knee_osteoarthritis_prediction", "task_count": 1}, {"referent": "computational_manga", "task_count": 1}, {"referent": "component_classification", "task_count": 1}, {"referent": "morphological_analysis", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [28, 26, 24, 38, 38, 49, 37, 51, 19, 17, 0], "total": 327, "isTopResearch": false, "rank": 344, "fortune500_rank": 131}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 3, 4, 0], "total": 8, "isTopResearch": false, "rank": 782, "fortune500_rank": 210}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 3.0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735, "fortune500_rank": 206}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 3, 4, 0, 1, 0, 0], "total": 8, "table": null, "rank": 443, "fortune500_rank": 142}, "ai_patents_growth": {"counts": [], "total": -33.33333333333333, "table": null, "rank": 1488, "fortune500_rank": 429}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 30, 40, 0, 10, 0, 0], "total": 80, "table": null, "rank": 443, "fortune500_rank": 142}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 3, 4, 0, 1, 0, 0], "total": 8, "table": "industry", "rank": 95, "fortune500_rank": 39}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191, "fortune500_rank": 77}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 428, "rank": 521, "fortune500_rank": 284}, "ai_jobs": {"counts": null, "total": 36, "rank": 551, "fortune500_rank": 284}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Zimmer Biomet is a publicly traded medical device company. It was founded in 1927 to produce aluminum splints. The firm is headquartered in Warsaw, Indiana, where it is part of the medical devices business cluster.", "wikipedia_link": "https://en.wikipedia.org/wiki/Zimmer_Biomet", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2443, "country": "United States", "website": "http://www.oxy.com/", "crunchbase": {"text": "9509565a-0caf-7bc2-b702-226fac83e62b", "url": "https://www.crunchbase.com/organization/occidental-petroleum-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/oxy"], "stage": "Mature", "name": "Occidental Petroleum", "patent_name": "occidental petroleum", "continent": "North America", "local_logo": "occidental_petroleum.png", "aliases": "Occidental; Occidental Petroleum Corp; Occidental Petroleum Corporation; Occidental Petroleum Corporation (Nyse: Oxy); Oxy", "permid_links": [{"text": 4295904645, "url": "https://permid.org/1-4295904645"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:OXY", "url": "https://www.google.com/finance/quote/nyse:oxy"}], "market_full": [{"text": "GER:OPCX", "url": "https://www.google.com/finance/quote/ger:opcx"}, {"text": "MUN:OPC", "url": "https://www.google.com/finance/quote/mun:opc"}, {"text": "DUS:OPC", "url": "https://www.google.com/finance/quote/dus:opc"}, {"text": "MEX:OXY1*", "url": "https://www.google.com/finance/quote/mex:oxy1*"}, {"text": "MCX:OXY-RM", "url": "https://www.google.com/finance/quote/mcx:oxy-rm"}, {"text": "BRU:OCPET", "url": "https://www.google.com/finance/quote/bru:ocpet"}, {"text": "NYSE:OXY", "url": "https://www.google.com/finance/quote/nyse:oxy"}, {"text": "STU:OPC", "url": "https://www.google.com/finance/quote/opc:stu"}, {"text": "ASE:OXY", "url": "https://www.google.com/finance/quote/ase:oxy"}, {"text": "LSE:0KAK", "url": "https://www.google.com/finance/quote/0kak:lse"}, {"text": "FRA:OPC", "url": "https://www.google.com/finance/quote/fra:opc"}, {"text": "NYQ:OXY", "url": "https://www.google.com/finance/quote/nyq:oxy"}, {"text": "DEU:OXY", "url": "https://www.google.com/finance/quote/deu:oxy"}, {"text": "BER:OPC", "url": "https://www.google.com/finance/quote/ber:opc"}, {"text": "BRN:OPC", "url": "https://www.google.com/finance/quote/brn:opc"}, {"text": "SAO:OXYP34", "url": "https://www.google.com/finance/quote/oxyp34:sao"}], "crunchbase_description": "Occidental Petroleum is an international oil and gas exploration and production company.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}], "clusters": [{"cluster_id": 45800, "cluster_count": 2}, {"cluster_id": 62264, "cluster_count": 1}, {"cluster_id": 22686, "cluster_count": 1}, {"cluster_id": 41075, "cluster_count": 1}, {"cluster_id": 41505, "cluster_count": 1}, {"cluster_id": 47249, "cluster_count": 1}, {"cluster_id": 93015, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2443, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 676, "referenced_count": 1}, {"ref_CSET_id": 1564, "referenced_count": 1}], "tasks": [{"referent": "real_time_object_detection", "task_count": 3}, {"referent": "image_analysis", "task_count": 3}, {"referent": "classification", "task_count": 2}, {"referent": "boundary_detection", "task_count": 1}, {"referent": "activity_detection", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "3d_shape_recognition", "task_count": 1}, {"referent": "artificial_life", "task_count": 1}, {"referent": "svbrdf_estimation", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 3}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "resnet_d", "method_count": 2}, {"referent": "causal_inference", "method_count": 1}, {"referent": "one_shot_aggregation", "method_count": 1}, {"referent": "statistical_inference", "method_count": 1}, {"referent": "semantic_segmentation_models", "method_count": 1}, {"referent": "metrix", "method_count": 1}, {"referent": "polyak_averaging", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [4, 11, 8, 4, 14, 19, 31, 44, 20, 18, 0], "total": 173, "isTopResearch": false, "rank": 427, "fortune500_rank": 164}, "ai_publications": {"counts": [0, 0, 0, 0, 2, 0, 0, 5, 0, 0, 0], "total": 7, "isTopResearch": false, "rank": 481, "fortune500_rank": 134}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 3, 8, 14, 19, 1], "total": 46, "isTopResearch": false, "rank": 597, "fortune500_rank": 166}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 1.6, 0, 0, 0], "total": 6.571428571428571, "isTopResearch": false, "rank": 657, "fortune500_rank": 187}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 427, "rank": 522, "fortune500_rank": 285}, "ai_jobs": {"counts": null, "total": 31, "rank": 589, "fortune500_rank": 305}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "Occidental Petroleum Corporation (often abbreviated Oxy in reference to its ticker symbol and logo) is an American company engaged in hydrocarbon exploration in the United States, the Middle East, and Colombia as well as petrochemical manufacturing in the United States, Canada, and Chile. It is organized in Delaware and headquartered in Houston. The company is ranked 167th on the Fortune 500. In the 2020 Forbes Global 2000, Occidental Petroleum was ranked as the 669th largest public company in the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/Occidental_Petroleum", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2054, "country": "Japan", "website": "https://www.mizuhogroup.com/", "crunchbase": {"text": " 5fd48461-50c3-9dc1-e776-854d52e50717 ", "url": " https://www.crunchbase.com/organization/mizuho-financial-group "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mizuho"], "stage": "Mature", "name": "Mizuho Financial Group", "patent_name": "Mizuho Financial Group", "continent": "Asia", "local_logo": null, "aliases": "Mizuho Financial Group; \u307f\u305a\u307b\u30d5\u30a3\u30ca\u30f3\u30b7\u30e3\u30eb\u30b0\u30eb\u30fc\u30d7", "permid_links": [{"text": 4295878505, "url": "https://permid.org/1-4295878505"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MFG", "url": "https://www.google.com/finance/quote/MFG:NYSE"}, {"text": "TYO:8411", "url": "https://www.google.com/finance/quote/8411:TYO"}], "market_full": [{"text": "MUN:MZ8A", "url": "https://www.google.com/finance/quote/MUN:MZ8A"}, {"text": "SES:N6DD", "url": "https://www.google.com/finance/quote/N6DD:SES"}, {"text": "NYSE:MFG", "url": "https://www.google.com/finance/quote/MFG:NYSE"}, {"text": "PKC:MZHOF", "url": "https://www.google.com/finance/quote/MZHOF:PKC"}, {"text": "STU:MZ8", "url": "https://www.google.com/finance/quote/MZ8:STU"}, {"text": "MUN:MZ8", "url": "https://www.google.com/finance/quote/MUN:MZ8"}, {"text": "ASE:MFG", "url": "https://www.google.com/finance/quote/ASE:MFG"}, {"text": "FRA:MZ8", "url": "https://www.google.com/finance/quote/FRA:MZ8"}, {"text": "BUE:MFG3", "url": "https://www.google.com/finance/quote/BUE:MFG3"}, {"text": "DEU:8411", "url": "https://www.google.com/finance/quote/8411:DEU"}, {"text": "FRA:MZ8A", "url": "https://www.google.com/finance/quote/FRA:MZ8A"}, {"text": "BER:MZ8", "url": "https://www.google.com/finance/quote/BER:MZ8"}, {"text": "NYQ:MFG", "url": "https://www.google.com/finance/quote/MFG:NYQ"}, {"text": "TYO:8411", "url": "https://www.google.com/finance/quote/8411:TYO"}, {"text": "DUS:MZ8", "url": "https://www.google.com/finance/quote/DUS:MZ8"}, {"text": "DEU:MZ8A", "url": "https://www.google.com/finance/quote/DEU:MZ8A"}, {"text": "STU:MZ8A", "url": "https://www.google.com/finance/quote/MZ8A:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Object (computer science)", "field_count": 1}, {"field_name": "Lasso (statistics)", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}], "clusters": [{"cluster_id": 23680, "cluster_count": 3}, {"cluster_id": 23793, "cluster_count": 1}, {"cluster_id": 19801, "cluster_count": 1}, {"cluster_id": 3949, "cluster_count": 1}, {"cluster_id": 57368, "cluster_count": 1}, {"cluster_id": 749, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2054, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}], "tasks": [{"referent": "damage_detection", "task_count": 1}, {"referent": "damaged_building_detection", "task_count": 1}, {"referent": "gender_prediction", "task_count": 1}, {"referent": "3d_face_reconstruction", "task_count": 1}, {"referent": "age_estimation", "task_count": 1}, {"referent": "deblurring", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "protein_secondary_structure_prediction", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 3}, {"referent": "vqa_models", "method_count": 2}, {"referent": "discriminators", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [20, 20, 21, 15, 16, 17, 19, 25, 8, 3, 0], "total": 164, "isTopResearch": false, "rank": 438, "sp500_rank": 262}, "ai_publications": {"counts": [0, 1, 0, 1, 0, 0, 2, 2, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 514, "sp500_rank": 255}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [8, 5, 6, 3, 5, 4, 12, 15, 28, 23, 3], "total": 112, "isTopResearch": false, "rank": 486, "sp500_rank": 217}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "sp500_rank": 146}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 5.0, 0, 3.0, 0, 0, 6.0, 7.5, 0, 0, 0], "total": 18.666666666666668, "isTopResearch": false, "rank": 335, "sp500_rank": 103}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 424, "rank": 523, "sp500_rank": 241}, "ai_jobs": {"counts": null, "total": 30, "rank": 597, "sp500_rank": 258}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 1948, "country": "France", "website": "https://groupebpce.com/", "crunchbase": {"text": " 1b9d036c-c68f-f23c-135f-7e9f5992a810", "url": " https://www.crunchbase.com/organization/groupe-bpce"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bpce"], "stage": "Unknown", "name": "Groupe Bpce", "patent_name": "Groupe BPCE", "continent": "Europe", "local_logo": null, "aliases": "Groupe BPCE; Groupe Banque Populaire Caisse D'Epargne", "permid_links": [{"text": 5000084509, "url": "https://permid.org/1-5000084509"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0], "total": 4, "isTopResearch": false, "rank": 1105, "sp500_rank": 421}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 421, "rank": 524, "sp500_rank": 242}, "ai_jobs": {"counts": null, "total": 119, "rank": 308, "sp500_rank": 172}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2041, "country": "South Korea", "website": "https://www.skhynix.com/", "crunchbase": {"text": " 93913e92-e331-3e52-c7f5-68848e6974ef", "url": " https://www.crunchbase.com/organization/sk-hynix"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sk-hynix"], "stage": "Mature", "name": "Sk Hynix", "patent_name": "SK Hynix", "continent": "Asia", "local_logo": null, "aliases": "Hynix Semiconductor; SK Hynix", "permid_links": [{"text": 4295881619, "url": "https://permid.org/1-4295881619"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "FRA:HY9H", "url": "https://www.google.com/finance/quote/FRA:HY9H"}, {"text": "MUN:HY9H", "url": "https://www.google.com/finance/quote/HY9H:MUN"}, {"text": "STU:HY9H", "url": "https://www.google.com/finance/quote/HY9H:STU"}, {"text": "DEU:HY9H", "url": "https://www.google.com/finance/quote/DEU:HY9H"}, {"text": "BER:HY9H", "url": "https://www.google.com/finance/quote/BER:HY9H"}, {"text": "PKL:HXSCL", "url": "https://www.google.com/finance/quote/HXSCL:PKL"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Stereo camera", "field_count": 1}], "clusters": [{"cluster_id": 1149, "cluster_count": 1}, {"cluster_id": 44324, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 50, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}], "tasks": [{"referent": "indoor_positioning", "task_count": 1}, {"referent": "remote_sensing", "task_count": 1}, {"referent": "action_localization", "task_count": 1}, {"referent": "svbrdf_estimation", "task_count": 1}, {"referent": "6d_pose_estimation", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [6, 9, 5, 9, 5, 5, 9, 9, 13, 5, 0], "total": 75, "isTopResearch": false, "rank": 556, "sp500_rank": 309}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "isTopResearch": false, "rank": 881, "sp500_rank": 347}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 2.0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "sp500_rank": 345}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 3, 2, 0, 0, 0, 0], "total": 6, "table": null, "rank": 487, "sp500_rank": 216}, "ai_patents_growth": {"counts": [], "total": -66.66666666666667, "table": null, "rank": 1550, "sp500_rank": 456}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 30, 20, 0, 0, 0, 0], "total": 60, "table": null, "rank": 487, "sp500_rank": 216}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 2, 2, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 336, "sp500_rank": 166}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 421, "rank": 524, "sp500_rank": 242}, "ai_jobs": {"counts": null, "total": 74, "rank": 397, "sp500_rank": 205}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 2598, "country": "United States", "website": "https://www.bechtel.com/", "crunchbase": {"text": "003af4a2-74bc-83c1-58bd-f31717a17f6a", "url": "https://www.crunchbase.com/organization/bechtel"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bechtel-corporation"], "stage": "Mature", "name": "Bechtel Group Inc", "patent_name": "bechtel group inc", "continent": "North America", "local_logo": "bechtel_group_inc.png", "aliases": "Bechtel; Bechtel Corporation", "permid_links": [{"text": 4296361477, "url": "https://permid.org/1-4296361477"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Bechtel is a construction company that offers engineering, construction, and project management solutions to its customers.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [14, 26, 16, 16, 15, 12, 16, 13, 6, 5, 0], "total": 139, "isTopResearch": false, "rank": 466}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 421, "rank": 524}, "ai_jobs": {"counts": null, "total": 19, "rank": 706}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Bechtel Corporation is an American engineering, procurement, construction, and project management company founded in San Francisco, California, and headquartered in Reston, Virginia. It is the largest construction company in the United States and the 11th-largest privately-owned American company in 2018.", "wikipedia_link": "https://en.wikipedia.org/wiki/Bechtel", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2193, "country": "United States", "website": "https://shop.advanceautoparts.com/", "crunchbase": {"text": "4bc99f4b-784a-95a9-825a-aba1c3042c7d", "url": "https://www.crunchbase.com/organization/advance-auto-parts"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/advance-auto-parts"], "stage": "Mature", "name": "Advance Auto Parts", "patent_name": "advance auto parts", "continent": "North America", "local_logo": "advance_auto_parts.png", "aliases": "Advance Auto Parts, Inc", "permid_links": [{"text": 4295901827, "url": "https://permid.org/1-4295901827"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AAP", "url": "https://www.google.com/finance/quote/aap:nyse"}, {"text": "NASDAQ:ATVI", "url": "https://www.google.com/finance/quote/atvi:nasdaq"}], "market_full": [{"text": "BER:AIY", "url": "https://www.google.com/finance/quote/aiy:ber"}, {"text": "NYSE:AAP", "url": "https://www.google.com/finance/quote/aap:nyse"}, {"text": "HAN:AIY", "url": "https://www.google.com/finance/quote/aiy:han"}, {"text": "STU:AIY", "url": "https://www.google.com/finance/quote/aiy:stu"}, {"text": "GER:AIYX", "url": "https://www.google.com/finance/quote/aiyx:ger"}, {"text": "BRN:AIY", "url": "https://www.google.com/finance/quote/aiy:brn"}, {"text": "MCX:ATVI-RM", "url": "https://www.google.com/finance/quote/atvi-rm:mcx"}, {"text": "LSE:0H8X", "url": "https://www.google.com/finance/quote/0h8x:lse"}, {"text": "MUN:AIY", "url": "https://www.google.com/finance/quote/aiy:mun"}, {"text": "SAO:ATVI34", "url": "https://www.google.com/finance/quote/atvi34:sao"}, {"text": "SWX:AIY", "url": "https://www.google.com/finance/quote/aiy:swx"}, {"text": "FRA:AIY", "url": "https://www.google.com/finance/quote/aiy:fra"}, {"text": "VIE:ATVI", "url": "https://www.google.com/finance/quote/atvi:vie"}, {"text": "NASDAQ:ATVI", "url": "https://www.google.com/finance/quote/atvi:nasdaq"}, {"text": "DUS:AIY", "url": "https://www.google.com/finance/quote/aiy:dus"}, {"text": "HAM:AIY", "url": "https://www.google.com/finance/quote/aiy:ham"}, {"text": "DEU:ATVI", "url": "https://www.google.com/finance/quote/atvi:deu"}, {"text": "MEX:ATVI*", "url": "https://www.google.com/finance/quote/atvi*:mex"}], "crunchbase_description": "Advance Auto Parts is the largest automotive aftermarket parts provider in North America, serves both the professional installer.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 416, "rank": 527, "fortune500_rank": 286}, "ai_jobs": {"counts": null, "total": 76, "rank": 393, "fortune500_rank": 208}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "Advance Auto Parts, Inc. (Advance) is an American automotive aftermarket parts provider. Headquartered in Raleigh, North Carolina, it serves both professional installer and do-it-yourself (DIY) customers. As of July 13, 2019, Advance operated 4,912 stores and 150 Worldpac branches in the United States and Canada. The Company also serves 1,250 independently owned Carquest branded stores across these locations in addition to Mexico, the Bahamas, Turks and Caicos and British Virgin Islands. The company's stores and branches offer a broad selection of brand name, original equipment manufacturer (OEM) and private label automotive replacement parts, accessories, batteries and maintenance items for domestic and imported cars, vans, sport utility vehicles and light and heavy duty trucks.", "wikipedia_link": "https://en.wikipedia.org/wiki/Advance_Auto_Parts", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2252, "country": "United States", "website": "https://www.centerpointenergy.com/", "crunchbase": {"text": "d6cf8037-5176-0384-6b0a-48559b88f94e", "url": "https://www.crunchbase.com/organization/centerpoint-energy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/centerpoint-energy"], "stage": "Mature", "name": "CenterPoint Energy", "patent_name": "centerpoint energy", "continent": "North America", "local_logo": "centerpoint_energy.png", "aliases": "Centerpoint Energy - Always There \u00ae; Centerpoint Energy, Inc", "permid_links": [{"text": 4295912256, "url": "https://permid.org/1-4295912256"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CNP", "url": "https://www.google.com/finance/quote/cnp:nyse"}], "market_full": [{"text": "SAO:C1NP34", "url": "https://www.google.com/finance/quote/c1np34:sao"}, {"text": "BRN:HOU", "url": "https://www.google.com/finance/quote/brn:hou"}, {"text": "FRA:HOU", "url": "https://www.google.com/finance/quote/fra:hou"}, {"text": "MUN:HOU", "url": "https://www.google.com/finance/quote/hou:mun"}, {"text": "GER:HOUX", "url": "https://www.google.com/finance/quote/ger:houx"}, {"text": "NYSE:CNP", "url": "https://www.google.com/finance/quote/cnp:nyse"}, {"text": "STU:HOU", "url": "https://www.google.com/finance/quote/hou:stu"}, {"text": "DUS:HOU", "url": "https://www.google.com/finance/quote/dus:hou"}, {"text": "MCX:CNP-RM", "url": "https://www.google.com/finance/quote/cnp-rm:mcx"}, {"text": "NYQ:CNP", "url": "https://www.google.com/finance/quote/cnp:nyq"}, {"text": "DEU:CNP", "url": "https://www.google.com/finance/quote/cnp:deu"}, {"text": "BER:HOU", "url": "https://www.google.com/finance/quote/ber:hou"}, {"text": "ASE:CNP", "url": "https://www.google.com/finance/quote/ase:cnp"}, {"text": "LSE:0HVF", "url": "https://www.google.com/finance/quote/0hvf:lse"}], "crunchbase_description": "CenterPoint Energy, Inc. is a domestic energy delivery company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 1, 0, 4, 0, 1, 0], "total": 7, "isTopResearch": false, "rank": 1006, "fortune500_rank": 339}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 416, "rank": 527, "fortune500_rank": 286}, "ai_jobs": {"counts": null, "total": 63, "rank": 431, "fortune500_rank": 231}}, "sector": "Utilities", "business_sector": "Utilities", "wikipedia_description": "CenterPoint Energy, Inc. is an American Fortune 500 electric and natural gas utility serving several markets in the American states of Arkansas, Indiana, Louisiana, Minnesota, Mississippi, Oklahoma, and Texas. It was formerly known as Reliant Energy (from which it is now separated), NorAm Energy, Houston Industries, and HL&P. The company is headquartered in the CenterPoint Energy Tower at 1111 Louisiana Street in Downtown Houston. Some of its notable subscribers include Retail Electric Providers (REPs), such as NRG Energy, Champion Energy, Eligo Energy, Dynowatt, Ambit Energy, Texas Power, Bounce Energy, MXenergy, Direct Energy, Stream Energy, First Texas Energy Corporation, Gexa Energy, Cirro Energy, and Kona Energy.", "wikipedia_link": "https://en.wikipedia.org/wiki/CenterPoint_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 130, "country": "China", "website": "http://www.iqiyi.com", "crunchbase": {"text": "741d0e64-2745-f16e-f567-3f6b2cde9cb3", "url": "https://www.crunchbase.com/organization/iqiyi"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/qiyi.com"], "stage": "Mature", "name": "iQiyi", "patent_name": "iqiyi", "continent": "Asia", "local_logo": "iqiyi.png", "aliases": "Beijing Iqiyi Science & Technology; Iqiyi, Inc; \u5317\u4eac\u611b\u5947\u827a\u79d1\u6280\u6709\u9650\u516c\u53f8; \u7231\u5947\u827a", "permid_links": [{"text": 5061450735, "url": "https://permid.org/1-5061450735"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:IQ", "url": "https://www.google.com/finance/quote/iq:nasdaq"}], "market_full": [{"text": "NASDAQ:IQ", "url": "https://www.google.com/finance/quote/iq:nasdaq"}], "crunchbase_description": "iQiyi is an ad-supported television and movie portal providing fully-licensed media content.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 3}, {"field_name": "Domain knowledge", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Sentiment analysis", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "UV mapping", "field_count": 1}, {"field_name": "Categorization", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}], "clusters": [{"cluster_id": 4634, "cluster_count": 5}, {"cluster_id": 10425, "cluster_count": 2}, {"cluster_id": 1621, "cluster_count": 2}, {"cluster_id": 4473, "cluster_count": 2}, {"cluster_id": 14477, "cluster_count": 1}, {"cluster_id": 14686, "cluster_count": 1}, {"cluster_id": 228, "cluster_count": 1}, {"cluster_id": 148, "cluster_count": 1}, {"cluster_id": 7064, "cluster_count": 1}, {"cluster_id": 214, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 51}, {"ref_CSET_id": 163, "referenced_count": 49}, {"ref_CSET_id": 87, "referenced_count": 32}, {"ref_CSET_id": 245, "referenced_count": 16}, {"ref_CSET_id": 127, "referenced_count": 14}, {"ref_CSET_id": 223, "referenced_count": 9}, {"ref_CSET_id": 184, "referenced_count": 9}, {"ref_CSET_id": 6, "referenced_count": 6}, {"ref_CSET_id": 37, "referenced_count": 6}, {"ref_CSET_id": 115, "referenced_count": 5}], "tasks": [{"referent": "face_recognition", "task_count": 4}, {"referent": "computer_vision", "task_count": 3}, {"referent": "image_popularity_prediction", "task_count": 2}, {"referent": "real_time_object_detection", "task_count": 2}, {"referent": "inference_attack", "task_count": 2}, {"referent": "image_recognition", "task_count": 2}, {"referent": "emotion_recognition", "task_count": 2}, {"referent": "segmentation", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "style_transfer", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "3d_representations", "method_count": 3}, {"referent": "ghost_module", "method_count": 2}, {"referent": "twin_networks", "method_count": 2}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "dueling_network", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "discriminative_regularization", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 3, 0, 2, 17, 15, 5, 2, 1], "total": 45, "isTopResearch": false, "rank": 641}, "ai_publications": {"counts": [0, 0, 0, 2, 0, 1, 11, 10, 4, 1, 0], "total": 29, "isTopResearch": false, "rank": 244}, "ai_publications_growth": {"counts": [], "total": -48.03030303030303, "isTopResearch": false, "rank": 1440}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 2, 0, 0], "total": 6, "isTopResearch": false, "rank": 140}, "citation_counts": {"counts": [0, 0, 1, 1, 32, 59, 118, 135, 189, 160, 6], "total": 701, "isTopResearch": false, "rank": 228}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 1, 7, 6, 2, 1, 0], "total": 18, "isTopResearch": true, "rank": 148}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.5, 0, 59.0, 10.727272727272727, 13.5, 47.25, 160.0, 0], "total": 24.17241379310345, "isTopResearch": false, "rank": 253}}, "patents": {"ai_patents": {"counts": [0, 1, 5, 7, 18, 33, 111, 83, 87, 40, 0], "total": 385, "table": null, "rank": 64}, "ai_patents_growth": {"counts": [], "total": 98.15724815724815, "table": null, "rank": 123}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 50, 70, 180, 330, 1110, 830, 870, 400, 0], "total": 3850, "table": null, "rank": 64}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 4, 3, 2, 0, 0], "total": 10, "table": "industry", "rank": 90}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "table": null, "rank": 165}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 5, 12, 9, 26, 33, 38, 13, 0], "total": 137, "table": "industry", "rank": 58}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [0, 0, 2, 2, 2, 10, 18, 10, 13, 1, 0], "total": 58, "table": "industry", "rank": 71}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 4, 3, 7, 10, 6, 0], "total": 30, "table": "industry", "rank": 78}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 32}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 62}, "Speech_Processing": {"counts": [0, 0, 0, 1, 0, 1, 5, 4, 1, 1, 0], "total": 13, "table": "application", "rank": 73}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0], "total": 4, "table": null, "rank": 137}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 5, 0, 0], "total": 8, "table": "application", "rank": 143}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 7, 7, 50, 43, 39, 19, 0], "total": 165, "table": "application", "rank": 51}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 0, 4, 7, 2, 3, 0, 0], "total": 17, "table": "application", "rank": 76}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 416, "rank": 527}, "ai_jobs": {"counts": null, "total": 42, "rank": 516}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 2535, "country": "United States", "website": "https://www.wm.com/", "crunchbase": {"text": "a44c281d-fb18-a03b-61f9-5b1230e6767d", "url": "https://www.crunchbase.com/organization/waste-management"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/waste-management"], "stage": "Mature", "name": "Waste Management Inc.", "patent_name": "waste management inc.", "continent": "North America", "local_logo": "waste_management_inc.png", "aliases": "Waste Management; Wm Intellectual Property Holdings, L.L.C", "permid_links": [{"text": 4295905311, "url": "https://permid.org/1-4295905311"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WM", "url": "https://www.google.com/finance/quote/nyse:wm"}], "market_full": [{"text": "DEU:UW", "url": "https://www.google.com/finance/quote/deu:uw"}, {"text": "HAN:UWS", "url": "https://www.google.com/finance/quote/han:uws"}, {"text": "STU:UWS", "url": "https://www.google.com/finance/quote/stu:uws"}, {"text": "ASE:WM", "url": "https://www.google.com/finance/quote/ase:wm"}, {"text": "SAO:W1MC34", "url": "https://www.google.com/finance/quote/sao:w1mc34"}, {"text": "BRN:UWS", "url": "https://www.google.com/finance/quote/brn:uws"}, {"text": "VIE:WM", "url": "https://www.google.com/finance/quote/vie:wm"}, {"text": "MCX:WM-RM", "url": "https://www.google.com/finance/quote/mcx:wm-rm"}, {"text": "NYSE:WM", "url": "https://www.google.com/finance/quote/nyse:wm"}, {"text": "MEX:WMI*", "url": "https://www.google.com/finance/quote/mex:wmi*"}, {"text": "GER:UWSX", "url": "https://www.google.com/finance/quote/ger:uwsx"}, {"text": "LSE:0LTG", "url": "https://www.google.com/finance/quote/0ltg:lse"}, {"text": "BER:UWS", "url": "https://www.google.com/finance/quote/ber:uws"}, {"text": "DUS:UWS", "url": "https://www.google.com/finance/quote/dus:uws"}, {"text": "FRA:UWS", "url": "https://www.google.com/finance/quote/fra:uws"}, {"text": "NYQ:WM", "url": "https://www.google.com/finance/quote/nyq:wm"}], "crunchbase_description": "Waste Management is a provider of waste and environmental services in North America.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 2, 6, 4, 3, 0, 1, 3, 1, 4, 0], "total": 27, "isTopResearch": false, "rank": 736, "fortune500_rank": 261}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 10, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 411, "rank": 530, "fortune500_rank": 288}, "ai_jobs": {"counts": null, "total": 67, "rank": 417, "fortune500_rank": 222}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Waste Management, Inc. is an American waste management, comprehensive waste, and environmental services company in North America. Founded in 1968, the company is headquartered in the First City Tower in Houston, Texas.", "wikipedia_link": "https://en.wikipedia.org/wiki/Waste_Management_(corporation)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2741, "country": "United States", "website": "http://www.fluor.com/", "crunchbase": {"text": "a7d26ef6-4784-34d4-be87-38587889aed8", "url": "https://www.crunchbase.com/organization/fluor-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fluor"], "stage": "Mature", "name": "Fluor Corp", "patent_name": "fluor corp", "continent": "North America", "local_logo": "fluor_corp.png", "aliases": "Fluor; Fluor Corporation", "permid_links": [{"text": 4295899290, "url": "https://permid.org/1-4295899290"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:FLR", "url": "https://www.google.com/finance/quote/flr:nyse"}], "market_full": [{"text": "NYSE:FLR", "url": "https://www.google.com/finance/quote/flr:nyse"}, {"text": "FRA:FLU", "url": "https://www.google.com/finance/quote/flu:fra"}, {"text": "DEU:FLRC", "url": "https://www.google.com/finance/quote/deu:flrc"}, {"text": "BRN:FLU", "url": "https://www.google.com/finance/quote/brn:flu"}, {"text": "MUN:FLU", "url": "https://www.google.com/finance/quote/flu:mun"}, {"text": "DUS:FLU", "url": "https://www.google.com/finance/quote/dus:flu"}, {"text": "ASE:FLR", "url": "https://www.google.com/finance/quote/ase:flr"}, {"text": "MEX:FLR*", "url": "https://www.google.com/finance/quote/flr*:mex"}, {"text": "BER:FLU", "url": "https://www.google.com/finance/quote/ber:flu"}, {"text": "PKC:FLRAP", "url": "https://www.google.com/finance/quote/flrap:pkc"}, {"text": "NYQ:FLR", "url": "https://www.google.com/finance/quote/flr:nyq"}, {"text": "MCX:FLR-RM", "url": "https://www.google.com/finance/quote/flr-rm:mcx"}, {"text": "STU:FLU", "url": "https://www.google.com/finance/quote/flu:stu"}, {"text": "LSE:0IQC", "url": "https://www.google.com/finance/quote/0iqc:lse"}], "crunchbase_description": "Fluor is a company that delivers engineering, procurement, construction, maintenance (EPCM), and project management.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [18, 33, 34, 21, 21, 17, 33, 13, 17, 6, 0], "total": 213, "isTopResearch": false, "rank": 403}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 407, "rank": 531}, "ai_jobs": {"counts": null, "total": 18, "rank": 716}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Fluor Corporation is an American multinational engineering and construction firm headquartered in Irving, Texas. It is a holding company that provides services through its subsidiaries in the following areas: oil and gas, industrial and infrastructure, government and power. It is the largest engineering & construction company in the Fortune 500 rankings and is listed as 164th overall.", "wikipedia_link": "https://en.wikipedia.org/wiki/Fluor_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 658, "country": "Germany", "website": "https://www.rheinmetall-automotive.com/en/", "crunchbase": {"text": "0bd21eb0-aa7f-47a6-9ddf-9055ee3d6cd1", "url": "https://www.crunchbase.com/organization/rheinmetall-automotive"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/rheinmetall"], "stage": "Mature", "name": "Rheinmetall Automotive", "patent_name": "rheinmetall automotive", "continent": "Europe", "local_logo": "rheinmetall_automotive.png", "aliases": "Rheinmetall; Rheinmetall AG; Rheinmetall Automotive Ag", "permid_links": [{"text": 4295869283, "url": "https://permid.org/1-4295869283"}], "parent_info": "Rheinmetall Technology Group", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "OTC:RNMBY", "url": "https://www.google.com/finance/quote/otc:rnmby"}, {"text": "HAM:RHM", "url": "https://www.google.com/finance/quote/ham:rhm"}, {"text": "XETR:RHM", "url": "https://www.google.com/finance/quote/rhm:xetr"}, {"text": "DUS:RHM", "url": "https://www.google.com/finance/quote/dus:rhm"}], "crunchbase_description": "Rheinmetall Automotive is the Automotive sector of the parent group Rheinmetall.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Spectrogram", "field_count": 1}], "clusters": [{"cluster_id": 37872, "cluster_count": 1}, {"cluster_id": 17449, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2794, "referenced_count": 4}], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [6, 5, 11, 2, 6, 9, 16, 15, 1, 5, 0], "total": 76, "isTopResearch": false, "rank": 550}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1], "total": 3, "isTopResearch": false, "rank": 857}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 3.0, "isTopResearch": false, "rank": 779}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 1, 0, 3, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 0, 10, 0, 30, 0, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 7}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 172}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 403, "rank": 532}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "Rheinmetall Automotive (formerly KSPG and Kolbenschmidt Pierburg) is the Automotive sector of the parent group Rheinmetall. The company emerged in 1997 through the merger of KS Kolbenschmidt GmbH, Neckarsulm, and Pierburg GmbH, Neuss. Hence, at its various traditional locations the company is commonly known as Kolbenschmidt or Pierburg. 40 production plants in Europe, the Americas, Japan, India and China employ a total workforce of around 11,000. Products are developed in cooperation with international auto manufacturers.", "wikipedia_link": "https://en.wikipedia.org/wiki/Rheinmetall_Automotive", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1897, "country": "Malaysia", "website": "https://www.petronas.com/", "crunchbase": {"text": " 922a60a9-8c6c-4fb7-aaa5-1836545142a2 ", "url": "https://www.crunchbase.com/organization/petronas-42a2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/petronas"], "stage": "Unknown", "name": "Petronas", "patent_name": "Petronas", "continent": "Asia", "local_logo": null, "aliases": "Petroliam Nasional Berhad; Petronas", "permid_links": [{"text": 4296540346, "url": "https://permid.org/1-4296540346"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 44}, {"field_name": "Artificial neural network", "field_count": 41}, {"field_name": "Fuzzy logic", "field_count": 38}, {"field_name": "Feature extraction", "field_count": 36}, {"field_name": "Deep learning", "field_count": 35}, {"field_name": "Segmentation", "field_count": 31}, {"field_name": "Support vector machine", "field_count": 29}, {"field_name": "Feature selection", "field_count": 25}, {"field_name": "Convolutional neural network", "field_count": 23}, {"field_name": "Particle swarm optimization", "field_count": 20}], "clusters": [{"cluster_id": 179, "cluster_count": 20}, {"cluster_id": 23233, "cluster_count": 19}, {"cluster_id": 884, "cluster_count": 17}, {"cluster_id": 261, "cluster_count": 14}, {"cluster_id": 631, "cluster_count": 12}, {"cluster_id": 76369, "cluster_count": 12}, {"cluster_id": 4949, "cluster_count": 12}, {"cluster_id": 16779, "cluster_count": 12}, {"cluster_id": 5908, "cluster_count": 11}, {"cluster_id": 2858, "cluster_count": 10}], "company_references": [{"ref_CSET_id": 1897, "referenced_count": 937}, {"ref_CSET_id": 101, "referenced_count": 339}, {"ref_CSET_id": 163, "referenced_count": 208}, {"ref_CSET_id": 87, "referenced_count": 102}, {"ref_CSET_id": 115, "referenced_count": 65}, {"ref_CSET_id": 127, "referenced_count": 36}, {"ref_CSET_id": 785, "referenced_count": 23}, {"ref_CSET_id": 6, "referenced_count": 22}, {"ref_CSET_id": 184, "referenced_count": 19}, {"ref_CSET_id": 201, "referenced_count": 17}], "tasks": [{"referent": "classification", "task_count": 364}, {"referent": "feature_selection", "task_count": 99}, {"referent": "image_processing", "task_count": 89}, {"referent": "system_identification", "task_count": 75}, {"referent": "disease_detection", "task_count": 71}, {"referent": "image_analysis", "task_count": 69}, {"referent": "segmentation", "task_count": 64}, {"referent": "video_surveillance", "task_count": 45}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 45}, {"referent": "decision_making", "task_count": 39}], "methods": [{"referent": "double_q_learning", "method_count": 153}, {"referent": "recurrent_neural_networks", "method_count": 106}, {"referent": "auto_classifier", "method_count": 93}, {"referent": "optimization", "method_count": 84}, {"referent": "mad_learning", "method_count": 72}, {"referent": "convolutional_neural_networks", "method_count": 72}, {"referent": "griffin_lim_algorithm", "method_count": 69}, {"referent": "vqa_models", "method_count": 64}, {"referent": "meta_learning_algorithms", "method_count": 62}, {"referent": "feature_extractors", "method_count": 53}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1047, 1966, 1379, 1825, 1750, 1910, 1761, 2220, 2789, 2224, 59], "total": 18930, "isTopResearch": false, "rank": 19, "sp500_rank": 17}, "ai_publications": {"counts": [71, 136, 124, 132, 145, 125, 98, 157, 188, 101, 0], "total": 1277, "isTopResearch": false, "rank": 21, "sp500_rank": 17}, "ai_publications_growth": {"counts": [], "total": 11.224236272636169, "isTopResearch": false, "rank": 150, "sp500_rank": 77}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [461, 621, 797, 895, 1128, 1501, 1906, 2310, 3298, 3395, 170], "total": 16482, "isTopResearch": false, "rank": 38, "sp500_rank": 26}, "cv_pubs": {"counts": [33, 62, 48, 51, 55, 41, 33, 36, 41, 23, 0], "total": 423, "isTopResearch": true, "rank": 22, "sp500_rank": 16}, "nlp_pubs": {"counts": [4, 6, 5, 7, 4, 5, 2, 5, 6, 4, 0], "total": 48, "isTopResearch": true, "rank": 47, "sp500_rank": 34}, "robotics_pubs": {"counts": [5, 13, 20, 17, 6, 5, 4, 11, 11, 2, 0], "total": 94, "isTopResearch": true, "rank": 30, "sp500_rank": 28}, "citations_per_article": {"counts": [6.492957746478873, 4.5661764705882355, 6.42741935483871, 6.78030303030303, 7.779310344827586, 12.008, 19.448979591836736, 14.713375796178344, 17.54255319148936, 33.613861386138616, 0], "total": 12.906812842599843, "isTopResearch": false, "rank": 450, "sp500_rank": 154}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 3, 1, 0, 0], "total": 5, "table": null, "rank": 525, "sp500_rank": 225}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 30, 10, 0, 0], "total": 50, "table": null, "rank": 525, "sp500_rank": 225}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 399, "rank": 533, "sp500_rank": 244}, "ai_jobs": {"counts": null, "total": 131, "rank": 292, "sp500_rank": 168}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2269, "country": "United States", "website": "https://www.conedison.com/", "crunchbase": {"text": "d87aa8cb-299e-db1a-ac12-b27ad090550e", "url": "https://www.crunchbase.com/organization/conedison-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/con-edison"], "stage": "Mature", "name": "Consolidated Edison", "patent_name": "consolidated edison", "continent": "North America", "local_logo": "consolidated_edison.png", "aliases": "Con Edison; Conedison; Conedison, Inc,; Consolidated Edison Company Of New York, Inc; Consolidated Edison Inc", "permid_links": [{"text": 4295903098, "url": "https://permid.org/1-4295903098"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ED", "url": "https://www.google.com/finance/quote/ed:nyse"}], "market_full": [{"text": "MUN:EDC", "url": "https://www.google.com/finance/quote/edc:mun"}, {"text": "NYQ:ED", "url": "https://www.google.com/finance/quote/ed:nyq"}, {"text": "BER:EDC", "url": "https://www.google.com/finance/quote/ber:edc"}, {"text": "NYSE:ED", "url": "https://www.google.com/finance/quote/ed:nyse"}, {"text": "DEU:ED", "url": "https://www.google.com/finance/quote/deu:ed"}, {"text": "LSE:0I35", "url": "https://www.google.com/finance/quote/0i35:lse"}, {"text": "GER:EDCX", "url": "https://www.google.com/finance/quote/edcx:ger"}, {"text": "MCX:ED-RM", "url": "https://www.google.com/finance/quote/ed-rm:mcx"}, {"text": "SAO:E1DI34", "url": "https://www.google.com/finance/quote/e1di34:sao"}, {"text": "BRN:EDC", "url": "https://www.google.com/finance/quote/brn:edc"}, {"text": "ASE:ED", "url": "https://www.google.com/finance/quote/ase:ed"}, {"text": "VIE:ED", "url": "https://www.google.com/finance/quote/ed:vie"}, {"text": "STU:EDC", "url": "https://www.google.com/finance/quote/edc:stu"}, {"text": "FRA:EDC", "url": "https://www.google.com/finance/quote/edc:fra"}, {"text": "DUS:EDC", "url": "https://www.google.com/finance/quote/dus:edc"}], "crunchbase_description": "ConEdison is a leading energy services company.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Knowledge extraction", "field_count": 1}, {"field_name": "Decision support system", "field_count": 1}], "clusters": [{"cluster_id": 85535, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 2269, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "event_extraction", "task_count": 1}, {"referent": "graph_ranking", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "image_processing", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [11, 11, 7, 5, 7, 7, 6, 4, 3, 2, 0], "total": 63, "isTopResearch": false, "rank": 585, "fortune500_rank": 217}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [15, 23, 15, 20, 19, 27, 33, 47, 42, 23, 0], "total": 264, "isTopResearch": false, "rank": 348, "fortune500_rank": 104}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 399, "rank": 533, "fortune500_rank": 289}, "ai_jobs": {"counts": null, "total": 36, "rank": 551, "fortune500_rank": 284}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Consolidated Edison, Inc., commonly known as Con Edison (stylized as conEdison) or ConEd, is one of the largest investor-owned energy companies in the United States, with approximately $12 billion in annual revenues as of 2017, and over $48 billion in assets.", "wikipedia_link": "https://en.wikipedia.org/wiki/Consolidated_Edison", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2303, "country": "United States", "website": "http://www.entergy.com/", "crunchbase": {"text": "9ef3cf29-4caa-57d1-f391-7869e4d1935a", "url": "https://www.crunchbase.com/organization/entergy-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/entergy"], "stage": "Mature", "name": "Entergy Corp.", "patent_name": "entergy corp.", "continent": "North America", "local_logo": "entergy_corp.png", "aliases": "Entergy; Entergy Corporation", "permid_links": [{"text": 4295903931, "url": "https://permid.org/1-4295903931"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ETR", "url": "https://www.google.com/finance/quote/etr:nyse"}], "market_full": [{"text": "NYSE:ETR", "url": "https://www.google.com/finance/quote/etr:nyse"}, {"text": "LSE:0IHP", "url": "https://www.google.com/finance/quote/0ihp:lse"}, {"text": "STU:ETY", "url": "https://www.google.com/finance/quote/ety:stu"}, {"text": "DUS:ETY", "url": "https://www.google.com/finance/quote/dus:ety"}, {"text": "MOEX:ETR-RM", "url": "https://www.google.com/finance/quote/etr-rm:moex"}, {"text": "BER:ETY", "url": "https://www.google.com/finance/quote/ber:ety"}, {"text": "NYQ:ETR", "url": "https://www.google.com/finance/quote/etr:nyq"}, {"text": "DEU:ETR", "url": "https://www.google.com/finance/quote/deu:etr"}, {"text": "GER:ETYX", "url": "https://www.google.com/finance/quote/etyx:ger"}, {"text": "ASE:ETR", "url": "https://www.google.com/finance/quote/ase:etr"}, {"text": "BRN:ETYX", "url": "https://www.google.com/finance/quote/brn:etyx"}, {"text": "FRA:ETY", "url": "https://www.google.com/finance/quote/ety:fra"}, {"text": "SAO:E1TR34", "url": "https://www.google.com/finance/quote/e1tr34:sao"}], "crunchbase_description": "Entergy Corporation is an integrated energy company", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 1, 2, 1, 0, 1, 2, 3, 5, 1, 0], "total": 17, "isTopResearch": false, "rank": 839, "fortune500_rank": 298}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 399, "rank": 533, "fortune500_rank": 289}, "ai_jobs": {"counts": null, "total": 21, "rank": 683, "fortune500_rank": 344}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Entergy Corporation is a Fortune 500 integrated energy company engaged primarily in electric power production and retail distribution operations in the Deep South of the United States. Entergy is headquartered in New Orleans, Louisiana, and generates and distributes electric power to 2.9 million customers in Arkansas, Louisiana, Mississippi and Texas. Entergy has annual revenues of $11 billion and employs more than 13,000 people.", "wikipedia_link": "https://en.wikipedia.org/wiki/Entergy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2436, "country": "United States", "website": "http://www.nscorp.com/", "crunchbase": {"text": "132c7870-e002-8838-3840-c8e9cc3ac6df", "url": "https://www.crunchbase.com/organization/norfolk-southern-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/norfolk-southern"], "stage": "Mature", "name": "Norfolk Southern Corp.", "patent_name": "norfolk southern corp.", "continent": "North America", "local_logo": "norfolk_southern_corp.png", "aliases": "Norfolk Southern; Norfolk Southern Corp; Norfolk Southern Corporation; Norfolk Southern Railroad; Norfolk Southern Railway; Norfolk Southern Railway Company", "permid_links": [{"text": 4295904619, "url": "https://permid.org/1-4295904619"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NSC", "url": "https://www.google.com/finance/quote/nsc:nyse"}], "market_full": [{"text": "NYSE:NSC", "url": "https://www.google.com/finance/quote/nsc:nyse"}, {"text": "ASE:NSC", "url": "https://www.google.com/finance/quote/ase:nsc"}, {"text": "MUN:NFS", "url": "https://www.google.com/finance/quote/mun:nfs"}, {"text": "MEX:NSC", "url": "https://www.google.com/finance/quote/mex:nsc"}, {"text": "NYQ:NSC", "url": "https://www.google.com/finance/quote/nsc:nyq"}, {"text": "DUS:NFS", "url": "https://www.google.com/finance/quote/dus:nfs"}, {"text": "MCX:NSC-RM", "url": "https://www.google.com/finance/quote/mcx:nsc-rm"}, {"text": "SAO:N1SC34", "url": "https://www.google.com/finance/quote/n1sc34:sao"}, {"text": "LSE:0K8M", "url": "https://www.google.com/finance/quote/0k8m:lse"}, {"text": "FRA:NFS", "url": "https://www.google.com/finance/quote/fra:nfs"}, {"text": "DEU:NSC", "url": "https://www.google.com/finance/quote/deu:nsc"}, {"text": "HAM:NFS", "url": "https://www.google.com/finance/quote/ham:nfs"}, {"text": "VIE:NSCO", "url": "https://www.google.com/finance/quote/nsco:vie"}, {"text": "STU:NFS", "url": "https://www.google.com/finance/quote/nfs:stu"}, {"text": "GER:NFSX", "url": "https://www.google.com/finance/quote/ger:nfsx"}, {"text": "HAN:NFS", "url": "https://www.google.com/finance/quote/han:nfs"}, {"text": "BRN:NFS", "url": "https://www.google.com/finance/quote/brn:nfs"}, {"text": "BER:NFS", "url": "https://www.google.com/finance/quote/ber:nfs"}], "crunchbase_description": "Norfolk Southern Corporation is one of the nation's premier transportation companies.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 46732, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 2436, "referenced_count": 2}], "tasks": [{"referent": "motion_planning", "task_count": 2}, {"referent": "portfolio_optimization", "task_count": 1}, {"referent": "locomotion", "task_count": 1}, {"referent": "multiobjective_optimization", "task_count": 1}], "methods": [{"referent": "optimization", "method_count": 3}, {"referent": "q_learning", "method_count": 2}, {"referent": "admm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 3, 3, 5, 3, 4, 1, 2, 1, 3, 1], "total": 31, "isTopResearch": false, "rank": 710, "fortune500_rank": 254}, "ai_publications": {"counts": [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 3, 5, 3, 6, 4, 6, 7, 7, 8, 0], "total": 50, "isTopResearch": false, "rank": 583, "fortune500_rank": 160}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 3.0, 0, 3.0, 0, 0, 0, 0, 0, 0, 0], "total": 25.0, "isTopResearch": false, "rank": 239, "fortune500_rank": 74}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 395, "rank": 536, "fortune500_rank": 291}, "ai_jobs": {"counts": null, "total": 46, "rank": 499, "fortune500_rank": 261}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "The Norfolk Southern Railway (reporting mark NS) is a Class I freight railroad in the United States, and is the current name of the former Southern Railway. With headquarters in Atlanta, Georgia, the company operates 19,420 route miles (31,250 km) in 22 eastern states, the District of Columbia, and has rights in Canada over the Albany to Montr\u00e9al route of the Canadian Pacific Railway, and previously on CN from Buffalo to St. Thomas. NS is responsible for maintaining 28,400 miles (45,700 km), with the remainder being operated under trackage rights from other parties responsible for maintenance. The most common commodity hauled on the railway is coal from mines in Indiana, Kentucky, Pennsylvania, Tennessee, Virginia, and West Virginia. The railway also offers the largest intermodal network in eastern North America.", "wikipedia_link": "https://en.wikipedia.org/wiki/Norfolk_Southern_Railway", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2143, "country": "United Kingdom", "website": "https://www.angloamerican.com/", "crunchbase": {"text": " 9c7225e8-6b5c-df1a-7924-72a917ad48cb ", "url": " https://www.crunchbase.com/organization/anglo-american "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/anglo-american"], "stage": "Mature", "name": "Anglo American", "patent_name": "Anglo American", "continent": "Europe", "local_logo": null, "aliases": "Anglo American; Anglo American Plc", "permid_links": [{"text": 4295896494, "url": "https://permid.org/1-4295896494"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "SAO:AAGO34", "url": "https://www.google.com/finance/quote/AAGO34:SAO"}, {"text": "MEX:AGLN", "url": "https://www.google.com/finance/quote/AGLN:MEX"}, {"text": "SWX:AAM", "url": "https://www.google.com/finance/quote/AAM:SWX"}, {"text": "GER:NGLBX", "url": "https://www.google.com/finance/quote/GER:NGLBX"}, {"text": "LSE:AAL", "url": "https://www.google.com/finance/quote/AAL:LSE"}, {"text": "HAM:NGLB", "url": "https://www.google.com/finance/quote/HAM:NGLB"}, {"text": "HAN:NGLB", "url": "https://www.google.com/finance/quote/HAN:NGLB"}, {"text": "FRA:NGLB", "url": "https://www.google.com/finance/quote/FRA:NGLB"}, {"text": "MUN:NGLB", "url": "https://www.google.com/finance/quote/MUN:NGLB"}, {"text": "JNB:AGL", "url": "https://www.google.com/finance/quote/AGL:JNB"}, {"text": "DEU:NGLD", "url": "https://www.google.com/finance/quote/DEU:NGLD"}, {"text": "DUS:NGLB", "url": "https://www.google.com/finance/quote/DUS:NGLB"}, {"text": "DEU:AAL", "url": "https://www.google.com/finance/quote/AAL:DEU"}, {"text": "BER:NGLB", "url": "https://www.google.com/finance/quote/BER:NGLB"}, {"text": "STU:NGLB", "url": "https://www.google.com/finance/quote/NGLB:STU"}, {"text": "EBT:AAMZ", "url": "https://www.google.com/finance/quote/AAMz:EBT"}, {"text": "BRN:NGLB", "url": "https://www.google.com/finance/quote/BRN:NGLB"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 3}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Data analysis", "field_count": 1}], "clusters": [{"cluster_id": 1962, "cluster_count": 1}, {"cluster_id": 23440, "cluster_count": 1}, {"cluster_id": 28517, "cluster_count": 1}, {"cluster_id": 2885, "cluster_count": 1}, {"cluster_id": 55681, "cluster_count": 1}, {"cluster_id": 127816, "cluster_count": 1}, {"cluster_id": 62261, "cluster_count": 1}, {"cluster_id": 6025, "cluster_count": 1}, {"cluster_id": 3295, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "disease_detection", "task_count": 1}, {"referent": "fault_detection", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "collaborative_filtering", "task_count": 1}, {"referent": "information_extraction", "task_count": 1}, {"referent": "steering_control", "task_count": 1}, {"referent": "structured_prediction", "task_count": 1}, {"referent": "character_recognition", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "discriminators", "method_count": 1}, {"referent": "atss", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [17, 25, 18, 22, 13, 33, 26, 8, 26, 12, 1], "total": 201, "isTopResearch": false, "rank": 411, "sp500_rank": 249}, "ai_publications": {"counts": [2, 3, 2, 0, 0, 0, 0, 0, 1, 1, 0], "total": 9, "isTopResearch": false, "rank": 437, "sp500_rank": 224}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 1, 2, 7, 6, 5, 5, 3, 7, 1], "total": 37, "isTopResearch": false, "rank": 630, "sp500_rank": 270}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 214, "sp500_rank": 131}, "citations_per_article": {"counts": [0.0, 0.0, 0.5, 0, 0, 0, 0, 0, 3.0, 7.0, 0], "total": 4.111111111111111, "isTopResearch": false, "rank": 733, "sp500_rank": 293}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 393, "rank": 537, "sp500_rank": 245}, "ai_jobs": {"counts": null, "total": 61, "rank": 438, "sp500_rank": 222}}, "sector": "Basic Materials", "business_sector": "Mineral Resources"}, {"cset_id": 1577, "country": "United States", "website": "http://www.regeneron.com/", "crunchbase": {"text": "f6edb666-3dd6-fc23-5c1a-8bdb9c2a1a37", "url": "https://www.crunchbase.com/organization/regeneron-pharmaceuticals"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/regeneron-pharmaceuticals"], "stage": "Mature", "name": "Regeneron Pharmaceuticals Inc.", "patent_name": "Regeneron Pharmaceuticals Inc.", "continent": "North America", "local_logo": "regeneron_pharmaceuticals_inc.png", "aliases": "Regeneron; Regeneron Pharmaceuticals Inc.; Regeneron Pharmaceuticals, Inc; Regn", "permid_links": [{"text": 4295907752, "url": "https://permid.org/1-4295907752"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:REGN", "url": "https://www.google.com/finance/quote/NASDAQ:REGN"}], "market_full": [{"text": "STU:RGO", "url": "https://www.google.com/finance/quote/RGO:STU"}, {"text": "DUS:RGO", "url": "https://www.google.com/finance/quote/DUS:RGO"}, {"text": "GER:RGOX", "url": "https://www.google.com/finance/quote/GER:RGOX"}, {"text": "LSE:0R2M", "url": "https://www.google.com/finance/quote/0R2M:LSE"}, {"text": "BRN:RGO", "url": "https://www.google.com/finance/quote/BRN:RGO"}, {"text": "VIE:REGN", "url": "https://www.google.com/finance/quote/REGN:VIE"}, {"text": "SAO:REGN34", "url": "https://www.google.com/finance/quote/REGN34:SAO"}, {"text": "BER:RGO", "url": "https://www.google.com/finance/quote/BER:RGO"}, {"text": "HAM:RGO", "url": "https://www.google.com/finance/quote/HAM:RGO"}, {"text": "DEU:REGN", "url": "https://www.google.com/finance/quote/DEU:REGN"}, {"text": "MEX:REGN*", "url": "https://www.google.com/finance/quote/MEX:REGN*"}, {"text": "MUN:RGO", "url": "https://www.google.com/finance/quote/MUN:RGO"}, {"text": "NASDAQ:REGN", "url": "https://www.google.com/finance/quote/NASDAQ:REGN"}, {"text": "MCX:REGN-RM", "url": "https://www.google.com/finance/quote/MCX:REGN-RM"}, {"text": "HAN:RGO", "url": "https://www.google.com/finance/quote/HAN:RGO"}, {"text": "FRA:RGO", "url": "https://www.google.com/finance/quote/FRA:RGO"}], "crunchbase_description": "Regeneron Pharmaceuticals is a biotechnology company that invents life-transforming medicines for people with serious diseases.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Segmentation", "field_count": 3}, {"field_name": "Digital pathology", "field_count": 1}, {"field_name": "Random forest", "field_count": 1}], "clusters": [{"cluster_id": 2265, "cluster_count": 1}, {"cluster_id": 31008, "cluster_count": 1}, {"cluster_id": 16202, "cluster_count": 1}, {"cluster_id": 4956, "cluster_count": 1}, {"cluster_id": 26235, "cluster_count": 1}, {"cluster_id": 30100, "cluster_count": 1}, {"cluster_id": 18347, "cluster_count": 1}, {"cluster_id": 91539, "cluster_count": 1}, {"cluster_id": 1683, "cluster_count": 1}, {"cluster_id": 5043, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 789, "referenced_count": 2}, {"ref_CSET_id": 1577, "referenced_count": 1}, {"ref_CSET_id": 487, "referenced_count": 1}, {"ref_CSET_id": 3116, "referenced_count": 1}, {"ref_CSET_id": 1633, "referenced_count": 1}, {"ref_CSET_id": 3108, "referenced_count": 1}], "tasks": [{"referent": "breast_cancer_detection", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "multi_task_learning", "task_count": 2}, {"referent": "image_analysis", "task_count": 2}, {"referent": "segmentation", "task_count": 2}, {"referent": "diabetes_prediction", "task_count": 1}, {"referent": "data_to_text_generation", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "histopathological_segmentation", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}], "methods": [{"referent": "xception", "method_count": 1}, {"referent": "line", "method_count": 1}, {"referent": "netmf", "method_count": 1}, {"referent": "maxout", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "maddpg", "method_count": 1}, {"referent": "graphs", "method_count": 1}, {"referent": "(2+1)d_convolution", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [165, 171, 212, 304, 389, 479, 540, 648, 767, 745, 0], "total": 4420, "isTopResearch": false, "rank": 77, "fortune500_rank": 27}, "ai_publications": {"counts": [0, 1, 0, 1, 1, 0, 2, 2, 2, 1, 0], "total": 10, "isTopResearch": false, "rank": 417, "fortune500_rank": 121}, "ai_publications_growth": {"counts": [], "total": -16.666666666666668, "isTopResearch": false, "rank": 1303, "fortune500_rank": 380}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [19, 19, 25, 17, 17, 16, 19, 28, 32, 31, 1], "total": 224, "isTopResearch": false, "rank": 376, "fortune500_rank": 113}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0], "total": 4, "isTopResearch": true, "rank": 313, "fortune500_rank": 84}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 19.0, 0, 17.0, 17.0, 0, 9.5, 14.0, 16.0, 31.0, 0], "total": 22.4, "isTopResearch": false, "rank": 273, "fortune500_rank": 86}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 3, 0, 3, 1, 0, 0], "total": 8, "table": null, "rank": 443, "fortune500_rank": 142}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198, "fortune500_rank": 56}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 30, 0, 30, 10, 0, 0], "total": 80, "table": null, "rank": 443, "fortune500_rank": 142}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 2, 0, 3, 0, 0, 0], "total": 6, "table": "industry", "rank": 113, "fortune500_rank": 47}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 392, "rank": 538, "fortune500_rank": 292}, "ai_jobs": {"counts": null, "total": 107, "rank": 326, "fortune500_rank": 176}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research"}, {"cset_id": 2467, "country": "United States", "website": "https://www.pvh.com/", "crunchbase": {"text": "e17b1cd5-ce0e-3fd0-cd97-89ac0f00177f", "url": "https://www.crunchbase.com/organization/pvh"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pvh"], "stage": "Mature", "name": "PVH Corp.", "patent_name": "pvh corp.", "continent": "North America", "local_logo": "pvh_corp.png", "aliases": "Phillips-Van Heusen Corporation; Pvh; Pvh Corp", "permid_links": [{"text": 4295904728, "url": "https://permid.org/1-4295904728"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PVH", "url": "https://www.google.com/finance/quote/nyse:pvh"}], "market_full": [{"text": "FRA:PVH", "url": "https://www.google.com/finance/quote/fra:pvh"}, {"text": "ASE:PVH", "url": "https://www.google.com/finance/quote/ase:pvh"}, {"text": "BER:PVH", "url": "https://www.google.com/finance/quote/ber:pvh"}, {"text": "BRN:PVH", "url": "https://www.google.com/finance/quote/brn:pvh"}, {"text": "DUS:PVH", "url": "https://www.google.com/finance/quote/dus:pvh"}, {"text": "MEX:PVH", "url": "https://www.google.com/finance/quote/mex:pvh"}, {"text": "STU:PVH", "url": "https://www.google.com/finance/quote/pvh:stu"}, {"text": "NYQ:PVH", "url": "https://www.google.com/finance/quote/nyq:pvh"}, {"text": "LSE:0KEQ", "url": "https://www.google.com/finance/quote/0keq:lse"}, {"text": "SAO:P1VH34", "url": "https://www.google.com/finance/quote/p1vh34:sao"}, {"text": "DEU:PVH", "url": "https://www.google.com/finance/quote/deu:pvh"}, {"text": "MCX:PVH-RM", "url": "https://www.google.com/finance/quote/mcx:pvh-rm"}, {"text": "MUN:PVH", "url": "https://www.google.com/finance/quote/mun:pvh"}, {"text": "NYSE:PVH", "url": "https://www.google.com/finance/quote/nyse:pvh"}], "crunchbase_description": "A company transformed, focused on global growth and brand building, while staying true to our core values.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 391, "rank": 539, "fortune500_rank": 293}, "ai_jobs": {"counts": null, "total": 65, "rank": 426, "fortune500_rank": 229}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "PVH Corp., formerly known as the Phillips-Van Heusen Corporation, is an American clothing company which owns brands such as Van Heusen, Tommy Hilfiger, Calvin Klein, IZOD, Arrow, Warner's, Olga, True & Co., and Geoffrey Beene. The company also licenses brands such as Kenneth Cole New York and Michael Kors. PVH is partly named after Dutch immigrant John Manning Van Heusen, who in 1910 invented a new process that fused cloth on a curve.", "wikipedia_link": "https://en.wikipedia.org/wiki/PVH_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2442, "country": "United States", "website": "https://corporate.oreillyauto.com/corporate/", "crunchbase": {"text": "f8c9afc3-c324-b0d0-9c79-9b7196048127", "url": "https://www.crunchbase.com/organization/o-reilly-auto-parts"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/o'reilly-auto-parts"], "stage": "Mature", "name": "O'Reilly Automotive", "patent_name": "o'reilly automotive", "continent": "North America", "local_logo": "o'reilly_automotive.png", "aliases": "O'Reilly; O'reilly Auto Parts; O\u2019Reilly Auto Parts, Corporate; O\u2019Reilly Automotive, Inc", "permid_links": [{"text": 4295907490, "url": "https://permid.org/1-4295907490"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ORLY", "url": "https://www.google.com/finance/quote/nasdaq:orly"}], "market_full": [{"text": "MEX:ORLY*", "url": "https://www.google.com/finance/quote/mex:orly*"}, {"text": "BRN:OM6", "url": "https://www.google.com/finance/quote/brn:om6"}, {"text": "HAM:OM6", "url": "https://www.google.com/finance/quote/ham:om6"}, {"text": "VIE:ORLY", "url": "https://www.google.com/finance/quote/orly:vie"}, {"text": "LSE:0KAB", "url": "https://www.google.com/finance/quote/0kab:lse"}, {"text": "MUN:OM6", "url": "https://www.google.com/finance/quote/mun:om6"}, {"text": "HAN:OM6", "url": "https://www.google.com/finance/quote/han:om6"}, {"text": "SAO:ORLY34", "url": "https://www.google.com/finance/quote/orly34:sao"}, {"text": "MCX:ORLY-RM", "url": "https://www.google.com/finance/quote/mcx:orly-rm"}, {"text": "FRA:OM6", "url": "https://www.google.com/finance/quote/fra:om6"}, {"text": "DEU:OM6", "url": "https://www.google.com/finance/quote/deu:om6"}, {"text": "DUS:OM6", "url": "https://www.google.com/finance/quote/dus:om6"}, {"text": "NASDAQ:ORLY", "url": "https://www.google.com/finance/quote/nasdaq:orly"}, {"text": "BER:OM6", "url": "https://www.google.com/finance/quote/ber:om6"}, {"text": "STU:OM6", "url": "https://www.google.com/finance/quote/om6:stu"}], "crunchbase_description": "O\u2019Reilly Automotive, Inc. is a specialty retailer of automotive aftermarket parts, tools, supplies, equipment and accessories.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 390, "rank": 540, "fortune500_rank": 294}, "ai_jobs": {"counts": null, "total": 27, "rank": 627, "fortune500_rank": 321}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "O\u2019Reilly Auto Parts is an American auto parts retailer that provides automotive aftermarket parts, tools, supplies, equipment, and accessories in the United States serving both the professional service providers and do-it-yourself customers. Founded in 1957 by the O\u2019Reilly family, the company operates more than 5,400 stores in 47 states, and 20+ stores in Mexico.", "wikipedia_link": "https://en.wikipedia.org/wiki/O%27Reilly_Auto_Parts", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2524, "country": "United States", "website": "https://www.vfc.com/", "crunchbase": {"text": "bd9b7ec2-d9f5-538c-10f5-0127664e91a5", "url": "https://www.crunchbase.com/organization/vf-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vf-corporation"], "stage": "Mature", "name": "V.F. Corp.", "patent_name": "v.f. corp.", "continent": "North America", "local_logo": "vf_corp.png", "aliases": "Vf Corp; Vf Corporation", "permid_links": [{"text": 4295905197, "url": "https://permid.org/1-4295905197"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:VFC", "url": "https://www.google.com/finance/quote/nyse:vfc"}], "market_full": [{"text": "LSE:0R30", "url": "https://www.google.com/finance/quote/0r30:lse"}, {"text": "NYSE:VFC", "url": "https://www.google.com/finance/quote/nyse:vfc"}, {"text": "STU:VFP", "url": "https://www.google.com/finance/quote/stu:vfp"}, {"text": "NYQ:VFC", "url": "https://www.google.com/finance/quote/nyq:vfc"}, {"text": "SAO:VFCO34", "url": "https://www.google.com/finance/quote/sao:vfco34"}, {"text": "HAN:VFP", "url": "https://www.google.com/finance/quote/han:vfp"}, {"text": "MCX:VFC-RM", "url": "https://www.google.com/finance/quote/mcx:vfc-rm"}, {"text": "DEU:VFC", "url": "https://www.google.com/finance/quote/deu:vfc"}, {"text": "ASE:VFC", "url": "https://www.google.com/finance/quote/ase:vfc"}, {"text": "HAM:VFP", "url": "https://www.google.com/finance/quote/ham:vfp"}, {"text": "BER:VFP", "url": "https://www.google.com/finance/quote/ber:vfp"}, {"text": "MEX:VFC", "url": "https://www.google.com/finance/quote/mex:vfc"}, {"text": "MUN:VFP", "url": "https://www.google.com/finance/quote/mun:vfp"}, {"text": "DUS:VFP", "url": "https://www.google.com/finance/quote/dus:vfp"}, {"text": "VIE:VFC", "url": "https://www.google.com/finance/quote/vfc:vie"}, {"text": "GER:VFPX", "url": "https://www.google.com/finance/quote/ger:vfpx"}, {"text": "BRN:VFP", "url": "https://www.google.com/finance/quote/brn:vfp"}, {"text": "FRA:VFP", "url": "https://www.google.com/finance/quote/fra:vfp"}], "crunchbase_description": "VF offers a diverse portfolio of iconic outdoor and activity-based lifestyle and work-wear brands.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105, "fortune500_rank": 368}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 388, "rank": 541, "fortune500_rank": 295}, "ai_jobs": {"counts": null, "total": 57, "rank": 455, "fortune500_rank": 240}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "VF Corporation (formerly Vanity Fair Mills until 1969) is an American worldwide apparel and footwear company founded in 1899 and headquartered in Denver, Colorado. The company's more than 30 brands are organized into three categories: Outdoor, Active and Work. The company controls 55% of the U.S. backpack market with the JanSport, Eastpak, Timberland, and North Face brands.", "wikipedia_link": "https://en.wikipedia.org/wiki/VF_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2549, "country": "United States", "website": "https://www.xylem.com/", "crunchbase": {"text": "ddd01426-7eab-a266-e266-a1bbd47506a4", "url": "https://www.crunchbase.com/organization/xylem-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/xylem-inc"], "stage": "Mature", "name": "Xylem Inc.", "patent_name": "xylem inc.", "continent": "North America", "local_logo": "xylem_inc.png", "aliases": "Xylem; Xylem Water Solutions", "permid_links": [{"text": 5035774320, "url": "https://permid.org/1-5035774320"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:XYL", "url": "https://www.google.com/finance/quote/nyse:xyl"}], "market_full": [{"text": "MCX:XYL-RM", "url": "https://www.google.com/finance/quote/mcx:xyl-rm"}, {"text": "LSE:0M29", "url": "https://www.google.com/finance/quote/0m29:lse"}, {"text": "GER:XY6X", "url": "https://www.google.com/finance/quote/ger:xy6x"}, {"text": "DEU:XY6", "url": "https://www.google.com/finance/quote/deu:xy6"}, {"text": "BER:XY6", "url": "https://www.google.com/finance/quote/ber:xy6"}, {"text": "NYSE:XYL", "url": "https://www.google.com/finance/quote/nyse:xyl"}, {"text": "MUN:XY6", "url": "https://www.google.com/finance/quote/mun:xy6"}, {"text": "BRN:XY6", "url": "https://www.google.com/finance/quote/brn:xy6"}, {"text": "MEX:XYL", "url": "https://www.google.com/finance/quote/mex:xyl"}, {"text": "HAN:XY6", "url": "https://www.google.com/finance/quote/han:xy6"}, {"text": "ASE:XYL", "url": "https://www.google.com/finance/quote/ase:xyl"}, {"text": "SAO:X1YL34", "url": "https://www.google.com/finance/quote/sao:x1yl34"}, {"text": "DUS:XY6", "url": "https://www.google.com/finance/quote/dus:xy6"}, {"text": "STU:XY6", "url": "https://www.google.com/finance/quote/stu:xy6"}, {"text": "NYQ:XYL", "url": "https://www.google.com/finance/quote/nyq:xyl"}, {"text": "FRA:XY6", "url": "https://www.google.com/finance/quote/fra:xy6"}], "crunchbase_description": "Xylem is a large global water technology provider, enabling customers to transport, treat, test, and efficiently use water.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Decision support system", "field_count": 1}, {"field_name": "Normalization (statistics)", "field_count": 1}, {"field_name": "Big data", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Spectrogram", "field_count": 1}], "clusters": [{"cluster_id": 9233, "cluster_count": 3}, {"cluster_id": 14905, "cluster_count": 2}, {"cluster_id": 4713, "cluster_count": 1}, {"cluster_id": 23928, "cluster_count": 1}, {"cluster_id": 79002, "cluster_count": 1}, {"cluster_id": 42832, "cluster_count": 1}, {"cluster_id": 35601, "cluster_count": 1}, {"cluster_id": 2304, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 24}, {"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 6, "referenced_count": 5}, {"ref_CSET_id": 786, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 1784, "referenced_count": 4}, {"ref_CSET_id": 3131, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 2549, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}], "tasks": [{"referent": "acoustic_scene_classification", "task_count": 3}, {"referent": "system_identification", "task_count": 2}, {"referent": "sound_event_detection", "task_count": 2}, {"referent": "cyber_attack_detection", "task_count": 1}, {"referent": "automl", "task_count": 1}, {"referent": "skills_assessment", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "motion_capture", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "atss", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "adaptive_input_representations", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "generative_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 5, 22, 6, 9, 7, 16, 8, 21, 18, 3], "total": 117, "isTopResearch": false, "rank": 486, "fortune500_rank": 181}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 2, 4, 3, 0], "total": 11, "isTopResearch": false, "rank": 397, "fortune500_rank": 116}, "ai_publications_growth": {"counts": [], "total": 58.333333333333336, "isTopResearch": false, "rank": 56, "fortune500_rank": 16}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 6, 15, 17, 30, 1], "total": 70, "isTopResearch": false, "rank": 544, "fortune500_rank": 147}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 1.0, 6.0, 7.5, 4.25, 10.0, 0], "total": 6.363636363636363, "isTopResearch": false, "rank": 669, "fortune500_rank": 191}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 2, 2, 0, 1, 0, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "fortune500_rank": 438}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 20, 20, 0, 10, 0, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 88, "fortune500_rank": 28}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 382, "rank": 542, "fortune500_rank": 296}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "fortune500_rank": 294}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Xylem Inc. is a large American water technology provider, in public utility, residential, commercial, agricultural and industrial settings. The company does business in more than 150 countries. Launched in 2011 as the spinoff of the water-related businesses of ITT Corporation, Xylem is headquartered in Rye Brook, New York, with 2018 revenues of $5.2 billion and 17,000 employees worldwide.", "wikipedia_link": "https://en.wikipedia.org/wiki/Xylem_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2471, "country": "United States", "website": "http://investor.ralphlauren.com/", "crunchbase": {"text": "deb9e9ea-ea29-5b70-86b7-edea1de55648", "url": "https://www.crunchbase.com/organization/ralph-lauren-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ralph-lauren"], "stage": "Mature", "name": "Ralph Lauren Corporation", "patent_name": "ralph lauren corporation", "continent": "North America", "local_logo": "ralph_lauren_corporation.png", "aliases": "Ralph Lauren; Ralph Lauren Corp", "permid_links": [{"text": 4295903221, "url": "https://permid.org/1-4295903221"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:RL", "url": "https://www.google.com/finance/quote/nyse:rl"}], "market_full": [{"text": "GER:PRLX", "url": "https://www.google.com/finance/quote/ger:prlx"}, {"text": "BRN:PRL", "url": "https://www.google.com/finance/quote/brn:prl"}, {"text": "MCX:RL", "url": "https://www.google.com/finance/quote/mcx:rl"}, {"text": "BER:PRL", "url": "https://www.google.com/finance/quote/ber:prl"}, {"text": "ASE:RL", "url": "https://www.google.com/finance/quote/ase:rl"}, {"text": "NYSE:RL", "url": "https://www.google.com/finance/quote/nyse:rl"}, {"text": "MUN:PRL", "url": "https://www.google.com/finance/quote/mun:prl"}, {"text": "NYQ:RL", "url": "https://www.google.com/finance/quote/nyq:rl"}, {"text": "FRA:PRL", "url": "https://www.google.com/finance/quote/fra:prl"}, {"text": "MEX:RL", "url": "https://www.google.com/finance/quote/mex:rl"}, {"text": "DEU:RL", "url": "https://www.google.com/finance/quote/deu:rl"}, {"text": "LSE:0KTS", "url": "https://www.google.com/finance/quote/0kts:lse"}, {"text": "DUS:PRL", "url": "https://www.google.com/finance/quote/dus:prl"}, {"text": "STU:PRL", "url": "https://www.google.com/finance/quote/prl:stu"}, {"text": "SAO:R1LC34", "url": "https://www.google.com/finance/quote/r1lc34:sao"}], "crunchbase_description": "Ralph Lauren designs, markets, and distributes apparel, home furnishings, and accessories.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 378, "rank": 543, "fortune500_rank": 297}, "ai_jobs": {"counts": null, "total": 43, "rank": 508, "fortune500_rank": 264}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "Ralph Lauren Corporation is an American fashion company producing products ranging from the mid-range to the luxury segments. They are known for the clothing, marketing and distribution of products in four categories: apparel, home, accessories, and fragrances. The Company's brands include the mid-range Chaps brand, to the sub-premium Lauren Ralph Lauren brand, to the premium Polo Ralph Lauren, Double RL, Ralph Lauren Childrenswear, Denim & Supply Ralph Lauren, and Club Monaco brands, up to the full luxury Ralph Lauren Purple Label and Ralph Lauren Collection brands. Ralph Lauren Corporation is an American, publicly traded holding company headquartered in New York City, and founded in 1967 by American fashion designer Ralph Lauren.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ralph_Lauren_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1930, "country": "Spain", "website": "https://www.repsol.com/", "crunchbase": {"text": " defb12d1-cad5-a610-62c1-2837ed79c059", "url": " https://www.crunchbase.com/organization/repsol-sa"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/repsol"], "stage": "Mature", "name": "Repsol", "patent_name": "Repsol", "continent": "Europe", "local_logo": null, "aliases": "Repsol; Repsol Sa", "permid_links": [{"text": 4295889563, "url": "https://permid.org/1-4295889563"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "HAN:REP", "url": "https://www.google.com/finance/quote/HAN:REP"}, {"text": "STU:REP", "url": "https://www.google.com/finance/quote/REP:STU"}, {"text": "BER:REPA", "url": "https://www.google.com/finance/quote/BER:REPA"}, {"text": "LSE:0NQG", "url": "https://www.google.com/finance/quote/0NQG:LSE"}, {"text": "VIE:REP", "url": "https://www.google.com/finance/quote/REP:VIE"}, {"text": "MCE:REP", "url": "https://www.google.com/finance/quote/MCE:REP"}, {"text": "STU:REPA", "url": "https://www.google.com/finance/quote/REPA:STU"}, {"text": "QXI:REPYY", "url": "https://www.google.com/finance/quote/QXI:REPYY"}, {"text": "EBT:REPE", "url": "https://www.google.com/finance/quote/EBT:REPe"}, {"text": "QXI:REPYF", "url": "https://www.google.com/finance/quote/QXI:REPYF"}, {"text": "MEX:REPSN", "url": "https://www.google.com/finance/quote/MEX:REPSN"}, {"text": "DEU:REPA", "url": "https://www.google.com/finance/quote/DEU:REPA"}, {"text": "BRN:REP", "url": "https://www.google.com/finance/quote/BRN:REP"}, {"text": "FRA:REPA", "url": "https://www.google.com/finance/quote/FRA:REPA"}, {"text": "DUS:REP", "url": "https://www.google.com/finance/quote/DUS:REP"}, {"text": "GER:REPX", "url": "https://www.google.com/finance/quote/GER:REPX"}, {"text": "BER:REP", "url": "https://www.google.com/finance/quote/BER:REP"}, {"text": "MIL:REP", "url": "https://www.google.com/finance/quote/MIL:REP"}, {"text": "HAM:REP", "url": "https://www.google.com/finance/quote/HAM:REP"}, {"text": "FRA:REP", "url": "https://www.google.com/finance/quote/FRA:REP"}, {"text": "MUN:REPA", "url": "https://www.google.com/finance/quote/MUN:REPA"}, {"text": "MUN:REP", "url": "https://www.google.com/finance/quote/MUN:REP"}, {"text": "DEU:REP", "url": "https://www.google.com/finance/quote/DEU:REP"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 4}, {"field_name": "Unsupervised learning", "field_count": 2}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Data retrieval", "field_count": 1}, {"field_name": "Sparse approximation", "field_count": 1}, {"field_name": "Ambient intelligence", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Augmented reality", "field_count": 1}, {"field_name": "Iterative reconstruction", "field_count": 1}], "clusters": [{"cluster_id": 22609, "cluster_count": 4}, {"cluster_id": 7515, "cluster_count": 3}, {"cluster_id": 60011, "cluster_count": 2}, {"cluster_id": 66474, "cluster_count": 2}, {"cluster_id": 48100, "cluster_count": 2}, {"cluster_id": 5990, "cluster_count": 2}, {"cluster_id": 50212, "cluster_count": 1}, {"cluster_id": 23417, "cluster_count": 1}, {"cluster_id": 17596, "cluster_count": 1}, {"cluster_id": 14492, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 17}, {"ref_CSET_id": 115, "referenced_count": 9}, {"ref_CSET_id": 184, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 1930, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 1789, "referenced_count": 3}, {"ref_CSET_id": 1495, "referenced_count": 3}, {"ref_CSET_id": 676, "referenced_count": 2}, {"ref_CSET_id": 1617, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "developmental_learning", "task_count": 4}, {"referent": "image_processing", "task_count": 4}, {"referent": "image_analysis", "task_count": 3}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "model_selection", "task_count": 2}, {"referent": "motion_planning", "task_count": 2}, {"referent": "seismic_analysis", "task_count": 2}, {"referent": "physical_simulations", "task_count": 2}, {"referent": "image_manipulation", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 5}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "meta_learning_algorithms", "method_count": 4}, {"referent": "vqa_models", "method_count": 4}, {"referent": "optimization", "method_count": 3}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "self_supervised_learning", "method_count": 3}, {"referent": "3d_representations", "method_count": 2}, {"referent": "graph_models", "method_count": 2}, {"referent": "reinforcement_learning", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [82, 90, 104, 121, 104, 72, 74, 82, 85, 113, 5], "total": 932, "isTopResearch": false, "rank": 198, "sp500_rank": 147}, "ai_publications": {"counts": [1, 0, 3, 3, 2, 1, 3, 6, 7, 4, 1], "total": 31, "isTopResearch": false, "rank": 235, "sp500_rank": 145}, "ai_publications_growth": {"counts": [], "total": 24.603174603174608, "isTopResearch": false, "rank": 108, "sp500_rank": 52}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99}, "citation_counts": {"counts": [0, 1, 0, 7, 13, 17, 17, 24, 44, 54, 3], "total": 180, "isTopResearch": false, "rank": 401, "sp500_rank": 181}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0.0, 0, 0.0, 2.3333333333333335, 6.5, 17.0, 5.666666666666667, 4.0, 6.285714285714286, 13.5, 3.0], "total": 5.806451612903226, "isTopResearch": false, "rank": 691, "sp500_rank": 273}}, "patents": {"ai_patents": {"counts": [1, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0], "total": 5, "table": null, "rank": 525, "sp500_rank": 225}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "sp500_rank": 444}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 0, 10, 0, 10, 0, 10, 10, 0, 0, 0], "total": 50, "table": null, "rank": 525, "sp500_rank": 225}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "sp500_rank": 92}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "sp500_rank": 183}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 233, "sp500_rank": 145}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [1, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 198, "sp500_rank": 131}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 376, "rank": 544, "sp500_rank": 246}, "ai_jobs": {"counts": null, "total": 57, "rank": 455, "sp500_rank": 225}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 1844, "country": "Mexico", "website": "https://www.pemex.com/", "crunchbase": {"text": " 431b6487-168b-8f22-d83d-e4b221c35462", "url": " https://www.crunchbase.com/organization/pemex"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pemex"], "stage": "Unknown", "name": "Pemex", "patent_name": "Pemex", "continent": "North America", "local_logo": null, "aliases": "Pemex; Petr\u00f3leos Mexicanos S.A. De C.V", "permid_links": [{"text": 5000089102, "url": "https://permid.org/1-5000089102"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 3}], "clusters": [{"cluster_id": 43621, "cluster_count": 1}, {"cluster_id": 55429, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1844, "referenced_count": 2}], "tasks": [{"referent": "seismic_analysis", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "mad_learning", "method_count": 1}, {"referent": "som", "method_count": 1}, {"referent": "fbnet_block", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [88, 106, 114, 80, 74, 40, 60, 54, 52, 47, 0], "total": 715, "isTopResearch": false, "rank": 234, "sp500_rank": 161}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 1, 1, 3, 2, 1, 1, 1, 0, 4, 0], "total": 14, "isTopResearch": false, "rank": 724, "sp500_rank": 299}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0], "total": 14.0, "isTopResearch": false, "rank": 423, "sp500_rank": 142}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 376, "rank": 544, "sp500_rank": 246}, "ai_jobs": {"counts": null, "total": 27, "rank": 627, "sp500_rank": 262}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2272, "country": "United States", "website": "https://www.copart.com/", "crunchbase": {"text": "d6d15316-c3e0-7bd7-76c7-653215af9025", "url": "https://www.crunchbase.com/organization/copart"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/copart"], "stage": "Mature", "name": "Copart Inc", "patent_name": "copart inc", "continent": "North America", "local_logo": "copart_inc.png", "aliases": "Copart; Copart, Inc", "permid_links": [{"text": 4295906048, "url": "https://permid.org/1-4295906048"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CPRT", "url": "https://www.google.com/finance/quote/cprt:nasdaq"}], "market_full": [{"text": "MUN:CO6", "url": "https://www.google.com/finance/quote/co6:mun"}, {"text": "BMV:CPRT", "url": "https://www.google.com/finance/quote/bmv:cprt"}, {"text": "SAO:C1PR34", "url": "https://www.google.com/finance/quote/c1pr34:sao"}, {"text": "BER:CO6", "url": "https://www.google.com/finance/quote/ber:co6"}, {"text": "MOEX:CPRT-RM", "url": "https://www.google.com/finance/quote/cprt-rm:moex"}, {"text": "BRN:CO6", "url": "https://www.google.com/finance/quote/brn:co6"}, {"text": "NASDAQ:CPRT", "url": "https://www.google.com/finance/quote/cprt:nasdaq"}, {"text": "DEU:CPRT", "url": "https://www.google.com/finance/quote/cprt:deu"}, {"text": "STU:CO6", "url": "https://www.google.com/finance/quote/co6:stu"}, {"text": "FRA:CO6", "url": "https://www.google.com/finance/quote/co6:fra"}, {"text": "MEX:CPRT*", "url": "https://www.google.com/finance/quote/cprt*:mex"}, {"text": "HAN:CO6", "url": "https://www.google.com/finance/quote/co6:han"}], "crunchbase_description": "Copart is a Vehicle auctioning company traded on NASDAQ with ticket CPRT. It owns it's own yards and maintenance personel.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 374, "rank": 546, "fortune500_rank": 298}, "ai_jobs": {"counts": null, "total": 22, "rank": 667, "fortune500_rank": 336}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Copart, Inc. or simply Copart is a global provider of online vehicle auction and remarketing services to automotive resellers such as insurance, rental car, fleet and finance companies in 11 countries: the US, Canada, the UK, Germany, Ireland, Brazil, Spain, Dubai, Bahrain, Oman and Finland.", "wikipedia_link": "https://en.wikipedia.org/wiki/Copart", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2278, "country": "United States", "website": "https://www.drhorton.com/", "crunchbase": {"text": "5a93c860-7fc4-2a6d-c206-76898dee98c5", "url": "https://www.crunchbase.com/organization/d-r-horton"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dr-horton"], "stage": "Mature", "name": "D. R. Horton", "patent_name": "d. r. horton", "continent": "North America", "local_logo": "d_r_horton.png", "aliases": "D.R. Horton, Inc; Dr Horton", "permid_links": [{"text": 4295903861, "url": "https://permid.org/1-4295903861"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DHI", "url": "https://www.google.com/finance/quote/dhi:nyse"}], "market_full": [{"text": "BRN:HO2", "url": "https://www.google.com/finance/quote/brn:ho2"}, {"text": "STU:HO2", "url": "https://www.google.com/finance/quote/ho2:stu"}, {"text": "NYSE:DHI", "url": "https://www.google.com/finance/quote/dhi:nyse"}, {"text": "ASE:DHI", "url": "https://www.google.com/finance/quote/ase:dhi"}, {"text": "MUN:HO2", "url": "https://www.google.com/finance/quote/ho2:mun"}, {"text": "SAO:D1HI34", "url": "https://www.google.com/finance/quote/d1hi34:sao"}, {"text": "HAN:HO2", "url": "https://www.google.com/finance/quote/han:ho2"}, {"text": "BER:HO2", "url": "https://www.google.com/finance/quote/ber:ho2"}, {"text": "DUS:HO2", "url": "https://www.google.com/finance/quote/dus:ho2"}, {"text": "LSE:0I6K", "url": "https://www.google.com/finance/quote/0i6k:lse"}, {"text": "DEU:DHI", "url": "https://www.google.com/finance/quote/deu:dhi"}, {"text": "NYQ:DHI", "url": "https://www.google.com/finance/quote/dhi:nyq"}, {"text": "MEX:DHI*", "url": "https://www.google.com/finance/quote/dhi*:mex"}, {"text": "FRA:HO2", "url": "https://www.google.com/finance/quote/fra:ho2"}, {"text": "MOEX:DHI-RM", "url": "https://www.google.com/finance/quote/dhi-rm:moex"}], "crunchbase_description": "D.R. Horton, Inc. is the homebuilding companies in the United States.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 374, "rank": 546, "fortune500_rank": 298}, "ai_jobs": {"counts": null, "total": 12, "rank": 812, "fortune500_rank": 400}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "D.R. Horton, Inc. is a home construction company incorporated in Delaware and headquartered in Arlington, Texas. Since 2002, the company has been the largest homebuilder by volume in the United States. The company ranked number 194 on the 2019 Fortune 500 list of the largest United States corporations by revenue. The company operates in 90 markets in 29 states.", "wikipedia_link": "https://en.wikipedia.org/wiki/D._R._Horton", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2365, "country": "United States", "website": "http://www.itw.com/", "crunchbase": {"text": "c90ef038-0c60-8832-3481-0618651860b2", "url": "https://www.crunchbase.com/organization/illinois-tool-works"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/illinoistoolworks"], "stage": "Mature", "name": "Illinois Tool Works", "patent_name": "illinois tool works", "continent": "North America", "local_logo": "illinois_tool_works.png", "aliases": "Illinois Tool Works Inc; Itw", "permid_links": [{"text": 4295904216, "url": "https://permid.org/1-4295904216"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ITW", "url": "https://www.google.com/finance/quote/itw:nyse"}], "market_full": [{"text": "BRN:ILT", "url": "https://www.google.com/finance/quote/brn:ilt"}, {"text": "MCX:ITW-RM", "url": "https://www.google.com/finance/quote/itw-rm:mcx"}, {"text": "DUS:ILT", "url": "https://www.google.com/finance/quote/dus:ilt"}, {"text": "MUN:ILT", "url": "https://www.google.com/finance/quote/ilt:mun"}, {"text": "BER:ILT", "url": "https://www.google.com/finance/quote/ber:ilt"}, {"text": "GER:ILTX", "url": "https://www.google.com/finance/quote/ger:iltx"}, {"text": "STU:ILT", "url": "https://www.google.com/finance/quote/ilt:stu"}, {"text": "MEX:ITW", "url": "https://www.google.com/finance/quote/itw:mex"}, {"text": "VIE:ITW", "url": "https://www.google.com/finance/quote/itw:vie"}, {"text": "FRA:ILT", "url": "https://www.google.com/finance/quote/fra:ilt"}, {"text": "DEU:ITW", "url": "https://www.google.com/finance/quote/deu:itw"}, {"text": "NYSE:ITW", "url": "https://www.google.com/finance/quote/itw:nyse"}, {"text": "HAN:ILT", "url": "https://www.google.com/finance/quote/han:ilt"}, {"text": "NYQ:ITW", "url": "https://www.google.com/finance/quote/itw:nyq"}], "crunchbase_description": "ITW specializes in the fields of industrial machinery, engineering, operations, sales, marketing, finance, and accounting.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 2, 1, 1, 4, 2, 2, 3, 0, 0], "total": 16, "isTopResearch": false, "rank": 847, "fortune500_rank": 300}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [1, 2, 1, 2, 0, 0, 4, 6, 0, 0, 0], "total": 16, "table": null, "rank": 348, "fortune500_rank": 117}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198, "fortune500_rank": 56}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 20, 10, 20, 0, 0, 40, 60, 0, 0, 0], "total": 160, "table": null, "rank": 348, "fortune500_rank": 117}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [1, 2, 1, 1, 0, 0, 3, 4, 0, 0, 0], "total": 12, "table": "industry", "rank": 66, "fortune500_rank": 20}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 119, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [1, 2, 1, 0, 0, 0, 0, 2, 0, 0, 0], "total": 6, "table": "application", "rank": 166, "fortune500_rank": 57}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0], "total": 5, "table": "application", "rank": 318, "fortune500_rank": 96}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 374, "rank": 546, "fortune500_rank": 298}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094, "fortune500_rank": 452}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Consumer Goods Conglomerates", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 517, "country": "United States", "website": "https://www.irobot.com.", "crunchbase": {"text": "08aa3f15-243a-f095-a504-20f51a9f18c3", "url": "https://www.crunchbase.com/organization/irobot"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/irobot"], "stage": "Mature", "name": "iRobot", "patent_name": "irobot", "continent": "North America", "local_logo": "irobot.png", "aliases": "Irobot Corporation; iRobot Corp", "permid_links": [{"text": 4295910003, "url": "https://permid.org/1-4295910003"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:IRBT", "url": "https://www.google.com/finance/quote/irbt:nasdaq"}], "market_full": [{"text": "DUS:I8R", "url": "https://www.google.com/finance/quote/dus:i8r"}, {"text": "FWB:I8R", "url": "https://www.google.com/finance/quote/fwb:i8r"}, {"text": "LON:0R38", "url": "https://www.google.com/finance/quote/0r38:lon"}, {"text": "XETR:I8R", "url": "https://www.google.com/finance/quote/i8r:xetr"}, {"text": "BER:I8R", "url": "https://www.google.com/finance/quote/ber:i8r"}, {"text": "MUN:I8R", "url": "https://www.google.com/finance/quote/i8r:mun"}, {"text": "NASDAQ:IRBT", "url": "https://www.google.com/finance/quote/irbt:nasdaq"}], "crunchbase_description": "iRobot is a technology company that designs and builds behavior-based AI robots.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 12}, {"field_name": "Feature vector", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Sensor fusion", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Heuristic", "field_count": 1}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Matching (graph theory)", "field_count": 1}, {"field_name": "Decision support system", "field_count": 1}, {"field_name": "Actuator", "field_count": 1}], "clusters": [{"cluster_id": 47838, "cluster_count": 3}, {"cluster_id": 28504, "cluster_count": 3}, {"cluster_id": 887, "cluster_count": 3}, {"cluster_id": 1123, "cluster_count": 3}, {"cluster_id": 9689, "cluster_count": 3}, {"cluster_id": 21886, "cluster_count": 2}, {"cluster_id": 3322, "cluster_count": 2}, {"cluster_id": 19500, "cluster_count": 2}, {"cluster_id": 19337, "cluster_count": 2}, {"cluster_id": 18479, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 517, "referenced_count": 26}, {"ref_CSET_id": 101, "referenced_count": 17}, {"ref_CSET_id": 2075, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 1037, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 790, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 3}, {"ref_CSET_id": 800, "referenced_count": 2}, {"ref_CSET_id": 949, "referenced_count": 1}], "tasks": [{"referent": "robots", "task_count": 14}, {"referent": "mobile_robot", "task_count": 9}, {"referent": "human_robot_interaction", "task_count": 4}, {"referent": "real_time_object_detection", "task_count": 4}, {"referent": "autonomous_navigation", "task_count": 4}, {"referent": "action_localization", "task_count": 4}, {"referent": "visual_odometry", "task_count": 3}, {"referent": "robotic_grasping", "task_count": 3}, {"referent": "path_planning", "task_count": 3}, {"referent": "prediction_of_occupancy_grid_maps", "task_count": 3}], "methods": [{"referent": "computer_vision", "method_count": 3}, {"referent": "3d_representations", "method_count": 3}, {"referent": "hit_detector", "method_count": 2}, {"referent": "initialization", "method_count": 2}, {"referent": "localization_models", "method_count": 2}, {"referent": "sniper", "method_count": 2}, {"referent": "optimization", "method_count": 2}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "structured_prediction", "method_count": 1}, {"referent": "generalized_additive_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [9, 5, 6, 8, 8, 4, 6, 2, 1, 1, 0], "total": 50, "isTopResearch": false, "rank": 617}, "ai_publications": {"counts": [5, 3, 6, 6, 6, 3, 5, 2, 1, 0, 0], "total": 37, "isTopResearch": false, "rank": 212}, "ai_publications_growth": {"counts": [], "total": -70.0, "isTopResearch": false, "rank": 1523}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [78, 70, 96, 95, 123, 127, 138, 117, 122, 86, 4], "total": 1056, "isTopResearch": false, "rank": 185}, "cv_pubs": {"counts": [1, 1, 2, 3, 2, 1, 1, 0, 0, 0, 0], "total": 11, "isTopResearch": true, "rank": 196}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [5, 3, 4, 4, 5, 3, 4, 2, 1, 0, 0], "total": 31, "isTopResearch": true, "rank": 63}, "citations_per_article": {"counts": [15.6, 23.333333333333332, 16.0, 15.833333333333334, 20.5, 42.333333333333336, 27.6, 58.5, 122.0, 0, 0], "total": 28.54054054054054, "isTopResearch": false, "rank": 207}}, "patents": {"ai_patents": {"counts": [0, 3, 1, 2, 2, 8, 4, 1, 0, 0, 0], "total": 21, "table": null, "rank": 316}, "ai_patents_growth": {"counts": [], "total": 58.333333333333336, "table": null, "rank": 177}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 30, 10, 20, 20, 80, 40, 10, 0, 0, 0], "total": 210, "table": null, "rank": 316}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 3, 1, 2, 2, 6, 4, 1, 0, 0, 0], "total": 19, "table": "industry", "rank": 72}, "Industrial_and_Manufacturing": {"counts": [0, 2, 1, 2, 2, 7, 4, 1, 0, 0, 0], "total": 19, "table": "industry", "rank": 43}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 38}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 119}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 3, 1, 2, 2, 7, 4, 1, 0, 0, 0], "total": 20, "table": "application", "rank": 92}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 3, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 6}, "Computer_Vision": {"counts": [0, 1, 0, 1, 0, 2, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 2, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 170}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 373, "rank": 549}, "ai_jobs": {"counts": null, "total": 45, "rank": 500}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "iRobot Corporation is an American technology company that designs and builds consumer robots. It was founded in 1990 by three members of MIT's Artificial Intelligence Lab, who designed robots for space exploration and military defense. Incorporated in Delaware, the company's products include a range of autonomous home vacuum cleaners (Roomba), floor moppers (Braava), and other autonomous cleaning devices.", "wikipedia_link": "https://en.wikipedia.org/wiki/IRobot", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 106, "country": "China", "website": "https://www.hikvision.com/", "crunchbase": {"text": "a9156fb9-6894-0586-3928-3f79f4b7c13a", "url": "https://www.crunchbase.com/organization/hikvision-digital-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hikvision"], "stage": "Mature", "name": "Hikvision", "patent_name": "hikvision", "continent": "Asia", "local_logo": "hikvision.png", "aliases": "Hangzhou Hikvision Digital Technology Co., Ltd; Hikvision Digital Technology; \u676d\u5dde\u6d77\u5eb7\u5a01\u89c6\u6570\u5b57\u6280\u672f\u80a1\u4efd\u6709\u9650\u516c\u53f8; \u6d77\u5eb7\u5a01\u89c6", "permid_links": [{"text": 4298105400, "url": "https://permid.org/1-4298105400"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "SZSE:002415", "url": "https://www.google.com/finance/quote/002415:szse"}], "market_full": [{"text": "SZSE:002415", "url": "https://www.google.com/finance/quote/002415:szse"}], "crunchbase_description": "Hikvision is a global manufacturer and supplier of video surveillance products and solutions.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 8}, {"field_name": "Question answering", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Frame rate", "field_count": 2}, {"field_name": "Image warping", "field_count": 2}, {"field_name": "Object (computer science)", "field_count": 2}, {"field_name": "Feature vector", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "Adversarial system", "field_count": 1}], "clusters": [{"cluster_id": 14887, "cluster_count": 4}, {"cluster_id": 749, "cluster_count": 4}, {"cluster_id": 214, "cluster_count": 4}, {"cluster_id": 46034, "cluster_count": 4}, {"cluster_id": 855, "cluster_count": 3}, {"cluster_id": 16788, "cluster_count": 2}, {"cluster_id": 2381, "cluster_count": 2}, {"cluster_id": 26274, "cluster_count": 2}, {"cluster_id": 48872, "cluster_count": 2}, {"cluster_id": 12947, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 170}, {"ref_CSET_id": 101, "referenced_count": 163}, {"ref_CSET_id": 87, "referenced_count": 122}, {"ref_CSET_id": 223, "referenced_count": 32}, {"ref_CSET_id": 6, "referenced_count": 31}, {"ref_CSET_id": 161, "referenced_count": 27}, {"ref_CSET_id": 245, "referenced_count": 27}, {"ref_CSET_id": 184, "referenced_count": 25}, {"ref_CSET_id": 37, "referenced_count": 25}, {"ref_CSET_id": 127, "referenced_count": 20}], "tasks": [{"referent": "classification", "task_count": 9}, {"referent": "object_detection", "task_count": 6}, {"referent": "computer_vision", "task_count": 5}, {"referent": "image_recognition", "task_count": 4}, {"referent": "single_image_super_resolution", "task_count": 4}, {"referent": "super_resolution", "task_count": 4}, {"referent": "classification_tasks", "task_count": 4}, {"referent": "inference_attack", "task_count": 4}, {"referent": "infrared_and_visible_image_fusion", "task_count": 3}, {"referent": "action_localization", "task_count": 3}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 15}, {"referent": "q_learning", "method_count": 8}, {"referent": "3d_representations", "method_count": 7}, {"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "1d_cnn", "method_count": 6}, {"referent": "(2+1)d_convolution", "method_count": 5}, {"referent": "self_supervised_learning", "method_count": 5}, {"referent": "griffin_lim_algorithm", "method_count": 5}, {"referent": "auto_classifier", "method_count": 5}, {"referent": "feature_extractors", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 3, 2, 3, 7, 17, 21, 27, 36, 40, 2], "total": 160, "isTopResearch": false, "rank": 444}, "ai_publications": {"counts": [0, 2, 0, 3, 5, 12, 14, 19, 15, 15, 0], "total": 85, "isTopResearch": false, "rank": 134}, "ai_publications_growth": {"counts": [], "total": 4.887218045112782, "isTopResearch": false, "rank": 179}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 2, 6, 5, 5, 3, 5, 0], "total": 26, "isTopResearch": false, "rank": 68}, "citation_counts": {"counts": [0, 5, 2, 11, 14, 60, 239, 534, 784, 522, 26], "total": 2197, "isTopResearch": false, "rank": 126}, "cv_pubs": {"counts": [0, 0, 0, 3, 5, 10, 9, 18, 14, 11, 0], "total": 70, "isTopResearch": true, "rank": 71}, "nlp_pubs": {"counts": [0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0], "total": 3, "isTopResearch": true, "rank": 214}, "citations_per_article": {"counts": [0, 2.5, 0, 3.6666666666666665, 2.8, 5.0, 17.071428571428573, 28.105263157894736, 52.266666666666666, 34.8, 0], "total": 25.847058823529412, "isTopResearch": false, "rank": 227}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 6, 16, 24, 14, 19, 15, 7, 0], "total": 102, "table": null, "rank": 158}, "ai_patents_growth": {"counts": [], "total": 14.682539682539684, "table": null, "rank": 315}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 60, 160, 240, 140, 190, 150, 70, 0], "total": 1020, "table": null, "rank": 158}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 141}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0], "total": 3, "table": "industry", "rank": 131}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 1, 3, 4, 3, 5, 1, 1, 0], "total": 19, "table": "industry", "rank": 195}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 172}, "Telecommunications": {"counts": [0, 0, 0, 0, 4, 8, 1, 0, 2, 0, 0], "total": 15, "table": "industry", "rank": 143}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 252}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 160}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 244}, "Control": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 5, 12, 11, 5, 10, 11, 4, 0], "total": 58, "table": "application", "rank": 105}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 368, "rank": 550}, "ai_jobs": {"counts": null, "total": 48, "rank": 490}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Hangzhou Hikvision Digital Technology Co., Ltd., often shortened to Hikvision, is a Chinese partially state-owned manufacturer and supplier of video surveillance equipment for civilian and military purposes, headquartered in Hangzhou, Zhejiang. Its controlling shares are owned by the Chinese government. Due to its involvement in alleged human rights violation and national security concerns, the company has been placed under sanctions from the U.S. government and is prevented from receiving U.S. government contracts.", "wikipedia_link": "https://en.wikipedia.org/wiki/Hikvision", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2247, "country": "United States", "website": "https://www.carrier.com/", "crunchbase": {"text": "5d5000ce-2eca-1f61-01d5-404de1baade7", "url": "https://www.crunchbase.com/organization/carrier-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/carrier"], "stage": "Mature", "name": "Carrier Global", "patent_name": "carrier global", "continent": "North America", "local_logo": "carrier_global.png", "aliases": "Carrier Corporation; Carrier Global Corp", "permid_links": [{"text": 5073156222, "url": "https://permid.org/1-5073156222"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CARR", "url": "https://www.google.com/finance/quote/carr:nyse"}], "market_full": [{"text": "SAO:C1RR34", "url": "https://www.google.com/finance/quote/c1rr34:sao"}, {"text": "BER:4PN", "url": "https://www.google.com/finance/quote/4pn:ber"}, {"text": "ASE:CARR", "url": "https://www.google.com/finance/quote/ase:carr"}, {"text": "VIE:CARG", "url": "https://www.google.com/finance/quote/carg:vie"}, {"text": "MEX:CARR*", "url": "https://www.google.com/finance/quote/carr*:mex"}, {"text": "NYQ:CARR", "url": "https://www.google.com/finance/quote/carr:nyq"}, {"text": "MUN:4PN", "url": "https://www.google.com/finance/quote/4pn:mun"}, {"text": "DEU:4PN", "url": "https://www.google.com/finance/quote/4pn:deu"}, {"text": "MCX:CARR-RM", "url": "https://www.google.com/finance/quote/carr-rm:mcx"}, {"text": "NYSE:CARR", "url": "https://www.google.com/finance/quote/carr:nyse"}, {"text": "DUS:4PN", "url": "https://www.google.com/finance/quote/4pn:dus"}, {"text": "HAN:4PN", "url": "https://www.google.com/finance/quote/4pn:han"}, {"text": "FRA:4PN", "url": "https://www.google.com/finance/quote/4pn:fra"}, {"text": "STU:4PN", "url": "https://www.google.com/finance/quote/4pn:stu"}, {"text": "GER:4PNX", "url": "https://www.google.com/finance/quote/4pnx:ger"}], "crunchbase_description": "Carrier is a provider of innovative heating, ventilating and air conditioning (HVAC), refrigeration, and fire & security technologies.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Expert system", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}], "clusters": [{"cluster_id": 84949, "cluster_count": 1}, {"cluster_id": 4968, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "histopathological_image_classification", "task_count": 1}, {"referent": "medical_diagnosis", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "oral_cancer_classification", "task_count": 1}, {"referent": "automated_writing_evaluation", "task_count": 1}], "methods": [{"referent": "cgnn", "method_count": 1}, {"referent": "metrix", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "lime", "method_count": 1}, {"referent": "rule_based_systems", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "language_models", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 6, 3, 4, 4, 5, 11, 9, 15, 11, 0], "total": 73, "isTopResearch": false, "rank": 562, "fortune500_rank": 209}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 857, "fortune500_rank": 236}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 0, 0, 0, 0, 1.0, 0], "total": 1.5, "isTopResearch": false, "rank": 855, "fortune500_rank": 232}}, "patents": {"ai_patents": {"counts": [0, 2, 1, 5, 5, 14, 8, 1, 2, 0, 0], "total": 38, "table": null, "rank": 245, "fortune500_rank": 78}, "ai_patents_growth": {"counts": [], "total": 16.547619047619047, "table": null, "rank": 310, "fortune500_rank": 98}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 20, 10, 50, 50, 140, 80, 10, 20, 0, 0], "total": 380, "table": null, "rank": 245, "fortune500_rank": 78}, "Physical_Sciences_and_Engineering": {"counts": [0, 2, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 88, "fortune500_rank": 28}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 3, 7, 6, 0, 0, 0, 0], "total": 16, "table": "industry", "rank": 69, "fortune500_rank": 31}, "Transportation": {"counts": [0, 0, 0, 1, 2, 0, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 147, "fortune500_rank": 45}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 165, "fortune500_rank": 55}, "Education": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 2, 3, 8, 1, 1, 2, 0, 0], "total": 18, "table": "industry", "rank": 202, "fortune500_rank": 75}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 2, 2, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 115, "fortune500_rank": 41}, "Telecommunications": {"counts": [0, 0, 0, 1, 1, 5, 2, 0, 1, 0, 0], "total": 10, "table": "industry", "rank": 165, "fortune500_rank": 62}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 3, 2, 1, 1, 0, 0, 0], "total": 8, "table": "industry", "rank": 168, "fortune500_rank": 57}, "Energy_Management": {"counts": [0, 2, 1, 1, 0, 3, 0, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 62, "fortune500_rank": 15}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "fortune500_rank": 43}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 1, 2, 0, 1, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 137, "fortune500_rank": 58}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 2, 2, 1, 1, 0, 0, 0], "total": 7, "table": "application", "rank": 153, "fortune500_rank": 53}, "Control": {"counts": [0, 1, 1, 1, 0, 2, 4, 0, 0, 0, 0], "total": 9, "table": "application", "rank": 144, "fortune500_rank": 48}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 1, 1, 3, 2, 3, 0, 0, 0, 0], "total": 10, "table": "application", "rank": 241, "fortune500_rank": 73}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 189, "fortune500_rank": 62}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 368, "rank": 550, "fortune500_rank": 301}, "ai_jobs": {"counts": null, "total": 14, "rank": 775, "fortune500_rank": 384}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Carrier Global Corporation is an American corporation based in Palm Beach Gardens, Florida. Carrier was founded in 1915 as an independent company manufacturing and distributing heating, ventilating and air conditioning (HVAC) systems, and has since expanded to include manufacturing commercial refrigeration and foodservice equipment, and fire and security technologies.\nAs of 2020, it was an $18.6 billion company with over 53,000 employees serving customers in 160 countries on six continents.", "wikipedia_link": "https://en.wikipedia.org/wiki/Carrier_Global", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1860, "country": "Norway", "website": "https://www.equinor.com/", "crunchbase": {"text": " 8abcf557-aca4-dcaa-935e-96653af0b96e ", "url": " https://www.crunchbase.com/organization/statoil "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/equinor"], "stage": "Mature", "name": "Equinor", "patent_name": "Equinor", "continent": "Europe", "local_logo": null, "aliases": "Equinor; Equinor Asa; Statoil; Statoil Asa", "permid_links": [{"text": 4295885689, "url": "https://permid.org/1-4295885689"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EQNR", "url": "https://www.google.com/finance/quote/EQNR:NYSE"}], "market_full": [{"text": "MUN:DNQA", "url": "https://www.google.com/finance/quote/DNQA:MUN"}, {"text": "LSE:0M2Z", "url": "https://www.google.com/finance/quote/0M2Z:LSE"}, {"text": "STU:DNQA", "url": "https://www.google.com/finance/quote/DNQA:STU"}, {"text": "BER:DNQA", "url": "https://www.google.com/finance/quote/BER:DNQA"}, {"text": "DEU:DNQA", "url": "https://www.google.com/finance/quote/DEU:DNQA"}, {"text": "STU:DNQ", "url": "https://www.google.com/finance/quote/DNQ:STU"}, {"text": "HAM:DNQ", "url": "https://www.google.com/finance/quote/DNQ:HAM"}, {"text": "BER:DNQ", "url": "https://www.google.com/finance/quote/BER:DNQ"}, {"text": "MUN:DNQ", "url": "https://www.google.com/finance/quote/DNQ:MUN"}, {"text": "PKC:STOHF", "url": "https://www.google.com/finance/quote/PKC:STOHF"}, {"text": "NYSE:EQNR", "url": "https://www.google.com/finance/quote/EQNR:NYSE"}, {"text": "SAO:E1QN34", "url": "https://www.google.com/finance/quote/E1QN34:SAO"}, {"text": "BRN:DNQ", "url": "https://www.google.com/finance/quote/BRN:DNQ"}, {"text": "OSL:EQNR", "url": "https://www.google.com/finance/quote/EQNR:OSL"}, {"text": "HAN:DNQ", "url": "https://www.google.com/finance/quote/DNQ:HAN"}, {"text": "DUS:DNQA", "url": "https://www.google.com/finance/quote/DNQA:DUS"}, {"text": "EBT:DNQ", "url": "https://www.google.com/finance/quote/DNQ:EBT"}, {"text": "DUS:DNQ", "url": "https://www.google.com/finance/quote/DNQ:DUS"}, {"text": "ASE:DNQ", "url": "https://www.google.com/finance/quote/ASE:DNQ"}, {"text": "LSE:0A7F", "url": "https://www.google.com/finance/quote/0A7F:LSE"}, {"text": "STO:DQNRO", "url": "https://www.google.com/finance/quote/DQNRo:STO"}, {"text": "MEX:EQNRN", "url": "https://www.google.com/finance/quote/EQNRN:MEX"}, {"text": "DEU:DNQ", "url": "https://www.google.com/finance/quote/DEU:DNQ"}, {"text": "FRA:DNQA", "url": "https://www.google.com/finance/quote/DNQA:FRA"}, {"text": "NYQ:EQNR", "url": "https://www.google.com/finance/quote/EQNR:NYQ"}, {"text": "FRA:DNQ", "url": "https://www.google.com/finance/quote/DNQ:FRA"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Decision support system", "field_count": 3}, {"field_name": "Value of information", "field_count": 3}, {"field_name": "Ensemble learning", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}, {"field_name": "Ontology (information science)", "field_count": 2}], "clusters": [{"cluster_id": 29455, "cluster_count": 9}, {"cluster_id": 25755, "cluster_count": 8}, {"cluster_id": 12122, "cluster_count": 6}, {"cluster_id": 49805, "cluster_count": 5}, {"cluster_id": 27297, "cluster_count": 4}, {"cluster_id": 77793, "cluster_count": 4}, {"cluster_id": 22609, "cluster_count": 4}, {"cluster_id": 53446, "cluster_count": 2}, {"cluster_id": 2798, "cluster_count": 2}, {"cluster_id": 66474, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 27}, {"ref_CSET_id": 1860, "referenced_count": 25}, {"ref_CSET_id": 163, "referenced_count": 9}, {"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 789, "referenced_count": 6}, {"ref_CSET_id": 798, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 1617, "referenced_count": 4}, {"ref_CSET_id": 1797, "referenced_count": 3}, {"ref_CSET_id": 676, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 14}, {"referent": "developmental_learning", "task_count": 9}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 9}, {"referent": "decision_making", "task_count": 9}, {"referent": "speech_production", "task_count": 6}, {"referent": "image_interpretation", "task_count": 6}, {"referent": "facies_classification", "task_count": 5}, {"referent": "automated_writing_evaluation", "task_count": 5}, {"referent": "model_selection", "task_count": 4}, {"referent": "fault_detection", "task_count": 4}], "methods": [{"referent": "mad_learning", "method_count": 12}, {"referent": "auto_classifier", "method_count": 7}, {"referent": "self_supervised_learning", "method_count": 6}, {"referent": "vqa_models", "method_count": 5}, {"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "automl", "method_count": 4}, {"referent": "1d_cnn", "method_count": 4}, {"referent": "optimization", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "sttp", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [327, 300, 320, 296, 312, 228, 240, 208, 263, 176, 4], "total": 2674, "isTopResearch": false, "rank": 102, "sp500_rank": 82}, "ai_publications": {"counts": [7, 3, 4, 9, 4, 6, 10, 6, 24, 2, 0], "total": 75, "isTopResearch": false, "rank": 146, "sp500_rank": 96}, "ai_publications_growth": {"counts": [], "total": 56.11111111111111, "isTopResearch": false, "rank": 61, "sp500_rank": 30}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [26, 18, 26, 28, 39, 46, 61, 76, 104, 93, 3], "total": 520, "isTopResearch": false, "rank": 267, "sp500_rank": 140}, "cv_pubs": {"counts": [0, 0, 0, 4, 1, 1, 0, 1, 6, 0, 0], "total": 13, "isTopResearch": true, "rank": 179, "sp500_rank": 104}, "nlp_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [3, 0, 1, 2, 1, 0, 2, 0, 1, 0, 0], "total": 10, "isTopResearch": true, "rank": 114, "sp500_rank": 82}, "citations_per_article": {"counts": [3.7142857142857144, 6.0, 6.5, 3.111111111111111, 9.75, 7.666666666666667, 6.1, 12.666666666666666, 4.333333333333333, 46.5, 0], "total": 6.933333333333334, "isTopResearch": false, "rank": 644, "sp500_rank": 253}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 3, 2, 0, 0, 0], "total": 6, "table": null, "rank": 487, "sp500_rank": 216}, "ai_patents_growth": {"counts": [], "total": -66.66666666666667, "table": null, "rank": 1550, "sp500_rank": 456}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 30, 20, 0, 0, 0], "total": 60, "table": null, "rank": 487, "sp500_rank": 216}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "sp500_rank": 92}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0], "total": 5, "table": "application", "rank": 170, "sp500_rank": 121}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 367, "rank": 552, "sp500_rank": 248}, "ai_jobs": {"counts": null, "total": 48, "rank": 490, "sp500_rank": 232}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2258, "country": "United States", "website": "https://www.cinfin.com/", "crunchbase": {"text": "d8fc3281-96a0-8a77-8830-6935db85864d", "url": "https://www.crunchbase.com/organization/cincinnati-financial"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-cincinnati-insurance-companies"], "stage": "Mature", "name": "Cincinnati Financial", "patent_name": "cincinnati financial", "continent": "North America", "local_logo": "cincinnati_financial.png", "aliases": "Cincinnati Financial Corp; Cincinnati Financial Corporation; The Cincinnati Insurance Companies", "permid_links": [{"text": 4295905949, "url": "https://permid.org/1-4295905949"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CINF", "url": "https://www.google.com/finance/quote/cinf:nasdaq"}], "market_full": [{"text": "DEU:CINF", "url": "https://www.google.com/finance/quote/cinf:deu"}, {"text": "DUS:CCJ", "url": "https://www.google.com/finance/quote/ccj:dus"}, {"text": "STU:CCJ", "url": "https://www.google.com/finance/quote/ccj:stu"}, {"text": "LSE:0HYE", "url": "https://www.google.com/finance/quote/0hye:lse"}, {"text": "SAO:CINF34", "url": "https://www.google.com/finance/quote/cinf34:sao"}, {"text": "BER:CCJ", "url": "https://www.google.com/finance/quote/ber:ccj"}, {"text": "MUN:CCJ", "url": "https://www.google.com/finance/quote/ccj:mun"}, {"text": "MCX:CINF-RM", "url": "https://www.google.com/finance/quote/cinf-rm:mcx"}, {"text": "FRA:CCJ", "url": "https://www.google.com/finance/quote/ccj:fra"}, {"text": "NASDAQ:CINF", "url": "https://www.google.com/finance/quote/cinf:nasdaq"}], "crunchbase_description": "Cincinnati Financial Corporation offers property and casualty insurance, its main business, through The Cincinnati Insurance Company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 2, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063, "fortune500_rank": 359}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 363, "rank": 553, "fortune500_rank": 302}, "ai_jobs": {"counts": null, "total": 24, "rank": 649, "fortune500_rank": 330}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Cincinnati Financial Corporation offers property and casualty insurance, its main business, through The Cincinnati Insurance Company, The Cincinnati Indemnity Company and The Cincinnati Casualty Company. The company has 1.01% of the domestic property and casualty insurance premiums, which ranks it as the 20th largest insurance company by market share in the U.S.", "wikipedia_link": "https://en.wikipedia.org/wiki/Cincinnati_Financial", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2506, "country": "United Kingdom", "website": "http://www.fmctechnologies.com/", "crunchbase": {"text": "1b121e62-c844-9f8e-37f3-74075f54b8f1", "url": "https://www.crunchbase.com/organization/technip-paris"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/technipfmc"], "stage": "Mature", "name": "Technipfmc", "patent_name": "technipfmc", "continent": "Europe", "local_logo": "technipfmc.png", "aliases": "FMC Technologies; FMC Technologies Inc; Technip; Technip Paris; TechnipFMC PLC", "permid_links": [{"text": 5000034531, "url": "https://permid.org/1-5000034531"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:FTI", "url": "https://www.google.com/finance/quote/fti:nyse"}], "market_full": [{"text": "BRN:1T1", "url": "https://www.google.com/finance/quote/1t1:brn"}, {"text": "FRA:1T1", "url": "https://www.google.com/finance/quote/1t1:fra"}, {"text": "STU:1T1", "url": "https://www.google.com/finance/quote/1t1:stu"}, {"text": "NYSE:FTI", "url": "https://www.google.com/finance/quote/fti:nyse"}, {"text": "ASE:FTI", "url": "https://www.google.com/finance/quote/ase:fti"}, {"text": "NYQ:FTI", "url": "https://www.google.com/finance/quote/fti:nyq"}, {"text": "MUN:1T1", "url": "https://www.google.com/finance/quote/1t1:mun"}, {"text": "DUS:1T1", "url": "https://www.google.com/finance/quote/1t1:dus"}, {"text": "DEU:1T1", "url": "https://www.google.com/finance/quote/1t1:deu"}, {"text": "BER:1T1", "url": "https://www.google.com/finance/quote/1t1:ber"}, {"text": "LSE:0RMV", "url": "https://www.google.com/finance/quote/0rmv:lse"}, {"text": "SWX:FTI", "url": "https://www.google.com/finance/quote/fti:swx"}, {"text": "SAO:T1EC34", "url": "https://www.google.com/finance/quote/sao:t1ec34"}, {"text": "VIE:FTI", "url": "https://www.google.com/finance/quote/fti:vie"}], "crunchbase_description": "TechnipFMC engages in project management, engineering, and construction for the energy industry.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Setpoint", "field_count": 2}, {"field_name": "Video camera", "field_count": 1}, {"field_name": "Model selection", "field_count": 1}, {"field_name": "Bayesian network", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 2418, "cluster_count": 3}, {"cluster_id": 3322, "cluster_count": 2}, {"cluster_id": 6176, "cluster_count": 1}, {"cluster_id": 3209, "cluster_count": 1}, {"cluster_id": 43099, "cluster_count": 1}, {"cluster_id": 36397, "cluster_count": 1}, {"cluster_id": 37315, "cluster_count": 1}, {"cluster_id": 11938, "cluster_count": 1}, {"cluster_id": 2621, "cluster_count": 1}, {"cluster_id": 31761, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2506, "referenced_count": 10}, {"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 1897, "referenced_count": 2}, {"ref_CSET_id": 553, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 1}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 7}, {"referent": "auv", "task_count": 4}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "emotion_analysis", "task_count": 1}, {"referent": "change_detection", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "action_understanding", "task_count": 1}, {"referent": "object_detection", "task_count": 1}], "methods": [{"referent": "audio_model_blocks", "method_count": 2}, {"referent": "automl", "method_count": 2}, {"referent": "soft_nms", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "use", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "taypo", "method_count": 1}, {"referent": "som", "method_count": 1}, {"referent": "cbam", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [79, 93, 77, 81, 82, 82, 98, 94, 64, 30, 1], "total": 781, "isTopResearch": false, "rank": 223, "fortune500_rank": 86}, "ai_publications": {"counts": [2, 2, 3, 2, 1, 1, 4, 0, 3, 0, 0], "total": 18, "isTopResearch": false, "rank": 321, "fortune500_rank": 98}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [9, 10, 25, 33, 39, 71, 91, 119, 75, 71, 6], "total": 549, "isTopResearch": false, "rank": 261, "fortune500_rank": 79}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [2, 1, 2, 2, 0, 0, 1, 0, 0, 0, 0], "total": 8, "isTopResearch": true, "rank": 135, "fortune500_rank": 38}, "citations_per_article": {"counts": [4.5, 5.0, 8.333333333333334, 16.5, 39.0, 71.0, 22.75, 0, 25.0, 0, 0], "total": 30.5, "isTopResearch": false, "rank": 190, "fortune500_rank": 55}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 363, "rank": 553, "fortune500_rank": 302}, "ai_jobs": {"counts": null, "total": 20, "rank": 692, "fortune500_rank": 349}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "TechnipFMC plc is a French-American, UK-domiciled global oil and gas company that provides complete project life cycle services for the energy industry. It was ranked 23rd among world's Top 225 International Design Firms in the year 2017 by Engineering News-Record. The company was formed by the merger of FMC Technologies of the United States and Technip of France that was announced in 2016 and completed in 2017. TechnipFMC acts in three distinct segments: subsea, offshore/onshore, and surface projects. These projects include offshore oil and gas exploration and extraction platforms, rigs, crude oil refinery, petrochemical plants such as Ethylene, Hydrogen, SynGas plants, Naptha, Benzene etc. plastics & rubber industry, fertiliser plant, onshore as well as floating LNG plants. The company is legally domiciled in the UK, and has major operations in Houston and Paris where its predecessor companies were headquartered. It has about 23,000 employees from 126 nationalities and operates in 48 countries. TechnipFMC stock is listed on the NYSE and Euronext Paris exchange, and is a component of the CAC Next 20 and the Dow Jones Sustainability Index. The French government owns a 4 percent stake in the company.", "wikipedia_link": "https://en.wikipedia.org/wiki/TechnipFMC", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2753, "country": "United States", "website": "http://www.sncorp.com/", "crunchbase": {"text": "aae180f5-8c19-9477-afc8-1869f218bd49", "url": "https://www.crunchbase.com/organization/sierra-nevada-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sierra-nevada-corporation"], "stage": "Unknown", "name": "Sierra Nevada Corp", "patent_name": "sierra nevada corp", "continent": "North America", "local_logo": "sierra_nevada_corp.png", "aliases": "Sierra Nevada Corporation; Snc", "permid_links": [{"text": 4296376415, "url": "https://permid.org/1-4296376415"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Sierra Nevada Corporation is a aerospace and space travel company.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Advanced driver assistance systems", "field_count": 1}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Robotic arm", "field_count": 1}], "clusters": [{"cluster_id": 4455, "cluster_count": 1}, {"cluster_id": 8567, "cluster_count": 1}, {"cluster_id": 55987, "cluster_count": 1}, {"cluster_id": 58571, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 2753, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 783, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 815, "referenced_count": 1}], "tasks": [{"referent": "video_surveillance", "task_count": 1}, {"referent": "information_retrieval", "task_count": 1}, {"referent": "land_cover_mapping", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "fact_verification", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}], "methods": [{"referent": "downsampling", "method_count": 1}, {"referent": "wgan_gp", "method_count": 1}, {"referent": "impala", "method_count": 1}, {"referent": "sequential", "method_count": 1}, {"referent": "pafs", "method_count": 1}, {"referent": "cbam", "method_count": 1}, {"referent": "root", "method_count": 1}, {"referent": "realnvp", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [16, 11, 5, 20, 10, 7, 3, 12, 2, 3, 0], "total": 89, "isTopResearch": false, "rank": 527}, "ai_publications": {"counts": [2, 1, 0, 1, 0, 0, 0, 2, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 514}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [2, 12, 18, 9, 17, 8, 18, 24, 13, 5, 0], "total": 126, "isTopResearch": false, "rank": 469}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 214}, "citations_per_article": {"counts": [1.0, 12.0, 0, 9.0, 0, 0, 0, 12.0, 0, 0, 0], "total": 21.0, "isTopResearch": false, "rank": 294}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 363, "rank": 553}, "ai_jobs": {"counts": null, "total": 14, "rank": 775}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Sierra Nevada Corporation (SNC) is an American, privately held aerospace and national security contractor specializing in aircraft modification and integration, space components and systems, and related technology products for cybersecurity and Health. The company contracts with the United States Armed Forces, NASA and private spaceflight companies. SNC is headquartered in Sparks, Nevada and has 33 locations in 19 U.S. states, United Kingdom, Germany and Turkey.", "wikipedia_link": "https://en.wikipedia.org/wiki/Sierra_Nevada_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2197, "country": "United States", "website": "http://investor.alaskaair.com/", "crunchbase": {"text": "fc7c3926-6885-2c89-b3f4-8e1b76f7e43e", "url": "https://www.crunchbase.com/organization/alaska-air-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/alaska-airlines"], "stage": "Mature", "name": "Alaska Air Group Inc", "patent_name": "alaska air group inc", "continent": "North America", "local_logo": "alaska_air_group_inc.png", "aliases": "Alaska Air Group; Alaska Airlines; Alaska Airlines, Inc", "permid_links": [{"text": 4295903311, "url": "https://permid.org/1-4295903311"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ALK", "url": "https://www.google.com/finance/quote/alk:nyse"}], "market_full": [{"text": "ASE:ALK", "url": "https://www.google.com/finance/quote/alk:ase"}, {"text": "MUN:ALK", "url": "https://www.google.com/finance/quote/alk:mun"}, {"text": "BRN:ALK", "url": "https://www.google.com/finance/quote/alk:brn"}, {"text": "LSE:0HC3", "url": "https://www.google.com/finance/quote/0hc3:lse"}, {"text": "FRA:ALK", "url": "https://www.google.com/finance/quote/alk:fra"}, {"text": "SAO:A1LK34", "url": "https://www.google.com/finance/quote/a1lk34:sao"}, {"text": "BER:ALK", "url": "https://www.google.com/finance/quote/alk:ber"}, {"text": "STU:ALK", "url": "https://www.google.com/finance/quote/alk:stu"}, {"text": "MCX:ALK-RM", "url": "https://www.google.com/finance/quote/alk-rm:mcx"}, {"text": "NYSE:ALK", "url": "https://www.google.com/finance/quote/alk:nyse"}, {"text": "NYQ:ALK", "url": "https://www.google.com/finance/quote/alk:nyq"}, {"text": "DUS:ALK", "url": "https://www.google.com/finance/quote/alk:dus"}, {"text": "DEU:ALK", "url": "https://www.google.com/finance/quote/alk:deu"}], "crunchbase_description": "Alaska Airlines is the eighth-largest U.S. airline based on passenger traffic and is the dominant U.S. West Coast air carrier.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 2, 0, 3, 3, 0, 0, 0, 0], "total": 8, "isTopResearch": false, "rank": 980, "fortune500_rank": 333}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 356, "rank": 556, "fortune500_rank": 304}, "ai_jobs": {"counts": null, "total": 22, "rank": 667, "fortune500_rank": 336}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "Alaska Air Group is an airline holding company based in SeaTac, Washington, United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Alaska_Air_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 393, "country": "United States", "website": "http://www.cognex.com/", "crunchbase": {"text": "cb14f77d-6bf0-d9d0-e206-dc45a3840e28", "url": "https://www.crunchbase.com/organization/cognex"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cognex-corporation"], "stage": "Mature", "name": "Cognex Corporation", "patent_name": "cognex corporation", "continent": "North America", "local_logo": "cognex_corporation.png", "aliases": "Cognex; Cognex Corp", "permid_links": [{"text": 4295905971, "url": "https://permid.org/1-4295905971"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CGNX", "url": "https://www.google.com/finance/quote/cgnx:nasdaq"}], "market_full": [{"text": "NASDAQ:CGNX", "url": "https://www.google.com/finance/quote/cgnx:nasdaq"}], "crunchbase_description": "Cognex is a supplier of industrial barcode readers, sensors, software, and vision systems used in production automation.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Temporal database", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}], "clusters": [{"cluster_id": 40347, "cluster_count": 1}, {"cluster_id": 17908, "cluster_count": 1}, {"cluster_id": 32237, "cluster_count": 1}, {"cluster_id": 30980, "cluster_count": 1}, {"cluster_id": 20002, "cluster_count": 1}, {"cluster_id": 55084, "cluster_count": 1}, {"cluster_id": 1206, "cluster_count": 1}, {"cluster_id": 14751, "cluster_count": 1}, {"cluster_id": 14353, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 27}, {"ref_CSET_id": 87, "referenced_count": 17}, {"ref_CSET_id": 163, "referenced_count": 11}, {"ref_CSET_id": 1126, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 734, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 637, "referenced_count": 1}, {"ref_CSET_id": 949, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "image_recognition", "task_count": 3}, {"referent": "image_analysis", "task_count": 2}, {"referent": "style_transfer", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "unsupervised_anomaly_detection", "task_count": 1}, {"referent": "image_annotation", "task_count": 1}, {"referent": "object_detection", "task_count": 1}, {"referent": "image_captioning", "task_count": 1}, {"referent": "motion_capture", "task_count": 1}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "npid", "method_count": 1}, {"referent": "cdcc_net", "method_count": 1}, {"referent": "autoencoder", "method_count": 1}, {"referent": "ae", "method_count": 1}, {"referent": "edgeboxes", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "global_convolutional_network", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 2, 0, 1, 0, 3, 2, 5, 4, 0], "total": 18, "isTopResearch": false, "rank": 825}, "ai_publications": {"counts": [0, 1, 0, 0, 1, 0, 2, 2, 4, 1, 0], "total": 11, "isTopResearch": false, "rank": 397}, "ai_publications_growth": {"counts": [], "total": 8.333333333333334, "isTopResearch": false, "rank": 165}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 1, 2, 2, 3, 0, 1, 3, 22, 39, 1], "total": 74, "isTopResearch": false, "rank": 541}, "cv_pubs": {"counts": [0, 1, 0, 0, 1, 0, 2, 2, 3, 1, 0], "total": 10, "isTopResearch": true, "rank": 202}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 1.0, 0, 0, 3.0, 0, 0.5, 1.5, 5.5, 39.0, 0], "total": 6.7272727272727275, "isTopResearch": false, "rank": 653}}, "patents": {"ai_patents": {"counts": [1, 0, 4, 4, 2, 4, 3, 2, 0, 0, 0], "total": 20, "table": null, "rank": 323}, "ai_patents_growth": {"counts": [], "total": 13.888888888888888, "table": null, "rank": 318}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 0, 40, 40, 20, 40, 30, 20, 0, 0, 0], "total": 200, "table": null, "rank": 323}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 336}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 1, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 249}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [1, 0, 4, 4, 2, 4, 3, 2, 0, 0, 0], "total": 20, "table": "application", "rank": 186}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 1, 0, 1, 2, 0, 0, 0], "total": 5, "table": "application", "rank": 170}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 356, "rank": 556}, "ai_jobs": {"counts": null, "total": 13, "rank": 790}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Cognex Corporation is an American manufacturer of machine vision systems, software and sensors used in automated manufacturing to inspect and identify parts, detect defects, verify product assembly, and guide assembly robots. Cognex is headquartered in Natick, Massachusetts, USA and has offices in more than 20 countries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Cognex_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2285, "country": "United States", "website": "https://www.digitalrealty.com", "crunchbase": {"text": "c566642d-8529-bb96-c29a-5306311118de", "url": "https://www.crunchbase.com/organization/digital-realty-trust"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/digitalrealty"], "stage": "Mature", "name": "Digital Realty Trust Inc", "patent_name": "digital realty trust inc", "continent": "North America", "local_logo": "digital_realty_trust_inc.png", "aliases": "Digital Realty; Digital Realty Trust, Inc", "permid_links": [{"text": 4295909064, "url": "https://permid.org/1-4295909064"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DLR", "url": "https://www.google.com/finance/quote/dlr:nyse"}], "market_full": [{"text": "BRN:FQI", "url": "https://www.google.com/finance/quote/brn:fqi"}, {"text": "NYSE:DLR", "url": "https://www.google.com/finance/quote/dlr:nyse"}, {"text": "MUN:FQI", "url": "https://www.google.com/finance/quote/fqi:mun"}, {"text": "BER:FQI", "url": "https://www.google.com/finance/quote/ber:fqi"}, {"text": "ASE:DLR", "url": "https://www.google.com/finance/quote/ase:dlr"}, {"text": "SAO:D1LR34", "url": "https://www.google.com/finance/quote/d1lr34:sao"}, {"text": "HAN:FQI", "url": "https://www.google.com/finance/quote/fqi:han"}, {"text": "STU:FQI", "url": "https://www.google.com/finance/quote/fqi:stu"}, {"text": "LSE:0I9F", "url": "https://www.google.com/finance/quote/0i9f:lse"}, {"text": "FRA:FQI", "url": "https://www.google.com/finance/quote/fqi:fra"}, {"text": "NYQ:DLR", "url": "https://www.google.com/finance/quote/dlr:nyq"}, {"text": "DEU:FQI", "url": "https://www.google.com/finance/quote/deu:fqi"}, {"text": "DUS:FQI", "url": "https://www.google.com/finance/quote/dus:fqi"}, {"text": "MEX:DLR*", "url": "https://www.google.com/finance/quote/dlr*:mex"}], "crunchbase_description": "Digital Realty is a data center platform, delivering customized data analysis solutions to businesses.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 355, "rank": 558, "fortune500_rank": 305}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "fortune500_rank": 409}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Digital Realty Trust, Inc. is a real estate investment trust that invests in carrier-neutral data centers and provides colocation and peering services. As of December 31, 2019, the company owned interests in 225 operating data center facilities totaling 34.5 million rentable square feet in the United States, Europe, Asia, Canada, and Australia. The company's largest operating areas are: Northern Virginia, Dallas, Chicago, New York State, Silicon Valley, and London.\nThe company is a member of The Green Grid and has helped pioneer concepts of energy efficient and energy conserving data center design.", "wikipedia_link": "https://en.wikipedia.org/wiki/Digital_Realty", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 702, "country": "United States", "website": "http://stitchfix.com", "crunchbase": {"text": "9941bfb0-2645-2e81-f137-e2aac3fa2e19", "url": "https://www.crunchbase.com/organization/stitch-fix"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/stitch-fix"], "stage": "Mature", "name": "Stitch Fix", "patent_name": "stitch fix", "continent": "North America", "local_logo": "stitch_fix.png", "aliases": "Stitch Fix Inc; Stitch Fix, Inc", "permid_links": [{"text": 5037661947, "url": "https://permid.org/1-5037661947"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:SFIX", "url": "https://www.google.com/finance/quote/nasdaq:sfix"}], "market_full": [{"text": "NASDAQ:SFIX", "url": "https://www.google.com/finance/quote/nasdaq:sfix"}, {"text": "LON:0L9X", "url": "https://www.google.com/finance/quote/0l9x:lon"}, {"text": "DUS:SYJ", "url": "https://www.google.com/finance/quote/dus:syj"}, {"text": "BER:SYJ", "url": "https://www.google.com/finance/quote/ber:syj"}, {"text": "FWB:SYJ", "url": "https://www.google.com/finance/quote/fwb:syj"}, {"text": "MUN:SYJ", "url": "https://www.google.com/finance/quote/mun:syj"}], "crunchbase_description": "Stitch Fix is a personal styling platform that delivers curated and personalized apparel and accessory items for women.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Natural language", "field_count": 1}, {"field_name": "Hierarchical database model", "field_count": 1}, {"field_name": "Ontology (information science)", "field_count": 1}, {"field_name": "Unsupervised learning", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}, {"field_name": "Salient", "field_count": 1}], "clusters": [{"cluster_id": 38342, "cluster_count": 1}, {"cluster_id": 65842, "cluster_count": 1}, {"cluster_id": 25062, "cluster_count": 1}, {"cluster_id": 3167, "cluster_count": 1}, {"cluster_id": 50534, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 429, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 550, "referenced_count": 1}], "tasks": [{"referent": "recommendation_systems", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "knowledge_graphs", "task_count": 1}, {"referent": "recommendation", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "speech_production", "task_count": 1}, {"referent": "clustering_algorithms_evaluation", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 2}, {"referent": "mad_learning", "method_count": 1}, {"referent": "time_series_analysis", "method_count": 1}, {"referent": "linear_regression", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "hierarchical_vae", "method_count": 1}, {"referent": "generalized_linear_models", "method_count": 1}, {"referent": "counting_methods", "method_count": 1}, {"referent": "nt_xent", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 2, 3, 2, 5, 4, 4, 1, 3, 0], "total": 25, "isTopResearch": false, "rank": 754}, "ai_publications": {"counts": [1, 0, 0, 1, 0, 3, 1, 0, 0, 1, 0], "total": 7, "isTopResearch": false, "rank": 481}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 1, 0, 0, 1, 1, 4, 8, 7, 5, 0], "total": 27, "isTopResearch": false, "rank": 654}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0.0, 0, 0, 0.0, 0, 0.3333333333333333, 4.0, 0, 0, 5.0, 0], "total": 3.857142857142857, "isTopResearch": false, "rank": 758}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 1, 3, 1, 2, 0, 0, 0, 0], "total": 8, "table": null, "rank": 443}, "ai_patents_growth": {"counts": [], "total": -22.222222222222225, "table": null, "rank": 1465}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 10, 30, 10, 20, 0, 0, 0, 0], "total": 80, "table": null, "rank": 443}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 1, 1, 3, 1, 2, 0, 0, 0, 0], "total": 8, "table": "industry", "rank": 168}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 183}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 353, "rank": 559}, "ai_jobs": {"counts": null, "total": 101, "rank": 332}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Stitch Fix is an online personal styling service in the United States. It uses recommendation algorithms and data science to personalize clothing items based on size, budget and style. The company was founded in 2011 and had an initial public offering in 2017 with a valuation of $1.6 billion. Stitch Fix generated more than $1 billion in sales during 2018 and reported 3.4 million customers in June 2020. It is headquartered in San Francisco, California and employs 8,000 people worldwide.", "wikipedia_link": "https://en.wikipedia.org/wiki/Stitch_Fix", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1941, "country": null, "website": "https://www.thyssenkrupp.com/", "crunchbase": {"text": " 811d5a4c-25ff-5428-c4ed-26a7d1cbb60b", "url": " https://www.crunchbase.com/organization/thyssenkrupp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/thyssenkrupp"], "stage": "Mature", "name": "Thyssenkrupp", "patent_name": "ThyssenKrupp", "continent": null, "local_logo": null, "aliases": "ThyssenKrupp; Thyssenkrupp Ag", "permid_links": [{"text": 4295869754, "url": "https://permid.org/1-4295869754"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "BUD:THYSSENKRUPP", "url": "https://www.google.com/finance/quote/BUD:THYSSENKRUPP"}, {"text": "STU:TKA", "url": "https://www.google.com/finance/quote/STU:TKA"}, {"text": "LSE:0O1C", "url": "https://www.google.com/finance/quote/0O1C:LSE"}, {"text": "PKC:TYEKF", "url": "https://www.google.com/finance/quote/PKC:TYEKF"}, {"text": "MUN:TKA1", "url": "https://www.google.com/finance/quote/MUN:TKA1"}, {"text": "FRA:TKA", "url": "https://www.google.com/finance/quote/FRA:TKA"}, {"text": "GER:TKAX", "url": "https://www.google.com/finance/quote/GER:TKAX"}, {"text": "BER:TKA", "url": "https://www.google.com/finance/quote/BER:TKA"}, {"text": "DEU:TKAG", "url": "https://www.google.com/finance/quote/DEU:TKAG"}, {"text": "DEU:TKA1", "url": "https://www.google.com/finance/quote/DEU:TKA1"}, {"text": "FRA:TKA1", "url": "https://www.google.com/finance/quote/FRA:TKA1"}, {"text": "EBT:TKAD", "url": "https://www.google.com/finance/quote/EBT:TKAd"}, {"text": "PKC:TKAMY", "url": "https://www.google.com/finance/quote/PKC:TKAMY"}, {"text": "VIE:TKR", "url": "https://www.google.com/finance/quote/TKR:VIE"}, {"text": "BER:TKA1", "url": "https://www.google.com/finance/quote/BER:TKA1"}, {"text": "SWX:TK", "url": "https://www.google.com/finance/quote/SWX:TK"}, {"text": "MIL:TKA", "url": "https://www.google.com/finance/quote/MIL:TKA"}, {"text": "HAN:TKA", "url": "https://www.google.com/finance/quote/HAN:TKA"}, {"text": "BRN:TKA", "url": "https://www.google.com/finance/quote/BRN:TKA"}, {"text": "HAM:TKA", "url": "https://www.google.com/finance/quote/HAM:TKA"}, {"text": "STU:TKA1", "url": "https://www.google.com/finance/quote/STU:TKA1"}, {"text": "MUN:TKA", "url": "https://www.google.com/finance/quote/MUN:TKA"}, {"text": "DUS:TKA", "url": "https://www.google.com/finance/quote/DUS:TKA"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Sonar", "field_count": 5}, {"field_name": "Verb", "field_count": 1}, {"field_name": "Ground truth", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Empirical risk minimization", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Navigation system", "field_count": 1}, {"field_name": "Machine vision", "field_count": 1}], "clusters": [{"cluster_id": 14837, "cluster_count": 3}, {"cluster_id": 3209, "cluster_count": 3}, {"cluster_id": 8163, "cluster_count": 1}, {"cluster_id": 887, "cluster_count": 1}, {"cluster_id": 43641, "cluster_count": 1}, {"cluster_id": 2381, "cluster_count": 1}, {"cluster_id": 62469, "cluster_count": 1}, {"cluster_id": 27666, "cluster_count": 1}, {"cluster_id": 8172, "cluster_count": 1}, {"cluster_id": 59129, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 12}, {"ref_CSET_id": 87, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 800, "referenced_count": 2}, {"ref_CSET_id": 2075, "referenced_count": 1}, {"ref_CSET_id": 487, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 345, "referenced_count": 1}, {"ref_CSET_id": 806, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "autonomous_navigation", "task_count": 4}, {"referent": "auv", "task_count": 3}, {"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "environmental_sound_classification", "task_count": 3}, {"referent": "segmentation", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "object_detection", "task_count": 2}, {"referent": "one_class_classifier", "task_count": 1}, {"referent": "image_processing", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "1d_cnn", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "moco", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "object_detection_models", "method_count": 1}, {"referent": "distribution_approximation", "method_count": 1}, {"referent": "sparse_convolutions", "method_count": 1}, {"referent": "loss_functions", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [53, 54, 37, 60, 48, 85, 40, 55, 44, 40, 0], "total": 516, "isTopResearch": false, "rank": 274, "sp500_rank": 184}, "ai_publications": {"counts": [1, 0, 3, 1, 2, 3, 3, 3, 2, 1, 0], "total": 19, "isTopResearch": false, "rank": 311, "sp500_rank": 175}, "ai_publications_growth": {"counts": [], "total": -27.777777777777782, "isTopResearch": false, "rank": 1380, "sp500_rank": 375}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [1, 7, 15, 17, 8, 11, 27, 34, 55, 38, 2], "total": 215, "isTopResearch": false, "rank": 381, "sp500_rank": 175}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 313, "sp500_rank": 158}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 2, 1, 1, 0, 0, 1, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 171, "sp500_rank": 107}, "citations_per_article": {"counts": [1.0, 0, 5.0, 17.0, 4.0, 3.6666666666666665, 9.0, 11.333333333333334, 27.5, 38.0, 0], "total": 11.31578947368421, "isTopResearch": false, "rank": 493, "sp500_rank": 173}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 2, 5, 1, 2, 0, 0], "total": 11, "table": null, "rank": 394, "sp500_rank": 188}, "ai_patents_growth": {"counts": [], "total": 35.0, "table": null, "rank": 257, "sp500_rank": 118}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 20, 50, 10, 20, 0, 0], "total": 110, "table": null, "rank": 394, "sp500_rank": 188}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158, "sp500_rank": 91}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 180, "sp500_rank": 119}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "sp500_rank": 141}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 0, 1, 0, 2, 0, 0, 1, 0, 0], "total": 4, "table": "application", "rank": 190, "sp500_rank": 120}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0], "total": 3, "table": "application", "rank": 390, "sp500_rank": 183}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 351, "rank": 560, "sp500_rank": 249}, "ai_jobs": {"counts": null, "total": 16, "rank": 738, "sp500_rank": 281}}, "sector": "Basic Materials", "business_sector": "Mineral Resources"}, {"cset_id": 2023, "country": "China", "website": "https://www.midea-group.com/", "crunchbase": {"text": " 408ecc6c-3cf7-adb4-b7f3-6b78e7d305fa", "url": " https://www.crunchbase.com/organization/midea-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/midea"], "stage": "Unknown", "name": "Midea Group", "patent_name": "Midea Group", "continent": "Asia", "local_logo": null, "aliases": "Midea Group; Midea Group Co., Ltd; \u7f8e\u7684\u96c6\u56e2; \u7f8e\u7684\u96c6\u56e2\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5000006171, "url": "https://permid.org/1-5000006171"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Feature learning", "field_count": 2}, {"field_name": "Salience (neuroscience)", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Monocular", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Knowledge extraction", "field_count": 1}, {"field_name": "RGB color model", "field_count": 1}, {"field_name": "Time series", "field_count": 1}], "clusters": [{"cluster_id": 3568, "cluster_count": 3}, {"cluster_id": 36961, "cluster_count": 2}, {"cluster_id": 5070, "cluster_count": 2}, {"cluster_id": 56991, "cluster_count": 1}, {"cluster_id": 1369, "cluster_count": 1}, {"cluster_id": 26274, "cluster_count": 1}, {"cluster_id": 2983, "cluster_count": 1}, {"cluster_id": 1259, "cluster_count": 1}, {"cluster_id": 15407, "cluster_count": 1}, {"cluster_id": 855, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 44}, {"ref_CSET_id": 163, "referenced_count": 31}, {"ref_CSET_id": 87, "referenced_count": 26}, {"ref_CSET_id": 223, "referenced_count": 10}, {"ref_CSET_id": 245, "referenced_count": 10}, {"ref_CSET_id": 37, "referenced_count": 7}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 161, "referenced_count": 6}, {"ref_CSET_id": 112, "referenced_count": 6}, {"ref_CSET_id": 115, "referenced_count": 6}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "robots", "task_count": 2}, {"referent": "semantic_segmentation", "task_count": 2}, {"referent": "fault_detection", "task_count": 2}, {"referent": "depth_estimation", "task_count": 1}, {"referent": "simultaneous_localization_and_mapping", "task_count": 1}, {"referent": "point_cloud_classification", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "model_compression", "task_count": 1}, {"referent": "action_understanding", "task_count": 1}], "methods": [{"referent": "ggs_nns", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "fine_tuning", "method_count": 2}, {"referent": "cgnn", "method_count": 2}, {"referent": "resnet", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "dac", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "optimization", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2, 2, 4, 1, 3, 6, 13, 15, 45, 69, 5], "total": 165, "isTopResearch": false, "rank": 435, "sp500_rank": 260}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 3, 12, 12, 0], "total": 28, "isTopResearch": false, "rank": 254, "sp500_rank": 152}, "ai_publications_growth": {"counts": [], "total": 150.0, "isTopResearch": false, "rank": 7, "sp500_rank": 3}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 5, 2, 0], "total": 7, "isTopResearch": false, "rank": 134, "sp500_rank": 66}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 14, 72, 4], "total": 91, "isTopResearch": false, "rank": 518, "sp500_rank": 224}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 6, 5, 0], "total": 13, "isTopResearch": true, "rank": 179, "sp500_rank": 104}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], "total": 3, "isTopResearch": true, "rank": 214, "sp500_rank": 131}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 0.3333333333333333, 1.1666666666666667, 6.0, 0], "total": 3.25, "isTopResearch": false, "rank": 773, "sp500_rank": 309}}, "patents": {"ai_patents": {"counts": [3, 3, 0, 7, 22, 30, 15, 12, 14, 12, 0], "total": 118, "table": null, "rank": 146, "sp500_rank": 93}, "ai_patents_growth": {"counts": [], "total": -11.212121212121211, "table": null, "rank": 1442, "sp500_rank": 426}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [30, 30, 0, 70, 220, 300, 150, 120, 140, 120, 0], "total": 1180, "table": null, "rank": 146, "sp500_rank": 93}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 2, 5, 2, 3, 1, 0, 0], "total": 13, "table": "industry", "rank": 40, "sp500_rank": 34}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 1, 0], "total": 3, "table": null, "rank": 158, "sp500_rank": 91}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [3, 3, 0, 2, 1, 2, 0, 0, 0, 0, 0], "total": 11, "table": null, "rank": 97, "sp500_rank": 76}, "Industrial_and_Manufacturing": {"counts": [1, 2, 0, 4, 4, 9, 3, 1, 4, 0, 0], "total": 28, "table": "industry", "rank": 28, "sp500_rank": 24}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 38, "sp500_rank": 31}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 6, 3, 1, 2, 3, 2, 0], "total": 19, "table": "industry", "rank": 195, "sp500_rank": 111}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 0, 0, 1, 3, 5, 3, 1, 0, 0, 0], "total": 13, "table": null, "rank": 153, "sp500_rank": 94}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [2, 0, 0, 2, 2, 5, 2, 1, 1, 0, 0], "total": 15, "table": "industry", "rank": 123, "sp500_rank": 87}, "Energy_Management": {"counts": [0, 0, 0, 2, 3, 8, 2, 3, 1, 0, 0], "total": 19, "table": "industry", "rank": 31, "sp500_rank": 28}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "sp500_rank": 57}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 0, 2, 1, 1, 1, 0], "total": 6, "table": "application", "rank": 105, "sp500_rank": 66}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 2, 2, 0, 0, 2, 0, 0], "total": 6, "table": null, "rank": 109, "sp500_rank": 68}, "Planning_and_Scheduling": {"counts": [2, 0, 0, 1, 1, 2, 2, 1, 1, 0, 0], "total": 10, "table": "application", "rank": 124, "sp500_rank": 89}, "Control": {"counts": [3, 3, 0, 4, 3, 7, 4, 1, 0, 0, 0], "total": 25, "table": "application", "rank": 79, "sp500_rank": 58}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 14, "sp500_rank": 9}, "Computer_Vision": {"counts": [0, 0, 0, 0, 10, 11, 7, 5, 10, 5, 0], "total": 48, "table": "application", "rank": 120, "sp500_rank": 78}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 1, 0], "total": 4, "table": null, "rank": 173, "sp500_rank": 114}, "Measuring_and_Testing": {"counts": [2, 1, 0, 1, 1, 2, 0, 3, 1, 0, 0], "total": 11, "table": "application", "rank": 114, "sp500_rank": 88}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 349, "rank": 561, "sp500_rank": 250}, "ai_jobs": {"counts": null, "total": 43, "rank": 508, "sp500_rank": 238}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products"}, {"cset_id": 1448, "country": "United States", "website": "https://snyk.io", "crunchbase": {"text": "eafb244d-aac2-7203-dd8f-44d777cce8da", "url": "https://www.crunchbase.com/organization/snyk"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/snyk"], "stage": "Mature", "name": "Snyk", "patent_name": "snyk", "continent": "North America", "local_logo": "snyk.png", "aliases": "Snyk Ltd; Snyk.Io", "permid_links": [{"text": 5057045720, "url": "https://permid.org/1-5057045720"}], "parent_info": "Heavybit", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Snyk is a cloud native application security provider that enables millions of developers to build software securely.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Natural language", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 26998, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 1425, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}], "tasks": [{"referent": "image_processing", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "medical_code_prediction", "task_count": 1}, {"referent": "multimodal_deep_learning", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "deepwalk", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "bp_transformer", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 2, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0], "total": 4, "isTopResearch": false, "rank": 833}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.5, 0, 0], "total": 2.0, "isTopResearch": false, "rank": 823}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 346, "rank": 562}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Snyk\u2019s unique combination of developer-first tooling and best in class security depth enables businesses to easily build security into their continuous development process.", "company_site_link": "https://snyk.io/about/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2428, "country": "United States", "website": "https://www.newellbrands.com/", "crunchbase": {"text": "7f9d8525-cfe0-0bc1-cbaf-7142682d73a8", "url": "https://www.crunchbase.com/organization/newell-rubbermaid"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/newellbrands"], "stage": "Mature", "name": "Newell Brands", "patent_name": "newell brands", "continent": "North America", "local_logo": "newell_brands.png", "aliases": "Newell Brands Inc; Newell Company; Newell Rubbermaid", "permid_links": [{"text": 4295912212, "url": "https://permid.org/1-4295912212"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:NWL", "url": "https://www.google.com/finance/quote/nasdaq:nwl"}], "market_full": [{"text": "MUN:NWL", "url": "https://www.google.com/finance/quote/mun:nwl"}, {"text": "NASDAQ:NWL", "url": "https://www.google.com/finance/quote/nasdaq:nwl"}, {"text": "DEU:NWL", "url": "https://www.google.com/finance/quote/deu:nwl"}, {"text": "STU:NWL", "url": "https://www.google.com/finance/quote/nwl:stu"}, {"text": "MCX:NWL-RM", "url": "https://www.google.com/finance/quote/mcx:nwl-rm"}, {"text": "LSE:0K7J", "url": "https://www.google.com/finance/quote/0k7j:lse"}, {"text": "BRN:NWL", "url": "https://www.google.com/finance/quote/brn:nwl"}, {"text": "MEX:NWL*", "url": "https://www.google.com/finance/quote/mex:nwl*"}, {"text": "DUS:NWL", "url": "https://www.google.com/finance/quote/dus:nwl"}, {"text": "SAO:N1WL34", "url": "https://www.google.com/finance/quote/n1wl34:sao"}, {"text": "BER:NWL", "url": "https://www.google.com/finance/quote/ber:nwl"}, {"text": "FRA:NWL", "url": "https://www.google.com/finance/quote/fra:nwl"}], "crunchbase_description": "Newell Rubbermaid is a global marketer of diverse consumeraid.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 3, 0, 2, 1, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030, "fortune500_rank": 349}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 341, "rank": 563, "fortune500_rank": 306}, "ai_jobs": {"counts": null, "total": 43, "rank": 508, "fortune500_rank": 264}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "Newell Brands is an American worldwide manufacturer, marketer and distributor of consumer and commercial products with a portfolio of brands including: Rubbermaid storage and trash containers, home organization and reusable container products, Contigo and Bubba water bottles, Coleman outdoor products, writing instruments (Berol, Expo Markers, PaperMate, Dymo, Mr. Sketch, Parker Pens, Sharpie, Reynolds, Prismacolor, Rotring, X-acto, Waterman), glue (Elmer's, Krazy Glue), children's products (Aprica, Nuk, Tigex, Babysun, Baby Jogger and Graco), First Alert alarm systems, Calphalon cookware and kitchen electrics, Sunbeam, Rival, Crock-Pot, Holmes, FoodSaver, Oster, Osterizer, and Mr. Coffee small kitchen appliances as well as Yankee Candle, Chesapeake Bay Candle, Millefiori Milano, and WoodWick home fragrance products.", "wikipedia_link": "https://en.wikipedia.org/wiki/Newell_Brands", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2331, "country": "United States", "website": "https://www.21cf.com/", "crunchbase": {"text": "eba39c57-aa93-4c66-a0ba-e12f21736918", "url": "https://www.crunchbase.com/organization/fox-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fox-corporation"], "stage": "Mature", "name": "Fox Corporation Class B", "patent_name": "fox corporation class b", "continent": "North America", "local_logo": "fox_corporation_class_b.png", "aliases": "Fox Corporation", "permid_links": [{"text": 4295903420, "url": "https://permid.org/1-4295903420"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:FOX", "url": "https://www.google.com/finance/quote/fox:nasdaq"}], "market_full": [{"text": "SAO:FOXC34", "url": "https://www.google.com/finance/quote/foxc34:sao"}, {"text": "LSE:0A0Y", "url": "https://www.google.com/finance/quote/0a0y:lse"}, {"text": "STU:FO5B", "url": "https://www.google.com/finance/quote/fo5b:stu"}, {"text": "GER:FO5X", "url": "https://www.google.com/finance/quote/fo5x:ger"}, {"text": "FRA:FO5B", "url": "https://www.google.com/finance/quote/fo5b:fra"}, {"text": "NASDAQ:FOX", "url": "https://www.google.com/finance/quote/fox:nasdaq"}, {"text": "DUS:FO5B", "url": "https://www.google.com/finance/quote/dus:fo5b"}, {"text": "MEX:FOX1", "url": "https://www.google.com/finance/quote/fox1:mex"}, {"text": "DEU:FO5B", "url": "https://www.google.com/finance/quote/deu:fo5b"}, {"text": "BRN:FO5B", "url": "https://www.google.com/finance/quote/brn:fo5b"}, {"text": "MUN:FO5B", "url": "https://www.google.com/finance/quote/fo5b:mun"}, {"text": "BER:FO5B", "url": "https://www.google.com/finance/quote/ber:fo5b"}], "crunchbase_description": "Fox Corporation is an American television broadcasting company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 1, 1, 4, 15, 2, 0, 0, 0, 0], "total": 24, "isTopResearch": false, "rank": 767, "fortune500_rank": 275}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 340, "rank": 564, "fortune500_rank": 307}, "ai_jobs": {"counts": null, "total": 41, "rank": 520, "fortune500_rank": 270}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Fox Corporation is an American mass media company headquartered in New York City. The company was formed in 2019 as a result of the acquisition of 21st Century Fox by The Walt Disney Company; the assets that were not acquired by Disney were spun off from 21st Century Fox as the new Fox Corp., and its stock began trading on January 1, 2019. Fox Corp. is incorporated in Delaware.", "wikipedia_link": "https://en.wikipedia.org/wiki/Fox_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2330, "country": "United States", "website": "https://www.foxcorporation.com/", "crunchbase": {"text": "eba39c57-aa93-4c66-a0ba-e12f21736918", "url": "https://www.crunchbase.com/organization/fox-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fox-corporation"], "stage": "Mature", "name": "Fox Corporation Class A", "patent_name": "fox corporation class a", "continent": "North America", "local_logo": "fox_corporation_class_a.png", "aliases": "Fox Corporation; Tfcf Corp", "permid_links": [{"text": 4295903420, "url": "https://permid.org/1-4295903420"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:FOXA", "url": "https://www.google.com/finance/quote/foxa:nasdaq"}], "market_full": [{"text": "NASDAQ:FOXA", "url": "https://www.google.com/finance/quote/foxa:nasdaq"}, {"text": "GER:FO5X", "url": "https://www.google.com/finance/quote/fo5x:ger"}, {"text": "MOEX:FOX", "url": "https://www.google.com/finance/quote/fox:moex"}, {"text": "BER:FO5", "url": "https://www.google.com/finance/quote/ber:fo5"}, {"text": "LSE:0A0X", "url": "https://www.google.com/finance/quote/0a0x:lse"}, {"text": "DUS:FO5", "url": "https://www.google.com/finance/quote/dus:fo5"}, {"text": "SAO:FOXC34", "url": "https://www.google.com/finance/quote/foxc34:sao"}, {"text": "BRN:FO5", "url": "https://www.google.com/finance/quote/brn:fo5"}, {"text": "DEU:FO5", "url": "https://www.google.com/finance/quote/deu:fo5"}, {"text": "FRA:FO5", "url": "https://www.google.com/finance/quote/fo5:fra"}, {"text": "MUN:FO5", "url": "https://www.google.com/finance/quote/fo5:mun"}, {"text": "MEX:FOX1", "url": "https://www.google.com/finance/quote/fox1:mex"}, {"text": "STU:FO5", "url": "https://www.google.com/finance/quote/fo5:stu"}], "crunchbase_description": "Fox Corporation is an American television broadcasting company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 1, 1, 4, 15, 2, 0, 0, 0, 0], "total": 24, "isTopResearch": false, "rank": 767, "fortune500_rank": 275}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 340, "rank": 564, "fortune500_rank": 307}, "ai_jobs": {"counts": null, "total": 41, "rank": 520, "fortune500_rank": 270}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Fox Corporation is an American mass media company headquartered in New York City. The company was formed in 2019 as a result of the acquisition of 21st Century Fox by The Walt Disney Company; the assets that were not acquired by Disney were spun off from 21st Century Fox as the new Fox Corp., and its stock began trading on January 1, 2019. Fox Corp. is incorporated in Delaware.", "wikipedia_link": "https://en.wikipedia.org/wiki/Fox_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2367, "country": "United States", "website": "https://www.irco.com/en-us", "crunchbase": {"text": "3372b80b-64f2-4a7e-8f7a-d04f926deda9", "url": "https://www.crunchbase.com/organization/ingersoll-rand"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ingersoll-rand"], "stage": "Mature", "name": "Ingersoll Rand", "patent_name": "ingersoll rand", "continent": "North America", "local_logo": null, "aliases": "Ingersoll Rand, Inc", "permid_links": [{"text": 5000370304, "url": "https://permid.org/1-5000370304"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:IR", "url": "https://www.google.com/finance/quote/ir:nyse"}], "market_full": [{"text": "NYQ:IR", "url": "https://www.google.com/finance/quote/ir:nyq"}, {"text": "ASE:IR", "url": "https://www.google.com/finance/quote/ase:ir"}, {"text": "HAN:5GD", "url": "https://www.google.com/finance/quote/5gd:han"}, {"text": "NYSE:IR", "url": "https://www.google.com/finance/quote/ir:nyse"}, {"text": "FRA:5GD", "url": "https://www.google.com/finance/quote/5gd:fra"}, {"text": "DEU:5GD", "url": "https://www.google.com/finance/quote/5gd:deu"}, {"text": "DUS:5GD", "url": "https://www.google.com/finance/quote/5gd:dus"}, {"text": "STU:5GD", "url": "https://www.google.com/finance/quote/5gd:stu"}, {"text": "BER:5GD", "url": "https://www.google.com/finance/quote/5gd:ber"}, {"text": "SAO:I2RS34", "url": "https://www.google.com/finance/quote/i2rs34:sao"}, {"text": "MUN:5GD", "url": "https://www.google.com/finance/quote/5gd:mun"}, {"text": "MCX:IR-RM", "url": "https://www.google.com/finance/quote/ir-rm:mcx"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 10999, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "building_extraction", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "contrastive_predictive_coding", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "mrnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [19, 18, 30, 32, 36, 57, 41, 20, 11, 3, 0], "total": 267, "isTopResearch": false, "rank": 373, "fortune500_rank": 143}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 1, 0, 0, 0, 0, 7, 28, 59, 3], "total": 98, "isTopResearch": false, "rank": 507, "fortune500_rank": 137}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 7.0, 0, 0, 0], "total": 98.0, "isTopResearch": false, "rank": 34, "fortune500_rank": 9}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 0, 0, 3, 2, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 0, 0, 30, 20, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0], "total": 4, "table": "industry", "rank": 88, "fortune500_rank": 28}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": "industry", "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 1, 0, 0, 0, 0, 3, 1, 0, 0], "total": 5, "table": "industry", "rank": 76, "fortune500_rank": 17}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 1, 0, 0, 0, 0, 2, 1, 0, 0], "total": 4, "table": "application", "rank": 190, "fortune500_rank": 67}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 340, "rank": 564, "fortune500_rank": 307}, "ai_jobs": {"counts": null, "total": 22, "rank": 667, "fortune500_rank": 336}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Ingersoll Rand, Inc. (formerly Gardner Denver Inc.), founded in 1859, is an American worldwide provider of industrial equipment, technologies and related parts and services to a broad and diverse customer base through a family of brands. The company has over 30 manufacturing facilities located in the Americas, Europe, the Middle East, and Asia Pacific with offices in 35 different countries. Based in Milwaukee, Wisconsin, USA, it operates in three groups: the Industrials Group, Energy Group, and Medical Group.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ingersoll_Rand", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2301, "country": "United States", "website": "https://www.edwards.com", "crunchbase": {"text": "78b4ab2e-7045-0f95-44b5-4a9ef45a347a", "url": "https://www.crunchbase.com/organization/edwards-lifesciences"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/edwards-lifesciences"], "stage": "Mature", "name": "Edwards Lifesciences", "patent_name": "edwards lifesciences", "continent": "North America", "local_logo": "edwards_lifesciences.png", "aliases": "Edwards Lifesciences Corporation", "permid_links": [{"text": 4295911970, "url": "https://permid.org/1-4295911970"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EW", "url": "https://www.google.com/finance/quote/ew:nyse"}], "market_full": [{"text": "FRA:EWL", "url": "https://www.google.com/finance/quote/ewl:fra"}, {"text": "STU:EWL", "url": "https://www.google.com/finance/quote/ewl:stu"}, {"text": "DUS:EWL", "url": "https://www.google.com/finance/quote/dus:ewl"}, {"text": "MUN:EWL", "url": "https://www.google.com/finance/quote/ewl:mun"}, {"text": "SAO:E1WL34", "url": "https://www.google.com/finance/quote/e1wl34:sao"}, {"text": "MOEX:EW-RM", "url": "https://www.google.com/finance/quote/ew-rm:moex"}, {"text": "GER:EWLX", "url": "https://www.google.com/finance/quote/ewlx:ger"}, {"text": "DEU:EW", "url": "https://www.google.com/finance/quote/deu:ew"}, {"text": "VIE:EWLS", "url": "https://www.google.com/finance/quote/ewls:vie"}, {"text": "BER:EWL", "url": "https://www.google.com/finance/quote/ber:ewl"}, {"text": "ASE:EW", "url": "https://www.google.com/finance/quote/ase:ew"}, {"text": "LSE:0REN", "url": "https://www.google.com/finance/quote/0ren:lse"}, {"text": "SWX:EW", "url": "https://www.google.com/finance/quote/ew:swx"}, {"text": "MEX:EW*", "url": "https://www.google.com/finance/quote/ew*:mex"}, {"text": "BRN:EWL", "url": "https://www.google.com/finance/quote/brn:ewl"}, {"text": "NYSE:EW", "url": "https://www.google.com/finance/quote/ew:nyse"}, {"text": "NYQ:EW", "url": "https://www.google.com/finance/quote/ew:nyq"}], "crunchbase_description": "Edwards Lifesciences is the global leader in the science of heart valves and hemodynamic monitoring.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Resampling", "field_count": 1}], "clusters": [{"cluster_id": 52072, "cluster_count": 1}, {"cluster_id": 717, "cluster_count": 1}, {"cluster_id": 1627, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 201, "referenced_count": 4}], "tasks": [{"referent": "image_registration", "task_count": 1}, {"referent": "character_recognition", "task_count": 1}, {"referent": "automated_writing_evaluation", "task_count": 1}, {"referent": "patch_matching", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "continual_learning", "task_count": 1}, {"referent": "image_fusion", "task_count": 1}, {"referent": "landmark_tracking", "task_count": 1}, {"referent": "blood_pressure_estimation", "task_count": 1}, {"referent": "medical_image_analysis", "task_count": 1}], "methods": [{"referent": "clustering", "method_count": 1}, {"referent": "graphs", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [62, 54, 43, 75, 65, 54, 112, 104, 118, 101, 1], "total": 789, "isTopResearch": false, "rank": 216, "fortune500_rank": 80}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 833, "fortune500_rank": 228}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 1.0, 0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "fortune500_rank": 217}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 0, 2, 1, 0, 1, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561, "fortune500_rank": 450}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 0, 20, 10, 0, 10, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 2, 0, 2, 1, 0, 1, 0, 0], "total": 6, "table": "industry", "rank": 113, "fortune500_rank": 47}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0], "total": 3, "table": "application", "rank": 191, "fortune500_rank": 77}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 339, "rank": 567, "fortune500_rank": 310}, "ai_jobs": {"counts": null, "total": 85, "rank": 367, "fortune500_rank": 195}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Edwards Lifesciences is an American medical technology company headquartered in Irvine, California, specializing in artificial heart valves and hemodynamic monitoring. It developed the SAPIEN transcatheter aortic heart valve made of cow tissue within a balloon-expandable, cobalt-chromium frame, deployed via catheter. The company has manufacturing facilities at the Irvine headquarters, as well as in Draper, Utah; Costa Rica; the Dominican Republic; Puerto Rico; and Singapore; and is building a new facility due to be completed in 2021 in Limerick, Ireland.", "wikipedia_link": "https://en.wikipedia.org/wiki/Edwards_Lifesciences", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1818, "country": "United States", "website": "https://www.phillips66.com/", "crunchbase": {"text": "f48612e0-d1f9-98cb-55ab-e04b64597334", "url": "https://www.crunchbase.com/organization/phillips-66-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/phillips66co"], "stage": "Mature", "name": "Phillips 66", "patent_name": "phillips 66", "continent": "North America", "local_logo": "phillips_66.png", "aliases": "Phillips 66 Company", "permid_links": [{"text": 5037128948, "url": "https://permid.org/1-5037128948"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PSX", "url": "https://www.google.com/finance/quote/nyse:psx"}], "market_full": [{"text": "LSE:0HTG", "url": "https://www.google.com/finance/quote/0htg:lse"}, {"text": "DEU:CAH", "url": "https://www.google.com/finance/quote/cah:deu"}, {"text": "DUS:CLH", "url": "https://www.google.com/finance/quote/clh:dus"}, {"text": "FRA:CLH", "url": "https://www.google.com/finance/quote/clh:fra"}, {"text": "NYSE:PSX", "url": "https://www.google.com/finance/quote/nyse:psx"}, {"text": "NYQ:CAH", "url": "https://www.google.com/finance/quote/cah:nyq"}, {"text": "BUE:CAH3", "url": "https://www.google.com/finance/quote/bue:cah3"}, {"text": "MUN:CLH", "url": "https://www.google.com/finance/quote/clh:mun"}, {"text": "ASE:CAH", "url": "https://www.google.com/finance/quote/ase:cah"}, {"text": "MCX:CAH-RM", "url": "https://www.google.com/finance/quote/cah-rm:mcx"}, {"text": "BER:CLH", "url": "https://www.google.com/finance/quote/ber:clh"}, {"text": "STU:CLH", "url": "https://www.google.com/finance/quote/clh:stu"}, {"text": "MEX:CAH*", "url": "https://www.google.com/finance/quote/cah*:mex"}, {"text": "SAO:C1AH34", "url": "https://www.google.com/finance/quote/c1ah34:sao"}, {"text": "BRN:CLH", "url": "https://www.google.com/finance/quote/brn:clh"}], "crunchbase_description": "Energy manufacturing and logistics company", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Robustness (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 13299, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2292, "referenced_count": 1}], "tasks": [{"referent": "skills_assessment", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "depth_estimation", "task_count": 1}, {"referent": "building_extraction", "task_count": 1}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "residual_normal_distribution", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [11, 14, 4, 8, 6, 10, 7, 6, 11, 10, 0], "total": 87, "isTopResearch": false, "rank": 534, "sp500_rank": 301, "fortune500_rank": 198}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 2, 0, 5, 1, 3, 2, 0], "total": 13, "isTopResearch": false, "rank": 733, "sp500_rank": 303, "fortune500_rank": 197}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0, 0, 1.0, 0, 0, 0], "total": 6.5, "isTopResearch": false, "rank": 661, "sp500_rank": 263, "fortune500_rank": 188}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 3, "table": null, "rank": 606, "sp500_rank": 248, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 20, 0, 0, 0], "total": 30, "table": null, "rank": 606, "sp500_rank": 248, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "sp500_rank": 92, "fortune500_rank": 39}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 132, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 339, "rank": 567, "sp500_rank": 251, "fortune500_rank": 310}, "ai_jobs": {"counts": null, "total": 45, "rank": 500, "sp500_rank": 234, "fortune500_rank": 262}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "The Phillips 66 Company is an American multinational energy company headquartered in Westchase, Houston, Texas. It debuted as an independent energy company when ConocoPhillips executed a spin-off of its downstream and midstream assets. Its name dating back to 1927 as a trademark of the Phillips Petroleum Company, the newly-reconfigured Phillips 66 began trading on the New York Stock Exchange on May 1, 2012, under the ticker PSX. The company is engaged in producing natural gas liquids (NGL) and petrochemicals. The company has approximately 14,000 employees worldwide and is active in more than 65 countries. Phillips 66 is ranked No. 23 on the Fortune 500 list and No. 67 on the Fortune Global 500 list as of 2018.", "wikipedia_link": "https://en.wikipedia.org/wiki/Phillips_66", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2338, "country": "United States", "website": "https://www.genpt.com/", "crunchbase": {"text": "a53e9cfe-cf4f-65e1-85db-e4ca8a02433d", "url": "https://www.crunchbase.com/organization/genuine-parts-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/genuine-parts-company"], "stage": "Mature", "name": "Genuine Parts", "patent_name": "genuine parts", "continent": "North America", "local_logo": "genuine_parts.png", "aliases": "Genuine Parts Co; Genuine Parts Company; Gpc", "permid_links": [{"text": 4295904067, "url": "https://permid.org/1-4295904067"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:GPC", "url": "https://www.google.com/finance/quote/gpc:nyse"}], "market_full": [{"text": "GER:GPTX", "url": "https://www.google.com/finance/quote/ger:gptx"}, {"text": "MEX:GPC*", "url": "https://www.google.com/finance/quote/gpc*:mex"}, {"text": "NYSE:GPC", "url": "https://www.google.com/finance/quote/gpc:nyse"}, {"text": "STU:GPT", "url": "https://www.google.com/finance/quote/gpt:stu"}, {"text": "FRA:GPT", "url": "https://www.google.com/finance/quote/fra:gpt"}, {"text": "BRN:GPT", "url": "https://www.google.com/finance/quote/brn:gpt"}, {"text": "LSE:0IUX", "url": "https://www.google.com/finance/quote/0iux:lse"}, {"text": "HAN:GPT", "url": "https://www.google.com/finance/quote/gpt:han"}, {"text": "MOEX:GPC-RM", "url": "https://www.google.com/finance/quote/gpc-rm:moex"}, {"text": "SAO:G1PC34", "url": "https://www.google.com/finance/quote/g1pc34:sao"}, {"text": "ASE:GPC", "url": "https://www.google.com/finance/quote/ase:gpc"}, {"text": "DUS:GPT", "url": "https://www.google.com/finance/quote/dus:gpt"}, {"text": "DEU:GPC", "url": "https://www.google.com/finance/quote/deu:gpc"}, {"text": "NYQ:GPC", "url": "https://www.google.com/finance/quote/gpc:nyq"}, {"text": "MUN:GPT", "url": "https://www.google.com/finance/quote/gpt:mun"}], "crunchbase_description": "Genuine Parts Company is a service organization engaged in the distribution of automotive replacement parts & industrial replacement parts", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 339, "rank": 567, "fortune500_rank": 310}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "fortune500_rank": 409}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "Genuine Parts Company (GPC) is an American service organization engaged in the distribution of automotive replacement parts, industrial replacement parts, office products and electrical/electronic materials. GPC serves numerous customers from more than 2,600 operations around the world, and has approximately 48,000 employees. It owns the NAPA Auto Parts brand.", "wikipedia_link": "https://en.wikipedia.org/wiki/Genuine_Parts_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1416, "country": "United States", "website": "https://www.faire.com", "crunchbase": {"text": "d615ab1e-4e4e-d62a-cbfe-0942f7eca9d0", "url": "https://www.crunchbase.com/organization/indigo-fair"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fairewholesale"], "stage": "Mature", "name": "Faire", "patent_name": "faire", "continent": "North America", "local_logo": "faire.png", "aliases": "Faire Wholesale, Inc; Indigo Fair", "permid_links": [{"text": 5067489939, "url": "https://permid.org/1-5067489939"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Faire is a marketplace and wholesale platform that helps retailers find and buy wholesale merchandise for their stores.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 337, "rank": 570}, "ai_jobs": {"counts": null, "total": 58, "rank": 450}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our mission is to empower independent entrepreneurs to chase their dreams. By simplifying the wholesale buying process and offering straight-forward financial terms and logistics, we\u2019re here to help you find great wholesale vendors and grow your retail business.", "company_site_link": "https://www.faire.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2738, "country": "United States", "website": "http://www.ga.com/", "crunchbase": {"text": "1b13346b-33b9-6722-753c-846d2ff54d86", "url": "https://www.crunchbase.com/organization/general-atomics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/general-atomics"], "stage": "Mature", "name": "General Atomics Technologies Corp", "patent_name": "general atomics technologies corp", "continent": "North America", "local_logo": "general_atomics_technologies_corp.png", "aliases": "General Atomics; General Atomics Corp", "permid_links": [{"text": 4298537876, "url": "https://permid.org/1-4298537876"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "General Atomics develops technology solutions for defense, energy, and transportation applications worldwide.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Synthetic aperture radar", "field_count": 3}, {"field_name": "Random forest", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 1}, {"field_name": "Machine vision", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Gesture", "field_count": 1}, {"field_name": "Applications of artificial intelligence", "field_count": 1}, {"field_name": "Motion compensation", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Surrogate model", "field_count": 1}], "clusters": [{"cluster_id": 2674, "cluster_count": 5}, {"cluster_id": 59407, "cluster_count": 4}, {"cluster_id": 214, "cluster_count": 2}, {"cluster_id": 28699, "cluster_count": 2}, {"cluster_id": 47166, "cluster_count": 1}, {"cluster_id": 3842, "cluster_count": 1}, {"cluster_id": 57165, "cluster_count": 1}, {"cluster_id": 53926, "cluster_count": 1}, {"cluster_id": 6728, "cluster_count": 1}, {"cluster_id": 12734, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2738, "referenced_count": 11}, {"ref_CSET_id": 101, "referenced_count": 9}, {"ref_CSET_id": 163, "referenced_count": 7}, {"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 27, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 2780, "referenced_count": 1}, {"ref_CSET_id": 201, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "synthetic_aperture_radar", "task_count": 4}, {"referent": "sar", "task_count": 4}, {"referent": "target_recognition", "task_count": 3}, {"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "atr", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "action_understanding", "task_count": 1}, {"referent": "action_localization", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "computer_vision", "method_count": 1}, {"referent": "atmo", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "adashift", "method_count": 1}, {"referent": "hit_detector", "method_count": 1}, {"referent": "sabn", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [252, 207, 258, 233, 280, 279, 247, 221, 263, 220, 10], "total": 2470, "isTopResearch": false, "rank": 111}, "ai_publications": {"counts": [1, 2, 1, 2, 1, 2, 2, 5, 4, 2, 0], "total": 22, "isTopResearch": false, "rank": 286}, "ai_publications_growth": {"counts": [], "total": 26.666666666666668, "isTopResearch": false, "rank": 98}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [3, 6, 2, 11, 8, 17, 25, 47, 52, 64, 1], "total": 236, "isTopResearch": false, "rank": 367}, "cv_pubs": {"counts": [1, 1, 1, 0, 0, 1, 1, 1, 3, 0, 0], "total": 9, "isTopResearch": true, "rank": 217}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [3.0, 3.0, 2.0, 5.5, 8.0, 8.5, 12.5, 9.4, 13.0, 32.0, 0], "total": 10.727272727272727, "isTopResearch": false, "rank": 519}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 337, "rank": 570}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "GA-ASI produces a series of unmanned aircraft and provides electro-optical, radar, signals intelligence, and automated airborne surveillance systems. GA\u2019s Electromagnetic Systems Division produces electro-magnetic aircraft launch and recovery systems for the US Navy, satellite surveillance, electro-magnetic rail gun, high power laser, hypervelocity projectile, and power conversion systems.", "company_site_link": "https://www.ga.com/about", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2440, "country": "United States", "website": "http://www.nrg.com/", "crunchbase": {"text": "1026b9c4-03ed-0d05-08a6-94497cd2882c", "url": "https://www.crunchbase.com/organization/nrg-energy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nrgenergy"], "stage": "Mature", "name": "NRG Energy", "patent_name": "nrg energy", "continent": "North America", "local_logo": "nrg_energy.png", "aliases": "Nrg; Nrg Energy, Inc", "permid_links": [{"text": 4295912211, "url": "https://permid.org/1-4295912211"}], "parent_info": "Global Infrastructure Partners (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NRG", "url": "https://www.google.com/finance/quote/nrg:nyse"}], "market_full": [{"text": "LSE:0K4C", "url": "https://www.google.com/finance/quote/0k4c:lse"}, {"text": "BER:NRA", "url": "https://www.google.com/finance/quote/ber:nra"}, {"text": "DUS:NRA", "url": "https://www.google.com/finance/quote/dus:nra"}, {"text": "BRN:NRA", "url": "https://www.google.com/finance/quote/brn:nra"}, {"text": "GER:NRAX", "url": "https://www.google.com/finance/quote/ger:nrax"}, {"text": "DEU:NRGE", "url": "https://www.google.com/finance/quote/deu:nrge"}, {"text": "NYQ:NRG", "url": "https://www.google.com/finance/quote/nrg:nyq"}, {"text": "SAO:N1RG34", "url": "https://www.google.com/finance/quote/n1rg34:sao"}, {"text": "MUN:NRA", "url": "https://www.google.com/finance/quote/mun:nra"}, {"text": "FRA:NRA", "url": "https://www.google.com/finance/quote/fra:nra"}, {"text": "ASE:NRG", "url": "https://www.google.com/finance/quote/ase:nrg"}, {"text": "MCX:NRG-RM", "url": "https://www.google.com/finance/quote/mcx:nrg-rm"}, {"text": "NYSE:NRG", "url": "https://www.google.com/finance/quote/nrg:nyse"}, {"text": "STU:NRA", "url": "https://www.google.com/finance/quote/nra:stu"}], "crunchbase_description": "NRG Energy is an integrated power generation and supply company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 2, 1, 0, 0, 1, 0, 1, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063, "fortune500_rank": 359}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 335, "rank": 572, "fortune500_rank": 313}, "ai_jobs": {"counts": null, "total": 78, "rank": 385, "fortune500_rank": 202}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "NRG Energy, Inc. is a large American energy company, dual-headquartered in Princeton, New Jersey and Houston, Texas. It was formerly the wholesale arm of Northern States Power Company (NSP), which became Xcel Energy, but became independent in 2000. NRG Energy is involved in energy generation and retail electricity. Their portfolio includes nuclear generation, coal generation, wind generation, utility scale generation, distributed solar generation, and oil generation. NRG serves 2.9 million retail customers in Texas, Connecticut, Delaware, Illinois, Maryland, Massachusetts, New Jersey, New York, Pennsylvania, Ohio, and the District of Columbia.", "wikipedia_link": "https://en.wikipedia.org/wiki/NRG_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 3126, "country": "United Kingdom", "website": "https://group.legalandgeneral.com/", "crunchbase": {"text": " eff6242e-0eee-a824-4ccf-77250c35f818", "url": " https://www.crunchbase.com/organization/legal-general"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/legal-&-general"], "stage": "Mature", "name": "Legal & General Group", "patent_name": "Legal & General Group", "continent": "Europe", "local_logo": null, "aliases": "Legal & General; Legal & General Group", "permid_links": [{"text": 4295895043, "url": "https://permid.org/1-4295895043"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "FRA:LGI", "url": "https://www.google.com/finance/quote/FRA:LGI"}, {"text": "PKC:LGGNF", "url": "https://www.google.com/finance/quote/LGGNF:PKC"}, {"text": "BRN:LGI", "url": "https://www.google.com/finance/quote/BRN:LGI"}, {"text": "PKC:LGGNY", "url": "https://www.google.com/finance/quote/LGGNY:PKC"}, {"text": "MEX:LGENN", "url": "https://www.google.com/finance/quote/LGENN:MEX"}, {"text": "BER:LGI", "url": "https://www.google.com/finance/quote/BER:LGI"}, {"text": "HAN:LGI", "url": "https://www.google.com/finance/quote/HAN:LGI"}, {"text": "STU:LGI", "url": "https://www.google.com/finance/quote/LGI:STU"}, {"text": "DEU:LGEN", "url": "https://www.google.com/finance/quote/DEU:LGEN"}, {"text": "DUS:LGI", "url": "https://www.google.com/finance/quote/DUS:LGI"}, {"text": "MUN:LGI", "url": "https://www.google.com/finance/quote/LGI:MUN"}, {"text": "LSE:LGEN", "url": "https://www.google.com/finance/quote/LGEN:LSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "sp500_rank": 446}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 335, "rank": 572, "sp500_rank": 252}, "ai_jobs": {"counts": null, "total": 55, "rank": 461, "sp500_rank": 226}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2873, "country": "United States", "website": "http://www.salientcrgt.com/", "crunchbase": {"text": "4711deff-3bfe-d887-7ba8-3896d3dd472c", "url": "https://www.crunchbase.com/organization/salient-crgt"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/salient-crgt"], "stage": "Mature", "name": "Salient CRGT Holdings Inc", "patent_name": "salient crgt holdings inc", "continent": "North America", "local_logo": "salient_crgt_holdings_inc.png", "aliases": "Salient CRGT Inc; Salient Crgt; Salient Crgt (Scrgt); Salient Crgt, Inc", "permid_links": [{"text": 5001195316, "url": "https://permid.org/1-5001195316"}], "parent_info": "GovernmentCIO LLC", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Salient CRGT is a leading provider of Agile software development, data analytics, mobility, cyber security, and infrastructure solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 330, "rank": 574}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Salient CRGT (SCRGT), a leading provider of health, data analytics, cloud, agile software development, cyber security, and infrastructure solutions, is pleased to announce a contract award under the Pool 1 of the GSA One Acquisition Solution for Integrated Services (OASIS) Indefinite Delivery, Indefinite Quantity (IDIQ) vehicle. OASIS is a Multiple Award, IDIQ contract that provides Government agencies with total integrated solutions involving Program Management, Management Consulting, Scientific, Engineering, Logistics, and Financial disciplines.", "company_site_link": "http://www.salientcrgt.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3097, "country": "France", "website": "https://www.lvmh.com/", "crunchbase": {"text": " 00edab11-0f63-ba20-662d-88365454d746", "url": "https://www.crunchbase.com/organization/lvmh"}, "child_crunchbase": [{"text": "26d45298-c0ea-c1c6-3b3b-1fcea68b0af0", "url": "https://www.crunchbase.com/organization/tiffany-co"}], "linkedin": ["https://www.linkedin.com/company/lvmh", "https://www.linkedin.com/company/tiffany-and-co"], "stage": "Mature", "name": "Lvmh Moet Hennessy-Louis Vuitton Se", "patent_name": "LVMH Moet Hennessy-Louis Vuitton SE", "continent": "Europe", "local_logo": null, "aliases": "LVMH Moet Hennessy-Louis Vuitton SE; Lvmh Mo\u00ebt Hennessy Louis Vuitton S.E", "permid_links": [{"text": 4295866862, "url": "https://permid.org/1-4295866862"}, {"text": 4295905088, "url": "https://permid.org/1-4295905088"}], "parent_info": null, "agg_child_info": "Tiffany & Co.", "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "FRA:MOH", "url": "https://www.google.com/finance/quote/FRA:MOH"}, {"text": "MIL:LVMH", "url": "https://www.google.com/finance/quote/LVMH:MIL"}, {"text": "BER:MOH", "url": "https://www.google.com/finance/quote/BER:MOH"}, {"text": "GER:MOH", "url": "https://www.google.com/finance/quote/GER:MOH"}, {"text": "DEU:MOHF", "url": "https://www.google.com/finance/quote/DEU:MOHF"}, {"text": "LSE:0HAU", "url": "https://www.google.com/finance/quote/0HAU:LSE"}, {"text": "STU:MOHF", "url": "https://www.google.com/finance/quote/MOHF:STU"}, {"text": "HAM:MOH", "url": "https://www.google.com/finance/quote/HAM:MOH"}, {"text": "MEX:MCN", "url": "https://www.google.com/finance/quote/MCN:MEX"}, {"text": "EBT:MCP", "url": "https://www.google.com/finance/quote/EBT:MCp"}, {"text": "MUN:MOH", "url": "https://www.google.com/finance/quote/MOH:MUN"}, {"text": "STU:MOH", "url": "https://www.google.com/finance/quote/MOH:STU"}, {"text": "VIE:MC", "url": "https://www.google.com/finance/quote/MC:VIE"}, {"text": "DEU:LVMH", "url": "https://www.google.com/finance/quote/DEU:LVMH"}, {"text": "SWX:MC", "url": "https://www.google.com/finance/quote/MC:SWX"}, {"text": "DUS:MOH", "url": "https://www.google.com/finance/quote/DUS:MOH"}, {"text": "PAR:MC", "url": "https://www.google.com/finance/quote/MC:PAR"}, {"text": "MUN:MOHF", "url": "https://www.google.com/finance/quote/MOHF:MUN"}, {"text": "HAN:MOH", "url": "https://www.google.com/finance/quote/HAN:MOH"}, {"text": "FRA:MOHF", "url": "https://www.google.com/finance/quote/FRA:MOHF"}, {"text": "BER:MOHF", "url": "https://www.google.com/finance/quote/BER:MOHF"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Segmentation", "field_count": 1}], "clusters": [{"cluster_id": 5300, "cluster_count": 2}, {"cluster_id": 2505, "cluster_count": 1}, {"cluster_id": 2198, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 6, "referenced_count": 8}, {"ref_CSET_id": 101, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 792, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "object_detection", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}, {"referent": "scene_understanding", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "recommendation_systems", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "metropolis_hastings", "method_count": 1}, {"referent": "video_sampling", "method_count": 1}, {"referent": "image_to_image_translation", "method_count": 1}, {"referent": "sm3", "method_count": 1}, {"referent": "image_segmentation_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [33, 21, 17, 35, 26, 14, 14, 9, 20, 19, 0], "total": 208, "isTopResearch": false, "rank": 407, "fortune500_rank": 157}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "fortune500_rank": 157}, "ai_publications_growth": {"counts": [], "total": 50.0, "isTopResearch": false, "rank": 63, "fortune500_rank": 19}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "fortune500_rank": 59}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 3, 0], "total": 4, "isTopResearch": false, "rank": 833, "fortune500_rank": 228}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 1.0, 0.0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "fortune500_rank": 237}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 328, "rank": 575, "fortune500_rank": 314}, "ai_jobs": {"counts": null, "total": 45, "rank": 500, "fortune500_rank": 262}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products"}, {"cset_id": 3142, "country": "United States", "website": "https://www.stonex.com/", "crunchbase": {"text": " 18fa1f7f-247c-b0bc-abc0-8cddca26d378 ", "url": " https://www.crunchbase.com/organization/intl-fcstone "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/stonex-group-inc"], "stage": "Mature", "name": "Stonex Group", "patent_name": "StoneX Group", "continent": "North America", "local_logo": null, "aliases": "StoneX Group; Stonex Group Inc", "permid_links": [{"text": 4295913849, "url": "https://permid.org/1-4295913849"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:SNEX", "url": "https://www.google.com/finance/quote/NASDAQ:SNEX"}], "market_full": [{"text": "FRA:I4F", "url": "https://www.google.com/finance/quote/FRA:I4F"}, {"text": "NASDAQ:SNEX", "url": "https://www.google.com/finance/quote/NASDAQ:SNEX"}, {"text": "DEU:I4F", "url": "https://www.google.com/finance/quote/DEU:I4F"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 1302, "sp500_rank": 446}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 328, "rank": 575, "sp500_rank": 253}, "ai_jobs": {"counts": null, "total": 34, "rank": 564, "sp500_rank": 251}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2397, "country": "Ireland", "website": "https://www.lindeplc.com/en", "crunchbase": {"text": "295cce58-6c4d-84e4-dc96-f5b91f56f807", "url": "https://www.crunchbase.com/organization/the-linde-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/linde"], "stage": "Mature", "name": "Linde PLC", "patent_name": "linde plc", "continent": "Europe", "local_logo": "linde_plc.png", "aliases": "Linde; Linde Group; The Linde Group", "permid_links": [{"text": 5057771033, "url": "https://permid.org/1-5057771033"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LIN", "url": "https://www.google.com/finance/quote/lin:nyse"}], "market_full": [{"text": "ASE:LIN", "url": "https://www.google.com/finance/quote/ase:lin"}, {"text": "BER:LIN", "url": "https://www.google.com/finance/quote/ber:lin"}, {"text": "HAM:LIN", "url": "https://www.google.com/finance/quote/ham:lin"}, {"text": "NYQ:LIN", "url": "https://www.google.com/finance/quote/lin:nyq"}, {"text": "EBT:LINUD", "url": "https://www.google.com/finance/quote/ebt:linud"}, {"text": "DUS:LIN", "url": "https://www.google.com/finance/quote/dus:lin"}, {"text": "HAN:LIN", "url": "https://www.google.com/finance/quote/han:lin"}, {"text": "NYSE:LIN", "url": "https://www.google.com/finance/quote/lin:nyse"}, {"text": "SWX:LIN", "url": "https://www.google.com/finance/quote/lin:swx"}, {"text": "SAO:L1IN34", "url": "https://www.google.com/finance/quote/l1in34:sao"}, {"text": "DEU:LINI", "url": "https://www.google.com/finance/quote/deu:lini"}, {"text": "BRN:LIN", "url": "https://www.google.com/finance/quote/brn:lin"}, {"text": "MEX:LINN", "url": "https://www.google.com/finance/quote/linn:mex"}, {"text": "MUN:LIN", "url": "https://www.google.com/finance/quote/lin:mun"}, {"text": "VIE:LINI", "url": "https://www.google.com/finance/quote/lini:vie"}, {"text": "FRA:LIN", "url": "https://www.google.com/finance/quote/fra:lin"}, {"text": "LSE:0M2B", "url": "https://www.google.com/finance/quote/0m2b:lse"}, {"text": "XETR:LIN", "url": "https://www.google.com/finance/quote/lin:xetr"}, {"text": "BUD:LINDEPLC", "url": "https://www.google.com/finance/quote/bud:lindeplc"}, {"text": "STU:LIN", "url": "https://www.google.com/finance/quote/lin:stu"}, {"text": "GER:LINX", "url": "https://www.google.com/finance/quote/ger:linx"}], "crunchbase_description": "Linde is an engineering company that supplies industrial, process, and specialty gases.", "groups": {"sp500": true, "global500": true}, "fields": [{"field_name": "Feature selection", "field_count": 3}, {"field_name": "Domain knowledge", "field_count": 1}], "clusters": [{"cluster_id": 13501, "cluster_count": 3}, {"cluster_id": 1259, "cluster_count": 1}, {"cluster_id": 6193, "cluster_count": 1}, {"cluster_id": 5290, "cluster_count": 1}, {"cluster_id": 29329, "cluster_count": 1}, {"cluster_id": 43988, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 2397, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 2292, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "variable_selection", "task_count": 2}, {"referent": "sensor_modeling", "task_count": 2}, {"referent": "feature_selection", "task_count": 1}, {"referent": "tissue_segmentation", "task_count": 1}, {"referent": "model_selection", "task_count": 1}, {"referent": "binary_classification", "task_count": 1}, {"referent": "video_description", "task_count": 1}, {"referent": "future_prediction", "task_count": 1}, {"referent": "environmental_sound_classification", "task_count": 1}], "methods": [{"referent": "soft_nms", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "contrastive_predictive_coding", "method_count": 1}, {"referent": "optimization", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [55, 48, 59, 38, 55, 51, 52, 48, 59, 27, 3], "total": 495, "isTopResearch": false, "rank": 279, "sp500_rank": 185, "fortune500_rank": 109}, "ai_publications": {"counts": [1, 0, 0, 0, 2, 0, 0, 4, 1, 0, 0], "total": 8, "isTopResearch": false, "rank": 455, "sp500_rank": 233, "fortune500_rank": 128}, "ai_publications_growth": {"counts": [], "total": -87.5, "isTopResearch": false, "rank": 1548, "sp500_rank": 446, "fortune500_rank": 440}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 2, 4, 5, 4, 1], "total": 16, "isTopResearch": false, "rank": 704, "sp500_rank": 293, "fortune500_rank": 190}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0.0, 0, 0, 1.0, 5.0, 0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "sp500_rank": 327, "fortune500_rank": 217}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 1, 0, 1, 1, 2, 1, 0, 0], "total": 7, "table": null, "rank": 464, "sp500_rank": 209, "fortune500_rank": 148}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198, "sp500_rank": 94, "fortune500_rank": 56}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 10, 0, 10, 10, 20, 10, 0, 0], "total": 70, "table": null, "rank": 464, "sp500_rank": 209, "fortune500_rank": 148}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "sp500_rank": 119, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0], "total": 3, "table": "industry", "rank": 131, "sp500_rank": 89, "fortune500_rank": 46}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 1, 0, 0, 1, 1, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 190, "sp500_rank": 120, "fortune500_rank": 67}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 327, "rank": 577, "sp500_rank": 254, "fortune500_rank": 315}, "ai_jobs": {"counts": null, "total": 43, "rank": 508, "sp500_rank": 238, "fortune500_rank": 264}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "Linde plc is an American-Anglo-German multinational chemical company with global headquarters in Guildford, Surrey. It is the largest industrial gas company by market share and revenue. It serves customers in the healthcare, petroleum refining, manufacturing, food, beverage carbonation, fiber-optics, steel making, aerospace, chemicals, electronics and water treatment industries. The company's primary business is the manufacturing and distribution of atmospheric gases, including oxygen, nitrogen, argon, rare gases, and process gases, including carbon dioxide, helium, hydrogen, electronic gases, specialty gases, and acetylene.", "wikipedia_link": "https://en.wikipedia.org/wiki/Linde_plc", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2323, "country": "United States", "website": "http://www.fleetcor.com/", "crunchbase": {"text": "942bc052-be5a-6aa9-d7fe-19acf9504b7f", "url": "https://www.crunchbase.com/organization/fleetcor-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fleetcor"], "stage": "Mature", "name": "FleetCor Technologies Inc", "patent_name": "fleetcor technologies inc", "continent": "North America", "local_logo": "fleetcor_technologies_inc.png", "aliases": "Fleetcor; Fleetcor Technologies; Fleetcor Technologies, Inc; Fuelman", "permid_links": [{"text": 4296330387, "url": "https://permid.org/1-4296330387"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:FLT", "url": "https://www.google.com/finance/quote/flt:nyse"}], "market_full": [{"text": "FRA:07G", "url": "https://www.google.com/finance/quote/07g:fra"}, {"text": "BRN:07G", "url": "https://www.google.com/finance/quote/07g:brn"}, {"text": "DUS:07G", "url": "https://www.google.com/finance/quote/07g:dus"}, {"text": "GER:07GX", "url": "https://www.google.com/finance/quote/07gx:ger"}, {"text": "SAO:FLTC34", "url": "https://www.google.com/finance/quote/fltc34:sao"}, {"text": "NYQ:FLT", "url": "https://www.google.com/finance/quote/flt:nyq"}, {"text": "DEU:07G", "url": "https://www.google.com/finance/quote/07g:deu"}, {"text": "STU:07G", "url": "https://www.google.com/finance/quote/07g:stu"}, {"text": "MEX:FLT", "url": "https://www.google.com/finance/quote/flt:mex"}, {"text": "ASE:FLT", "url": "https://www.google.com/finance/quote/ase:flt"}, {"text": "MOEX:FLT-RM", "url": "https://www.google.com/finance/quote/flt-rm:moex"}, {"text": "BER:07G", "url": "https://www.google.com/finance/quote/07g:ber"}, {"text": "NYSE:FLT", "url": "https://www.google.com/finance/quote/flt:nyse"}, {"text": "LSE:0IPN", "url": "https://www.google.com/finance/quote/0ipn:lse"}], "crunchbase_description": "Fleetcor Technologies provides specialized payment products and services to commercial fleets, oil companies, and petroleum marketers.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 327, "rank": 577, "fortune500_rank": 315}, "ai_jobs": {"counts": null, "total": 28, "rank": 616, "fortune500_rank": 317}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "FleetCor Technologies, Inc. or FLEETCOR provides fuel cards and workforce payment products and services. Their customers include businesses, commercial fleets, oil companies, petroleum marketers and government in America, Netherlands, Belgium, Germany, Slovakia and various countries. The company provides services through two segments: North American and International segments. FLEETCOR's predecessor company was founded in the United States in 1986.", "wikipedia_link": "https://en.wikipedia.org/wiki/Fleetcor", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2891, "country": "United States", "website": "https://www.colsa.com/", "crunchbase": {"text": "dcdd26e4-dab3-dd4e-944b-31bfd2eca0ce", "url": "https://www.crunchbase.com/organization/colsa-corporation-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/colsa"], "stage": "Unknown", "name": "Colsa Corp", "patent_name": "colsa corp", "continent": "North America", "local_logo": null, "aliases": "Colsa; Colsa Corporation", "permid_links": [{"text": 4296590076, "url": "https://permid.org/1-4296590076"}], "parent_info": "Collazo Enterprises, Inc.", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "COLSA Corporation is a technology services and solutions company.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 3, 1, 4, 0, 6, 0, 0, 0, 0, 0], "total": 14, "isTopResearch": false, "rank": 875}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 326, "rank": 579}, "ai_jobs": {"counts": null, "total": 14, "rank": 775}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "COLSA is an information and engineering services and solutions company, and a proven provider of innovative technologies.", "company_site_link": "https://www.colsa.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2808, "country": "United States", "website": "http://www.kratosdefense.com/", "crunchbase": {"text": "1ae3b921-439d-931a-5290-acd00abd75d2", "url": "https://www.crunchbase.com/organization/kratos-defense-and-security-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kratos-defense-and-security-solutions"], "stage": "Mature", "name": "Kratos Defense & Security Solutions Inc", "patent_name": "kratos defense & security solutions inc", "continent": "North America", "local_logo": "kratos_defense_&_security_solutions_inc.png", "aliases": "Kratos; Kratos Defense & Security Solutions; Kratos Defense & Security Solutions, Inc; Kratos Defense And Security Solutions", "permid_links": [{"text": 4295915455, "url": "https://permid.org/1-4295915455"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:KTOS", "url": "https://www.google.com/finance/quote/ktos:nasdaq"}], "market_full": [{"text": "MUN:WF5A", "url": "https://www.google.com/finance/quote/mun:wf5a"}, {"text": "FRA:WF5A", "url": "https://www.google.com/finance/quote/fra:wf5a"}, {"text": "STU:WF5A", "url": "https://www.google.com/finance/quote/stu:wf5a"}, {"text": "BRN:WF5A", "url": "https://www.google.com/finance/quote/brn:wf5a"}, {"text": "NASDAQ:KTOS", "url": "https://www.google.com/finance/quote/ktos:nasdaq"}, {"text": "BER:WF5A", "url": "https://www.google.com/finance/quote/ber:wf5a"}, {"text": "DEU:KTOS", "url": "https://www.google.com/finance/quote/deu:ktos"}, {"text": "DUS:WF5A", "url": "https://www.google.com/finance/quote/dus:wf5a"}], "crunchbase_description": "Kratos Defense & Security Solutions provides mission critical engineering, IT services, and war fighter solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 324, "rank": 580}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Industrials", "business_sector": "Industrial Goods"}, {"cset_id": 3161, "country": "United States", "website": "https://enphase.com/", "crunchbase": {"text": "5710b829-e639-fbc9-ee08-234f59549ef8", "url": "https://www.crunchbase.com/organization/enphase-energy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/enphase-energy"], "stage": "Mature", "name": "Enphase Energy", "patent_name": "Enphase Energy", "continent": "North America", "local_logo": "enphase_energy.png", "aliases": "Enphase; Enphase Energy; Enphase Energy Inc; Enphase Energy, Inc", "permid_links": [{"text": 4298065499, "url": "https://permid.org/1-4298065499"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ENPH", "url": "https://www.google.com/finance/quote/ENPH:NASDAQ"}], "market_full": [{"text": "DUS:E0P", "url": "https://www.google.com/finance/quote/DUS:E0P"}, {"text": "LSE:0QYE", "url": "https://www.google.com/finance/quote/0QYE:LSE"}, {"text": "MCX:ENPH-RM", "url": "https://www.google.com/finance/quote/ENPH-RM:MCX"}, {"text": "BER:E0P", "url": "https://www.google.com/finance/quote/BER:E0P"}, {"text": "STU:E0P", "url": "https://www.google.com/finance/quote/E0P:STU"}, {"text": "GER:E0PX", "url": "https://www.google.com/finance/quote/E0PX:GER"}, {"text": "DEU:E0P", "url": "https://www.google.com/finance/quote/DEU:E0P"}, {"text": "NASDAQ:ENPH", "url": "https://www.google.com/finance/quote/ENPH:NASDAQ"}, {"text": "MUN:E0P", "url": "https://www.google.com/finance/quote/E0P:MUN"}, {"text": "MEX:ENPH*", "url": "https://www.google.com/finance/quote/ENPH*:MEX"}, {"text": "BRN:E0P", "url": "https://www.google.com/finance/quote/BRN:E0P"}, {"text": "FRA:E0P", "url": "https://www.google.com/finance/quote/E0P:FRA"}, {"text": "HAN:E0P", "url": "https://www.google.com/finance/quote/E0P:HAN"}, {"text": "SAO:E2NP34", "url": "https://www.google.com/finance/quote/E2NP34:SAO"}], "crunchbase_description": "Enphase Energy offers a micro-inverter system that delivers solar energy to homes and businesses.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 3, 1, 1, 6, 0, 1, 4, 7, 7, 1], "total": 32, "isTopResearch": false, "rank": 700}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 322, "rank": 581}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Energy", "business_sector": "Renewable Energy"}, {"cset_id": 519, "country": "United States", "website": "https://www.janestreet.com/", "crunchbase": {"text": "c4f20a6c-bc0e-aefd-2bfa-c953d29a876c", "url": "https://www.crunchbase.com/organization/jane-street-capital"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/jane-street-global"], "stage": "Unknown", "name": "Jane Street", "patent_name": "jane street", "continent": "North America", "local_logo": null, "aliases": "Jane Street Capital; Jane Street Group Llc; Jane Street Group, Llc", "permid_links": [{"text": 5042386272, "url": "https://permid.org/1-5042386272"}], "parent_info": "Jane Street Group, Llc", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Syntax (programming languages)", "field_count": 1}, {"field_name": "Hidden Markov model", "field_count": 1}], "clusters": [{"cluster_id": 6776, "cluster_count": 1}, {"cluster_id": 8748, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 519, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}], "methods": [{"referent": "disentangled_attribution_curves", "method_count": 1}, {"referent": "prioritized_sampling", "method_count": 1}, {"referent": "merl", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 4, 1, 1, 2, 2, 2, 7, 2, 0, 0], "total": 21, "isTopResearch": false, "rank": 797}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 2, 1, 3, 2, 1, 0], "total": 9, "isTopResearch": false, "rank": 774}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 2.0, 0, 3.0, 0, 0, 0], "total": 4.5, "isTopResearch": false, "rank": 729}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 317, "rank": 582}, "ai_jobs": {"counts": null, "total": 36, "rank": 551}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Jane Street is a quantitative trading firm with a unique focus on technology and collaborative problem solving.", "company_site_link": "https://www.janestreet.com", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 493, "country": "United States", "website": "http://www.houzz.com", "crunchbase": {"text": "cafdc641-43e1-54e1-6aee-170f91005d6a", "url": "https://www.crunchbase.com/organization/houzz"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/houzz"], "stage": "Mature", "name": "Houzz", "patent_name": "houzz", "continent": "North America", "local_logo": "houzz.png", "aliases": "Houzz Inc; Houzz, Inc", "permid_links": [{"text": 5038055748, "url": "https://permid.org/1-5038055748"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Houzz is an online platform for home remodeling, architecture, interior design, decorating, landscaping, and home improvement.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Missing data", "field_count": 1}, {"field_name": "Linear regression", "field_count": 1}, {"field_name": "Artificial life", "field_count": 1}], "clusters": [{"cluster_id": 11445, "cluster_count": 2}, {"cluster_id": 13252, "cluster_count": 1}, {"cluster_id": 9412, "cluster_count": 1}, {"cluster_id": 5345, "cluster_count": 1}, {"cluster_id": 3167, "cluster_count": 1}, {"cluster_id": 12976, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 434, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}], "tasks": [{"referent": "recommendation_systems", "task_count": 2}, {"referent": "load_forecasting", "task_count": 2}, {"referent": "customer_segmentation", "task_count": 2}, {"referent": "semantic_composition", "task_count": 1}, {"referent": "art_analysis", "task_count": 1}, {"referent": "image_enhancement", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "variable_selection", "task_count": 1}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "dueling_network", "method_count": 2}, {"referent": "contrastive_predictive_coding", "method_count": 2}, {"referent": "crf", "method_count": 1}, {"referent": "l1_regularization", "method_count": 1}, {"referent": "hopfield_layer", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 2, 3, 0, 2, 0, 0, 0], "total": 8, "isTopResearch": false, "rank": 980}, "ai_publications": {"counts": [0, 0, 1, 0, 1, 3, 0, 2, 0, 0, 0], "total": 7, "isTopResearch": false, "rank": 481}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [1, 0, 0, 0, 1, 6, 35, 30, 32, 21, 1], "total": 127, "isTopResearch": false, "rank": 468}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 1.0, 2.0, 0, 15.0, 0, 0, 0], "total": 18.142857142857142, "isTopResearch": false, "rank": 344}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 10, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 316, "rank": 583}, "ai_jobs": {"counts": null, "total": 36, "rank": 551}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Houzz is an American website and online community about architecture, interior design and decorating, landscape design and home improvement. It was founded in 2009 and is based in Palo Alto, California.", "wikipedia_link": "https://en.wikipedia.org/wiki/Houzz", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2490, "country": "United States", "website": "https://www.skyworksinc.com/", "crunchbase": {"text": "e33a7904-11f0-2a89-16f5-c34e9108abd5", "url": "https://www.crunchbase.com/organization/skyworks-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/skyworks-solutions-inc"], "stage": "Mature", "name": "Skyworks Solutions", "patent_name": "skyworks solutions", "continent": "North America", "local_logo": "skyworks_solutions.png", "aliases": "Skyworks; Skyworks Solutions Inc; Skyworks Solutions, Inc", "permid_links": [{"text": 4295905486, "url": "https://permid.org/1-4295905486"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:SWKS", "url": "https://www.google.com/finance/quote/nasdaq:swks"}], "market_full": [{"text": "DEU:SWKS", "url": "https://www.google.com/finance/quote/deu:swks"}, {"text": "GER:AWMX", "url": "https://www.google.com/finance/quote/awmx:ger"}, {"text": "HAM:AWM", "url": "https://www.google.com/finance/quote/awm:ham"}, {"text": "BER:AWM", "url": "https://www.google.com/finance/quote/awm:ber"}, {"text": "BRN:AWM", "url": "https://www.google.com/finance/quote/awm:brn"}, {"text": "NASDAQ:SWKS", "url": "https://www.google.com/finance/quote/nasdaq:swks"}, {"text": "LSE:0L77", "url": "https://www.google.com/finance/quote/0l77:lse"}, {"text": "DUS:AWM", "url": "https://www.google.com/finance/quote/awm:dus"}, {"text": "FRA:AWM", "url": "https://www.google.com/finance/quote/awm:fra"}, {"text": "VIE:SWKS", "url": "https://www.google.com/finance/quote/swks:vie"}, {"text": "HAN:AWM", "url": "https://www.google.com/finance/quote/awm:han"}, {"text": "STU:AWM", "url": "https://www.google.com/finance/quote/awm:stu"}, {"text": "MCX:SWKS-RM", "url": "https://www.google.com/finance/quote/mcx:swks-rm"}, {"text": "SAO:S1SL34", "url": "https://www.google.com/finance/quote/s1sl34:sao"}, {"text": "MUN:AWM", "url": "https://www.google.com/finance/quote/awm:mun"}, {"text": "MEX:SWKS*", "url": "https://www.google.com/finance/quote/mex:swks*"}], "crunchbase_description": "Skyworks Solutions is an innovator of high performance analog semiconductors.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Keyword spotting", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}], "clusters": [{"cluster_id": 51876, "cluster_count": 1}, {"cluster_id": 14649, "cluster_count": 1}, {"cluster_id": 6386, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 3114, "referenced_count": 1}], "tasks": [{"referent": "unmanned_aerial_vehicles", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}, {"referent": "keyword_spotting", "task_count": 1}, {"referent": "human_motion_prediction", "task_count": 1}, {"referent": "motion_detection", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [28, 29, 22, 28, 23, 22, 56, 11, 22, 20, 2], "total": 263, "isTopResearch": false, "rank": 374, "fortune500_rank": 144}, "ai_publications": {"counts": [0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 0, 9, 41, 21, 34, 18, 16, 20, 15, 0], "total": 175, "isTopResearch": false, "rank": 405, "fortune500_rank": 118}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 9.0, 41.0, 0, 0, 18.0, 0, 0, 0, 0], "total": 58.333333333333336, "isTopResearch": false, "rank": 77, "fortune500_rank": 18}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "fortune500_rank": 57}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 313, "rank": 584, "fortune500_rank": 317}, "ai_jobs": {"counts": null, "total": 14, "rank": 775, "fortune500_rank": 384}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Skyworks Solutions, Inc. is an American semiconductor company headquartered in Irvine, California, United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Skyworks_Solutions", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 515, "country": "United States", "website": "http://invitae.com", "crunchbase": {"text": "110cc24e-b2bd-2cd1-d3ee-bd9838a47dba", "url": "https://www.crunchbase.com/organization/invitae-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/invitae"], "stage": "Mature", "name": "Invitae", "patent_name": "invitae", "continent": "North America", "local_logo": "invitae.png", "aliases": "Invitae Corp; Invitae Corporation; Locus Development Inc", "permid_links": [{"text": 5001177428, "url": "https://permid.org/1-5001177428"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NVTA", "url": "https://www.google.com/finance/quote/nvta:nyse"}], "market_full": [{"text": "NYQ:NVTA", "url": "https://www.google.com/finance/quote/nvta:nyq"}, {"text": "LSE:0JDB", "url": "https://www.google.com/finance/quote/0jdb:lse"}, {"text": "MOEX:NVTA-RM", "url": "https://www.google.com/finance/quote/moex:nvta-rm"}, {"text": "DUS:IV8", "url": "https://www.google.com/finance/quote/dus:iv8"}, {"text": "BER:IV8", "url": "https://www.google.com/finance/quote/ber:iv8"}, {"text": "BMV:NVTA", "url": "https://www.google.com/finance/quote/bmv:nvta"}, {"text": "NYSE:NVTA", "url": "https://www.google.com/finance/quote/nvta:nyse"}, {"text": "FWB:IV8", "url": "https://www.google.com/finance/quote/fwb:iv8"}], "crunchbase_description": "Invitae is a medical genetics company that bring comprehensive genetic information into mainstream medicine to improve healthcare.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Bayesian probability", "field_count": 1}, {"field_name": "Computational model", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}], "clusters": [{"cluster_id": 2265, "cluster_count": 2}, {"cluster_id": 698, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 25}, {"ref_CSET_id": 101, "referenced_count": 21}, {"ref_CSET_id": 163, "referenced_count": 19}, {"ref_CSET_id": 223, "referenced_count": 9}, {"ref_CSET_id": 245, "referenced_count": 7}, {"ref_CSET_id": 127, "referenced_count": 7}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 112, "referenced_count": 6}, {"ref_CSET_id": 161, "referenced_count": 6}, {"ref_CSET_id": 6, "referenced_count": 5}], "tasks": [{"referent": "age_invariant_face_recognition", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}], "methods": [{"referent": "actkr", "method_count": 1}, {"referent": "amp", "method_count": 1}, {"referent": "momentum_rules", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [3, 12, 29, 36, 26, 60, 78, 99, 126, 131, 0], "total": 600, "isTopResearch": false, "rank": 251}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 2, 0], "total": 5, "isTopResearch": false, "rank": 540}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 2, 5, 52, 99, 137, 183, 186, 0], "total": 664, "isTopResearch": false, "rank": 236}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 5.0, 52.0, 99.0, 0, 0, 93.0, 0], "total": 132.8, "isTopResearch": false, "rank": 24}}, "patents": {"ai_patents": {"counts": [1, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 10, 0, 0, 20, 10, 0, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [1, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 122}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 311, "rank": 585}, "ai_jobs": {"counts": null, "total": 45, "rank": 500}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Invitae Corp. is a biotechnology company that was created as a subsidiary of Genomic Health in 2010 and then spun-off in 2012.", "wikipedia_link": "https://en.wikipedia.org/wiki/Invitae", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 258, "country": "United States", "website": "http://tusimple.ai/", "crunchbase": {"text": "9d9237d3-8303-9a42-1fd0-6648105c026e", "url": "https://www.crunchbase.com/organization/tusimple-llc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tusimple"], "stage": "Mature", "name": "Tusimple", "patent_name": "tusimple", "continent": "North America", "local_logo": "tusimple.png", "aliases": "Beijing Tusimple Future Technology Co Ltd; Tusimple, Inc; \u56fe\u68ee\u672a\u6765", "permid_links": [{"text": 5057776340, "url": "https://permid.org/1-5057776340"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "TuSimple is a self-driving truck company developing technology that allows them to drive from depot-to-depot without human intervention.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 4}, {"field_name": "Point cloud", "field_count": 4}, {"field_name": "Pose", "field_count": 4}, {"field_name": "Robustness (computer science)", "field_count": 3}, {"field_name": "Rotation (mathematics)", "field_count": 3}, {"field_name": "Object (computer science)", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Orientation (computer vision)", "field_count": 1}, {"field_name": "Applications of artificial intelligence", "field_count": 1}, {"field_name": "Feature extraction", "field_count": 1}], "clusters": [{"cluster_id": 14142, "cluster_count": 5}, {"cluster_id": 16550, "cluster_count": 4}, {"cluster_id": 23307, "cluster_count": 3}, {"cluster_id": 17820, "cluster_count": 3}, {"cluster_id": 3446, "cluster_count": 3}, {"cluster_id": 214, "cluster_count": 3}, {"cluster_id": 50755, "cluster_count": 2}, {"cluster_id": 70527, "cluster_count": 2}, {"cluster_id": 1149, "cluster_count": 2}, {"cluster_id": 1436, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 184}, {"ref_CSET_id": 163, "referenced_count": 139}, {"ref_CSET_id": 87, "referenced_count": 86}, {"ref_CSET_id": 258, "referenced_count": 50}, {"ref_CSET_id": 223, "referenced_count": 32}, {"ref_CSET_id": 127, "referenced_count": 29}, {"ref_CSET_id": 245, "referenced_count": 20}, {"ref_CSET_id": 6, "referenced_count": 20}, {"ref_CSET_id": 37, "referenced_count": 19}, {"ref_CSET_id": 115, "referenced_count": 17}], "tasks": [{"referent": "autonomous_driving", "task_count": 8}, {"referent": "computer_vision", "task_count": 7}, {"referent": "object_detection", "task_count": 6}, {"referent": "classification", "task_count": 5}, {"referent": "point_cloud_classification", "task_count": 4}, {"referent": "semantic_segmentation", "task_count": 4}, {"referent": "svbrdf_estimation", "task_count": 3}, {"referent": "6d_pose_estimation", "task_count": 3}, {"referent": "pedestrian_detection", "task_count": 2}, {"referent": "decision_making", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 9}, {"referent": "optimization", "method_count": 4}, {"referent": "reinforcement_learning", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "video_sampling", "method_count": 4}, {"referent": "1d_cnn", "method_count": 4}, {"referent": "neural_architecture_search", "method_count": 4}, {"referent": "hit_detector", "method_count": 3}, {"referent": "q_learning", "method_count": 2}, {"referent": "pointer_network", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 6, 6, 18, 21, 23, 13, 0], "total": 88, "isTopResearch": false, "rank": 531}, "ai_publications": {"counts": [0, 0, 1, 0, 4, 5, 14, 16, 19, 5, 0], "total": 64, "isTopResearch": false, "rank": 157}, "ai_publications_growth": {"counts": [], "total": -13.54949874686717, "isTopResearch": false, "rank": 1286}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 3, 1, 8, 4, 6, 3, 0], "total": 26, "isTopResearch": false, "rank": 68}, "citation_counts": {"counts": [0, 3, 4, 75, 161, 304, 746, 1266, 1525, 1215, 31], "total": 5330, "isTopResearch": false, "rank": 71}, "cv_pubs": {"counts": [0, 0, 1, 0, 4, 4, 13, 10, 13, 4, 0], "total": 49, "isTopResearch": true, "rank": 84}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 6, 1, 0], "total": 12, "isTopResearch": true, "rank": 102}, "citations_per_article": {"counts": [0, 0, 4.0, 0, 40.25, 60.8, 53.285714285714285, 79.125, 80.26315789473684, 243.0, 0], "total": 83.28125, "isTopResearch": false, "rank": 49}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 4, 61, 22, 6, 15, 5, 0, 0], "total": 113, "table": null, "rank": 150}, "ai_patents_growth": {"counts": [], "total": 4.446100347739692, "table": null, "rank": 352}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 40, 610, 220, 60, 150, 50, 0, 0], "total": 1130, "table": null, "rank": 150}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 40, 13, 5, 10, 0, 0, 0], "total": 68, "table": "industry", "rank": 37}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 116}, "Education": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 9, 3, 4, 3, 0, 0, 0], "total": 20, "table": "industry", "rank": 188}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 7, 3, 0, 1, 0, 0, 0], "total": 11, "table": "industry", "rank": 73}, "Telecommunications": {"counts": [0, 0, 0, 0, 8, 5, 0, 0, 0, 0, 0], "total": 13, "table": "industry", "rank": 153}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 252}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 55}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 214}, "Control": {"counts": [0, 0, 0, 1, 44, 12, 5, 7, 0, 0, 0], "total": 69, "table": "application", "rank": 45}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 2, 33, 11, 3, 11, 5, 0, 0], "total": 65, "table": "application", "rank": 94}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 15, 4, 5, 7, 0, 0, 0], "total": 31, "table": "application", "rank": 60}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 311, "rank": 585}, "ai_jobs": {"counts": null, "total": 27, "rank": 627}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 202, "country": "China", "website": "http://www.pingan.com/", "crunchbase": {"text": "46132ff1-8140-51c5-fba1-1e537e892f40", "url": "https://www.crunchbase.com/organization/ping-an"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ping-an"], "stage": "Mature", "name": "Ping An", "patent_name": "ping an", "continent": "Asia", "local_logo": "ping_an.png", "aliases": "China Ping An; \u4e2d\u56fd\u5e73\u5b89; \u4e2d\u56fd\u5e73\u5b89\u4fdd\u9669\u96c6\u56e2; \u5e73\u5b89\u91d1\u878d", "permid_links": [{"text": 4295864721, "url": "https://permid.org/1-4295864721"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:2318", "url": "https://www.google.com/finance/quote/2318:hkg"}, {"text": "SSE:601318", "url": "https://www.google.com/finance/quote/601318:sse"}], "market_full": [{"text": "OTC:PNGAY", "url": "https://www.google.com/finance/quote/otc:pngay"}, {"text": "HKG:2318", "url": "https://www.google.com/finance/quote/2318:hkg"}, {"text": "SSE:601318", "url": "https://www.google.com/finance/quote/601318:sse"}], "crunchbase_description": "Ping An Insurance Company is a holding company deals with insurance, banking, and financial service.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Segmentation", "field_count": 12}, {"field_name": "Feature (computer vision)", "field_count": 10}, {"field_name": "Deep learning", "field_count": 10}, {"field_name": "Artificial neural network", "field_count": 7}, {"field_name": "Language model", "field_count": 7}, {"field_name": "Speech synthesis", "field_count": 4}, {"field_name": "Convolutional neural network", "field_count": 4}, {"field_name": "Convolution", "field_count": 4}, {"field_name": "Recommender system", "field_count": 4}, {"field_name": "Point cloud", "field_count": 3}], "clusters": [{"cluster_id": 66719, "cluster_count": 11}, {"cluster_id": 5507, "cluster_count": 11}, {"cluster_id": 5141, "cluster_count": 7}, {"cluster_id": 14686, "cluster_count": 7}, {"cluster_id": 1149, "cluster_count": 7}, {"cluster_id": 179, "cluster_count": 6}, {"cluster_id": 1193, "cluster_count": 5}, {"cluster_id": 3886, "cluster_count": 5}, {"cluster_id": 1422, "cluster_count": 5}, {"cluster_id": 1627, "cluster_count": 5}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 551}, {"ref_CSET_id": 163, "referenced_count": 289}, {"ref_CSET_id": 87, "referenced_count": 199}, {"ref_CSET_id": 202, "referenced_count": 174}, {"ref_CSET_id": 115, "referenced_count": 73}, {"ref_CSET_id": 184, "referenced_count": 69}, {"ref_CSET_id": 245, "referenced_count": 58}, {"ref_CSET_id": 37, "referenced_count": 54}, {"ref_CSET_id": 23, "referenced_count": 41}, {"ref_CSET_id": 3131, "referenced_count": 33}], "tasks": [{"referent": "classification", "task_count": 34}, {"referent": "disease_detection", "task_count": 22}, {"referent": "segmentation", "task_count": 21}, {"referent": "speech_recognition", "task_count": 12}, {"referent": "cancer_detection", "task_count": 9}, {"referent": "action_generation", "task_count": 9}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 8}, {"referent": "lesion_segmentation", "task_count": 8}, {"referent": "classification_tasks", "task_count": 8}, {"referent": "end_to_end_speech_recognition", "task_count": 5}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 19}, {"referent": "recurrent_neural_networks", "method_count": 18}, {"referent": "3d_representations", "method_count": 16}, {"referent": "bp_transformer", "method_count": 14}, {"referent": "vqa_models", "method_count": 14}, {"referent": "q_learning", "method_count": 12}, {"referent": "self_supervised_learning", "method_count": 11}, {"referent": "neural_architecture_search", "method_count": 11}, {"referent": "double_q_learning", "method_count": 10}, {"referent": "generative_adversarial_networks", "method_count": 9}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1, 1, 5, 1, 4, 14, 67, 95, 132, 68, 1], "total": 389, "isTopResearch": false, "rank": 318, "sp500_rank": 209}, "ai_publications": {"counts": [0, 0, 0, 1, 2, 5, 43, 70, 80, 38, 0], "total": 239, "isTopResearch": false, "rank": 70, "sp500_rank": 55}, "ai_publications_growth": {"counts": [], "total": 8.192137320044296, "isTopResearch": false, "rank": 168, "sp500_rank": 88}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 4, 9, 8, 1, 0], "total": 23, "isTopResearch": false, "rank": 72, "sp500_rank": 38}, "citation_counts": {"counts": [0, 0, 0, 1, 6, 29, 68, 380, 808, 771, 30], "total": 2093, "isTopResearch": false, "rank": 129, "sp500_rank": 80}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 2, 22, 32, 24, 11, 0], "total": 91, "isTopResearch": true, "rank": 61, "sp500_rank": 44}, "nlp_pubs": {"counts": [0, 0, 0, 0, 2, 2, 7, 14, 28, 10, 0], "total": 63, "isTopResearch": true, "rank": 40, "sp500_rank": 30}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0, 0, 0, 1.0, 3.0, 5.8, 1.5813953488372092, 5.428571428571429, 10.1, 20.289473684210527, 0], "total": 8.757322175732218, "isTopResearch": false, "rank": 581, "sp500_rank": 220}}, "patents": {"ai_patents": {"counts": [0, 0, 3, 15, 69, 599, 1014, 1005, 1105, 724, 0], "total": 4534, "table": null, "rank": 4, "sp500_rank": 4}, "ai_patents_growth": {"counts": [], "total": 278.83683498643774, "table": null, "rank": 28, "sp500_rank": 13}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 30, 150, 690, 5990, 10140, 10050, 11050, 7240, 0], "total": 45340, "table": null, "rank": 4, "sp500_rank": 4}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": null, "rank": 105, "sp500_rank": 81}, "Life_Sciences": {"counts": [0, 0, 0, 0, 2, 60, 61, 126, 112, 43, 0], "total": 404, "table": "industry", "rank": 4, "sp500_rank": 3}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 2, 11, 21, 44, 30, 9, 0], "total": 117, "table": null, "rank": 7, "sp500_rank": 7}, "Transportation": {"counts": [0, 0, 0, 0, 2, 3, 5, 2, 2, 9, 0], "total": 23, "table": null, "rank": 67, "sp500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 5, 5, 0, 4, 0], "total": 14, "table": null, "rank": 57, "sp500_rank": 42}, "Education": {"counts": [0, 0, 0, 0, 1, 2, 7, 8, 20, 12, 0], "total": 50, "table": null, "rank": 2, "sp500_rank": 2}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 3, 3, 0, 4, 0, 0], "total": 10, "table": null, "rank": 14, "sp500_rank": 11}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 4, 7, 4, 7, 1, 0], "total": 23, "table": null, "rank": 2, "sp500_rank": 2}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 24, 107, 346, 452, 529, 180, 0], "total": 1640, "table": "industry", "rank": 6, "sp500_rank": 6}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 15, 121, 68, 44, 51, 14, 0], "total": 314, "table": "industry", "rank": 3, "sp500_rank": 3}, "Telecommunications": {"counts": [0, 0, 0, 2, 7, 30, 51, 37, 34, 8, 0], "total": 169, "table": "industry", "rank": 24, "sp500_rank": 21}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 3, 0, 1, 4, 7, 1, 0], "total": 16, "table": null, "rank": 9, "sp500_rank": 7}, "Business": {"counts": [0, 0, 0, 3, 19, 125, 130, 90, 112, 36, 0], "total": 515, "table": "industry", "rank": 4, "sp500_rank": 4}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 2, 1, 3, 2, 1, 0], "total": 9, "table": null, "rank": 53, "sp500_rank": 50}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 12, 3, 4, 21, 4, 0], "total": 44, "table": null, "rank": 5, "sp500_rank": 4}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 0, 1, 5, 14, 35, 0, 0, 0, 0], "total": 55, "table": "application", "rank": 10, "sp500_rank": 7}, "Speech_Processing": {"counts": [0, 0, 0, 2, 11, 57, 113, 102, 186, 43, 0], "total": 514, "table": "application", "rank": 1, "sp500_rank": 1}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 2, 3, 4, 7, 8, 0, 0], "total": 25, "table": null, "rank": 42, "sp500_rank": 33}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 2, 16, 88, 78, 49, 78, 25, 0], "total": 336, "table": "application", "rank": 4, "sp500_rank": 4}, "Control": {"counts": [0, 0, 0, 1, 1, 5, 9, 10, 3, 0, 0], "total": 29, "table": null, "rank": 74, "sp500_rank": 55}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 1, 6, 32, 157, 340, 452, 520, 131, 0], "total": 1639, "table": "application", "rank": 3, "sp500_rank": 3}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 10, 6, 10, 19, 3, 0], "total": 49, "table": "application", "rank": 28, "sp500_rank": 25}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 2, 4, 6, 7, 2, 0, 0], "total": 21, "table": null, "rank": 80, "sp500_rank": 61}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 309, "rank": 587, "sp500_rank": 255}, "ai_jobs": {"counts": null, "total": 67, "rank": 417, "sp500_rank": 215}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Ping An Insurance known also as Ping An of China (simplified Chinese: \u4e2d\u56fd\u5e73\u5b89; traditional Chinese: \u4e2d\u570b\u5e73\u5b89; pinyin: Zh\u014dnggu\u00f3 P\u00edng \u0100n), full name Ping An Insurance (Group) Company of China, Ltd. is a Chinese holding conglomerate whose subsidiaries mainly deal with insurance, banking, and financial services. The company was founded in 1988 and is headquartered in Shenzhen. \"Ping An\" literally means \"safe and well\".\nPing An ranked 7th on the Forbes Global 2000 list and 29th on the Fortune Global 500 list.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ping_An_Insurance", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2812, "country": "United States", "website": "http://www.smartronix.com/", "crunchbase": {"text": "81de227f-ff6e-ee8a-a419-1c10d64ea0d0", "url": "https://www.crunchbase.com/organization/smartronix"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/smxtech"], "stage": "Unknown", "name": "Smartronix Inc", "patent_name": "smartronix inc", "continent": "North America", "local_logo": "smartronix_inc.png", "aliases": "Smartronix; Smartronix, Llc; Smartronixu00Ae, Inc", "permid_links": [{"text": 4297335608, "url": "https://permid.org/1-4297335608"}], "parent_info": "Oceansound Partners (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Smartronix is a provider of cloud, C5ISR, and advanced engineering and IT solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 307, "rank": 588}, "ai_jobs": {"counts": null, "total": 20, "rank": 692}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Smartronix is a U.S. based, highly regarded information technology (IT) and engineering solutions provider specializing in Cloud Solutions, Cyber Security, Systems Integration, Worldwide C5ISR and Data Analytics, and Mission-Focused Engineering. Founded in 1995 and headquartered in Maryland, Smartronix has more than 10 operating offices with approximately 800 employees at strategic locations worldwide. Across today's demanding and ever-changing technology and warfare landscapes, we continue to provide innovative, secure, and agile solutions that transform and modernize operations and contribute to our national security and well-being.", "company_site_link": "https://www.smartronix.com/about-us/index.html", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2448, "country": "United States", "website": "http://www.paccar.com/", "crunchbase": {"text": "65344122-335c-f883-0cde-10af7b230960", "url": "https://www.crunchbase.com/organization/paccar"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/paccar"], "stage": "Mature", "name": "PACCAR Inc.", "patent_name": "paccar inc.", "continent": "North America", "local_logo": "paccar_inc.png", "aliases": "Paccar; Paccar Financial", "permid_links": [{"text": 4295907525, "url": "https://permid.org/1-4295907525"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:PCAR", "url": "https://www.google.com/finance/quote/nasdaq:pcar"}], "market_full": [{"text": "MUN:PAE", "url": "https://www.google.com/finance/quote/mun:pae"}, {"text": "GER:PAEX", "url": "https://www.google.com/finance/quote/ger:paex"}, {"text": "BUE:PCAR3", "url": "https://www.google.com/finance/quote/bue:pcar3"}, {"text": "HAN:PAE", "url": "https://www.google.com/finance/quote/han:pae"}, {"text": "DEU:PCAR", "url": "https://www.google.com/finance/quote/deu:pcar"}, {"text": "HAM:PAE", "url": "https://www.google.com/finance/quote/ham:pae"}, {"text": "NASDAQ:PCAR", "url": "https://www.google.com/finance/quote/nasdaq:pcar"}, {"text": "MCX:PCAR", "url": "https://www.google.com/finance/quote/mcx:pcar"}, {"text": "FRA:PAE", "url": "https://www.google.com/finance/quote/fra:pae"}, {"text": "BER:PAE", "url": "https://www.google.com/finance/quote/ber:pae"}, {"text": "LSE:0KET", "url": "https://www.google.com/finance/quote/0ket:lse"}, {"text": "DUS:PAE", "url": "https://www.google.com/finance/quote/dus:pae"}, {"text": "SAO:P1AC34", "url": "https://www.google.com/finance/quote/p1ac34:sao"}, {"text": "VIE:PCAR", "url": "https://www.google.com/finance/quote/pcar:vie"}, {"text": "STU:PAE", "url": "https://www.google.com/finance/quote/pae:stu"}, {"text": "BRN:PAE", "url": "https://www.google.com/finance/quote/brn:pae"}], "crunchbase_description": "PACCAR Financial Pty. Ltd., a specialist finance company, engages in financing trucks and trailers.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 2522, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "robots", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 2, 3, 1, 2, 0, 2, 0, 1, 0], "total": 12, "isTopResearch": false, "rank": 907, "fortune500_rank": 317}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 1, 0, 1, 4, 0, 0, 0, 0, 1, 0], "total": 7, "isTopResearch": false, "rank": 794, "fortune500_rank": 217}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 7.0, "isTopResearch": false, "rank": 634, "fortune500_rank": 181}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 305, "rank": 589, "fortune500_rank": 318}, "ai_jobs": {"counts": null, "total": 37, "rank": 544, "fortune500_rank": 280}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "PACCAR Inc is an American Fortune 500 company and counts among the largest manufacturers of medium- and heavy-duty trucks in the world. PACCAR is engaged in the design, manufacture and customer support of light-, medium- and heavy-duty trucks under the Kenworth, Peterbilt, Leyland Trucks, and DAF nameplates. PACCAR also designs and manufactures powertrains, provides financial services and information technology, and distributes truck parts related to its principal business.", "wikipedia_link": "https://en.wikipedia.org/wiki/Paccar", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3086, "country": "United States", "website": "https://www.bio-rad.com/", "crunchbase": {"text": " 68069d7a-9608-050d-90be-9fd3d3df34a2", "url": " https://www.crunchbase.com/organization/bio-rad-laboratories"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bio-rad"], "stage": "Mature", "name": "Bio-Rad Laboratories", "patent_name": "Bio-Rad Laboratories", "continent": "North America", "local_logo": null, "aliases": null, "permid_links": [{"text": 4295908554, "url": "https://permid.org/1-4295908554"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BIO.B", "url": "https://www.google.com/finance/quote/BIO.B:NYSE"}, {"text": "NYSE:BIO", "url": "https://www.google.com/finance/quote/BIO:NYSE"}], "market_full": [{"text": "BRN:BUWA", "url": "https://www.google.com/finance/quote/BRN:BUWA"}, {"text": "NYSE:BIO.B", "url": "https://www.google.com/finance/quote/BIO.B:NYSE"}, {"text": "ASE:BIO", "url": "https://www.google.com/finance/quote/ASE:BIO"}, {"text": "BER:BUWA", "url": "https://www.google.com/finance/quote/BER:BUWA"}, {"text": "FRA:BUWA", "url": "https://www.google.com/finance/quote/BUWA:FRA"}, {"text": "NYQ:BIO", "url": "https://www.google.com/finance/quote/BIO:NYQ"}, {"text": "FRA:BUW", "url": "https://www.google.com/finance/quote/BUW:FRA"}, {"text": "GER:BIOX,A", "url": "https://www.google.com/finance/quote/BIOX,A:GER"}, {"text": "STU:BUWA", "url": "https://www.google.com/finance/quote/BUWA:STU"}, {"text": "NYSE:BIO", "url": "https://www.google.com/finance/quote/BIO:NYSE"}, {"text": "DEU:BIOA", "url": "https://www.google.com/finance/quote/BIOa:DEU"}, {"text": "MUN:BUWA", "url": "https://www.google.com/finance/quote/BUWA:MUN"}, {"text": "DEU:BUW", "url": "https://www.google.com/finance/quote/BUW:DEU"}, {"text": "MCX:BIO-RM", "url": "https://www.google.com/finance/quote/BIO-RM:MCX"}, {"text": "ASE:BIO.B", "url": "https://www.google.com/finance/quote/ASE:BIO.B"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 83838, "cluster_count": 1}, {"cluster_id": 2855, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "cancer_detection", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "clustering", "method_count": 1}, {"referent": "gts", "method_count": 1}, {"referent": "symbolic_rule_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [31, 37, 47, 33, 22, 30, 26, 29, 35, 22, 0], "total": 312, "isTopResearch": false, "rank": 351, "fortune500_rank": 134}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [2, 3, 2, 1, 4, 4, 6, 3, 5, 3, 0], "total": 33, "isTopResearch": false, "rank": 643, "fortune500_rank": 175}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 304, "rank": 590, "fortune500_rank": 319}, "ai_jobs": {"counts": null, "total": 29, "rank": 607, "fortune500_rank": 311}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment"}, {"cset_id": 1607, "country": "South Korea", "website": "https://www.mobis.co.kr/", "crunchbase": {"text": "8a26c5c2-e77e-920a-d5b4-b7714b126785", "url": "https://www.crunchbase.com/organization/hyundai-mobis"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hyundai-mobis"], "stage": "Mature", "name": "Hyundai Mobis", "patent_name": "Hyundai MOBIS", "continent": "Asia", "local_logo": "hyundai_mobis.png", "aliases": "Hyundai; Hyundai MOBIS; \ud604\ub300\uc790\ub3d9\ucc28", "permid_links": [{"text": 4295881489, "url": "https://permid.org/1-4295881489"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "KRX:012330", "url": "https://www.google.com/finance/quote/012330:KRX"}], "market_full": [{"text": "KRX:012330", "url": "https://www.google.com/finance/quote/012330:KRX"}], "crunchbase_description": "HYUNDAI MOBIS Co., Ltd is a Korea-based manufacturer principally engaged in the provision of automobile components.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Euclidean distance", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Pose", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Sensor fusion", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Fingerprint (computing)", "field_count": 2}, {"field_name": "Biometrics", "field_count": 1}, {"field_name": "Face (geometry)", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}], "clusters": [{"cluster_id": 11807, "cluster_count": 4}, {"cluster_id": 14335, "cluster_count": 3}, {"cluster_id": 1105, "cluster_count": 3}, {"cluster_id": 25153, "cluster_count": 2}, {"cluster_id": 262, "cluster_count": 2}, {"cluster_id": 2214, "cluster_count": 2}, {"cluster_id": 9480, "cluster_count": 1}, {"cluster_id": 12947, "cluster_count": 1}, {"cluster_id": 59143, "cluster_count": 1}, {"cluster_id": 82333, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 34}, {"ref_CSET_id": 163, "referenced_count": 21}, {"ref_CSET_id": 87, "referenced_count": 19}, {"ref_CSET_id": 184, "referenced_count": 8}, {"ref_CSET_id": 1767, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 4}, {"ref_CSET_id": 805, "referenced_count": 3}, {"ref_CSET_id": 1607, "referenced_count": 3}, {"ref_CSET_id": 223, "referenced_count": 3}, {"ref_CSET_id": 800, "referenced_count": 3}], "tasks": [{"referent": "autonomous_driving", "task_count": 12}, {"referent": "classification", "task_count": 9}, {"referent": "vehicle_detection", "task_count": 6}, {"referent": "system_identification", "task_count": 5}, {"referent": "target_recognition", "task_count": 5}, {"referent": "autonomous_vehicles", "task_count": 4}, {"referent": "fingerprint_recognition", "task_count": 4}, {"referent": "vehicle_localization", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "moving_target_detection", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 6}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "auto_classifier", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "video_sampling", "method_count": 2}, {"referent": "skip_connections", "method_count": 2}, {"referent": "emf", "method_count": 2}, {"referent": "autoencoder", "method_count": 2}, {"referent": "object_detection_models", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [22, 22, 18, 18, 25, 38, 41, 41, 43, 28, 4], "total": 300, "isTopResearch": false, "rank": 357, "sp500_rank": 229}, "ai_publications": {"counts": [3, 3, 4, 2, 6, 6, 4, 7, 9, 5, 0], "total": 49, "isTopResearch": false, "rank": 186, "sp500_rank": 116}, "ai_publications_growth": {"counts": [], "total": 19.70899470899471, "isTopResearch": false, "rank": 117, "sp500_rank": 58}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [16, 28, 42, 50, 77, 60, 72, 102, 113, 85, 5], "total": 650, "isTopResearch": false, "rank": 238, "sp500_rank": 128}, "cv_pubs": {"counts": [1, 2, 1, 0, 2, 3, 1, 3, 5, 2, 0], "total": 20, "isTopResearch": true, "rank": 139, "sp500_rank": 87}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 3, 1, 1, 0, 1, 2, 3, 1, 0], "total": 12, "isTopResearch": true, "rank": 102, "sp500_rank": 75}, "citations_per_article": {"counts": [5.333333333333333, 9.333333333333334, 10.5, 25.0, 12.833333333333334, 10.0, 18.0, 14.571428571428571, 12.555555555555555, 17.0, 0], "total": 13.26530612244898, "isTopResearch": false, "rank": 440, "sp500_rank": 148}}, "patents": {"ai_patents": {"counts": [2, 7, 2, 0, 7, 14, 37, 59, 19, 0, 0], "total": 147, "table": null, "rank": 123, "sp500_rank": 82}, "ai_patents_growth": {"counts": [], "total": 107.91505791505791, "table": null, "rank": 105, "sp500_rank": 49}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [20, 70, 20, 0, 70, 140, 370, 590, 190, 0, 0], "total": 1470, "table": null, "rank": 123, "sp500_rank": 82}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 3, "table": "industry", "rank": 158, "sp500_rank": 91}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": null, "rank": 157, "sp500_rank": 102}, "Transportation": {"counts": [2, 6, 2, 0, 7, 11, 28, 47, 13, 0, 0], "total": 116, "table": "industry", "rank": 24, "sp500_rank": 19}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 0, 1, 0, 2, 1, 1, 0, 0], "total": 6, "table": "industry", "rank": 305, "sp500_rank": 156}, "Banking_and_Finance": {"counts": [0, 1, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 141, "sp500_rank": 91}, "Telecommunications": {"counts": [0, 0, 1, 0, 0, 2, 6, 6, 6, 0, 0], "total": 21, "table": "industry", "rank": 132, "sp500_rank": 84}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 76, "sp500_rank": 67}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 139, "sp500_rank": 81}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [1, 3, 1, 0, 7, 8, 27, 25, 3, 0, 0], "total": 75, "table": "application", "rank": 40, "sp500_rank": 32}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 1, 0, 2, 4, 7, 13, 6, 0, 0], "total": 34, "table": "application", "rank": 141, "sp500_rank": 87}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 173, "sp500_rank": 114}, "Measuring_and_Testing": {"counts": [0, 3, 1, 0, 1, 3, 5, 17, 4, 0, 0], "total": 34, "table": "application", "rank": 58, "sp500_rank": 44}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 302, "rank": 591, "sp500_rank": 256}, "ai_jobs": {"counts": null, "total": 23, "rank": 656, "sp500_rank": 272}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 2802, "country": "United States", "website": "http://usfoods.com/", "crunchbase": {"text": "828e1492-372b-a957-c8d8-fe2866c74f33", "url": "https://www.crunchbase.com/organization/us-foods"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/usfoods"], "stage": "Mature", "name": "US Foods Holding Corp", "patent_name": "us foods holding corp", "continent": "North America", "local_logo": "us_foods_holding_corp.png", "aliases": "Us Foods; Us Foods U00Ae; Us Foods, Inc", "permid_links": [{"text": 4298218064, "url": "https://permid.org/1-4298218064"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:USFD", "url": "https://www.google.com/finance/quote/nyse:usfd"}], "market_full": [{"text": "MEX:USFD", "url": "https://www.google.com/finance/quote/mex:usfd"}, {"text": "NYQ:USFD", "url": "https://www.google.com/finance/quote/nyq:usfd"}, {"text": "NYSE:USFD", "url": "https://www.google.com/finance/quote/nyse:usfd"}, {"text": "BRN:UFH", "url": "https://www.google.com/finance/quote/brn:ufh"}, {"text": "MCX:USFD-RM", "url": "https://www.google.com/finance/quote/mcx:usfd-rm"}], "crunchbase_description": "US Foods is a foodservice distributor that provides its customers with innovative food offerings and a suite of business solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 298, "rank": 592}, "ai_jobs": {"counts": null, "total": 30, "rank": 597}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing", "wikipedia_description": "US Foods (formerly known as U.S. Foodservice) is an American foodservice distributor. With approximately $24 billion in annual revenue, US Foods was the 10th largest private company in America until its IPO. Many of the entities that make up US Foods were founded in the 19th century, including one that sold provisions to travelers heading west during the 1850s gold rush. The company used the name U.S. Foodservice until 1993. US Foods offers more than 350,000 national brand products and its own \u201cexclusive brand\u201d items, ranging from fresh meats and produce to prepackaged and frozen foods. The company employs approximately 25,200 people in more than 60 locations nationwide, and provides food and related products to more than 250,000 customers, including independent and multi-unit restaurants, healthcare and hospitality entities, government and educational institutions. The company is headquartered in Rosemont, Illinois, and is a publicly held company trading under the ticker symbol USFD on the New York Stock Exchange.", "wikipedia_link": "https://en.wikipedia.org/wiki/US_Foods", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2800, "country": "United States", "website": "http://www.scires.com/", "crunchbase": {"text": "9821657f-d8ae-7c23-e2df-f61741b7136c", "url": "https://www.crunchbase.com/organization/scientific-research-corporation-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/scientific-research-corporation"], "stage": "Unknown", "name": "Scientific Research Corp", "patent_name": "scientific research corp", "continent": "North America", "local_logo": null, "aliases": "Scientific Research Corporation; Src", "permid_links": [{"text": 4296914221, "url": "https://permid.org/1-4296914221"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Scientific Research Corporation provides innovative solutions to the U.S. government, private industry, and international markets.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Ontology (information science)", "field_count": 1}], "clusters": [{"cluster_id": 24979, "cluster_count": 1}, {"cluster_id": 4634, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "video_surveillance", "task_count": 2}, {"referent": "clustering", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "dueling_network", "method_count": 1}, {"referent": "hit_detector", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 1, 0, 1, 2, 0, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 1, 1, 4, 33, 43, 57, 82, 55, 0], "total": 276, "isTopResearch": false, "rank": 342}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 4.0, 0, 0, 0, 0, 0, 0], "total": 276.0, "isTopResearch": false, "rank": 6}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 297, "rank": 593}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Scientific Research Corporation was founded in 1988 to provide innovative solutions to the U.S. Government, private industry, and international markets. Since its inception, SRC has continued to successfully meet emerging challenges in the marketplace and consistently deliver the highest quality products and technical services to its customers.", "company_site_link": "https://www.scires.com/Who-We-Are/Who-We-Are", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2022, "country": "United Kingdom", "website": "https://www.centrica.com/", "crunchbase": {"text": " 3fa97e9e-88b8-1801-a982-bbad813e81c1 ", "url": " https://www.crunchbase.com/organization/centrica "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/centrica"], "stage": "Mature", "name": "Centrica", "patent_name": "Centrica", "continent": "Europe", "local_logo": null, "aliases": "Centrica; Centrica Plc", "permid_links": [{"text": 4295894725, "url": "https://permid.org/1-4295894725"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:75XN", "url": "https://www.google.com/finance/quote/75XN:LSE"}, {"text": "DUS:CENB", "url": "https://www.google.com/finance/quote/CENB:DUS"}, {"text": "LSE:76QM", "url": "https://www.google.com/finance/quote/76QM:LSE"}, {"text": "LSE:CNA", "url": "https://www.google.com/finance/quote/CNA:LSE"}, {"text": "DEU:CNA", "url": "https://www.google.com/finance/quote/CNA:DEU"}, {"text": "FRA:CENN", "url": "https://www.google.com/finance/quote/CENN:FRA"}, {"text": "PKC:CPYYY", "url": "https://www.google.com/finance/quote/CPYYY:PKC"}, {"text": "BRN:CENB", "url": "https://www.google.com/finance/quote/BRN:CENB"}, {"text": "STU:CENB", "url": "https://www.google.com/finance/quote/CENB:STU"}, {"text": "FRA:CENB", "url": "https://www.google.com/finance/quote/CENB:FRA"}, {"text": "BER:CENB", "url": "https://www.google.com/finance/quote/BER:CENB"}, {"text": "MUN:CENB", "url": "https://www.google.com/finance/quote/CENB:MUN"}, {"text": "DEU:CENN", "url": "https://www.google.com/finance/quote/CENN:DEU"}, {"text": "PKC:CPYYF", "url": "https://www.google.com/finance/quote/CPYYF:PKC"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}], "clusters": [{"cluster_id": 10999, "cluster_count": 1}, {"cluster_id": 91399, "cluster_count": 1}, {"cluster_id": 46779, "cluster_count": 1}, {"cluster_id": 24613, "cluster_count": 1}, {"cluster_id": 49570, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 7}, {"ref_CSET_id": 785, "referenced_count": 2}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 795, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "clustering", "task_count": 2}, {"referent": "system_identification", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "music_emotion_recognition", "task_count": 1}, {"referent": "multi_task_learning", "task_count": 1}, {"referent": "horizon_line_estimation", "task_count": 1}, {"referent": "automl", "task_count": 1}, {"referent": "named_entity_recognition", "task_count": 1}, {"referent": "intent_detection", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "vqa_models", "method_count": 1}, {"referent": "memory_network", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "word_embeddings", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [5, 10, 5, 11, 11, 4, 7, 5, 2, 2, 0], "total": 62, "isTopResearch": false, "rank": 588, "sp500_rank": 320}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "sp500_rank": 262}, "ai_publications_growth": {"counts": [], "total": -33.333333333333336, "isTopResearch": false, "rank": 1404, "sp500_rank": 386}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 2, 2, 9, 14, 20, 2], "total": 49, "isTopResearch": false, "rank": 586, "sp500_rank": 254}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 2.0, 2.0, 9.0, 14.0, 0, 0], "total": 9.8, "isTopResearch": false, "rank": 547, "sp500_rank": 204}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 3, 1, 0, 0, 0], "total": 5, "table": null, "rank": 525, "sp500_rank": 225}, "ai_patents_growth": {"counts": [], "total": 66.66666666666666, "table": null, "rank": 164, "sp500_rank": 79}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 30, 10, 0, 0, 0], "total": 50, "table": null, "rank": 525, "sp500_rank": 225}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 105, "sp500_rank": 81}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 97, "sp500_rank": 78}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 212, "sp500_rank": 129}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 296, "rank": 594, "sp500_rank": 257}, "ai_jobs": {"counts": null, "total": 43, "rank": 508, "sp500_rank": 238}}, "sector": "Utilities", "business_sector": "Utilities"}, {"cset_id": 625, "country": "United States", "website": "http://pandora.com", "crunchbase": {"text": "aeec75a9-d7a3-71e6-94ff-4e5ce16b4d0d", "url": "https://www.crunchbase.com/organization/pandora"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pandora"], "stage": "Mature", "name": "Pandora", "patent_name": "pandora", "continent": "North America", "local_logo": "pandora.png", "aliases": "Pandora Interactive; Pandora Media, Inc; Pandora Media, Llc; Savage Beast Technologies", "permid_links": [{"text": 4297005994, "url": "https://permid.org/1-4297005994"}], "parent_info": "Sirius XM Radio (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:P", "url": "https://www.google.com/finance/quote/nyse:p"}], "market_full": [{"text": "LON:0NQC", "url": "https://www.google.com/finance/quote/0nqc:lon"}, {"text": "DUS:3P7", "url": "https://www.google.com/finance/quote/3p7:dus"}, {"text": "HAN:3P7", "url": "https://www.google.com/finance/quote/3p7:han"}, {"text": "MUN:3P7", "url": "https://www.google.com/finance/quote/3p7:mun"}, {"text": "BER:3P7", "url": "https://www.google.com/finance/quote/3p7:ber"}, {"text": "BMV:PNDORAN", "url": "https://www.google.com/finance/quote/bmv:pndoran"}, {"text": "XETR:3P7", "url": "https://www.google.com/finance/quote/3p7:xetr"}, {"text": "FWB:3P7", "url": "https://www.google.com/finance/quote/3p7:fwb"}, {"text": "FRA:3P7", "url": "https://www.google.com/finance/quote/3p7:fra"}, {"text": "OTC:PANDY", "url": "https://www.google.com/finance/quote/otc:pandy"}, {"text": "NYSE:P", "url": "https://www.google.com/finance/quote/nyse:p"}], "crunchbase_description": "Pandora provides internet radio and recommendation services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Evolutionary algorithm", "field_count": 1}, {"field_name": "Keyword spotting", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}, {"field_name": "Music informatics", "field_count": 1}], "clusters": [{"cluster_id": 3758, "cluster_count": 4}, {"cluster_id": 148, "cluster_count": 3}, {"cluster_id": 24105, "cluster_count": 2}, {"cluster_id": 14994, "cluster_count": 2}, {"cluster_id": 206, "cluster_count": 1}, {"cluster_id": 68849, "cluster_count": 1}, {"cluster_id": 20690, "cluster_count": 1}, {"cluster_id": 4213, "cluster_count": 1}, {"cluster_id": 746, "cluster_count": 1}, {"cluster_id": 10485, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 14}, {"ref_CSET_id": 792, "referenced_count": 12}, {"ref_CSET_id": 625, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 7}, {"ref_CSET_id": 176, "referenced_count": 4}, {"ref_CSET_id": 617, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 1126, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 1}], "tasks": [{"referent": "recommendation", "task_count": 5}, {"referent": "classification", "task_count": 3}, {"referent": "music_genre_recognition", "task_count": 3}, {"referent": "multi_task_learning", "task_count": 2}, {"referent": "music_information_retrieval", "task_count": 2}, {"referent": "recommendation_systems", "task_count": 2}, {"referent": "mir", "task_count": 2}, {"referent": "retrieval", "task_count": 1}, {"referent": "cross_modal_retrieval", "task_count": 1}, {"referent": "text_to_image", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 3}, {"referent": "sequential", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "hierarchical_vae", "method_count": 1}, {"referent": "non_parametric_regression", "method_count": 1}, {"referent": "generalized_linear_models", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "multi_attention_network", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "graphsage", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 2, 6, 4, 7, 8, 9, 3, 4, 1, 0], "total": 46, "isTopResearch": false, "rank": 633}, "ai_publications": {"counts": [0, 0, 2, 1, 3, 6, 3, 2, 1, 0, 0], "total": 18, "isTopResearch": false, "rank": 321}, "ai_publications_growth": {"counts": [], "total": -61.111111111111114, "isTopResearch": false, "rank": 1512}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [0, 0, 1, 2, 20, 46, 138, 169, 209, 113, 2], "total": 700, "isTopResearch": false, "rank": 229}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0.5, 2.0, 6.666666666666667, 7.666666666666667, 46.0, 84.5, 209.0, 0, 0], "total": 38.888888888888886, "isTopResearch": false, "rank": 138}}, "patents": {"ai_patents": {"counts": [0, 1, 2, 0, 1, 0, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 20, 0, 10, 0, 0, 0, 0, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 60}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 294, "rank": 595}, "ai_jobs": {"counts": null, "total": 26, "rank": 639}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Pandora is a leading music and podcast discovery platform, providing a highly-personalized listening experience to approximately 70 million users each month with its proprietary Music Genome Project\u00ae and Podcast Genome Project\u00ae technology - whether at home or on the go - through its mobile app, the web, and integrations with more than 2,000 connected products. As the largest streaming music provider in the U.S., with an industry-leading digital audio advertising platform, Pandora connects listeners with the audio entertainment they love. Pandora is a subsidiary of Sirius XM Holdings Inc. (NASDAQ: SIRI). Together, Pandora and SiriusXM have created the world's largest audio entertainment company.", "company_site_link": "https://www.pandora.com/about", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2113, "country": "Switzerland", "website": "http://www.coop.ch/", "crunchbase": {"text": "8e7e338d-3cf1-dc55-21dd-6ab55ae2fab0", "url": "https://www.crunchbase.com/organization/coop"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-co-op-group"], "stage": "Mature", "name": "Coop Group", "patent_name": "Coop Group", "continent": "Europe", "local_logo": "coop_group.png", "aliases": "Coop Genossenschaft; Coop Group; Coop Societ\u00e0 Cooperativa; Coop Soci\u00e9t\u00e9 Coop\u00e9rative; Coop-Gruppe; Coop-Gruppe Genossenschaft", "permid_links": [{"text": 4296549687, "url": "https://permid.org/1-4296549687"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:42TF", "url": "https://www.google.com/finance/quote/42TF:LSE"}], "crunchbase_description": "The Coop Group comprises retail companies in Switzerland and wholesale companies in Switzerland and abroad.", "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 293, "rank": 596, "sp500_rank": 258}, "ai_jobs": {"counts": null, "total": 43, "rank": 508, "sp500_rank": 238}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers"}, {"cset_id": 2051, "country": "Canada", "website": "https://www.enbridge.com/", "crunchbase": {"text": " 25cf43a7-dab6-d9c5-6204-70a262a8b94d", "url": " https://www.crunchbase.com/organization/enbridge"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/enbridge"], "stage": "Mature", "name": "Enbridge", "patent_name": "Enbridge", "continent": "North America", "local_logo": null, "aliases": "Enbridge; Enbridge Inc", "permid_links": [{"text": 4295860623, "url": "https://permid.org/1-4295860623"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ENBA", "url": "https://www.google.com/finance/quote/ENBA:NYSE"}, {"text": "NYSE:ENB", "url": "https://www.google.com/finance/quote/ENB:NYSE"}], "market_full": [{"text": "MUN:EN3", "url": "https://www.google.com/finance/quote/EN3:MUN"}, {"text": "DUS:EN3", "url": "https://www.google.com/finance/quote/DUS:EN3"}, {"text": "TOR:ENB.PR.H", "url": "https://www.google.com/finance/quote/ENB.PR.H:TOR"}, {"text": "NYSE:ENBA", "url": "https://www.google.com/finance/quote/ENBA:NYSE"}, {"text": "BER:EN3", "url": "https://www.google.com/finance/quote/BER:EN3"}, {"text": "PKC:EBBNF", "url": "https://www.google.com/finance/quote/EBBNF:PKC"}, {"text": "PKC:EBGEF", "url": "https://www.google.com/finance/quote/EBGEF:PKC"}, {"text": "TOR:ENB.PF.V", "url": "https://www.google.com/finance/quote/ENB.PF.V:TOR"}, {"text": "TOR:ENB.PF.K", "url": "https://www.google.com/finance/quote/ENB.PF.K:TOR"}, {"text": "DEU:ENBD", "url": "https://www.google.com/finance/quote/DEU:ENBD"}, {"text": "TOR:ENB.PR.V", "url": "https://www.google.com/finance/quote/ENB.PR.V:TOR"}, {"text": "TOR:ENB.PR.A", "url": "https://www.google.com/finance/quote/ENB.PR.A:TOR"}, {"text": "PKC:EBPPF", "url": "https://www.google.com/finance/quote/EBPPF:PKC"}, {"text": "TOR:ENB.PR.B", "url": "https://www.google.com/finance/quote/ENB.PR.B:TOR"}, {"text": "TOR:ENB.PF.C", "url": "https://www.google.com/finance/quote/ENB.PF.C:TOR"}, {"text": "NYQ:ENBA", "url": "https://www.google.com/finance/quote/ENBA:NYQ"}, {"text": "TOR:ENB.PR.Y", "url": "https://www.google.com/finance/quote/ENB.PR.Y:TOR"}, {"text": "TOR:ENB.PF.E", "url": "https://www.google.com/finance/quote/ENB.PF.E:TOR"}, {"text": "STU:EN3", "url": "https://www.google.com/finance/quote/EN3:STU"}, {"text": "PKC:EBRZF", "url": "https://www.google.com/finance/quote/EBRZF:PKC"}, {"text": "TOR:ENB.PR.F", "url": "https://www.google.com/finance/quote/ENB.PR.F:TOR"}, {"text": "PKC:ENBBF", "url": "https://www.google.com/finance/quote/ENBBF:PKC"}, {"text": "ASE:ENB", "url": "https://www.google.com/finance/quote/ASE:ENB"}, {"text": "FRA:EN3", "url": "https://www.google.com/finance/quote/EN3:FRA"}, {"text": "TOR:ENB.PR.N", "url": "https://www.google.com/finance/quote/ENB.PR.N:TOR"}, {"text": "TOR:ENB", "url": "https://www.google.com/finance/quote/ENB:TOR"}, {"text": "PKC:ENBGF", "url": "https://www.google.com/finance/quote/ENBGF:PKC"}, {"text": "TOR:ENB.PR.J", "url": "https://www.google.com/finance/quote/ENB.PR.J:TOR"}, {"text": "PKC:ENBFF", "url": "https://www.google.com/finance/quote/ENBFF:PKC"}, {"text": "TOR:ENB.PF.A", "url": "https://www.google.com/finance/quote/ENB.PF.A:TOR"}, {"text": "TOR:ENB.PR.C", "url": "https://www.google.com/finance/quote/ENB.PR.C:TOR"}, {"text": "PKC:ENNPF", "url": "https://www.google.com/finance/quote/ENNPF:PKC"}, {"text": "PKC:EBBGF", "url": "https://www.google.com/finance/quote/EBBGF:PKC"}, {"text": "TOR:ENB.PR.U", "url": "https://www.google.com/finance/quote/ENB.PR.U:TOR"}, {"text": "TOR:ENB.PF.U", "url": "https://www.google.com/finance/quote/ENB.PF.U:TOR"}, {"text": "TOR:ENB.PR.P", "url": "https://www.google.com/finance/quote/ENB.PR.P:TOR"}, {"text": "TOR:ENB.PR.T", "url": "https://www.google.com/finance/quote/ENB.PR.T:TOR"}, {"text": "TOR:ENB.PF.G", "url": "https://www.google.com/finance/quote/ENB.PF.G:TOR"}, {"text": "ASE:ENBA", "url": "https://www.google.com/finance/quote/ASE:ENBA"}, {"text": "LSE:0KTI", "url": "https://www.google.com/finance/quote/0KTI:LSE"}, {"text": "NYQ:ENB", "url": "https://www.google.com/finance/quote/ENB:NYQ"}, {"text": "TOR:ENB.PR.D", "url": "https://www.google.com/finance/quote/ENB.PR.D:TOR"}, {"text": "PKC:EBRGF", "url": "https://www.google.com/finance/quote/EBRGF:PKC"}, {"text": "NYSE:ENB", "url": "https://www.google.com/finance/quote/ENB:NYSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Pattern recognition (psychology)", "field_count": 2}, {"field_name": "Semantic Web", "field_count": 1}, {"field_name": "Smoothing", "field_count": 1}, {"field_name": "Information extraction", "field_count": 1}], "clusters": [{"cluster_id": 18847, "cluster_count": 1}, {"cluster_id": 16779, "cluster_count": 1}, {"cluster_id": 14308, "cluster_count": 1}, {"cluster_id": 97786, "cluster_count": 1}, {"cluster_id": 571, "cluster_count": 1}, {"cluster_id": 17559, "cluster_count": 1}, {"cluster_id": 26121, "cluster_count": 1}, {"cluster_id": 54607, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 798, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "skills_assessment", "task_count": 2}, {"referent": "classification", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "3d_shape_recognition", "task_count": 1}, {"referent": "sentiment_detection", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "image_quality_estimation", "task_count": 1}, {"referent": "information_extraction", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "multiple_sequence_alignment", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 3}, {"referent": "mad_learning", "method_count": 3}, {"referent": "probabilistic_anchor_assignment", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "fourier_related_transforms", "method_count": 1}, {"referent": "adashift", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [8, 55, 12, 57, 37, 60, 32, 69, 35, 11, 0], "total": 376, "isTopResearch": false, "rank": 324, "sp500_rank": 212}, "ai_publications": {"counts": [0, 2, 0, 1, 1, 1, 1, 2, 0, 0, 0], "total": 8, "isTopResearch": false, "rank": 455, "sp500_rank": 233}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 3, 2, 1, 3, 5, 4, 0], "total": 18, "isTopResearch": false, "rank": 695, "sp500_rank": 287}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0.0, 0, 0.0, 3.0, 2.0, 1.0, 1.5, 0, 0, 0], "total": 2.25, "isTopResearch": false, "rank": 820, "sp500_rank": 326}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 293, "rank": 596, "sp500_rank": 258}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "sp500_rank": 255}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2248, "country": "United States", "website": "http://www.cboe.com/", "crunchbase": {"text": "b435fa2f-358e-4846-8dd8-9c6fe129d58f", "url": "https://www.crunchbase.com/organization/bats-global-markets"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cboe"], "stage": "Mature", "name": "Cboe Global Markets", "patent_name": "cboe global markets", "continent": "North America", "local_logo": "cboe_global_markets.png", "aliases": "Cboe; Cboe Exchange, Inc; Cboe Global Markets, Inc", "permid_links": [{"text": 4296212311, "url": "https://permid.org/1-4296212311"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CBOE", "url": "https://www.google.com/finance/quote/cboe:nyse"}], "market_full": [{"text": "FRA:C67", "url": "https://www.google.com/finance/quote/c67:fra"}, {"text": "BER:C67", "url": "https://www.google.com/finance/quote/ber:c67"}, {"text": "BATS:CBOE", "url": "https://www.google.com/finance/quote/bats:cboe"}, {"text": "SAO:C1B034", "url": "https://www.google.com/finance/quote/c1b034:sao"}, {"text": "HAN:C67", "url": "https://www.google.com/finance/quote/c67:han"}, {"text": "ASE:CBOE", "url": "https://www.google.com/finance/quote/ase:cboe"}, {"text": "NYSE:CBOE", "url": "https://www.google.com/finance/quote/cboe:nyse"}, {"text": "STU:C67", "url": "https://www.google.com/finance/quote/c67:stu"}, {"text": "MUN:C67", "url": "https://www.google.com/finance/quote/c67:mun"}, {"text": "LSE:0HQN", "url": "https://www.google.com/finance/quote/0hqn:lse"}, {"text": "DEU:CBOE", "url": "https://www.google.com/finance/quote/cboe:deu"}, {"text": "MEX:CBOE*", "url": "https://www.google.com/finance/quote/cboe*:mex"}], "crunchbase_description": "Cboe Global Markets is an operator of stock and options markets in the U.S. and Europe.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 293, "rank": 596, "fortune500_rank": 320}, "ai_jobs": {"counts": null, "total": 19, "rank": 706, "fortune500_rank": 356}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Cboe Global Markets is an American company that owns the Chicago Board Options Exchange and the stock exchange operator BATS Global Markets.", "wikipedia_link": "https://en.wikipedia.org/wiki/Cboe_Global_Markets", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2320, "country": "United States", "website": "https://www.firstenergycorp.com/", "crunchbase": {"text": "6d987ad4-8b99-dc4f-fccf-c44d1fa66c1d", "url": "https://www.crunchbase.com/organization/firstenergy-corp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/firstenergy-corp"], "stage": "Mature", "name": "FirstEnergy Corp", "patent_name": "firstenergy corp", "continent": "North America", "local_logo": "firstenergy_corp.png", "aliases": "Firstenergy", "permid_links": [{"text": 4295903132, "url": "https://permid.org/1-4295903132"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:FE", "url": "https://www.google.com/finance/quote/fe:nyse"}], "market_full": [{"text": "DUS:FE7", "url": "https://www.google.com/finance/quote/dus:fe7"}, {"text": "LSE:0IPB", "url": "https://www.google.com/finance/quote/0ipb:lse"}, {"text": "MOEX:FE-RM", "url": "https://www.google.com/finance/quote/fe-rm:moex"}, {"text": "MUN:FE7", "url": "https://www.google.com/finance/quote/fe7:mun"}, {"text": "ASE:FE", "url": "https://www.google.com/finance/quote/ase:fe"}, {"text": "NYQ:FE", "url": "https://www.google.com/finance/quote/fe:nyq"}, {"text": "GER:FE7X", "url": "https://www.google.com/finance/quote/fe7x:ger"}, {"text": "FRA:FE7", "url": "https://www.google.com/finance/quote/fe7:fra"}, {"text": "BER:FE7", "url": "https://www.google.com/finance/quote/ber:fe7"}, {"text": "MEX:FE", "url": "https://www.google.com/finance/quote/fe:mex"}, {"text": "SAO:F1EC34", "url": "https://www.google.com/finance/quote/f1ec34:sao"}, {"text": "BRN:FE7", "url": "https://www.google.com/finance/quote/brn:fe7"}, {"text": "DEU:FE", "url": "https://www.google.com/finance/quote/deu:fe"}, {"text": "NYSE:FE", "url": "https://www.google.com/finance/quote/fe:nyse"}, {"text": "STU:FE7", "url": "https://www.google.com/finance/quote/fe7:stu"}], "crunchbase_description": "FirstEnergy (NYSE: FE) is a diversified energy company dedicated to safety, reliability and operational excellence.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063, "fortune500_rank": 359}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 291, "rank": 599, "fortune500_rank": 321}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "fortune500_rank": 294}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "FirstEnergy Corp is an electric utility headquartered in Akron, Ohio. Its subsidiaries and affiliates are involved in the distribution, transmission, and generation of electricity, as well as energy management and other energy-related services. Its ten electric utility operating companies comprise one of the United States' largest investor-owned utilities, based on serving 6 million customers within a 65,000-square-mile (170,000 km2) area of Ohio, Pennsylvania, West Virginia, Virginia, Maryland, New Jersey and New York. Its generation subsidiaries control more than 16,000 megawatts of capacity, and its distribution lines span over 194,000 miles. In 2018, FirstEnergy ranked 219 on the Fortune 500 list of the largest public corporations in the United States by revenue.", "wikipedia_link": "https://en.wikipedia.org/wiki/FirstEnergy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2372, "country": "United States", "website": "http://www.invesco.com/", "crunchbase": {"text": "9e15e97c-4689-e5f5-34eb-fbc2edc50d49", "url": "https://www.crunchbase.com/organization/invesco-perpetual"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/invesco-ltd"], "stage": "Mature", "name": "Invesco Ltd.", "patent_name": "invesco ltd.", "continent": "North America", "local_logo": "invesco_ltd.png", "aliases": "Invesco", "permid_links": [{"text": 4298042021, "url": "https://permid.org/1-4298042021"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:IVZ", "url": "https://www.google.com/finance/quote/ivz:nyse"}], "market_full": [{"text": "BER:3IW", "url": "https://www.google.com/finance/quote/3iw:ber"}, {"text": "NYSE:IVZ", "url": "https://www.google.com/finance/quote/ivz:nyse"}, {"text": "FRA:3IW", "url": "https://www.google.com/finance/quote/3iw:fra"}, {"text": "STU:3IW", "url": "https://www.google.com/finance/quote/3iw:stu"}, {"text": "DEU:3IW", "url": "https://www.google.com/finance/quote/3iw:deu"}, {"text": "DUS:3IW", "url": "https://www.google.com/finance/quote/3iw:dus"}, {"text": "NYQ:IVZ", "url": "https://www.google.com/finance/quote/ivz:nyq"}, {"text": "BRN:0UAN", "url": "https://www.google.com/finance/quote/0uan:brn"}, {"text": "MUN:3IW", "url": "https://www.google.com/finance/quote/3iw:mun"}], "crunchbase_description": "Invesco is an independent investment management firm delivering an investment experience designed to help people get more out of life.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Linear model", "field_count": 1}], "clusters": [{"cluster_id": 230, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 337, "referenced_count": 1}], "tasks": [], "methods": [{"referent": "generalized_linear_models", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 3, 6, 2, 10, 2, 2, 0], "total": 26, "isTopResearch": false, "rank": 744, "fortune500_rank": 265}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 3, 3, 0], "total": 8, "isTopResearch": false, "rank": 782, "fortune500_rank": 210}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 1.0, 0, 0, 0], "total": 8.0, "isTopResearch": false, "rank": 595, "fortune500_rank": 171}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 290, "rank": 600, "fortune500_rank": 322}, "ai_jobs": {"counts": null, "total": 57, "rank": 455, "fortune500_rank": 240}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2298, "country": "United States", "website": "http://www.eastman.com/", "crunchbase": {"text": "35dd55d4-c413-ea3a-000d-9ef314c67a44", "url": "https://www.crunchbase.com/organization/eastman-chemical-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/eastman"], "stage": "Mature", "name": "Eastman Chemical", "patent_name": "eastman chemical", "continent": "North America", "local_logo": "eastman_chemical.png", "aliases": "Eastman; Eastman Chemical Co; Eastman Chemical Company", "permid_links": [{"text": 4295903892, "url": "https://permid.org/1-4295903892"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EMN", "url": "https://www.google.com/finance/quote/emn:nyse"}], "market_full": [{"text": "MOEX:EMN-RM", "url": "https://www.google.com/finance/quote/emn-rm:moex"}, {"text": "MUN:EAC", "url": "https://www.google.com/finance/quote/eac:mun"}, {"text": "BRN:EAC", "url": "https://www.google.com/finance/quote/brn:eac"}, {"text": "MEX:EMN", "url": "https://www.google.com/finance/quote/emn:mex"}, {"text": "STU:EAC", "url": "https://www.google.com/finance/quote/eac:stu"}, {"text": "LSE:0IF3", "url": "https://www.google.com/finance/quote/0if3:lse"}, {"text": "FRA:EAC", "url": "https://www.google.com/finance/quote/eac:fra"}, {"text": "ASE:EMN", "url": "https://www.google.com/finance/quote/ase:emn"}, {"text": "NYSE:EMN", "url": "https://www.google.com/finance/quote/emn:nyse"}, {"text": "DEU:EMN", "url": "https://www.google.com/finance/quote/deu:emn"}, {"text": "SAO:E1MN34", "url": "https://www.google.com/finance/quote/e1mn34:sao"}, {"text": "NYQ:EMN", "url": "https://www.google.com/finance/quote/emn:nyq"}, {"text": "BER:EAC", "url": "https://www.google.com/finance/quote/ber:eac"}, {"text": "DUS:EAC", "url": "https://www.google.com/finance/quote/dus:eac"}], "crunchbase_description": "Eastman Chemical Company (Eastman) is a global specialty chemicals company that produces a range of advanced materials, chemicals.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 16433, "cluster_count": 1}, {"cluster_id": 8655, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 3024, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [53, 46, 53, 90, 51, 68, 46, 38, 31, 28, 1], "total": 505, "isTopResearch": false, "rank": 277, "fortune500_rank": 108}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0], "total": 4, "isTopResearch": false, "rank": 833, "fortune500_rank": 228}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0.0, 0, 2.0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "fortune500_rank": 217}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 289, "rank": 601, "fortune500_rank": 323}, "ai_jobs": {"counts": null, "total": 48, "rank": 490, "fortune500_rank": 259}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "Eastman Chemical Company is an American company primarily involved in the chemical industry. Once a subsidiary of Kodak, today it is an independent global specialty materials company that produces a broad range of advanced materials, chemicals and fibers for everyday purposes. Founded in 1920 and based in Kingsport, Tennessee, the company now has more than 50 manufacturing sites worldwide and employs approximately 14,500 people.", "wikipedia_link": "https://en.wikipedia.org/wiki/Eastman_Chemical_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2420, "country": "United States", "website": "https://www.moodys.com/", "crunchbase": {"text": "200c9189-b5a5-3e8c-6978-cc067713c3db", "url": "https://www.crunchbase.com/organization/moodys-investors-service"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/moodys-corporation"], "stage": "Mature", "name": "Moody's Corp", "patent_name": "moody's corp", "continent": "North America", "local_logo": "moody's_corp.png", "aliases": "Moody's; Moody's Investors Service; Moody\u2019S Investors Service, Inc", "permid_links": [{"text": 8589934244, "url": "https://permid.org/1-8589934244"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MCO", "url": "https://www.google.com/finance/quote/mco:nyse"}], "market_full": [{"text": "HAN:DUT", "url": "https://www.google.com/finance/quote/dut:han"}, {"text": "DEU:MCO", "url": "https://www.google.com/finance/quote/deu:mco"}, {"text": "DUS:DUT", "url": "https://www.google.com/finance/quote/dus:dut"}, {"text": "SAO:MCOR34", "url": "https://www.google.com/finance/quote/mcor34:sao"}, {"text": "ASE:MCO", "url": "https://www.google.com/finance/quote/ase:mco"}, {"text": "LSE:0K36", "url": "https://www.google.com/finance/quote/0k36:lse"}, {"text": "BER:DUT", "url": "https://www.google.com/finance/quote/ber:dut"}, {"text": "VIE:MOCO", "url": "https://www.google.com/finance/quote/moco:vie"}, {"text": "STU:DUT", "url": "https://www.google.com/finance/quote/dut:stu"}, {"text": "BRN:DUT", "url": "https://www.google.com/finance/quote/brn:dut"}, {"text": "MEX:MCO*", "url": "https://www.google.com/finance/quote/mco*:mex"}, {"text": "NYQ:MCO", "url": "https://www.google.com/finance/quote/mco:nyq"}, {"text": "MUN:DUT", "url": "https://www.google.com/finance/quote/dut:mun"}, {"text": "MCX:MCO-RM", "url": "https://www.google.com/finance/quote/mco-rm:mcx"}, {"text": "NYSE:MCO", "url": "https://www.google.com/finance/quote/mco:nyse"}, {"text": "FRA:DUT", "url": "https://www.google.com/finance/quote/dut:fra"}], "crunchbase_description": "Moody's Investors Service is a bond credit rating business that provides research, credit rating, and financial risk analysis services. ", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 4, 0, 0, 0, 2, 2, 1, 1, 0, 0], "total": 15, "isTopResearch": false, "rank": 859, "fortune500_rank": 305}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 287, "rank": 602, "fortune500_rank": 324}, "ai_jobs": {"counts": null, "total": 34, "rank": 564, "fortune500_rank": 289}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Moody's Corporation, often referred to as Moody's, is an American business and financial services company. It is the holding company for Moody's Investors Service (MIS), an American credit rating agency, and Moody's Analytics (MA), an American provider of financial analysis software and services.", "wikipedia_link": "https://en.wikipedia.org/wiki/Moody%27s_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2141, "country": "China", "website": "https://smart-home.haier.com/", "crunchbase": {"text": "a16bae74-c342-bd61-bee3-8e7d4209bb54", "url": "https://www.crunchbase.com/organization/haier"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/haier"], "stage": "Mature", "name": "Haier Smart Home", "patent_name": "Haier Smart Home", "continent": "Asia", "local_logo": "haier_smart_home.png", "aliases": "Haier Smart Home; Qingdao Refrigerator Factory; \u6d77\u5c14\u667a\u5bb6; \u6d77\u5c14\u667a\u5bb6\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295863648, "url": "https://permid.org/1-4295863648"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:6690", "url": "https://www.google.com/finance/quote/6690:HKG"}], "market_full": [{"text": "DUS:690D", "url": "https://www.google.com/finance/quote/690D:DUS"}, {"text": "HKG.HS:6690", "url": "https://www.google.com/finance/quote/6690:HKG.HS"}, {"text": "PKL:QIHCF", "url": "https://www.google.com/finance/quote/PKL:QIHCF"}, {"text": "HKG:6690", "url": "https://www.google.com/finance/quote/6690:HKG"}, {"text": "BER:690E", "url": "https://www.google.com/finance/quote/690E:BER"}, {"text": "SHH:600690", "url": "https://www.google.com/finance/quote/600690:SHH"}, {"text": "DEU:690D", "url": "https://www.google.com/finance/quote/690D:DEU"}, {"text": "BER:690D", "url": "https://www.google.com/finance/quote/690D:BER"}, {"text": "STU:690D", "url": "https://www.google.com/finance/quote/690D:STU"}, {"text": "MUN:690E", "url": "https://www.google.com/finance/quote/690E:MUN"}, {"text": "GER:690DX", "url": "https://www.google.com/finance/quote/690DX:GER"}, {"text": "MUN:690D", "url": "https://www.google.com/finance/quote/690D:MUN"}, {"text": "STU:690E", "url": "https://www.google.com/finance/quote/690E:STU"}, {"text": "PKC:HRSHF", "url": "https://www.google.com/finance/quote/HRSHF:PKC"}, {"text": "MUN:HAI0", "url": "https://www.google.com/finance/quote/HAI0:MUN"}, {"text": "HKG.HZ:6690", "url": "https://www.google.com/finance/quote/6690:HKG.HZ"}, {"text": "PKC:HSHCY", "url": "https://www.google.com/finance/quote/HSHCY:PKC"}, {"text": "DUS:690E", "url": "https://www.google.com/finance/quote/690E:DUS"}, {"text": "FRA:690D", "url": "https://www.google.com/finance/quote/690D:FRA"}], "crunchbase_description": "Haier is an appliances brand, launching a wide range of innovative products in all categories, including refrigerators and more.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Fuzzy logic", "field_count": 1}, {"field_name": "Frequency domain", "field_count": 1}, {"field_name": "Gesture", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Particle swarm optimization", "field_count": 1}, {"field_name": "Time series", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 6107, "cluster_count": 2}, {"cluster_id": 1055, "cluster_count": 1}, {"cluster_id": 8320, "cluster_count": 1}, {"cluster_id": 123267, "cluster_count": 1}, {"cluster_id": 3064, "cluster_count": 1}, {"cluster_id": 14113, "cluster_count": 1}, {"cluster_id": 54317, "cluster_count": 1}, {"cluster_id": 5197, "cluster_count": 1}, {"cluster_id": 6606, "cluster_count": 1}, {"cluster_id": 36961, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1749, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 201, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 348, "referenced_count": 1}], "tasks": [{"referent": "feature_selection", "task_count": 2}, {"referent": "non_intrusive_load_monitoring", "task_count": 2}, {"referent": "robots", "task_count": 2}, {"referent": "hand_gesture_recognition", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "load_forecasting", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "time_series", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}], "methods": [{"referent": "deep_belief_network", "method_count": 2}, {"referent": "emf", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "pyramidal_residual_unit", "method_count": 1}, {"referent": "subword_segmentation", "method_count": 1}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "double_dqn", "method_count": 1}, {"referent": "gru", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [11, 12, 12, 13, 7, 8, 17, 7, 32, 43, 3], "total": 165, "isTopResearch": false, "rank": 435, "sp500_rank": 260}, "ai_publications": {"counts": [3, 0, 0, 0, 0, 1, 3, 1, 1, 1, 0], "total": 10, "isTopResearch": false, "rank": 417, "sp500_rank": 218}, "ai_publications_growth": {"counts": [], "total": -22.222222222222225, "isTopResearch": false, "rank": 1344, "sp500_rank": 359}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [2, 4, 7, 10, 7, 6, 7, 18, 20, 19, 0], "total": 100, "isTopResearch": false, "rank": 504, "sp500_rank": 221}, "cv_pubs": {"counts": [2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0.6666666666666666, 0, 0, 0, 0, 6.0, 2.3333333333333335, 18.0, 20.0, 19.0, 0], "total": 10.0, "isTopResearch": false, "rank": 535, "sp500_rank": 198}}, "patents": {"ai_patents": {"counts": [1, 2, 4, 3, 2, 6, 24, 45, 55, 28, 0], "total": 170, "table": null, "rank": 116, "sp500_rank": 80}, "ai_patents_growth": {"counts": [], "total": 195.83333333333334, "table": null, "rank": 43, "sp500_rank": 17}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 20, 40, 30, 20, 60, 240, 450, 550, 280, 0], "total": 1700, "table": null, "rank": 116, "sp500_rank": 80}, "Physical_Sciences_and_Engineering": {"counts": [0, 2, 0, 0, 0, 0, 3, 9, 3, 2, 0], "total": 19, "table": "industry", "rank": 29, "sp500_rank": 24}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": null, "rank": 158, "sp500_rank": 91}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 2, 1, 0], "total": 5, "table": null, "rank": 128, "sp500_rank": 88}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 0, 1, 2, 4, 12, 14, 3, 0], "total": 37, "table": "industry", "rank": 19, "sp500_rank": 17}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 11, 11, 7, 0], "total": 30, "table": "industry", "rank": 152, "sp500_rank": 87}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 172, "sp500_rank": 111}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 2, 5, 5, 3, 0], "total": 15, "table": null, "rank": 143, "sp500_rank": 89}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 3, 0, 0, 0, 6, 6, 1, 0], "total": 16, "table": "industry", "rank": 119, "sp500_rank": 84}, "Energy_Management": {"counts": [0, 2, 1, 0, 0, 0, 9, 9, 6, 3, 0], "total": 30, "table": "industry", "rank": 20, "sp500_rank": 18}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 5, 8, 4, 0], "total": 17, "table": "application", "rank": 57, "sp500_rank": 43}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 3, 0, 0, 0, 6, 3, 0, 0], "total": 12, "table": "application", "rank": 113, "sp500_rank": 80}, "Control": {"counts": [0, 0, 1, 0, 1, 0, 4, 6, 0, 2, 0], "total": 14, "table": "application", "rank": 116, "sp500_rank": 84}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 2, 0, 3, 1, 4, 8, 19, 27, 11, 0], "total": 75, "table": "application", "rank": 85, "sp500_rank": 58}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0], "total": 3, "table": "application", "rank": 191, "sp500_rank": 121}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 286, "rank": 603, "sp500_rank": 260}, "ai_jobs": {"counts": null, "total": 21, "rank": 683, "sp500_rank": 275}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products"}, {"cset_id": 720, "country": "United States", "website": "https://www.deshaw.com/", "crunchbase": {"text": "02e93830-8ab7-72f7-67a8-256d816bf7e0", "url": "https://www.crunchbase.com/organization/d-e-shaw-co"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/d.-e.-shaw-&-co."], "stage": "Mature", "name": "The D. E. Shaw Group", "patent_name": "the d. e. shaw group", "continent": "North America", "local_logo": "the_d_e_shaw_group.png", "aliases": "D. E. Shaw & Co; D. E. Shaw & Co., L.P; D.E. Shaw; De Shaw Co", "permid_links": [{"text": 5000821227, "url": "https://permid.org/1-5000821227"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "The D. E. Shaw group is a global investment and technology development firm.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 5070, "cluster_count": 1}, {"cluster_id": 981, "cluster_count": 1}, {"cluster_id": 98012, "cluster_count": 1}, {"cluster_id": 14284, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 833, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 795, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 170, "referenced_count": 1}], "tasks": [{"referent": "network_pruning", "task_count": 1}, {"referent": "knowledge_distillation", "task_count": 1}, {"referent": "denoising", "task_count": 1}, {"referent": "model_compression", "task_count": 1}, {"referent": "unsupervised_domain_adaptation", "task_count": 1}, {"referent": "transfer_learning", "task_count": 1}, {"referent": "domain_adaptation", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 2}, {"referent": "dueling_network", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "resnet", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "dcgan", "method_count": 1}, {"referent": "adversarial_training", "method_count": 1}, {"referent": "value_function_estimation", "method_count": 1}, {"referent": "ltls", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 3, 2, 0, 0, 1, 2, 0, 2, 0], "total": 11, "isTopResearch": false, "rank": 924}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [1, 3, 3, 1, 1, 5, 20, 76, 178, 120, 5], "total": 413, "isTopResearch": false, "rank": 291}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 20.0, 76.0, 0, 0, 0], "total": 206.5, "isTopResearch": false, "rank": 13}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 285, "rank": 604}, "ai_jobs": {"counts": null, "total": 31, "rank": 589}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "The firm prizes a culture of collaboration across disciplines, geographies, and investment strategies. Experienced leadership and diversely talented minds chart our course. Analytical rigor, an open exploration of ideas, and a relentless pursuit of excellence drive us forward.", "company_site_link": "https://www.deshaw.com/who-we-are", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 89, "country": "Portugal", "website": "http://www.feedzai.com/", "crunchbase": {"text": "69d91137-499e-467f-ec47-c2e972e9e18a", "url": "https://www.crunchbase.com/organization/feedzai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/feedzai"], "stage": "Mature", "name": "Feedzai", "patent_name": "feedzai", "continent": "Europe", "local_logo": "feedzai.png", "aliases": "Feedzai Consultadoria E Inovacao Tecnologica Sa; Feedzai Inc", "permid_links": [{"text": 5052146316, "url": "https://permid.org/1-5052146316"}, {"text": 5042214062, "url": "https://permid.org/1-5042214062"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Feedzai develops risk management tools to prevent fraud and money laundering in transactions.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Hyperparameter", "field_count": 1}, {"field_name": "Active learning (machine learning)", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Automatic summarization", "field_count": 1}, {"field_name": "Contrast (statistics)", "field_count": 1}], "clusters": [{"cluster_id": 5109, "cluster_count": 2}, {"cluster_id": 4358, "cluster_count": 2}, {"cluster_id": 26896, "cluster_count": 1}, {"cluster_id": 1076, "cluster_count": 1}, {"cluster_id": 16162, "cluster_count": 1}, {"cluster_id": 4949, "cluster_count": 1}, {"cluster_id": 15496, "cluster_count": 1}, {"cluster_id": 6635, "cluster_count": 1}, {"cluster_id": 83253, "cluster_count": 1}, {"cluster_id": 54659, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 11}, {"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 89, "referenced_count": 4}, {"ref_CSET_id": 792, "referenced_count": 4}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 805, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 811, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "credit_card_fraud_detection", "task_count": 2}, {"referent": "image_annotation", "task_count": 2}, {"referent": "active_learning", "task_count": 1}, {"referent": "imbalanced_classification", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "time_series", "task_count": 1}, {"referent": "reasoning", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "mckernel", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "parameter_sharing", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "bijective_transformation", "method_count": 1}, {"referent": "hri_pipeline", "method_count": 1}, {"referent": "alp_gmm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 2, 3, 5, 1, 8, 4, 2, 0], "total": 26, "isTopResearch": false, "rank": 744}, "ai_publications": {"counts": [0, 0, 0, 2, 1, 1, 0, 5, 3, 1, 0], "total": 13, "isTopResearch": false, "rank": 375}, "ai_publications_growth": {"counts": [], "total": -53.333333333333336, "isTopResearch": false, "rank": 1504}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [0, 0, 0, 1, 4, 2, 6, 15, 51, 53, 3], "total": 135, "isTopResearch": false, "rank": 455}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.5, 4.0, 2.0, 0, 3.0, 17.0, 53.0, 0], "total": 10.384615384615385, "isTopResearch": false, "rank": 528}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 2, 9, 1, 0, 0], "total": 13, "table": null, "rank": 372}, "ai_patents_growth": {"counts": [], "total": 225.0, "table": null, "rank": 36}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 20, 90, 10, 0, 0], "total": 130, "table": null, "rank": 372}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 1, 4, 0, 0, 0], "total": 6, "table": "industry", "rank": 305}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 2, 4, 1, 0, 0], "total": 8, "table": "industry", "rank": 84}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 4, 0, 0, 0], "total": 5, "table": "application", "rank": 318}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 282, "rank": 605}, "ai_jobs": {"counts": null, "total": 80, "rank": 381}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Feedzai is a data science company that prevents, detects, and remediates fraud risk for financial institutions. The company develops real-time machine learning to analyze big data to identify fraudulent payment transactions and minimize risk in the financial services, retail, and eCommerce industries. The CEO of Feedzai is Nuno Sebasti\u00e3o Feedzai is headquartered in San Mateo, California, in the Silicon Valley.", "wikipedia_link": "https://en.wikipedia.org/wiki/Feedzai", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2771, "country": "United States", "website": "http://www.kiewit.com/", "crunchbase": {"text": "91a8b97c-b428-5aff-b6e0-57fc44008fdb", "url": "https://www.crunchbase.com/organization/kiewit-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kiewit"], "stage": "Unknown", "name": "Peter Kiewit Sons' Inc", "patent_name": "peter kiewit sons' inc", "continent": "North America", "local_logo": "peter_kiewit_sons'_inc.png", "aliases": "Kiewit; Kiewit Corporation; Peter Kiewit Sons', Inc", "permid_links": [{"text": 4295910461, "url": "https://permid.org/1-4295910461"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Kiewit Corporation provides construction, mining, and engineering services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 1, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 282, "rank": 605}, "ai_jobs": {"counts": null, "total": 49, "rank": 487}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Kiewit Corporation is a privately held construction company based in Omaha, Nebraska founded in 1884. It ranked 307th place in Fortune 500 for United States. Privately held, it is one of the largest construction and engineering organizations in North America.", "wikipedia_link": "https://en.wikipedia.org/wiki/Kiewit_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2161, "country": "United States", "website": "https://www.kraftheinzcompany.com/", "crunchbase": {"text": " 7b1dce51-042d-db43-fb16-60eae02aab20", "url": " https://www.crunchbase.com/organization/the-kraft-heinz-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-kraft-heinz-company"], "stage": "Mature", "name": "Kraft Heinz", "patent_name": "Kraft Heinz", "continent": "North America", "local_logo": null, "aliases": "Kraft Foods; Kraft Heinz; The Kraft Heinz Company", "permid_links": [{"text": 5038908093, "url": "https://permid.org/1-5038908093"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:KHC", "url": "https://www.google.com/finance/quote/KHC:NASDAQ"}], "market_full": [{"text": "MEX:KHC", "url": "https://www.google.com/finance/quote/KHC:MEX"}, {"text": "GER:KHNZX", "url": "https://www.google.com/finance/quote/GER:KHNZX"}, {"text": "STU:KHNZ", "url": "https://www.google.com/finance/quote/KHNZ:STU"}, {"text": "FRA:KHNZ", "url": "https://www.google.com/finance/quote/FRA:KHNZ"}, {"text": "DEU:KHNZ", "url": "https://www.google.com/finance/quote/DEU:KHNZ"}, {"text": "SWX:KHC", "url": "https://www.google.com/finance/quote/KHC:SWX"}, {"text": "NASDAQ:KHC", "url": "https://www.google.com/finance/quote/KHC:NASDAQ"}, {"text": "MCX:KHC-RM", "url": "https://www.google.com/finance/quote/KHC-RM:MCX"}, {"text": "SAO:KHCB34", "url": "https://www.google.com/finance/quote/KHCB34:SAO"}, {"text": "HAN:KHNZ", "url": "https://www.google.com/finance/quote/HAN:KHNZ"}, {"text": "LSE:0JRV", "url": "https://www.google.com/finance/quote/0JRV:LSE"}, {"text": "MUN:KHNZ", "url": "https://www.google.com/finance/quote/KHNZ:MUN"}, {"text": "VIE:KHC", "url": "https://www.google.com/finance/quote/KHC:VIE"}, {"text": "BRN:KHNZ", "url": "https://www.google.com/finance/quote/BRN:KHNZ"}, {"text": "BER:KHNZ", "url": "https://www.google.com/finance/quote/BER:KHNZ"}, {"text": "DUS:KHNZ", "url": "https://www.google.com/finance/quote/DUS:KHNZ"}, {"text": "HAM:KHNZ", "url": "https://www.google.com/finance/quote/HAM:KHNZ"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [20, 19, 11, 31, 14, 9, 7, 2, 5, 5, 0], "total": 123, "isTopResearch": false, "rank": 479, "sp500_rank": 282, "fortune500_rank": 179}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "sp500_rank": 114, "fortune500_rank": 79}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "sp500_rank": 101, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 279, "rank": 607, "sp500_rank": 261, "fortune500_rank": 325}, "ai_jobs": {"counts": null, "total": 67, "rank": 417, "sp500_rank": 215, "fortune500_rank": 222}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2840, "country": "United States", "website": "https://www.ara.com/", "crunchbase": {"text": "42d2e118-db4c-2a8b-0362-f63b87f38411", "url": "https://www.crunchbase.com/organization/applied-research-associates"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ara"], "stage": "Unknown", "name": "Applied Research Associates Inc", "patent_name": "applied research associates inc", "continent": "North America", "local_logo": "applied_research_associates_inc.png", "aliases": "Applied Research Associates; Applied Research Associates, Inc; Ara", "permid_links": [{"text": 4296384313, "url": "https://permid.org/1-4296384313"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Research and Engineering Solutions", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Surrogate model", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Facial expression", "field_count": 2}, {"field_name": "Hidden Markov model", "field_count": 2}, {"field_name": "Sensor fusion", "field_count": 1}, {"field_name": "Intelligent decision support system", "field_count": 1}, {"field_name": "Classifier (UML)", "field_count": 1}, {"field_name": "Semantic mapping", "field_count": 1}, {"field_name": "Multispectral image", "field_count": 1}], "clusters": [{"cluster_id": 27062, "cluster_count": 4}, {"cluster_id": 41996, "cluster_count": 3}, {"cluster_id": 35477, "cluster_count": 3}, {"cluster_id": 13665, "cluster_count": 3}, {"cluster_id": 57642, "cluster_count": 2}, {"cluster_id": 11120, "cluster_count": 2}, {"cluster_id": 3446, "cluster_count": 2}, {"cluster_id": 27542, "cluster_count": 1}, {"cluster_id": 76413, "cluster_count": 1}, {"cluster_id": 57896, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2840, "referenced_count": 16}, {"ref_CSET_id": 163, "referenced_count": 7}, {"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 671, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 27, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 1784, "referenced_count": 1}, {"ref_CSET_id": 2601, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 10}, {"referent": "robots", "task_count": 5}, {"referent": "developmental_learning", "task_count": 5}, {"referent": "autonomous_vehicles", "task_count": 4}, {"referent": "task_oriented_dialogue_systems", "task_count": 4}, {"referent": "decision_making", "task_count": 4}, {"referent": "6d_pose_estimation", "task_count": 3}, {"referent": "land_cover_classification", "task_count": 3}, {"referent": "dialogue", "task_count": 3}, {"referent": "object_detection", "task_count": 2}], "methods": [{"referent": "vqa_models", "method_count": 7}, {"referent": "mad_learning", "method_count": 7}, {"referent": "wgan_gp", "method_count": 4}, {"referent": "3d_representations", "method_count": 4}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "metrix", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [72, 61, 46, 44, 41, 35, 49, 39, 61, 30, 3], "total": 481, "isTopResearch": false, "rank": 281}, "ai_publications": {"counts": [5, 4, 3, 3, 4, 2, 3, 3, 4, 3, 0], "total": 34, "isTopResearch": false, "rank": 221}, "ai_publications_growth": {"counts": [], "total": 2.7777777777777786, "isTopResearch": false, "rank": 188}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [25, 25, 32, 29, 26, 29, 49, 69, 79, 63, 3], "total": 429, "isTopResearch": false, "rank": 289}, "cv_pubs": {"counts": [0, 0, 1, 1, 1, 1, 3, 2, 0, 1, 0], "total": 10, "isTopResearch": true, "rank": 202}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [2, 0, 1, 1, 2, 0, 0, 0, 0, 1, 0], "total": 7, "isTopResearch": true, "rank": 142}, "citations_per_article": {"counts": [5.0, 6.25, 10.666666666666666, 9.666666666666666, 6.5, 14.5, 16.333333333333332, 23.0, 19.75, 21.0, 0], "total": 12.617647058823529, "isTopResearch": false, "rank": 458}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 1, 3, 1, 0, 0], "total": 6, "table": null, "rank": 487}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 10, 30, 10, 0, 0], "total": 60, "table": null, "rank": 487}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0], "total": 5, "table": "application", "rank": 318}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 209}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 279, "rank": 607}, "ai_jobs": {"counts": null, "total": 15, "rank": 754}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Applied Research Associates, Inc is a research and engineering company headquartered in Albuquerque, New Mexico, founded in 1979. Its revenue was estimated at between $100 and $750 million by The Washington Post. As of 2011, it had approximately 1,600 employees.", "wikipedia_link": "https://en.wikipedia.org/wiki/Applied_Research_Associates", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2282, "country": "United States", "website": "https://www.dentsplysirona.com/", "crunchbase": {"text": "d5dde657-3517-475d-edfe-583fc0f5f60f", "url": "https://www.crunchbase.com/organization/dentsply-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dentsplysirona"], "stage": "Mature", "name": "Dentsply Sirona", "patent_name": "dentsply sirona", "continent": "North America", "local_logo": "dentsply_sirona.png", "aliases": "Dentsply International; Dentsply Sirona Inc", "permid_links": [{"text": 4295906169, "url": "https://permid.org/1-4295906169"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:XRAY", "url": "https://www.google.com/finance/quote/nasdaq:xray"}], "market_full": [{"text": "VIE:XRAY", "url": "https://www.google.com/finance/quote/vie:xray"}, {"text": "MUN:DY2", "url": "https://www.google.com/finance/quote/dy2:mun"}, {"text": "STU:DY2", "url": "https://www.google.com/finance/quote/dy2:stu"}, {"text": "NASDAQ:XRAY", "url": "https://www.google.com/finance/quote/nasdaq:xray"}, {"text": "DUS:DY2", "url": "https://www.google.com/finance/quote/dus:dy2"}, {"text": "FRA:DY2", "url": "https://www.google.com/finance/quote/dy2:fra"}, {"text": "SAO:XRAY34", "url": "https://www.google.com/finance/quote/sao:xray34"}, {"text": "BRN:DY2", "url": "https://www.google.com/finance/quote/brn:dy2"}, {"text": "BER:DY2", "url": "https://www.google.com/finance/quote/ber:dy2"}, {"text": "HAM:DY2", "url": "https://www.google.com/finance/quote/dy2:ham"}, {"text": "GER:DY2X", "url": "https://www.google.com/finance/quote/dy2x:ger"}, {"text": "MEX:XRAY*", "url": "https://www.google.com/finance/quote/mex:xray*"}, {"text": "MOEX:XRAY-RM", "url": "https://www.google.com/finance/quote/moex:xray-rm"}, {"text": "HAN:DY2", "url": "https://www.google.com/finance/quote/dy2:han"}, {"text": "DEU:DY2", "url": "https://www.google.com/finance/quote/deu:dy2"}, {"text": "LSE:0I8F", "url": "https://www.google.com/finance/quote/0i8f:lse"}], "crunchbase_description": "DENTSPLY's broad global product platform helps dental professionals serve patients' oral health care for a lifetime, from preventive", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 6463, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 5, 4, 5, 14, 9, 9, 11, 4, 6, 0], "total": 76, "isTopResearch": false, "rank": 550, "fortune500_rank": 206}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [6, 3, 2, 5, 4, 3, 4, 3, 4, 5, 0], "total": 39, "isTopResearch": false, "rank": 621, "fortune500_rank": 169}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 1, 4, 14, 3, 2, 0, 0], "total": 25, "table": null, "rank": 293, "fortune500_rank": 99}, "ai_patents_growth": {"counts": [], "total": 157.14285714285714, "table": null, "rank": 67, "fortune500_rank": 14}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 10, 40, 140, 30, 20, 0, 0], "total": 250, "table": null, "rank": 293, "fortune500_rank": 99}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 1, 0, 0, 1, 3, 10, 3, 2, 0, 0], "total": 20, "table": "industry", "rank": 54, "fortune500_rank": 21}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 116, "fortune500_rank": 38}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 2, 1, 1, 0, 0], "total": 5, "table": "industry", "rank": 336, "fortune500_rank": 117}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 190, "fortune500_rank": 67}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 1, 0, 0, 0, 2, 8, 0, 1, 0, 0], "total": 12, "table": "application", "rank": 229, "fortune500_rank": 69}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0], "total": 4, "table": "application", "rank": 173, "fortune500_rank": 70}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 279, "rank": 607, "fortune500_rank": 325}, "ai_jobs": {"counts": null, "total": 14, "rank": 775, "fortune500_rank": 384}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Dentsply Sirona is an American dental equipment manufacturer and dental consumables producer that markets its products in over 120 countries. It has factories in 21 countries. The present company is largely the result of a merger in 1993 in which Gendex Corporation acquired Dentsply International Inc. for $590 million.", "wikipedia_link": "https://en.wikipedia.org/wiki/Dentsply_Sirona", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2316, "country": "United States", "website": "https://www.fastenal.com/", "crunchbase": {"text": "f6639bf8-f703-ce15-321e-63b87bd5f3a5", "url": "https://www.crunchbase.com/organization/fastenal-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fastenal"], "stage": "Mature", "name": "Fastenal Co", "patent_name": "fastenal co", "continent": "North America", "local_logo": "fastenal_co.png", "aliases": "Fastenal; Fastenal Company", "permid_links": [{"text": 4295906431, "url": "https://permid.org/1-4295906431"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:FAST", "url": "https://www.google.com/finance/quote/fast:nasdaq"}], "market_full": [{"text": "FRA:FAS", "url": "https://www.google.com/finance/quote/fas:fra"}, {"text": "DEU:FAST", "url": "https://www.google.com/finance/quote/deu:fast"}, {"text": "LSE:0IKW", "url": "https://www.google.com/finance/quote/0ikw:lse"}, {"text": "GER:FASX", "url": "https://www.google.com/finance/quote/fasx:ger"}, {"text": "VIE:FAST", "url": "https://www.google.com/finance/quote/fast:vie"}, {"text": "NASDAQ:FAST", "url": "https://www.google.com/finance/quote/fast:nasdaq"}, {"text": "BER:FAS", "url": "https://www.google.com/finance/quote/ber:fas"}, {"text": "MEX:FAST*", "url": "https://www.google.com/finance/quote/fast*:mex"}, {"text": "HAN:FAS", "url": "https://www.google.com/finance/quote/fas:han"}, {"text": "SAO:FASL34", "url": "https://www.google.com/finance/quote/fasl34:sao"}, {"text": "MUN:FAS", "url": "https://www.google.com/finance/quote/fas:mun"}, {"text": "BRN:FAS", "url": "https://www.google.com/finance/quote/brn:fas"}, {"text": "DUS:FAS", "url": "https://www.google.com/finance/quote/dus:fas"}, {"text": "STU:FAS", "url": "https://www.google.com/finance/quote/fas:stu"}, {"text": "HAM:FAS", "url": "https://www.google.com/finance/quote/fas:ham"}, {"text": "MOEX:FAST-RM", "url": "https://www.google.com/finance/quote/fast-rm:moex"}], "crunchbase_description": "Fastenal has grown from a single store to more than 2,700 locations, each providing tailored local inventory.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 278, "rank": 610, "fortune500_rank": 327}, "ai_jobs": {"counts": null, "total": 18, "rank": 716, "fortune500_rank": 362}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Fastenal Company is an American company based in Winona, Minnesota. Distributing goods used by other businesses, it has over 2,200 branches throughout the US, Canada, Mexico, Puerto Rico and Europe along with 13 distribution centers. Fastenal resells industrial, safety, and construction supplies and offers services including inventory management, manufacturing, and tool repair. Fastenal refers to itself as an industrial supply company, and Reuters calls it an industrial distributor. Fastenal is also a big sponsor of NASCAR since 2006.", "wikipedia_link": "https://en.wikipedia.org/wiki/Fastenal", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 677, "country": "United States", "website": "https://schneider.com", "crunchbase": {"text": "cd78c697-7641-5cc8-c117-7545d3e2240e", "url": "https://www.crunchbase.com/organization/schneider-national"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/schneider"], "stage": "Mature", "name": "Schneider National", "patent_name": "schneider national", "continent": "North America", "local_logo": "schneider_national.png", "aliases": "Schneider; Schneider National Inc", "permid_links": [{"text": 4296471241, "url": "https://permid.org/1-4296471241"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SNDR", "url": "https://www.google.com/finance/quote/nyse:sndr"}], "market_full": [{"text": "NYSE:SNDR", "url": "https://www.google.com/finance/quote/nyse:sndr"}, {"text": "NYQ:SNDR", "url": "https://www.google.com/finance/quote/nyq:sndr"}], "crunchbase_description": "Schneider is the premier provider of truckload, intermodal and logistics services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 11018, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [{"referent": "optimization", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 0, 1, 1, 0, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 1, 1, 4, 1, 3, 1, 4, 1, 2, 0], "total": 18, "isTopResearch": false, "rank": 695}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 277, "rank": 611}, "ai_jobs": {"counts": null, "total": 23, "rank": 656}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "Schneider National, Inc. is a provider of truckload, intermodal and logistics services. Schneider's services include regional, long-haul, expedited, dedicated, bulk, intermodal, brokerage, cross-dock logistics, pool point distribution, supply chain management, and port logistics.", "wikipedia_link": "https://en.wikipedia.org/wiki/Schneider_National", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 563, "country": "United States", "website": "https://www.mathematica.org/", "crunchbase": {"text": "6bb9e6a0-8db8-865d-72c1-59960e041d12", "url": "https://www.crunchbase.com/organization/mathematica-policy-research"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mathematica-"], "stage": "Unknown", "name": "Mathematica Policy Research", "patent_name": "mathematica policy research", "continent": "North America", "local_logo": "mathematica_policy_research.png", "aliases": "Mathematica; Mathematica Policy Research Inc; Mathematica, Inc", "permid_links": [{"text": 4297495964, "url": "https://permid.org/1-4297495964"}], "parent_info": "Mathematica, Inc.", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Mathematica Policy Research is a research and data analysis organization.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Intelligent decision support system", "field_count": 1}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Bayesian probability", "field_count": 1}], "clusters": [{"cluster_id": 156185, "cluster_count": 1}, {"cluster_id": 7965, "cluster_count": 1}, {"cluster_id": 23916, "cluster_count": 1}, {"cluster_id": 12880, "cluster_count": 1}, {"cluster_id": 53978, "cluster_count": 1}, {"cluster_id": 49527, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 1126, "referenced_count": 1}], "tasks": [{"referent": "decision_making", "task_count": 1}, {"referent": "medical_diagnosis", "task_count": 1}, {"referent": "network_anomaly_detection", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "network_pruning", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "clustering", "method_count": 1}, {"referent": "neural_probabilistic_language_model", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "3d_reconstruction", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [85, 118, 203, 187, 158, 166, 129, 163, 108, 101, 0], "total": 1418, "isTopResearch": false, "rank": 150}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 1, 0, 1, 0, 3, 8, 7, 1], "total": 21, "isTopResearch": false, "rank": 679}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 3.0, 8.0, 7.0, 0], "total": 5.25, "isTopResearch": false, "rank": 705}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 273, "rank": 612}, "ai_jobs": {"counts": null, "total": 174, "rank": 246}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Mathematica is an employee-owned company that works at the intersection of data, methods, policy, and practice. Mathematica's staff of more than 1,200 subject matter experts specialize in areas such as health, education, employment, justice, and disability research and are based in offices across the U.S: Princeton, New Jersey; Cambridge, Massachusetts; Chicago, Illinois; Washington, DC; Ann Arbor, Michigan; Seattle, Washington; Woodlawn, Maryland, and Oakland, California. Mathematica's clients include federal agencies, state and local governments, foundations, universities, private-sector companies, and international organizations. In 2018, the company acquired EDI Global, a data research company based in the U.K. and Africa.", "wikipedia_link": "https://en.wikipedia.org/wiki/Mathematica_Policy_Research", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2892, "country": "United States", "website": "https://www.radiancetech.com/", "crunchbase": {"text": "fd2057fb-9144-4a15-b75e-7ac701426c26", "url": "https://www.crunchbase.com/organization/radiance-technologies-6c26"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/radiance-technologies"], "stage": "Unknown", "name": "Radiance Technologies Inc", "patent_name": "radiance technologies inc", "continent": "North America", "local_logo": "radiance_technologies_inc.png", "aliases": "Radiance; Radiance Technologies; Radiance Technologies, Inc", "permid_links": [{"text": 4296882825, "url": "https://permid.org/1-4296882825"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Radiance Technologies is an employee-owned prime contractor that committed to meeting the highest quality standards in the design.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 2}], "clusters": [{"cluster_id": 3157, "cluster_count": 2}, {"cluster_id": 37868, "cluster_count": 1}, {"cluster_id": 32004, "cluster_count": 1}, {"cluster_id": 20889, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2892, "referenced_count": 1}, {"ref_CSET_id": 345, "referenced_count": 1}, {"ref_CSET_id": 1383, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "intelligent_surveillance", "task_count": 2}, {"referent": "computer_vision", "task_count": 1}, {"referent": "collaborative_filtering", "task_count": 1}, {"referent": "reasoning", "task_count": 1}, {"referent": "representation_learning", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "network_pruning", "task_count": 1}, {"referent": "sensor_modeling", "task_count": 1}, {"referent": "community_detection", "task_count": 1}], "methods": [{"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "atss", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "max_pooling", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "mckernel", "method_count": 1}, {"referent": "emf", "method_count": 1}, {"referent": "hopfield_layer", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 0, 2, 0, 1, 1, 4, 3, 4, 1, 0], "total": 18, "isTopResearch": false, "rank": 825}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 1, 0, 1, 2, 0, 0], "total": 5, "isTopResearch": false, "rank": 540}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 2, 3, 1, 4, 5, 0], "total": 15, "isTopResearch": false, "rank": 717}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0, 2.0, 0, 1.0, 2.0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 273, "rank": 612}, "ai_jobs": {"counts": null, "total": 24, "rank": 649}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We provide innovative solutions to our customers' greatest challenges. Our customers operate in an environment where adversaries are constantly evolving and rapidly advancing. Radiance solutions provide technological advantage and operational superiority for our nation.", "company_site_link": "https://www.radiancetech.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2078, "country": "Japan", "website": "https://www.bridgestone.com/", "crunchbase": {"text": " 47c631f5-4884-57de-c4b0-d3bf0655542d ", "url": " https://www.crunchbase.com/organization/bridgestone "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bridgestone"], "stage": "Mature", "name": "Bridgestone", "patent_name": "Bridgestone", "continent": "Asia", "local_logo": null, "aliases": "Bridgestone; Bridgestone Corp", "permid_links": [{"text": 4295877320, "url": "https://permid.org/1-4295877320"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:5108", "url": "https://www.google.com/finance/quote/5108:TYO"}], "market_full": [{"text": "MUN:BGT", "url": "https://www.google.com/finance/quote/BGT:MUN"}, {"text": "DUS:BGT", "url": "https://www.google.com/finance/quote/BGT:DUS"}, {"text": "FRA:BGT", "url": "https://www.google.com/finance/quote/BGT:FRA"}, {"text": "MUN:BGTA", "url": "https://www.google.com/finance/quote/BGTA:MUN"}, {"text": "VIE:BRDG", "url": "https://www.google.com/finance/quote/BRDG:VIE"}, {"text": "DEU:BETA", "url": "https://www.google.com/finance/quote/BETA:DEU"}, {"text": "TYO:5108", "url": "https://www.google.com/finance/quote/5108:TYO"}, {"text": "MEX:5108N", "url": "https://www.google.com/finance/quote/5108N:MEX"}, {"text": "BER:BGT", "url": "https://www.google.com/finance/quote/BER:BGT"}, {"text": "DEU:5108", "url": "https://www.google.com/finance/quote/5108:DEU"}, {"text": "STU:BGT", "url": "https://www.google.com/finance/quote/BGT:STU"}, {"text": "HAN:BGT", "url": "https://www.google.com/finance/quote/BGT:HAN"}, {"text": "FRA:BETA", "url": "https://www.google.com/finance/quote/BETA:FRA"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Actuator", "field_count": 4}, {"field_name": "Image resolution", "field_count": 1}, {"field_name": "Dynamic time warping", "field_count": 1}, {"field_name": "Robotic arm", "field_count": 1}, {"field_name": "Hyperspectral imaging", "field_count": 1}, {"field_name": "Inertial measurement unit", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Virtual reality", "field_count": 1}], "clusters": [{"cluster_id": 53850, "cluster_count": 3}, {"cluster_id": 9526, "cluster_count": 3}, {"cluster_id": 17536, "cluster_count": 2}, {"cluster_id": 8106, "cluster_count": 2}, {"cluster_id": 32453, "cluster_count": 1}, {"cluster_id": 16055, "cluster_count": 1}, {"cluster_id": 48903, "cluster_count": 1}, {"cluster_id": 39751, "cluster_count": 1}, {"cluster_id": 72189, "cluster_count": 1}, {"cluster_id": 1106, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2078, "referenced_count": 4}, {"ref_CSET_id": 101, "referenced_count": 2}], "tasks": [{"referent": "robots", "task_count": 5}, {"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "remote_sensing", "task_count": 2}, {"referent": "soft_robotics", "task_count": 2}, {"referent": "head_detection", "task_count": 1}, {"referent": "road_detection", "task_count": 1}, {"referent": "sensor_modeling", "task_count": 1}, {"referent": "svbrdf_estimation", "task_count": 1}, {"referent": "collaborative_filtering", "task_count": 1}], "methods": [{"referent": "cbam", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "soft_actor_critic", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "euclidean_norm_regularization", "method_count": 1}, {"referent": "image_segmentation_models", "method_count": 1}, {"referent": "image_to_image_translation", "method_count": 1}, {"referent": "markov_chain_monte_carlo", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [36, 27, 31, 27, 37, 22, 41, 34, 45, 36, 1], "total": 337, "isTopResearch": false, "rank": 342, "sp500_rank": 222}, "ai_publications": {"counts": [0, 2, 1, 1, 2, 0, 1, 6, 4, 2, 0], "total": 19, "isTopResearch": false, "rank": 311, "sp500_rank": 175}, "ai_publications_growth": {"counts": [], "total": 138.88888888888889, "isTopResearch": false, "rank": 12, "sp500_rank": 7}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 1, 0, 4, 6, 9, 10, 25, 0], "total": 55, "isTopResearch": false, "rank": 576, "sp500_rank": 249}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 2, 0, 1, 4, 3, 1, 0], "total": 11, "isTopResearch": true, "rank": 106, "sp500_rank": 77}, "citations_per_article": {"counts": [0, 0.0, 0.0, 1.0, 0.0, 0, 6.0, 1.5, 2.5, 12.5, 0], "total": 2.8947368421052633, "isTopResearch": false, "rank": 804, "sp500_rank": 318}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 3, 3, 2, 5, 4, 1, 0, 0], "total": 19, "table": null, "rank": 333, "sp500_rank": 168}, "ai_patents_growth": {"counts": [], "total": 32.22222222222222, "table": null, "rank": 270, "sp500_rank": 124}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 30, 30, 20, 50, 40, 10, 0, 0], "total": 190, "table": null, "rank": 333, "sp500_rank": 168}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 1, 2, 3, 2, 2, 2, 1, 0, 0], "total": 13, "table": "industry", "rank": 86, "sp500_rank": 67}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 1, 0, 2, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 305, "sp500_rank": 156}, "Banking_and_Finance": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 172, "sp500_rank": 111}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 172}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": "application", "rank": 212, "sp500_rank": 129}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "sp500_rank": 183}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 191, "sp500_rank": 121}, "Measuring_and_Testing": {"counts": [0, 0, 0, 2, 3, 2, 2, 0, 0, 0, 0], "total": 9, "table": "application", "rank": 128, "sp500_rank": 100}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 272, "rank": 614, "sp500_rank": 262}, "ai_jobs": {"counts": null, "total": 30, "rank": 597, "sp500_rank": 258}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 3160, "country": "Canada", "website": "https://www.cpr.ca/", "crunchbase": {"text": "e2802fa1-0698-5cad-b9b4-a98b24f72765", "url": "https://www.crunchbase.com/organization/canadian-pacific-railway"}, "child_crunchbase": [{"text": "bf9febe2-238d-d161-764e-fa2321580989", "url": "https://www.crunchbase.com/organization/kansas-city-southern"}], "linkedin": ["https://www.linkedin.com/company/canadian-pacific", "https://www.linkedin.com/company/kansas-city-southern"], "stage": "Mature", "name": "Canadian Pacific", "patent_name": "Canadian Pacific", "continent": "North America", "local_logo": "canadian_pacific.png", "aliases": "Canadian Pacific; Canadian Pacific Railway; Canadian Pacific Railway Limited; Canadian Pacific Railway Ltd; Cp Rail", "permid_links": [{"text": 4295861343, "url": "https://permid.org/1-4295861343"}, {"text": 4295912177, "url": "https://permid.org/1-4295912177"}], "parent_info": null, "agg_child_info": "Kansas City Southern", "unagg_child_info": null, "market_filt": [{"text": "NYSE:CP", "url": "https://www.google.com/finance/quote/CP:NYSE"}], "market_full": [{"text": "BRN:PC8", "url": "https://www.google.com/finance/quote/BRN:PC8"}, {"text": "SAO:CPRL34", "url": "https://www.google.com/finance/quote/CPRL34:SAO"}, {"text": "NYQ:CP", "url": "https://www.google.com/finance/quote/CP:NYQ"}, {"text": "NYSE:CP", "url": "https://www.google.com/finance/quote/CP:NYSE"}, {"text": "STU:PC8", "url": "https://www.google.com/finance/quote/PC8:STU"}, {"text": "DEU:CP", "url": "https://www.google.com/finance/quote/CP:DEU"}, {"text": "TOR:CP", "url": "https://www.google.com/finance/quote/CP:TOR"}, {"text": "BER:PC8", "url": "https://www.google.com/finance/quote/BER:PC8"}, {"text": "MUN:PC8", "url": "https://www.google.com/finance/quote/MUN:PC8"}, {"text": "ASE:CP", "url": "https://www.google.com/finance/quote/ASE:CP"}, {"text": "DUS:PC8", "url": "https://www.google.com/finance/quote/DUS:PC8"}, {"text": "FRA:PC8", "url": "https://www.google.com/finance/quote/FRA:PC8"}, {"text": "MEX:CPN", "url": "https://www.google.com/finance/quote/CPN:MEX"}], "crunchbase_description": "Canadian Pacific is a rail shipping company owning approximately 23,000 kilometres of track all across Canada and into the United States.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Linear regression", "field_count": 1}, {"field_name": "Photogrammetry", "field_count": 1}], "clusters": [{"cluster_id": 14427, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 3160, "referenced_count": 1}], "tasks": [{"referent": "thermal_infrared_object_tracking", "task_count": 1}, {"referent": "action_quality_assessment", "task_count": 1}, {"referent": "land_cover_classification", "task_count": 1}, {"referent": "lexical_analysis", "task_count": 1}], "methods": [{"referent": "linear_regression", "method_count": 2}, {"referent": "linear_warmup_with_linear_decay", "method_count": 1}, {"referent": "apollo", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 5, 3, 1, 2, 1, 2, 5, 4, 0, 0], "total": 24, "isTopResearch": false, "rank": 767, "fortune500_rank": 275}, "ai_publications": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 1, 0, 3, 7, 6, 5, 4, 6, 1, 0], "total": 33, "isTopResearch": false, "rank": 643, "fortune500_rank": 175}, "cv_pubs": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 1.0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 16.5, "isTopResearch": false, "rank": 376, "fortune500_rank": 115}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 272, "rank": 614, "fortune500_rank": 328}, "ai_jobs": {"counts": null, "total": 20, "rank": 692, "fortune500_rank": 349}}, "sector": "Industrials", "business_sector": "Transportation"}, {"cset_id": 2918, "country": "United States", "website": "www.agile-defense.com", "crunchbase": {"text": "21a1c6f8-32b1-4fe7-a325-2086a1821c36", "url": "https://www.crunchbase.com/organization/agile-defense"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/agiledefense"], "stage": "Unknown", "name": "Agile Defense Inc", "patent_name": "agile defense inc", "continent": "North America", "local_logo": "agile_defense_inc.png", "aliases": "Agile Defense; Agile Defense Inc; Agile Defense, Inc", "permid_links": [{"text": 5040051846, "url": "https://permid.org/1-5040051846"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Agile Defense is an information technology company located in Reston.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 272, "rank": 614}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Agile Defense is a leading information technology (IT) services business in Reston, VA, with a number of U.S. Government clients, including several United States Civil agencies and various branches within the U.S. Department of Defense.", "company_site_link": "https://agile-defense.com/about/#whoweare", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 251, "country": "China", "website": "http://www.thundersoft.com", "crunchbase": {"text": "58a76f03-0937-628d-5265-6276454f9b25", "url": "https://www.crunchbase.com/organization/thundersoft-company-limited"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/thundersoft"], "stage": "Mature", "name": "ThunderSoft", "patent_name": "thundersoft", "continent": "Asia", "local_logo": "thundersoft.png", "aliases": "Thunder Software Technology Co Ltd; Thunder Software Technology Co., Ltd; \u4e2d\u79d1\u521b\u8fbe; \u4e2d\u79d1\u521b\u8fbe\u8f6f\u4ef6\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5035306558, "url": "https://permid.org/1-5035306558"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "SZSE:300496", "url": "https://www.google.com/finance/quote/300496:szse"}], "market_full": [{"text": "SZSE:300496", "url": "https://www.google.com/finance/quote/300496:szse"}], "crunchbase_description": "ThunderSoft is a provider of operating system technologies, products and solutions, experts in mobile, IoT, automotive, and enterprise.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 3, 0, 0, 0, 1, 2, 2, 6, 1, 0], "total": 15, "table": null, "rank": 355}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 30, 0, 0, 0, 10, 20, 20, 60, 10, 0], "total": 150, "table": null, "rank": 355}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0], "total": 3, "table": "industry", "rank": 277}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 4, 1, 0], "total": 8, "table": "application", "rank": 269}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 271, "rank": 617}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "ThunderSoft is a provider of operating system technologies, superior products and solutions, experts in mobile, IoT, automotive, and enterprise.", "company_site_link": "https://www.thundersoft.com/index.php/about/index/1-5-5-5", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2370, "country": "United States", "website": "http://www.interpublic.com/", "crunchbase": {"text": "2ce7e2e2-9b05-27d2-4a5b-96fe1661d70a", "url": "https://www.crunchbase.com/organization/interpublic-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ipg"], "stage": "Mature", "name": "Interpublic Group of Cos Inc/The", "patent_name": "interpublic group of cos inc/the", "continent": "North America", "local_logo": "interpublic_group_of_cos_inc_the.png", "aliases": "Interpublic; Interpublic Group; Interpublic Group Of Companies Inc; Ipg; The Interpublic Group Of Companies, Inc", "permid_links": [{"text": 4295904318, "url": "https://permid.org/1-4295904318"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:IPG", "url": "https://www.google.com/finance/quote/ipg:nyse"}], "market_full": [{"text": "DUS:IPG", "url": "https://www.google.com/finance/quote/dus:ipg"}, {"text": "MCX:IPG-RM", "url": "https://www.google.com/finance/quote/ipg-rm:mcx"}, {"text": "STU:IPG", "url": "https://www.google.com/finance/quote/ipg:stu"}, {"text": "BER:IPG", "url": "https://www.google.com/finance/quote/ber:ipg"}, {"text": "FRA:IPG", "url": "https://www.google.com/finance/quote/fra:ipg"}, {"text": "MUN:IPG", "url": "https://www.google.com/finance/quote/ipg:mun"}, {"text": "BRN:IPG", "url": "https://www.google.com/finance/quote/brn:ipg"}, {"text": "NYSE:IPG", "url": "https://www.google.com/finance/quote/ipg:nyse"}, {"text": "DEU:IPG", "url": "https://www.google.com/finance/quote/deu:ipg"}, {"text": "GER:IPGX", "url": "https://www.google.com/finance/quote/ger:ipgx"}, {"text": "NYQ:IPG", "url": "https://www.google.com/finance/quote/ipg:nyq"}], "crunchbase_description": "Interpublic Group provides advertising, digital marketing, communications planning, media buying, PR and specialty marketing services.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 270, "rank": 618, "fortune500_rank": 329}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "fortune500_rank": 294}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "The Interpublic Group of Companies, Inc. (IPG) is an American publicly traded advertising company. The company consists of five major networks: FCB, IPG Mediabrands, McCann Worldgroup, MullenLowe Group, and Marketing Specialists, as well as a number of independent specialty agencies in the areas of public relations, sports marketing, talent representation, and healthcare. It is one of the \"Big Four\" agency companies, alongside WPP, Publicis and Omnicom. Phillippe Krakowsky became the company's CEO on January 1, 2021.", "wikipedia_link": "https://en.wikipedia.org/wiki/The_Interpublic_Group_of_Companies", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2822, "country": "United States", "website": "http://www.dcscorp.com/", "crunchbase": {"text": "c6a5533f-f0fc-eeda-2c18-2dc4a6ef83ba", "url": "https://www.crunchbase.com/organization/dcs-corp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dcs-corp"], "stage": "Unknown", "name": "DCS Corp", "patent_name": "dcs corp", "continent": "North America", "local_logo": "dcs_corp.png", "aliases": "Dcs; Dcs Corporation", "permid_links": [{"text": 4296387486, "url": "https://permid.org/1-4296387486"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "DCS Corp creates innovative technology solutions for their customers in the national security sector.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Classifier (UML)", "field_count": 3}, {"field_name": "Convolutional neural network", "field_count": 3}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Visualization", "field_count": 2}, {"field_name": "Target acquisition", "field_count": 2}, {"field_name": "Visual search", "field_count": 2}, {"field_name": "Pixel", "field_count": 2}, {"field_name": "Network model", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}], "clusters": [{"cluster_id": 57401, "cluster_count": 9}, {"cluster_id": 261, "cluster_count": 5}, {"cluster_id": 9134, "cluster_count": 4}, {"cluster_id": 3683, "cluster_count": 3}, {"cluster_id": 5550, "cluster_count": 3}, {"cluster_id": 139, "cluster_count": 3}, {"cluster_id": 49831, "cluster_count": 3}, {"cluster_id": 8859, "cluster_count": 3}, {"cluster_id": 86026, "cluster_count": 2}, {"cluster_id": 10988, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 2822, "referenced_count": 42}, {"ref_CSET_id": 101, "referenced_count": 33}, {"ref_CSET_id": 163, "referenced_count": 21}, {"ref_CSET_id": 785, "referenced_count": 19}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 115, "referenced_count": 7}, {"ref_CSET_id": 789, "referenced_count": 7}, {"ref_CSET_id": 787, "referenced_count": 4}, {"ref_CSET_id": 815, "referenced_count": 3}, {"ref_CSET_id": 786, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 11}, {"referent": "target_recognition", "task_count": 5}, {"referent": "video_surveillance", "task_count": 5}, {"referent": "unmanned_aerial_vehicles", "task_count": 5}, {"referent": "intelligent_surveillance", "task_count": 4}, {"referent": "autonomous_driving", "task_count": 4}, {"referent": "decision_making", "task_count": 4}, {"referent": "robots", "task_count": 3}, {"referent": "skills_assessment", "task_count": 3}, {"referent": "automated_writing_evaluation", "task_count": 3}], "methods": [{"referent": "auto_classifier", "method_count": 7}, {"referent": "q_learning", "method_count": 6}, {"referent": "vqa_models", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "dueling_network", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [22, 20, 23, 31, 24, 19, 24, 33, 21, 13, 0], "total": 230, "isTopResearch": false, "rank": 392}, "ai_publications": {"counts": [5, 6, 6, 12, 3, 4, 5, 10, 7, 0, 0], "total": 58, "isTopResearch": false, "rank": 166}, "ai_publications_growth": {"counts": [], "total": -10.0, "isTopResearch": false, "rank": 1265}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [21, 34, 51, 59, 80, 123, 210, 314, 474, 500, 17], "total": 1883, "isTopResearch": false, "rank": 147}, "cv_pubs": {"counts": [1, 1, 0, 1, 0, 1, 0, 0, 1, 0, 0], "total": 5, "isTopResearch": true, "rank": 287}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [2, 3, 2, 0, 0, 1, 1, 2, 2, 0, 0], "total": 13, "isTopResearch": true, "rank": 100}, "citations_per_article": {"counts": [4.2, 5.666666666666667, 8.5, 4.916666666666667, 26.666666666666668, 30.75, 42.0, 31.4, 67.71428571428571, 0, 0], "total": 32.46551724137931, "isTopResearch": false, "rank": 173}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 270, "rank": 618}, "ai_jobs": {"counts": null, "total": 13, "rank": 790}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "DCS provides engineering, programmatic, and technical support services to the Department of Defense and other customers focused on national security. As employee owners, we recognize that hiring and retaining the best talent is crucial to our mission. Our focus on personal growth and continual improvement is consistent with our corporate goals of professional and business excellence.", "company_site_link": "https://www.dcscorp.com/home/who-we-are/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2401, "country": "Netherlands", "website": "https://www.lyondellbasell.com/", "crunchbase": {"text": "18ee4d58-ed7d-643c-6139-88434d5835f7", "url": "https://www.crunchbase.com/organization/lyondellbasell-industries"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lyondell-basell"], "stage": "Mature", "name": "LyondellBasell", "patent_name": "lyondellbasell", "continent": "Europe", "local_logo": "lyondellbasell.png", "aliases": "Basell Polyolefins; Lyondell Chemical Company; LyondellBasell Industries NV; Lyondellbasell Industries; Lyondellbasell Industries Holdings B.V; Lyondellbasell Industries N.V", "permid_links": [{"text": 5000737707, "url": "https://permid.org/1-5000737707"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LYB", "url": "https://www.google.com/finance/quote/lyb:nyse"}], "market_full": [{"text": "DUS:DLY", "url": "https://www.google.com/finance/quote/dly:dus"}, {"text": "NYQ:LYB", "url": "https://www.google.com/finance/quote/lyb:nyq"}, {"text": "BRN:DLY", "url": "https://www.google.com/finance/quote/brn:dly"}, {"text": "MEX:LYBN", "url": "https://www.google.com/finance/quote/lybn:mex"}, {"text": "LSE:0EDD", "url": "https://www.google.com/finance/quote/0edd:lse"}, {"text": "BER:DLY", "url": "https://www.google.com/finance/quote/ber:dly"}, {"text": "FRA:DLY", "url": "https://www.google.com/finance/quote/dly:fra"}, {"text": "DEU:LYB", "url": "https://www.google.com/finance/quote/deu:lyb"}, {"text": "MUN:DLY", "url": "https://www.google.com/finance/quote/dly:mun"}, {"text": "STU:DLY", "url": "https://www.google.com/finance/quote/dly:stu"}, {"text": "NYSE:LYB", "url": "https://www.google.com/finance/quote/lyb:nyse"}, {"text": "ASE:LYB", "url": "https://www.google.com/finance/quote/ase:lyb"}, {"text": "SAO:L1YB34", "url": "https://www.google.com/finance/quote/l1yb34:sao"}], "crunchbase_description": "LyondellBasell (NYSE: LYB) is one of the world\u2019s largest plastics, chemicals and refining companies and a member of the S&P 500 Index.", "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [19, 13, 11, 5, 8, 7, 10, 4, 8, 10, 0], "total": 95, "isTopResearch": false, "rank": 516, "sp500_rank": 296, "fortune500_rank": 192}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 268, "rank": 620, "sp500_rank": 263, "fortune500_rank": 330}, "ai_jobs": {"counts": null, "total": 27, "rank": 627, "sp500_rank": 262, "fortune500_rank": 321}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "LyondellBasell Industries N.V. (NYSE: LYB) is a Dutch-domiciled multinational chemical company with American and British roots, incorporated in the Netherlands, with U.S. operations headquarters in Houston, Texas, and offices in London, UK. The company is the largest licensor of polyethylene and polypropylene technologies. It also produces ethylene, propylene, polyolefins, and oxyfuels.", "wikipedia_link": "https://en.wikipedia.org/wiki/LyondellBasell", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2949, "country": "United States", "website": "http://www.mtsi-va.com/", "crunchbase": {"text": "b5d35927-4ce3-5557-f35d-c7a28ed312d1", "url": "https://www.crunchbase.com/organization/modern-technology-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mtsi"], "stage": "Unknown", "name": "Modern Technology Solutions Inc", "patent_name": "modern technology solutions inc", "continent": "North America", "local_logo": "modern_technology_solutions_inc.png", "aliases": "Modern Technology Solutions; Modern Technology Solutions, Inc; Mtsi", "permid_links": [{"text": 4297405282, "url": "https://permid.org/1-4297405282"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "MTSI, an employee-owned and operated technology firm, provides leading edge technical services including.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 2, 2, 1, 0, 1, 0], "total": 7, "isTopResearch": false, "rank": 1006}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 0.0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 267, "rank": 621}, "ai_jobs": {"counts": null, "total": 15, "rank": 754}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Modern Technology Solutions, Inc. (MTSI) is an 100% employee-owned engineering services and technology solutions company delivering first-choice capabilities to solve problems of global importance. Our mission is to make important, lasting contributions to the nation\u2019s defense, security, and most technically challenging strategic problems. Founded in 1993 by two retired Air Force engineers, we have achieved stable growth and have been recognized for our core values and commitment to our customers\u2019 success.", "company_site_link": "https://www.mtsi-va.com/#about", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2516, "country": "United States", "website": "http://www.ulta.com/", "crunchbase": {"text": "38d7b153-c198-46f0-b67e-f4571f0593ef", "url": "https://www.crunchbase.com/organization/ulta-beauty"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ulta"], "stage": "Mature", "name": "Ulta Beauty", "patent_name": "ulta beauty", "continent": "North America", "local_logo": "ulta_beauty.png", "aliases": "Ulta Beauty, Inc", "permid_links": [{"text": 5053445407, "url": "https://permid.org/1-5053445407"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ULTA", "url": "https://www.google.com/finance/quote/nasdaq:ulta"}], "market_full": [{"text": "BER:34U", "url": "https://www.google.com/finance/quote/34u:ber"}, {"text": "LSE:0LIB", "url": "https://www.google.com/finance/quote/0lib:lse"}, {"text": "FRA:34U", "url": "https://www.google.com/finance/quote/34u:fra"}, {"text": "NASDAQ:ULTA", "url": "https://www.google.com/finance/quote/nasdaq:ulta"}, {"text": "STU:34U", "url": "https://www.google.com/finance/quote/34u:stu"}, {"text": "HAN:34U", "url": "https://www.google.com/finance/quote/34u:han"}, {"text": "DUS:34U", "url": "https://www.google.com/finance/quote/34u:dus"}, {"text": "DEU:ULTA", "url": "https://www.google.com/finance/quote/deu:ulta"}, {"text": "MEX:ULTA*", "url": "https://www.google.com/finance/quote/mex:ulta*"}, {"text": "HAM:34U", "url": "https://www.google.com/finance/quote/34u:ham"}, {"text": "MUN:34U", "url": "https://www.google.com/finance/quote/34u:mun"}, {"text": "MCX:ULTA-RM", "url": "https://www.google.com/finance/quote/mcx:ulta-rm"}, {"text": "VIE:ULTA", "url": "https://www.google.com/finance/quote/ulta:vie"}, {"text": "BRN:34U", "url": "https://www.google.com/finance/quote/34u:brn"}], "crunchbase_description": "Ulta Beauty is a beauty retailer in the United States and the premier beauty destination for cosmetics, fragrance.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 265, "rank": 622, "fortune500_rank": 331}, "ai_jobs": {"counts": null, "total": 26, "rank": 639, "fortune500_rank": 324}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "Ulta Beauty, Inc., formerly known as Ulta Salon, Cosmetics & Fragrance Inc., is an American chain of beauty stores headquartered in Bolingbrook, Illinois. Ulta Beauty carries cosmetics and skincare brands, men's and women's fragrances, nail products, bath and body products, beauty tools and haircare products. Each store is also equipped with a salon, Benefit brow bar and Dermalogica skin bar. Ulta Beauty currently has 1,196 stores across all 50 states.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ulta_Beauty", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2464, "country": "United States", "website": "https://corporate.pseg.com/", "crunchbase": {"text": "6e143053-ce51-4906-c65e-0908afb5481f", "url": "https://www.crunchbase.com/organization/public-service-enterprise-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pseg"], "stage": "Mature", "name": "Public Serv. Enterprise Inc.", "patent_name": "public serv. enterprise inc.", "continent": "North America", "local_logo": "public_serv_enterprise_inc.png", "aliases": "Pse&G; Pseg; Public Service Electric And Gas; Public Service Enterprise Group; Public Service Enterprise Group (Pseg); Public Service Enterprise Group Inc; Public Service Enterprise Group Incorporated", "permid_links": [{"text": 4295904782, "url": "https://permid.org/1-4295904782"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PEG", "url": "https://www.google.com/finance/quote/nyse:peg"}], "market_full": [{"text": "MUN:PSE", "url": "https://www.google.com/finance/quote/mun:pse"}, {"text": "SAO:P1EG34", "url": "https://www.google.com/finance/quote/p1eg34:sao"}, {"text": "ASE:PEG", "url": "https://www.google.com/finance/quote/ase:peg"}, {"text": "GER:PSEX", "url": "https://www.google.com/finance/quote/ger:psex"}, {"text": "BRN:PSE", "url": "https://www.google.com/finance/quote/brn:pse"}, {"text": "LSE:0KS2", "url": "https://www.google.com/finance/quote/0ks2:lse"}, {"text": "STU:PSE", "url": "https://www.google.com/finance/quote/pse:stu"}, {"text": "MCX:PEG-RM", "url": "https://www.google.com/finance/quote/mcx:peg-rm"}, {"text": "NYSE:PEG", "url": "https://www.google.com/finance/quote/nyse:peg"}, {"text": "DUS:PSE", "url": "https://www.google.com/finance/quote/dus:pse"}, {"text": "VIE:PEG", "url": "https://www.google.com/finance/quote/peg:vie"}, {"text": "FRA:PSE", "url": "https://www.google.com/finance/quote/fra:pse"}, {"text": "DEU:PEG", "url": "https://www.google.com/finance/quote/deu:peg"}, {"text": "NYQ:PEG", "url": "https://www.google.com/finance/quote/nyq:peg"}], "crunchbase_description": "PSEG is a diversified energy company.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Ensemble forecasting", "field_count": 1}], "clusters": [{"cluster_id": 50534, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 184, "referenced_count": 1}], "tasks": [], "methods": [{"referent": "deep_belief_network", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 1, 1, 4, 0, 2, 3, 3, 2, 1, 0], "total": 20, "isTopResearch": false, "rank": 809, "fortune500_rank": 286}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "isTopResearch": false, "rank": 881, "fortune500_rank": 245}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "fortune500_rank": 217}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 265, "rank": 622, "fortune500_rank": 331}, "ai_jobs": {"counts": null, "total": 22, "rank": 667, "fortune500_rank": 336}}, "sector": "Utilities", "business_sector": "Utilities", "wikipedia_description": "The Public Service Enterprise Group (PSEG) is a publicly traded diversified energy company headquartered in Newark, New Jersey and was established in 1985 with a legacy dating back to 1903.", "wikipedia_link": "https://en.wikipedia.org/wiki/Public_Service_Enterprise_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 3030, "country": "United States", "website": "https://www.telos.com/", "crunchbase": {"text": "ad0713e3-c586-475c-8fde-5a30ccfd83cc", "url": "https://www.crunchbase.com/organization/telos"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/telos-corporation"], "stage": "Unknown", "name": "Telos Corp", "patent_name": "telos corp", "continent": "North America", "local_logo": "telos_corp.png", "aliases": "Telos; Telos Corporation", "permid_links": [{"text": 4295900904, "url": "https://permid.org/1-4295900904"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Search Engine Marketing for Healthcare Companies", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 265, "rank": 622}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Telos Corporation is an information technology (IT) and cybersecurity company located in Ashburn, Virginia. The company\u2019s name is derived from the Greek word for \u201cpurpose\u201d or \u201cgoal\". Telos primarily serves government and enterprise clients, receiving a large number of its contracts from the United States Department of Defense (DoD).", "wikipedia_link": "https://en.wikipedia.org/wiki/Telos_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 1884, "country": "France", "website": "https://www.renaultgroup.com/", "crunchbase": {"text": " 49605041-0be9-4e66-a507-051c814c9edf", "url": "https://www.crunchbase.com/organization/renault-s-a"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/renault"], "stage": "Mature", "name": "Renault", "patent_name": "Renault", "continent": "Europe", "local_logo": null, "aliases": "Groupe Renault; Renault; Renault Group", "permid_links": [{"text": 4295867385, "url": "https://permid.org/1-4295867385"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "GER:RNLX", "url": "https://www.google.com/finance/quote/GER:RNLX"}, {"text": "VIE:RNO", "url": "https://www.google.com/finance/quote/RNO:VIE"}, {"text": "SWX:RNO", "url": "https://www.google.com/finance/quote/RNO:SWX"}, {"text": "BER:RNL1", "url": "https://www.google.com/finance/quote/BER:RNL1"}, {"text": "PAR:RNO", "url": "https://www.google.com/finance/quote/PAR:RNO"}, {"text": "HAN:RNL", "url": "https://www.google.com/finance/quote/HAN:RNL"}, {"text": "EBT:RNOP", "url": "https://www.google.com/finance/quote/EBT:RNOp"}, {"text": "PNK:RNLSY", "url": "https://www.google.com/finance/quote/PNK:RNLSY"}, {"text": "DEU:RNL1", "url": "https://www.google.com/finance/quote/DEU:RNL1"}, {"text": "DUS:RNL", "url": "https://www.google.com/finance/quote/DUS:RNL"}, {"text": "STU:RNL1", "url": "https://www.google.com/finance/quote/RNL1:STU"}, {"text": "LSE:0NQF", "url": "https://www.google.com/finance/quote/0NQF:LSE"}, {"text": "MUN:RNL1", "url": "https://www.google.com/finance/quote/MUN:RNL1"}, {"text": "HAM:RNL", "url": "https://www.google.com/finance/quote/HAM:RNL"}, {"text": "PKL:RNSDF", "url": "https://www.google.com/finance/quote/PKL:RNSDF"}, {"text": "MEX:RNON", "url": "https://www.google.com/finance/quote/MEX:RNON"}, {"text": "BER:RNL", "url": "https://www.google.com/finance/quote/BER:RNL"}, {"text": "MUN:RNL", "url": "https://www.google.com/finance/quote/MUN:RNL"}, {"text": "FRA:RNL1", "url": "https://www.google.com/finance/quote/FRA:RNL1"}, {"text": "FRA:RNL", "url": "https://www.google.com/finance/quote/FRA:RNL"}, {"text": "DEU:RENA", "url": "https://www.google.com/finance/quote/DEU:RENA"}, {"text": "PAR:RNL", "url": "https://www.google.com/finance/quote/PAR:RNL"}, {"text": "MIL:RNO", "url": "https://www.google.com/finance/quote/MIL:RNO"}, {"text": "STU:RNL", "url": "https://www.google.com/finance/quote/RNL:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Driving simulator", "field_count": 12}, {"field_name": "Advanced driver assistance systems", "field_count": 5}, {"field_name": "Cluster analysis", "field_count": 5}, {"field_name": "Robustness (computer science)", "field_count": 5}, {"field_name": "Probabilistic logic", "field_count": 5}, {"field_name": "Sensor fusion", "field_count": 4}, {"field_name": "Haptic technology", "field_count": 3}, {"field_name": "Reinforcement learning", "field_count": 3}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Navigation system", "field_count": 2}], "clusters": [{"cluster_id": 14335, "cluster_count": 16}, {"cluster_id": 19977, "cluster_count": 15}, {"cluster_id": 22331, "cluster_count": 14}, {"cluster_id": 38873, "cluster_count": 8}, {"cluster_id": 31686, "cluster_count": 7}, {"cluster_id": 2410, "cluster_count": 6}, {"cluster_id": 16876, "cluster_count": 5}, {"cluster_id": 2480, "cluster_count": 4}, {"cluster_id": 24157, "cluster_count": 4}, {"cluster_id": 27589, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 1884, "referenced_count": 127}, {"ref_CSET_id": 101, "referenced_count": 94}, {"ref_CSET_id": 163, "referenced_count": 44}, {"ref_CSET_id": 87, "referenced_count": 37}, {"ref_CSET_id": 795, "referenced_count": 20}, {"ref_CSET_id": 800, "referenced_count": 16}, {"ref_CSET_id": 336, "referenced_count": 11}, {"ref_CSET_id": 127, "referenced_count": 10}, {"ref_CSET_id": 783, "referenced_count": 10}, {"ref_CSET_id": 820, "referenced_count": 10}], "tasks": [{"referent": "autonomous_driving", "task_count": 80}, {"referent": "autonomous_vehicles", "task_count": 64}, {"referent": "vehicle_detection", "task_count": 22}, {"referent": "classification", "task_count": 17}, {"referent": "autonomous_navigation", "task_count": 17}, {"referent": "safety_perception_recognition", "task_count": 10}, {"referent": "steering_control", "task_count": 9}, {"referent": "image_processing", "task_count": 7}, {"referent": "vehicle_localization", "task_count": 7}, {"referent": "action_localization", "task_count": 7}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 12}, {"referent": "vqa_models", "method_count": 10}, {"referent": "xception", "method_count": 9}, {"referent": "mad_learning", "method_count": 9}, {"referent": "neural_architecture_search", "method_count": 8}, {"referent": "adamw", "method_count": 7}, {"referent": "maddpg", "method_count": 7}, {"referent": "recurrent_neural_networks", "method_count": 7}, {"referent": "double_q_learning", "method_count": 6}, {"referent": "clustering", "method_count": 6}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [137, 131, 143, 128, 135, 136, 140, 134, 111, 57, 2], "total": 1254, "isTopResearch": false, "rank": 168, "sp500_rank": 125}, "ai_publications": {"counts": [11, 10, 16, 11, 20, 20, 33, 42, 26, 7, 0], "total": 196, "isTopResearch": false, "rank": 81, "sp500_rank": 64}, "ai_publications_growth": {"counts": [], "total": -27.966477966477967, "isTopResearch": false, "rank": 1386, "sp500_rank": 377}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 1, 1, 0], "total": 7, "isTopResearch": false, "rank": 134, "sp500_rank": 66}, "citation_counts": {"counts": [45, 67, 100, 114, 138, 193, 275, 377, 517, 438, 16], "total": 2280, "isTopResearch": false, "rank": 123, "sp500_rank": 77}, "cv_pubs": {"counts": [2, 0, 2, 1, 1, 4, 9, 9, 3, 3, 0], "total": 34, "isTopResearch": true, "rank": 106, "sp500_rank": 71}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [3, 2, 4, 5, 9, 9, 14, 18, 13, 1, 0], "total": 78, "isTopResearch": true, "rank": 38, "sp500_rank": 36}, "citations_per_article": {"counts": [4.090909090909091, 6.7, 6.25, 10.363636363636363, 6.9, 9.65, 8.333333333333334, 8.976190476190476, 19.884615384615383, 62.57142857142857, 0], "total": 11.63265306122449, "isTopResearch": false, "rank": 483, "sp500_rank": 167}}, "patents": {"ai_patents": {"counts": [5, 1, 1, 4, 3, 14, 20, 13, 6, 0, 0], "total": 67, "table": null, "rank": 193, "sp500_rank": 123}, "ai_patents_growth": {"counts": [], "total": 124.84126984126983, "table": null, "rank": 91, "sp500_rank": 41}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [50, 10, 10, 40, 30, 140, 200, 130, 60, 0, 0], "total": 670, "table": null, "rank": 193, "sp500_rank": 123}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 1, 0, 0, 0, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 105, "sp500_rank": 81}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [5, 1, 0, 3, 3, 14, 18, 8, 2, 0, 0], "total": 54, "table": "industry", "rank": 41, "sp500_rank": 33}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 2, 3, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 305, "sp500_rank": 156}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0], "total": 4, "table": "industry", "rank": 115, "sp500_rank": 79}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 225, "sp500_rank": 119}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 97, "sp500_rank": 78}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 160, "sp500_rank": 91}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [3, 1, 1, 3, 3, 12, 14, 5, 3, 0, 0], "total": 45, "table": "application", "rank": 55, "sp500_rank": 44}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 2, 1, 4, 0, 2, 0, 0, 0], "total": 9, "table": "application", "rank": 259, "sp500_rank": 139}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [1, 1, 0, 0, 1, 7, 5, 4, 1, 0, 0], "total": 20, "table": "application", "rank": 84, "sp500_rank": 63}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 264, "rank": 625, "sp500_rank": 264}, "ai_jobs": {"counts": null, "total": 27, "rank": 627, "sp500_rank": 262}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 2008, "country": "Spain", "website": "https://www.iberdrola.es/", "crunchbase": {"text": " 3b6c904b-077a-e5b9-23a2-f4fa10a04476 ", "url": " https://www.crunchbase.com/organization/iberdrola "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/iberdrola"], "stage": "Mature", "name": "Iberdrola", "patent_name": "Iberdrola", "continent": "Europe", "local_logo": null, "aliases": "Iberdrola; Iberdrola Sa", "permid_links": [{"text": 4295889602, "url": "https://permid.org/1-4295889602"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "STU:IBE1", "url": "https://www.google.com/finance/quote/IBE1:STU"}, {"text": "DUS:IBE1", "url": "https://www.google.com/finance/quote/DUS:IBE1"}, {"text": "MIL:IBE", "url": "https://www.google.com/finance/quote/IBE:MIL"}, {"text": "GER:IBEX.A", "url": "https://www.google.com/finance/quote/GER:IBEX.A"}, {"text": "MUN:IBE1", "url": "https://www.google.com/finance/quote/IBE1:MUN"}, {"text": "DEU:IBE", "url": "https://www.google.com/finance/quote/DEU:IBE"}, {"text": "HAM:IBE1", "url": "https://www.google.com/finance/quote/HAM:IBE1"}, {"text": "FRA:IBE1", "url": "https://www.google.com/finance/quote/FRA:IBE1"}, {"text": "PKC:IBDSF", "url": "https://www.google.com/finance/quote/IBDSF:PKC"}, {"text": "BER:IBE1", "url": "https://www.google.com/finance/quote/BER:IBE1"}, {"text": "LSE:0HIT", "url": "https://www.google.com/finance/quote/0HIT:LSE"}, {"text": "HAN:IBE1", "url": "https://www.google.com/finance/quote/HAN:IBE1"}, {"text": "PKC:IBDRY", "url": "https://www.google.com/finance/quote/IBDRY:PKC"}, {"text": "BRN:IBE1", "url": "https://www.google.com/finance/quote/BRN:IBE1"}, {"text": "STU:IBE5", "url": "https://www.google.com/finance/quote/IBE5:STU"}, {"text": "EBT:IBEE", "url": "https://www.google.com/finance/quote/EBT:IBEe"}, {"text": "FRA:IBE", "url": "https://www.google.com/finance/quote/FRA:IBE"}, {"text": "MCE:IBE", "url": "https://www.google.com/finance/quote/IBE:MCE"}, {"text": "MEX:IBEN", "url": "https://www.google.com/finance/quote/IBEN:MEX"}, {"text": "VIE:IBE", "url": "https://www.google.com/finance/quote/IBE:VIE"}, {"text": "DEU:IBE5", "url": "https://www.google.com/finance/quote/DEU:IBE5"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Evolutionary computation", "field_count": 1}, {"field_name": "Hyperparameter", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Hybrid system", "field_count": 1}], "clusters": [{"cluster_id": 63941, "cluster_count": 7}, {"cluster_id": 369, "cluster_count": 5}, {"cluster_id": 3501, "cluster_count": 1}, {"cluster_id": 83231, "cluster_count": 1}, {"cluster_id": 303, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2008, "referenced_count": 18}, {"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 1858, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 1917, "referenced_count": 1}, {"ref_CSET_id": 1911, "referenced_count": 1}, {"ref_CSET_id": 518, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "load_forecasting", "task_count": 4}, {"referent": "window_detection", "task_count": 4}, {"referent": "feature_selection", "task_count": 3}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "parameter_estimation", "task_count": 1}, {"referent": "steering_control", "task_count": 1}, {"referent": "multi_task_learning", "task_count": 1}, {"referent": "automatic_machine_learning_model_selection", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "vqa_models", "method_count": 4}, {"referent": "logistic_regression", "method_count": 4}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "optimization", "method_count": 2}, {"referent": "linear_regression", "method_count": 2}, {"referent": "elmo", "method_count": 2}, {"referent": "low_rank_tensor_learning_paradigms", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [16, 32, 23, 36, 26, 27, 24, 23, 24, 20, 2], "total": 253, "isTopResearch": false, "rank": 378, "sp500_rank": 239}, "ai_publications": {"counts": [0, 1, 2, 1, 2, 3, 2, 2, 1, 0, 0], "total": 14, "isTopResearch": false, "rank": 359, "sp500_rank": 192}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [22, 31, 58, 49, 58, 64, 68, 94, 89, 103, 9], "total": 645, "isTopResearch": false, "rank": 240, "sp500_rank": 129}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 31.0, 29.0, 49.0, 29.0, 21.333333333333332, 34.0, 47.0, 89.0, 0, 0], "total": 46.07142857142857, "isTopResearch": false, "rank": 105, "sp500_rank": 21}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 262, "rank": 626, "sp500_rank": 265}, "ai_jobs": {"counts": null, "total": 42, "rank": 516, "sp500_rank": 242}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2554, "country": "United States", "website": "https://www.zoetis.com/index.aspx", "crunchbase": {"text": "7c62218c-8f86-0a77-f757-f5bc9816f119", "url": "https://www.crunchbase.com/organization/zoetis"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/zoetis"], "stage": "Mature", "name": "Zoetis", "patent_name": "zoetis", "continent": "North America", "local_logo": "zoetis.png", "aliases": "Pfizer; Zoetis Inc", "permid_links": [{"text": 5037658928, "url": "https://permid.org/1-5037658928"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ZTS", "url": "https://www.google.com/finance/quote/nyse:zts"}], "market_full": [{"text": "GER:ZOEX", "url": "https://www.google.com/finance/quote/ger:zoex"}, {"text": "NYSE:ZTS", "url": "https://www.google.com/finance/quote/nyse:zts"}, {"text": "ASE:ZTS", "url": "https://www.google.com/finance/quote/ase:zts"}, {"text": "BER:ZOE", "url": "https://www.google.com/finance/quote/ber:zoe"}, {"text": "HAN:ZOE", "url": "https://www.google.com/finance/quote/han:zoe"}, {"text": "DUS:ZOE", "url": "https://www.google.com/finance/quote/dus:zoe"}, {"text": "SAO:Z1TS34", "url": "https://www.google.com/finance/quote/sao:z1ts34"}, {"text": "MUN:ZOE", "url": "https://www.google.com/finance/quote/mun:zoe"}, {"text": "VIE:ZOTS", "url": "https://www.google.com/finance/quote/vie:zots"}, {"text": "NYQ:ZTS", "url": "https://www.google.com/finance/quote/nyq:zts"}, {"text": "DEU:ZOE", "url": "https://www.google.com/finance/quote/deu:zoe"}, {"text": "FRA:ZOE", "url": "https://www.google.com/finance/quote/fra:zoe"}, {"text": "MCX:ZTS-RM", "url": "https://www.google.com/finance/quote/mcx:zts-rm"}, {"text": "LSE:0M3Q", "url": "https://www.google.com/finance/quote/0m3q:lse"}, {"text": "MEX:ZTS*", "url": "https://www.google.com/finance/quote/mex:zts*"}, {"text": "STU:ZOE", "url": "https://www.google.com/finance/quote/stu:zoe"}, {"text": "BRN:ZOE", "url": "https://www.google.com/finance/quote/brn:zoe"}], "crunchbase_description": "Zoetis provides healthcare services for animal.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Hidden Markov model", "field_count": 1}], "clusters": [{"cluster_id": 6066, "cluster_count": 1}, {"cluster_id": 4578, "cluster_count": 1}, {"cluster_id": 1429, "cluster_count": 1}, {"cluster_id": 80249, "cluster_count": 1}, {"cluster_id": 10988, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 2554, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 1928, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}], "tasks": [{"referent": "computational_phenotyping", "task_count": 1}, {"referent": "imputation", "task_count": 1}, {"referent": "artist_classification", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "action_localization", "task_count": 1}, {"referent": "indoor_positioning", "task_count": 1}, {"referent": "position_estimation", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "mad_learning", "method_count": 1}, {"referent": "nt_xent", "method_count": 1}, {"referent": "dcgan", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "tsrup", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [53, 94, 95, 117, 94, 90, 86, 101, 94, 66, 1], "total": 891, "isTopResearch": false, "rank": 201, "fortune500_rank": 72}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 2, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "fortune500_rank": 419}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 2, 2, 8, 10, 24, 2], "total": 48, "isTopResearch": false, "rank": 590, "fortune500_rank": 162}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 2.0, 0, 4.0, 5.0, 0, 0], "total": 9.6, "isTopResearch": false, "rank": 554, "fortune500_rank": 161}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 260, "rank": 627, "fortune500_rank": 333}, "ai_jobs": {"counts": null, "total": 50, "rank": 483, "fortune500_rank": 256}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Zoetis Inc. is an American drug company, the world's largest producer of medicine and vaccinations for pets and livestock. The company was a subsidiary of Pfizer, the world's largest drug maker, but with Pfizer's spinoff of its 83% interest in the firm it is now a completely independent company. The company directly markets the products in approximately 45 countries, and sells the products in more than 100 countries. Operations outside the United States accounted for 50% of the total revenue. Contemporaneous with the spinoff in June 2013 S&P Dow Jones Indices announced that Zoetis would replace First Horizon National Corporation in the S&P 500 stock market index.", "wikipedia_link": "https://en.wikipedia.org/wiki/Zoetis", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2817, "country": "United States", "website": "https://www.moog.com/", "crunchbase": {"text": "16e46ddc-9dbd-f34d-de48-bd09fc2a3232", "url": "https://www.crunchbase.com/organization/moog"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/moog"], "stage": "Mature", "name": "Moog Inc", "patent_name": "moog inc", "continent": "North America", "local_logo": "moog_inc.png", "aliases": "Moog; Moog Inc", "permid_links": [{"text": 4295908640, "url": "https://permid.org/1-4295908640"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MOG.A", "url": "https://www.google.com/finance/quote/mog.a:nyse"}], "market_full": [{"text": "NYQ:MOG.A", "url": "https://www.google.com/finance/quote/mog.a:nyq"}, {"text": "NYSE:MOG.A", "url": "https://www.google.com/finance/quote/mog.a:nyse"}], "crunchbase_description": "We work on some of the world\u2019s most exciting technical projects, creating products that challenge the limits of what\u2019s possible.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Feature extraction", "field_count": 1}], "clusters": [{"cluster_id": 1011, "cluster_count": 2}, {"cluster_id": 16652, "cluster_count": 2}, {"cluster_id": 67712, "cluster_count": 2}, {"cluster_id": 46065, "cluster_count": 1}, {"cluster_id": 8412, "cluster_count": 1}, {"cluster_id": 35767, "cluster_count": 1}, {"cluster_id": 65581, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 2817, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 790, "referenced_count": 1}, {"ref_CSET_id": 820, "referenced_count": 1}, {"ref_CSET_id": 1383, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}], "tasks": [{"referent": "steering_control", "task_count": 3}, {"referent": "robots", "task_count": 3}, {"referent": "fault_detection", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "mobile_robot", "task_count": 2}, {"referent": "supervised_learning", "task_count": 1}, {"referent": "real_time_object_detection", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}, {"referent": "automl", "task_count": 1}, {"referent": "legged_robots", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 2}, {"referent": "feature_extractors", "method_count": 2}, {"referent": "cross_view_training", "method_count": 1}, {"referent": "fourier_related_transforms", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "deep_voice_3", "method_count": 1}, {"referent": "reduction_a", "method_count": 1}, {"referent": "mas", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 6, 10, 7, 10, 6, 9, 6, 4, 3, 0], "total": 63, "isTopResearch": false, "rank": 585}, "ai_publications": {"counts": [0, 1, 0, 2, 2, 1, 1, 1, 0, 0, 0], "total": 8, "isTopResearch": false, "rank": 455}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [1, 2, 3, 3, 19, 29, 44, 59, 71, 79, 5], "total": 315, "isTopResearch": false, "rank": 325}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 2, 2, 1, 0, 1, 0, 0, 0], "total": 6, "isTopResearch": true, "rank": 156}, "citations_per_article": {"counts": [0, 2.0, 0, 1.5, 9.5, 29.0, 44.0, 59.0, 0, 0, 0], "total": 39.375, "isTopResearch": false, "rank": 133}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 259, "rank": 628}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Moog is an American-based designer and manufacturer of motion and fluid controls and control systems for applications in aerospace, defense, industrial and medical devices. The company operates under four segments: aircraft controls, space and defense controls, industrial controls, and components.", "wikipedia_link": "https://en.wikipedia.org/wiki/Moog_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 220, "country": "United States", "website": "https://scale.com/", "crunchbase": {"text": "b23e775b-7799-f36f-fa8c-6b230a1df74e", "url": "https://www.crunchbase.com/organization/scale-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/scaleai"], "stage": "Mature", "name": "Scale Ai", "patent_name": "scale ai", "continent": "North America", "local_logo": "scale_ai.png", "aliases": "Scale Ai, Inc", "permid_links": [{"text": 5064695160, "url": "https://permid.org/1-5064695160"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Scale AI is the data platform for AI, providing high quality training data for leading machine learning teams.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "3D reconstruction", "field_count": 1}, {"field_name": "Stereo camera", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 23307, "cluster_count": 2}, {"cluster_id": 5622, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 10}, {"ref_CSET_id": 223, "referenced_count": 6}, {"ref_CSET_id": 245, "referenced_count": 6}, {"ref_CSET_id": 37, "referenced_count": 5}, {"ref_CSET_id": 336, "referenced_count": 5}, {"ref_CSET_id": 184, "referenced_count": 4}, {"ref_CSET_id": 1126, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 3}], "tasks": [{"referent": "autonomous_driving", "task_count": 2}, {"referent": "3d_object_classification", "task_count": 2}, {"referent": "domain_generalization", "task_count": 1}, {"referent": "point_cloud_segmentation", "task_count": 1}, {"referent": "object_detection", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}, {"referent": "fine_grained_action_detection", "task_count": 1}, {"referent": "3d_reconstruction", "task_count": 1}, {"referent": "multi_view_learning", "task_count": 1}], "methods": [{"referent": "atmo", "method_count": 1}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "cdcc_net", "method_count": 1}, {"referent": "adaptive_input_representations", "method_count": 1}, {"referent": "q_learning_networks", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "(2+1)d_convolution", "method_count": 1}, {"referent": "carafe", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": -25.0, "isTopResearch": false, "rank": 1365}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 17, 62, 81, 2], "total": 163, "isTopResearch": false, "rank": 423}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 1, 0], "total": 4, "isTopResearch": true, "rank": 313}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 8.5, 62.0, 81.0, 0], "total": 40.75, "isTopResearch": false, "rank": 129}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 257, "rank": 629}, "ai_jobs": {"counts": null, "total": 68, "rank": 412}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "ImageNet is a repository of 14 million labeled images in more than 20,000 categories. By 2011, AlexNet, the first modern neural network, was the top performer on the ImageNet leaderboard. This kicked off the deep learning craze.", "company_site_link": "https://scale.com/about", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2749, "country": "United States", "website": "http://www.ulalaunch.com/", "crunchbase": {"text": "a656e0d0-5c80-7818-5c87-4a32f4e8d19f", "url": "https://www.crunchbase.com/organization/united-launch-alliance"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ulalaunch"], "stage": "Mature", "name": "United Launch Alliance LLC", "patent_name": "united launch alliance llc", "continent": "North America", "local_logo": "united_launch_alliance_llc.png", "aliases": "Ula; United Launch Alliance; United Launch Alliance, Llc", "permid_links": [{"text": 4297696733, "url": "https://permid.org/1-4297696733"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "United Launch Alliance provides spacecraft launch services to the Government of the United States.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Particle swarm optimization", "field_count": 1}], "clusters": [{"cluster_id": 252, "cluster_count": 1}, {"cluster_id": 84, "cluster_count": 1}, {"cluster_id": 23318, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "building_extraction", "task_count": 1}, {"referent": "steering_control", "task_count": 1}, {"referent": "automl", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "joint_entity_and_relation_extraction", "task_count": 1}, {"referent": "remote_sensing", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "vehicle_detection", "task_count": 1}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "gts", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [12, 8, 10, 11, 2, 0, 1, 3, 1, 1, 0], "total": 49, "isTopResearch": false, "rank": 619}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [1, 18, 50, 41, 61, 40, 70, 59, 60, 47, 2], "total": 449, "isTopResearch": false, "rank": 282}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 18.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 449.0, "isTopResearch": false, "rank": 4}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 256, "rank": 630}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Industrials", "business_sector": "Industrial Goods"}, {"cset_id": 61, "country": "United States", "website": "http://www.dataiku.com/", "crunchbase": {"text": "db95d288-f0d2-e5e7-14ab-158e6b4bf706", "url": "https://www.crunchbase.com/organization/dataiku"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dataiku"], "stage": "Mature", "name": "Dataiku", "patent_name": "dataiku", "continent": "North America", "local_logo": "dataiku.png", "aliases": "Dataiku Ltd", "permid_links": [{"text": 5060654642, "url": "https://permid.org/1-5060654642"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Dataiku operates as an enterprise artificial intelligence and machine-learning platform.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Active learning (machine learning)", "field_count": 2}], "clusters": [{"cluster_id": 6635, "cluster_count": 2}, {"cluster_id": 1168, "cluster_count": 2}, {"cluster_id": 36512, "cluster_count": 1}, {"cluster_id": 15989, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 23, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 61, "referenced_count": 2}, {"ref_CSET_id": 1952, "referenced_count": 1}, {"ref_CSET_id": 790, "referenced_count": 1}], "tasks": [{"referent": "feature_selection", "task_count": 2}, {"referent": "classification", "task_count": 1}, {"referent": "patient_outcomes", "task_count": 1}, {"referent": "building_extraction", "task_count": 1}, {"referent": "active_learning", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}, {"referent": "one_shot_learning", "task_count": 1}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "hit_detector", "method_count": 1}, {"referent": "random_erasing", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 2, 1, 1, 0, 0, 3, 2, 3, 0], "total": 13, "isTopResearch": false, "rank": 888}, "ai_publications": {"counts": [0, 1, 0, 0, 1, 0, 0, 2, 1, 2, 0], "total": 7, "isTopResearch": false, "rank": 481}, "ai_publications_growth": {"counts": [], "total": 25.0, "isTopResearch": false, "rank": 101}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 1, 0, 3, 6, 34, 51, 43, 0], "total": 138, "isTopResearch": false, "rank": 451}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0.0, 0, 0, 17.0, 51.0, 21.5, 0], "total": 19.714285714285715, "isTopResearch": false, "rank": 316}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 255, "rank": 631}, "ai_jobs": {"counts": null, "total": 111, "rank": 319}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Dataiku is an AI and machine learning company which was founded in 2013 and has grown exponentially since. In December 2019, Dataiku announced that CapitalG - the late-stage growth venture capital fund financed by Alphabet Inc. - joined Dataiku as an investor and that it had achieved unicorn status, valued at $1.4 billion. Dataiku currently employs more than 500 people worldwide between offices in New York, Paris, London, Munich, Sydney, Singapore, and Dubai.", "wikipedia_link": "https://en.wikipedia.org/wiki/Dataiku", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2304, "country": "United States", "website": "http://www.eogresources.com/", "crunchbase": {"text": "41e9a5cb-90cb-9c4a-10de-df70f1d4e05e", "url": "https://www.crunchbase.com/organization/eog-resources"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/eog-resources"], "stage": "Mature", "name": "EOG Resources", "patent_name": "eog resources", "continent": "North America", "local_logo": "eog_resources.png", "aliases": "Enron Oil & Gas Company; Eog Resources, Inc", "permid_links": [{"text": 4295912113, "url": "https://permid.org/1-4295912113"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EOG", "url": "https://www.google.com/finance/quote/eog:nyse"}], "market_full": [{"text": "FRA:EO5", "url": "https://www.google.com/finance/quote/eo5:fra"}, {"text": "MUN:EO5", "url": "https://www.google.com/finance/quote/eo5:mun"}, {"text": "STU:EO5", "url": "https://www.google.com/finance/quote/eo5:stu"}, {"text": "XETR:EO5", "url": "https://www.google.com/finance/quote/eo5:xetr"}, {"text": "MOEX:EOG-RM", "url": "https://www.google.com/finance/quote/eog-rm:moex"}, {"text": "LSE:0IDR", "url": "https://www.google.com/finance/quote/0idr:lse"}, {"text": "BER:EO5", "url": "https://www.google.com/finance/quote/ber:eo5"}, {"text": "FWB:EO5", "url": "https://www.google.com/finance/quote/eo5:fwb"}, {"text": "NYSE:EOG", "url": "https://www.google.com/finance/quote/eog:nyse"}, {"text": "MEX:EO5", "url": "https://www.google.com/finance/quote/eo5:mex"}], "crunchbase_description": "EOG Resources, Inc. is a independent oil and gas companies in the United States.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 0, 7, 5, 6, 5, 6, 4, 1, 1, 0], "total": 38, "isTopResearch": false, "rank": 676, "fortune500_rank": 247}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 254, "rank": 632, "fortune500_rank": 334}, "ai_jobs": {"counts": null, "total": 40, "rank": 527, "fortune500_rank": 274}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "EOG Resources, Inc. is an American energy company engaged in hydrocarbon exploration. It is organized in Delaware and headquartered in the Heritage Plaza building in Houston, Texas.", "wikipedia_link": "https://en.wikipedia.org/wiki/EOG_Resources", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2486, "country": "United States", "website": "https://sealedair.com/", "crunchbase": {"text": "369210c3-4800-9d00-acf4-05415a605aa0", "url": "https://www.crunchbase.com/organization/sealed-air-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sealed-air-corporation"], "stage": "Mature", "name": "Sealed Air", "patent_name": "sealed air", "continent": "North America", "local_logo": "sealed_air.png", "aliases": "Sealed Air Corp; Sealed Air Corporation", "permid_links": [{"text": 4295904898, "url": "https://permid.org/1-4295904898"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SEE", "url": "https://www.google.com/finance/quote/nyse:see"}], "market_full": [{"text": "STU:SDA", "url": "https://www.google.com/finance/quote/sda:stu"}, {"text": "DEU:SEE", "url": "https://www.google.com/finance/quote/deu:see"}, {"text": "MEX:SEE*", "url": "https://www.google.com/finance/quote/mex:see*"}, {"text": "BRN:SDA", "url": "https://www.google.com/finance/quote/brn:sda"}, {"text": "ASE:SEE", "url": "https://www.google.com/finance/quote/ase:see"}, {"text": "DUS:SDA", "url": "https://www.google.com/finance/quote/dus:sda"}, {"text": "SAO:S1EA34", "url": "https://www.google.com/finance/quote/s1ea34:sao"}, {"text": "FRA:SDA", "url": "https://www.google.com/finance/quote/fra:sda"}, {"text": "BER:SDA", "url": "https://www.google.com/finance/quote/ber:sda"}, {"text": "MCX:SEE-RM", "url": "https://www.google.com/finance/quote/mcx:see-rm"}, {"text": "MUN:SDA", "url": "https://www.google.com/finance/quote/mun:sda"}, {"text": "LSE:0L4F", "url": "https://www.google.com/finance/quote/0l4f:lse"}, {"text": "NYQ:SEE", "url": "https://www.google.com/finance/quote/nyq:see"}, {"text": "NYSE:SEE", "url": "https://www.google.com/finance/quote/nyse:see"}], "crunchbase_description": "Sealed Air develops products and solutions that focus on food packaging, facility hygiene, and shipping of goods safely.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 21777, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "classification", "task_count": 1}, {"referent": "emotion_analysis", "task_count": 1}, {"referent": "robots", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 3, 4, 12, 13, 8, 7, 6, 6, 5, 0], "total": 64, "isTopResearch": false, "rank": 582, "fortune500_rank": 216}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 2, 7, 5, 11, 0], "total": 25, "isTopResearch": false, "rank": 662, "fortune500_rank": 181}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 25.0, "isTopResearch": false, "rank": 239, "fortune500_rank": 74}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 1, 1, 3, 0, 0, 0, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198, "fortune500_rank": 56}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 10, 10, 30, 0, 0, 0, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 180, "fortune500_rank": 52}, "Industrial_and_Manufacturing": {"counts": [0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 131, "fortune500_rank": 46}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212, "fortune500_rank": 73}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 1, 2, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 189, "fortune500_rank": 62}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 254, "rank": 632, "fortune500_rank": 334}, "ai_jobs": {"counts": null, "total": 14, "rank": 775, "fortune500_rank": 384}}, "sector": "Basic Materials", "business_sector": "Applied Resources", "wikipedia_description": "Sealed Air Corporation is a packaging company known for its brands: Cryovac food packaging and Bubble Wrap cushioning packaging. It sold off its stake in Diversey Care in 2017. Headquartered in Charlotte, North Carolina, its current CEO is Ted Doheny.", "wikipedia_link": "https://en.wikipedia.org/wiki/Sealed_Air", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2439, "country": "United States", "website": "http://www.nclhltd.com/", "crunchbase": {"text": "df8a29ed-4ab2-aea7-2095-85045c5a8e19", "url": "https://www.crunchbase.com/organization/norwegian-cruise-line"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/norwegian-cruise-line-holdings"], "stage": "Mature", "name": "Norwegian Cruise Line Holdings", "patent_name": "norwegian cruise line holdings", "continent": "North America", "local_logo": "norwegian_cruise_line_holdings.png", "aliases": "Ncl; Norwegian Cruise Line; Norwegian Cruise Line Holdings Ltd; Norwegian Cruise Line Holdings Ltd. (Nyse:Nclh)", "permid_links": [{"text": 5000822866, "url": "https://permid.org/1-5000822866"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NCLH", "url": "https://www.google.com/finance/quote/nclh:nyse"}], "market_full": [{"text": "NYQ:NCLH", "url": "https://www.google.com/finance/quote/nclh:nyq"}, {"text": "FRA:1NC", "url": "https://www.google.com/finance/quote/1nc:fra"}, {"text": "DEU:1NC", "url": "https://www.google.com/finance/quote/1nc:deu"}, {"text": "ASE:NCLH", "url": "https://www.google.com/finance/quote/ase:nclh"}, {"text": "NYSE:NCLH", "url": "https://www.google.com/finance/quote/nclh:nyse"}, {"text": "STU:1NC", "url": "https://www.google.com/finance/quote/1nc:stu"}, {"text": "VIE:NCLH", "url": "https://www.google.com/finance/quote/nclh:vie"}, {"text": "MEX:NCLHN", "url": "https://www.google.com/finance/quote/mex:nclhn"}, {"text": "BER:1NC", "url": "https://www.google.com/finance/quote/1nc:ber"}, {"text": "DUS:1NC", "url": "https://www.google.com/finance/quote/1nc:dus"}, {"text": "SAO:N1CL34", "url": "https://www.google.com/finance/quote/n1cl34:sao"}, {"text": "HAM:1NC", "url": "https://www.google.com/finance/quote/1nc:ham"}, {"text": "BRN:1NC", "url": "https://www.google.com/finance/quote/1nc:brn"}, {"text": "MUN:1NC", "url": "https://www.google.com/finance/quote/1nc:mun"}, {"text": "LSE:0UC3", "url": "https://www.google.com/finance/quote/0uc3:lse"}, {"text": "HAN:1NC", "url": "https://www.google.com/finance/quote/1nc:han"}], "crunchbase_description": "Norweigian Cruise Line is a travel company that takes customers to exotic destinations using cruise ships.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 254, "rank": 632, "fortune500_rank": 334}, "ai_jobs": {"counts": null, "total": 13, "rank": 790, "fortune500_rank": 393}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Norwegian Cruise Line Holdings (NCLH) is a holding company that is domiciled in Bermuda and based in the United States. It operates three cruise lines as wholly owned subsidiaries: Norwegian Cruise Line, Oceania Cruises, and Regent Seven Seas Cruises. With its subsidiaries combined, it is the third-largest cruise operator in the world. It is a publicly traded company listed on the New York Stock Exchange. It has never had any connection with Norway, although its subsidiary Norwegian Cruise Line did, at its inception.", "wikipedia_link": "https://en.wikipedia.org/wiki/Norwegian_Cruise_Line_Holdings", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1806, "country": "China", "website": "https://www.abchina.com/", "crunchbase": {"text": " 6fd5b7e7-70e4-24f6-e7c0-3efb3865c892", "url": " https://www.crunchbase.com/organization/agricultural-bank-of-china"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/agricultural-bank-of-china"], "stage": "Mature", "name": "Agricultural Bank Of China", "patent_name": "Agricultural Bank of China", "continent": "Asia", "local_logo": null, "aliases": "Agricultural Bank Of China Co., Ltd; Agricultural Bank of China; \u4e2d\u56fd\u519c\u4e1a\u94f6\u884c; \u4e2d\u56fd\u519c\u4e1a\u94f6\u884c\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5000014265, "url": "https://permid.org/1-5000014265"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:1288", "url": "https://www.google.com/finance/quote/1288:HKG"}], "market_full": [{"text": "PKC:ACGBF", "url": "https://www.google.com/finance/quote/ACGBF:PKC"}, {"text": "HKG.HZ:1288", "url": "https://www.google.com/finance/quote/1288:HKG.HZ"}, {"text": "DEU:1288", "url": "https://www.google.com/finance/quote/1288:DEU"}, {"text": "FRA:EK7A", "url": "https://www.google.com/finance/quote/EK7A:FRA"}, {"text": "DUS:EK7", "url": "https://www.google.com/finance/quote/DUS:EK7"}, {"text": "BER:EK7", "url": "https://www.google.com/finance/quote/BER:EK7"}, {"text": "STU:EK7", "url": "https://www.google.com/finance/quote/EK7:STU"}, {"text": "HKG:1288", "url": "https://www.google.com/finance/quote/1288:HKG"}, {"text": "VIE:EK7", "url": "https://www.google.com/finance/quote/EK7:VIE"}, {"text": "MUN:EK7", "url": "https://www.google.com/finance/quote/EK7:MUN"}, {"text": "BER:EK7A", "url": "https://www.google.com/finance/quote/BER:EK7A"}, {"text": "DEU:EK7A", "url": "https://www.google.com/finance/quote/DEU:EK7A"}, {"text": "FRA:EK7", "url": "https://www.google.com/finance/quote/EK7:FRA"}, {"text": "PKC:ACGBY", "url": "https://www.google.com/finance/quote/ACGBY:PKC"}, {"text": "SHH:601288", "url": "https://www.google.com/finance/quote/601288:SHH"}, {"text": "HAM:EK7", "url": "https://www.google.com/finance/quote/EK7:HAM"}, {"text": "HKG.HS:1288", "url": "https://www.google.com/finance/quote/1288:HKG.HS"}, {"text": "HAN:EK7", "url": "https://www.google.com/finance/quote/EK7:HAN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature selection", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Semantic interpretation", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Bayesian network", "field_count": 1}, {"field_name": "Principal component analysis", "field_count": 1}, {"field_name": "Wavelet", "field_count": 1}], "clusters": [{"cluster_id": 21524, "cluster_count": 2}, {"cluster_id": 2592, "cluster_count": 2}, {"cluster_id": 42324, "cluster_count": 1}, {"cluster_id": 20535, "cluster_count": 1}, {"cluster_id": 884, "cluster_count": 1}, {"cluster_id": 56495, "cluster_count": 1}, {"cluster_id": 556, "cluster_count": 1}, {"cluster_id": 61268, "cluster_count": 1}, {"cluster_id": 579, "cluster_count": 1}, {"cluster_id": 7065, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 12}, {"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 208, "referenced_count": 2}, {"ref_CSET_id": 787, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 790, "referenced_count": 1}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 1811, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "feature_selection", "task_count": 3}, {"referent": "computational_manga", "task_count": 2}, {"referent": "parameter_estimation", "task_count": 2}, {"referent": "neural_network_security", "task_count": 2}, {"referent": "imbalanced_classification", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "knowledge_base", "task_count": 2}, {"referent": "software_defect_prediction", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 5}, {"referent": "auto_classifier", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "optimization", "method_count": 3}, {"referent": "3d_representations", "method_count": 3}, {"referent": "mad_learning", "method_count": 2}, {"referent": "cgnn", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "heuristic_search_algorithms", "method_count": 2}, {"referent": "distributions", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [427, 406, 345, 278, 295, 304, 278, 274, 256, 22, 2], "total": 2887, "isTopResearch": false, "rank": 98, "sp500_rank": 79}, "ai_publications": {"counts": [6, 5, 0, 4, 4, 2, 2, 2, 7, 0, 0], "total": 32, "isTopResearch": false, "rank": 230, "sp500_rank": 142}, "ai_publications_growth": {"counts": [], "total": 50.0, "isTopResearch": false, "rank": 63, "sp500_rank": 31}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [30, 34, 45, 62, 50, 57, 76, 65, 79, 107, 5], "total": 610, "isTopResearch": false, "rank": 244, "sp500_rank": 131}, "cv_pubs": {"counts": [2, 0, 0, 1, 2, 0, 0, 0, 1, 0, 0], "total": 6, "isTopResearch": true, "rank": 267, "sp500_rank": 137}, "nlp_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [5.0, 6.8, 0, 15.5, 12.5, 28.5, 38.0, 32.5, 11.285714285714286, 0, 0], "total": 19.0625, "isTopResearch": false, "rank": 326, "sp500_rank": 100}}, "patents": {"ai_patents": {"counts": [0, 2, 0, 2, 2, 4, 3, 27, 43, 54, 0], "total": 137, "table": null, "rank": 135, "sp500_rank": 86}, "ai_patents_growth": {"counts": [], "total": 291.6666666666667, "table": null, "rank": 25, "sp500_rank": 10}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 20, 0, 20, 20, 40, 30, 270, 430, 540, 0], "total": 1370, "table": null, "rank": 135, "sp500_rank": 86}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], "total": 3, "table": null, "rank": 158, "sp500_rank": 91}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 4, 1, 0], "total": 6, "table": "industry", "rank": 121, "sp500_rank": 83}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 38, "sp500_rank": 31}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 1, 2, 1, 15, 19, 12, 0], "total": 51, "table": "industry", "rank": 115, "sp500_rank": 74}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 2, 1, 10, 13, 8, 0], "total": 34, "table": "industry", "rank": 32, "sp500_rank": 26}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 3, 4, 0], "total": 9, "table": "industry", "rank": 174, "sp500_rank": 101}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [0, 0, 0, 0, 1, 2, 2, 12, 6, 1, 0], "total": 24, "table": "industry", "rank": 89, "sp500_rank": 63}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "table": "application", "rank": 160, "sp500_rank": 91}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0], "total": 3, "table": "application", "rank": 162, "sp500_rank": 88}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 2, 7, 2, 0, 0], "total": 12, "table": "application", "rank": 113, "sp500_rank": 80}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 0, 1, 1, 1, 1, 7, 11, 17, 0], "total": 40, "table": "application", "rank": 133, "sp500_rank": 82}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], "total": 3, "table": "application", "rank": 191, "sp500_rank": 121}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 253, "rank": 635, "sp500_rank": 266}, "ai_jobs": {"counts": null, "total": 20, "rank": 692, "sp500_rank": 277}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 1920, "country": "China", "website": "https://www.cmbchina.com/", "crunchbase": {"text": " c2bbfa37-2043-6ea6-8ccc-a9427e60b77a", "url": " https://www.crunchbase.com/organization/china-merchants-bank"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/china-merchants-bank"], "stage": "Mature", "name": "China Merchants Bank", "patent_name": "China Merchants Bank", "continent": "Asia", "local_logo": null, "aliases": "China Merchants Bank; \u4e2d\u56fd\u62db\u5546\u94f6\u884c", "permid_links": [{"text": 4295863774, "url": "https://permid.org/1-4295863774"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:4614", "url": "https://www.google.com/finance/quote/4614:HKG"}, {"text": "HKG:3968", "url": "https://www.google.com/finance/quote/3968:HKG"}], "market_full": [{"text": "PKC:CIHHF", "url": "https://www.google.com/finance/quote/CIHHF:PKC"}, {"text": "PKC:CIHKY", "url": "https://www.google.com/finance/quote/CIHKY:PKC"}, {"text": "SHH:600036", "url": "https://www.google.com/finance/quote/600036:SHH"}, {"text": "BER:M4B", "url": "https://www.google.com/finance/quote/BER:M4B"}, {"text": "HKG:4614", "url": "https://www.google.com/finance/quote/4614:HKG"}, {"text": "STU:M4B", "url": "https://www.google.com/finance/quote/M4B:STU"}, {"text": "FRA:M4B", "url": "https://www.google.com/finance/quote/FRA:M4B"}, {"text": "DEU:3968", "url": "https://www.google.com/finance/quote/3968:DEU"}, {"text": "DUS:M4B", "url": "https://www.google.com/finance/quote/DUS:M4B"}, {"text": "MUN:M4B", "url": "https://www.google.com/finance/quote/M4B:MUN"}, {"text": "HKG:3968", "url": "https://www.google.com/finance/quote/3968:HKG"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Sentiment analysis", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}, {"field_name": "Smoothing", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "Conditional random field", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Sentence", "field_count": 1}], "clusters": [{"cluster_id": 24364, "cluster_count": 3}, {"cluster_id": 45831, "cluster_count": 2}, {"cluster_id": 14, "cluster_count": 2}, {"cluster_id": 24352, "cluster_count": 1}, {"cluster_id": 59066, "cluster_count": 1}, {"cluster_id": 33, "cluster_count": 1}, {"cluster_id": 1098, "cluster_count": 1}, {"cluster_id": 68045, "cluster_count": 1}, {"cluster_id": 60103, "cluster_count": 1}, {"cluster_id": 13431, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 37}, {"ref_CSET_id": 163, "referenced_count": 24}, {"ref_CSET_id": 87, "referenced_count": 20}, {"ref_CSET_id": 245, "referenced_count": 8}, {"ref_CSET_id": 23, "referenced_count": 4}, {"ref_CSET_id": 1920, "referenced_count": 3}, {"ref_CSET_id": 184, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 223, "referenced_count": 3}, {"ref_CSET_id": 133, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "event_extraction", "task_count": 3}, {"referent": "image_fusion", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "svbrdf_estimation", "task_count": 2}, {"referent": "sentiment_detection", "task_count": 2}, {"referent": "pattern_classification", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "anomaly_detection", "task_count": 1}, {"referent": "decision_making", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "semi_supervised_learning_methods", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "natural_language_processing", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "optimization", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "twin_networks", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [9, 10, 7, 2, 3, 14, 18, 15, 21, 21, 1], "total": 121, "isTopResearch": false, "rank": 480, "sp500_rank": 283}, "ai_publications": {"counts": [2, 1, 2, 0, 2, 6, 5, 6, 10, 5, 0], "total": 39, "isTopResearch": false, "rank": 209, "sp500_rank": 127}, "ai_publications_growth": {"counts": [], "total": 12.222222222222223, "isTopResearch": false, "rank": 145, "sp500_rank": 73}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 2, 2, 0], "total": 5, "isTopResearch": false, "rank": 157, "sp500_rank": 75}, "citation_counts": {"counts": [1, 4, 4, 9, 16, 27, 39, 95, 197, 161, 4], "total": 557, "isTopResearch": false, "rank": 259, "sp500_rank": 138}, "cv_pubs": {"counts": [1, 0, 1, 0, 1, 0, 2, 3, 0, 0, 0], "total": 8, "isTopResearch": true, "rank": 229, "sp500_rank": 126}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 2, 0, 2, 4, 4, 0], "total": 12, "isTopResearch": true, "rank": 84, "sp500_rank": 56}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0.5, 4.0, 2.0, 0, 8.0, 4.5, 7.8, 15.833333333333334, 19.7, 32.2, 0], "total": 14.282051282051283, "isTopResearch": false, "rank": 420, "sp500_rank": 140}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 3, 0, 5, 11, 10, 0], "total": 29, "table": null, "rank": 273, "sp500_rank": 151}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 30, 0, 50, 110, 100, 0], "total": 290, "table": null, "rank": 273, "sp500_rank": 151}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 157, "sp500_rank": 102}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 4, 3, 8, 0], "total": 16, "table": "industry", "rank": 209, "sp500_rank": 117}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 2, 0, 2, 3, 0, 0], "total": 7, "table": "industry", "rank": 88, "sp500_rank": 64}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0], "total": 4, "table": "industry", "rank": 249, "sp500_rank": 129}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], "total": 5, "table": "industry", "rank": 213, "sp500_rank": 136}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": "application", "rank": 160, "sp500_rank": 91}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], "total": 4, "table": "application", "rank": 198, "sp500_rank": 131}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 0, 3, 7, 4, 0], "total": 16, "table": "application", "rank": 206, "sp500_rank": 117}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 252, "rank": 636, "sp500_rank": 267}, "ai_jobs": {"counts": null, "total": 65, "rank": 426, "sp500_rank": 218}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 204, "country": "China", "website": "https://www.pony.ai/", "crunchbase": {"text": "6e5e3614-1200-4a2b-86c5-bee7421abc12", "url": "https://www.crunchbase.com/organization/pony-ai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pony-ai"], "stage": "Mature", "name": "Pony.ai", "patent_name": "pony.ai", "continent": "Asia", "local_logo": "ponyai.png", "aliases": "Pony.Ai Inc; Pony.Ai, Inc", "permid_links": [{"text": 5060538824, "url": "https://permid.org/1-5060538824"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Pony.ai is a startup that builds full-stack autonomous driving solutions.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Pixel", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}, {"field_name": "Model selection", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Sensor fusion", "field_count": 1}], "clusters": [{"cluster_id": 32715, "cluster_count": 1}, {"cluster_id": 50542, "cluster_count": 1}, {"cluster_id": 26033, "cluster_count": 1}, {"cluster_id": 9704, "cluster_count": 1}, {"cluster_id": 37755, "cluster_count": 1}, {"cluster_id": 100742, "cluster_count": 1}, {"cluster_id": 43403, "cluster_count": 1}, {"cluster_id": 214, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 223, "referenced_count": 3}, {"ref_CSET_id": 35, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 456, "referenced_count": 1}, {"ref_CSET_id": 319, "referenced_count": 1}, {"ref_CSET_id": 336, "referenced_count": 1}], "tasks": [{"referent": "autonomous_driving", "task_count": 4}, {"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "decision_making", "task_count": 2}, {"referent": "motion_planning", "task_count": 2}, {"referent": "sensor_fusion", "task_count": 1}, {"referent": "calibration_for_link_prediction", "task_count": 1}, {"referent": "building_extraction", "task_count": 1}, {"referent": "network_pruning", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "trajectory_prediction", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "hierarchical_vae", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "electra", "method_count": 1}, {"referent": "elmo", "method_count": 1}, {"referent": "googlenet", "method_count": 1}, {"referent": "object_detection_models", "method_count": 1}, {"referent": "inception_module", "method_count": 1}, {"referent": "hri_pipeline", "method_count": 1}, {"referent": "taypo", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 1, 2, 4, 0, 2, 0], "total": 10, "isTopResearch": false, "rank": 942}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 1, 2, 3, 0, 2, 0], "total": 9, "isTopResearch": false, "rank": 437}, "ai_publications_growth": {"counts": [], "total": -25.0, "isTopResearch": false, "rank": 1365}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 2, 18, 84, 128, 201, 184, 113, 2], "total": 732, "isTopResearch": false, "rank": 222}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 2, 1, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 313}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 0, 18.0, 84.0, 64.0, 67.0, 0, 56.5, 0], "total": 81.33333333333333, "isTopResearch": false, "rank": 51}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 3, 17, 15, 6, 1, 0, 0], "total": 42, "table": null, "rank": 236}, "ai_patents_growth": {"counts": [], "total": 131.63398692810458, "table": null, "rank": 87}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 30, 170, 150, 60, 10, 0, 0], "total": 420, "table": null, "rank": 236}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 3, 15, 15, 3, 1, 0, 0], "total": 37, "table": "industry", "rank": 55}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0], "total": 5, "table": "industry", "rank": 336}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 141}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 2, 4, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 204}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 3, 14, 15, 3, 1, 0, 0], "total": 36, "table": "application", "rank": 66}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 3, 6, 2, 0, 0, 0], "total": 12, "table": "application", "rank": 229}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 6, 4, 2, 1, 0, 0], "total": 14, "table": "application", "rank": 100}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 252, "rank": 636}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Pony.ai is an autonomous vehicle technology company co-located in Silicon Valley, Beijing and Guangzhou. The company was founded in December 2016 by James Peng and Lou Tiancheng who were formerly developers for Baidu in Silicon Valley. In January 2018 Pony.ai completed a $112 million Series A round co-led by Morningside Venture Capital and Legend Capital with seed round lead-investor Sequoia China and investor IDG Capital also participating in the round, alongside Hongtai Capital, Legend Star, Puhua Capital, Polaris Capital, DCM Ventures, Comcast Ventures and Silicon Valley Future Capital.", "wikipedia_link": "https://en.wikipedia.org/wiki/Pony.ai", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2933, "country": "United States", "website": "http://www.avinc.com/", "crunchbase": {"text": "97b0a54e-c457-5f5e-9740-f7d9deb4d649", "url": "https://www.crunchbase.com/organization/aerovironment"}, "child_crunchbase": [{"text": "04fd35f7-0842-4558-a26b-d052f74749da", "url": "https://www.crunchbase.com/organization/progeny-systems-corporation-49da"}], "linkedin": ["https://www.linkedin.com/company/aerovironment", "https://www.linkedin.com/company/progeny-systems"], "stage": "Mature", "name": "AeroVironment Inc", "patent_name": "aerovironment inc", "continent": "North America", "local_logo": "aerovironment_inc.png", "aliases": "Aerovironment; Aerovironment, Inc", "permid_links": [{"text": 4295913894, "url": "https://permid.org/1-4295913894"}, {"text": 4298367199, "url": "https://permid.org/1-4298367199"}], "parent_info": null, "agg_child_info": "Progeny Systems Corp", "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:AVAV", "url": "https://www.google.com/finance/quote/avav:nasdaq"}], "market_full": [{"text": "NASDAQ:AVAV", "url": "https://www.google.com/finance/quote/avav:nasdaq"}], "crunchbase_description": "AeroVironment designs, develops, produces, and supports a portfolio of unmanned aircraft systems supplied to organizations.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Navigation system", "field_count": 1}, {"field_name": "Ground truth", "field_count": 1}], "clusters": [{"cluster_id": 18269, "cluster_count": 1}, {"cluster_id": 21981, "cluster_count": 1}, {"cluster_id": 29515, "cluster_count": 1}, {"cluster_id": 10862, "cluster_count": 1}, {"cluster_id": 7483, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "obstacle_avoidance", "task_count": 1}, {"referent": "steering_control", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "visual_odometry", "task_count": 1}, {"referent": "autonomous_flight_(dense_forest)", "task_count": 1}, {"referent": "document_classification", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "merl", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 3, 3, 0, 2, 1, 1, 1, 2, 6, 0], "total": 21, "isTopResearch": false, "rank": 797}, "ai_publications": {"counts": [1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [7, 3, 12, 9, 11, 12, 14, 19, 19, 16, 0], "total": 122, "isTopResearch": false, "rank": 476}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [7.0, 0, 12.0, 0, 11.0, 0, 0, 0, 0, 0, 0], "total": 40.666666666666664, "isTopResearch": false, "rank": 130}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 252, "rank": 636}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "AeroVironment, Inc. is an American defense contractor headquartered in Simi Valley, California, that is primarily involved in unmanned aerial vehicles (UAVs). Paul B. MacCready, Jr., a designer of human-powered aircraft, founded the company in 1971. The company is probably most well known for developing a series of lightweight human-powered and then solar-powered vehicles. AeroVironment is the Pentagon's top supplier of small drones \u2014 including the Raven, Wasp and Puma models.", "wikipedia_link": "https://en.wikipedia.org/wiki/AeroVironment", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2862, "country": "United Kingdom", "website": "https://www.wpp.com/", "crunchbase": {"text": "2dc95d44-be08-538c-0113-6cc773d8ea17", "url": "https://www.crunchbase.com/organization/wpp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/wpp"], "stage": "Mature", "name": "WPP PLC", "patent_name": "wpp plc", "continent": "Europe", "local_logo": "wpp_plc.png", "aliases": "Wpp", "permid_links": [{"text": 5037958512, "url": "https://permid.org/1-5037958512"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WPP", "url": "https://www.google.com/finance/quote/nyse:wpp"}], "market_full": [{"text": "NYSE:WPP", "url": "https://www.google.com/finance/quote/nyse:wpp"}, {"text": "LSE:WPP", "url": "https://www.google.com/finance/quote/lse:wpp"}, {"text": "ASE:WPP", "url": "https://www.google.com/finance/quote/ase:wpp"}, {"text": "PKC:WPPGF", "url": "https://www.google.com/finance/quote/pkc:wppgf"}, {"text": "NYQ:WPP", "url": "https://www.google.com/finance/quote/nyq:wpp"}], "crunchbase_description": "WPP creates transformative ideas and outcomes for its clients through an integrated offer of communications, commerce, and technology.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 251, "rank": 639}, "ai_jobs": {"counts": null, "total": 33, "rank": 569}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "WPP plc is a British multinational communications, advertising, public relations, technology, and commerce holding company headquartered in London, England. It is considered the world's largest advertising company, as of 2019. WPP plc owns many companies, which includes advertising, public relations, media, and market research networks such as AKQA, BCW, Essence Global, Finsbury, Grey, Hill+Knowlton Strategies, Mindshare, Ogilvy, Wavemaker, Wunderman Thompson, and VMLY&R. It is one of the \"Big Four\" agency companies, alongside Publicis, Interpublic Group of Companies and Omnicom. WPP has a primary listing on the London Stock Exchange and is a constituent of the FTSE 100 Index. It has a secondary listing on the New York Stock Exchange.", "wikipedia_link": "https://en.wikipedia.org/wiki/WPP_plc", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2541, "country": "United States", "website": "https://www.westrock.com/", "crunchbase": {"text": "29e6ee10-3273-4e6a-596e-e40e92e3cc68", "url": "https://www.crunchbase.com/organization/westrock"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/westrockcompany"], "stage": "Mature", "name": "Westrock", "patent_name": "westrock", "continent": "North America", "local_logo": "westrock.png", "aliases": "Westrock Co; Westrock Company; Westrock Paper And Packaging Llc", "permid_links": [{"text": 4295902801, "url": "https://permid.org/1-4295902801"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WRK", "url": "https://www.google.com/finance/quote/nyse:wrk"}], "market_full": [{"text": "BER:1WR", "url": "https://www.google.com/finance/quote/1wr:ber"}, {"text": "DUS:1WR", "url": "https://www.google.com/finance/quote/1wr:dus"}, {"text": "HAN:1WR", "url": "https://www.google.com/finance/quote/1wr:han"}, {"text": "NYSE:WRK", "url": "https://www.google.com/finance/quote/nyse:wrk"}, {"text": "DEU:1WR", "url": "https://www.google.com/finance/quote/1wr:deu"}, {"text": "MCX:WRK-RM", "url": "https://www.google.com/finance/quote/mcx:wrk-rm"}, {"text": "NYQ:WRK", "url": "https://www.google.com/finance/quote/nyq:wrk"}, {"text": "STU:1WR", "url": "https://www.google.com/finance/quote/1wr:stu"}, {"text": "FRA:1WR", "url": "https://www.google.com/finance/quote/1wr:fra"}, {"text": "LSE:0LW9", "url": "https://www.google.com/finance/quote/0lw9:lse"}, {"text": "MEX:WRK*", "url": "https://www.google.com/finance/quote/mex:wrk*"}, {"text": "SAO:W1RK34", "url": "https://www.google.com/finance/quote/sao:w1rk34"}, {"text": "MUN:1WR", "url": "https://www.google.com/finance/quote/1wr:mun"}, {"text": "GER:1WRX", "url": "https://www.google.com/finance/quote/1wrx:ger"}, {"text": "ASE:WRK", "url": "https://www.google.com/finance/quote/ase:wrk"}], "crunchbase_description": "WestRock is a corrugated packaging company that provides sustainable paper and packaging solutions to drive business growth.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 1, 2, 14, 4, 5, 3, 9, 10, 3, 0], "total": 52, "isTopResearch": false, "rank": 611, "fortune500_rank": 227}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 251, "rank": 639, "fortune500_rank": 337}, "ai_jobs": {"counts": null, "total": 26, "rank": 639, "fortune500_rank": 324}}, "sector": "Basic Materials", "business_sector": "Applied Resources", "wikipedia_description": "WestRock is an American corrugated packaging company. It was formed in July 2015 after the merger of MeadWestvaco and RockTenn. WestRock is the 2nd largest American packaging company. It is one of the world's largest paper and packaging companies with US$15 billion in annual revenue and 42,000 employees in 30 countries. The company is headquartered in Atlanta, Georgia, consolidating offices from Norcross, Georgia and Richmond, Virginia.", "wikipedia_link": "https://en.wikipedia.org/wiki/WestRock", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 504, "country": "United Kingdom", "website": "http://www.improbable.io", "crunchbase": {"text": "b641a86b-50e1-f4c1-ad80-aac186ce94b3", "url": "https://www.crunchbase.com/organization/improbable"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/improbable"], "stage": "Growth", "name": "Improbable", "patent_name": "improbable", "continent": "Europe", "local_logo": "improbable.png", "aliases": "Improbable Worlds Limited; Improbable Worlds Ltd", "permid_links": [{"text": 5052541007, "url": "https://permid.org/1-5052541007"}, {"text": 5043601649, "url": "https://permid.org/1-5043601649"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Improbable is a technology company that provides a metaverse platform designed to offer virtual gaming experiences.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 8881, "cluster_count": 1}, {"cluster_id": 8642, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 504, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}], "tasks": [{"referent": "abstract_argumentation", "task_count": 1}, {"referent": "multi_agent_path_finding", "task_count": 1}, {"referent": "snes_games", "task_count": 1}], "methods": [{"referent": "statistical_inference", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "auxiliary_classifier", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [4, 2, 2, 1, 3, 3, 1, 1, 5, 3, 0], "total": 25, "isTopResearch": false, "rank": 754}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 3, 7, 0], "total": 11, "isTopResearch": false, "rank": 754}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 3.0, 7.0, 0], "total": 3.6666666666666665, "isTopResearch": false, "rank": 761}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 248, "rank": 641}, "ai_jobs": {"counts": null, "total": 11, "rank": 829}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Improbable Worlds Limited (commonly referred to as Improbable) is a British multinational technology company founded in 2012, and headquartered in London, England. It makes distributed simulation software for video games and corporate use.", "wikipedia_link": "https://en.wikipedia.org/wiki/Improbable_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2276, "country": "United States", "website": "https://www.csx.com/", "crunchbase": {"text": "66c498d7-b353-0d03-eec0-c01215edf2f8", "url": "https://www.crunchbase.com/organization/csx-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/csx-transportation"], "stage": "Mature", "name": "CSX Corp.", "patent_name": "csx corp.", "continent": "North America", "local_logo": "csx_corp.png", "aliases": "CSX Corp; Csx; Csx Corporation", "permid_links": [{"text": 4295903665, "url": "https://permid.org/1-4295903665"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CSX", "url": "https://www.google.com/finance/quote/csx:nasdaq"}], "market_full": [{"text": "UAX:CSX", "url": "https://www.google.com/finance/quote/csx:uax"}, {"text": "MUN:CXR", "url": "https://www.google.com/finance/quote/cxr:mun"}, {"text": "DUS:CXR", "url": "https://www.google.com/finance/quote/cxr:dus"}, {"text": "MEX:CSX*", "url": "https://www.google.com/finance/quote/csx*:mex"}, {"text": "STU:CXR", "url": "https://www.google.com/finance/quote/cxr:stu"}, {"text": "SAO:CSXC34", "url": "https://www.google.com/finance/quote/csxc34:sao"}, {"text": "GER:CXRX", "url": "https://www.google.com/finance/quote/cxrx:ger"}, {"text": "FRA:CXR", "url": "https://www.google.com/finance/quote/cxr:fra"}, {"text": "LSE:0HRJ", "url": "https://www.google.com/finance/quote/0hrj:lse"}, {"text": "BRN:CXR", "url": "https://www.google.com/finance/quote/brn:cxr"}, {"text": "HAM:CXR", "url": "https://www.google.com/finance/quote/cxr:ham"}, {"text": "VIE:CSX", "url": "https://www.google.com/finance/quote/csx:vie"}, {"text": "MOEX:CSX-RM", "url": "https://www.google.com/finance/quote/csx-rm:moex"}, {"text": "NASDAQ:CSX", "url": "https://www.google.com/finance/quote/csx:nasdaq"}, {"text": "DEU:CSX", "url": "https://www.google.com/finance/quote/csx:deu"}, {"text": "HAN:CXR", "url": "https://www.google.com/finance/quote/cxr:han"}, {"text": "BER:CXR", "url": "https://www.google.com/finance/quote/ber:cxr"}], "crunchbase_description": "CSX is a transportation company focused on rail transportation and real estate and among other industries.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 2343, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "meta_learning", "task_count": 1}, {"referent": "customer_segmentation", "task_count": 1}, {"referent": "automl", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "linear_regression", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 4, 5, 2, 2, 5, 2, 1, 0, 2, 0], "total": 28, "isTopResearch": false, "rank": 727, "fortune500_rank": 258}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 3, 4, 2], "total": 14, "isTopResearch": false, "rank": 724, "fortune500_rank": 196}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 14.0, "isTopResearch": false, "rank": 423, "fortune500_rank": 130}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 247, "rank": 642, "fortune500_rank": 338}, "ai_jobs": {"counts": null, "total": 17, "rank": 728, "fortune500_rank": 367}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "CSX Corporation is an American holding company focused on rail transportation and real estate in North America, among other industries. The company was established in 1980 as part of the Chessie System and Seaboard Coast Line Industries merger. The various railroads of the former Chessie System and Seaboard Coast Line Industries that are now owned by CSX Corporation were eventually merged into a single line in 1986 and it became known as CSX Transportation. CSX Corporation currently has a number of subsidiaries beyond CSX Transportation. Based in Richmond, Virginia, USA after the merger, in 2003 the CSX Corporation headquarters moved to Jacksonville, Florida. CSX is a Fortune 500 company.", "wikipedia_link": "https://en.wikipedia.org/wiki/CSX_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2942, "country": "United States", "website": "http://www.bylight.com/", "crunchbase": {"text": "ae38b10f-09af-a528-8b8e-8d915c0dc791", "url": "https://www.crunchbase.com/organization/by-light-professional-it-services"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/by-light-professional-it-services"], "stage": "Unknown", "name": "By Light Professional It Services Inc", "patent_name": "by light professional it services inc", "continent": "North America", "local_logo": "by_light_professional_it_services_inc.png", "aliases": "By Light; By Light Professional It Services Llc", "permid_links": [{"text": 5056399500, "url": "https://permid.org/1-5056399500"}], "parent_info": "Sagewind Capital (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "BY LIGHT Professional IT Services is a provider of IT, cloud, cyber and infrastructure solutions to the US Federal Government.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 245, "rank": 643}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We recognize the current and future needs across all industries to secure information and communications databases, networks, and systems from malicious actors while maximizing reliability and efficiency. To meet these needs, By Light has stepped to the forefront of cutting-edge technology in key market growth areas of IT and Cyberspace Operations and Security; Network Services, Integration, and Operations; Cloud and Managed Services; Artificial Intelligence; Software Services; and Satellite and Wireless Communications. Although nothing can replace a skilled workforce, we believe our advanced technology solutions heighten productivity.", "company_site_link": "http://www.bylight.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2311, "country": "United States", "website": "https://www.eversource.com/", "crunchbase": {"text": "f1d98474-2490-5b45-2b08-ba5c8779fb41", "url": "https://www.crunchbase.com/organization/northeast-utilities"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/eversourceenergy"], "stage": "Mature", "name": "Eversource Energy", "patent_name": "eversource energy", "continent": "North America", "local_logo": "eversource_energy.png", "aliases": "Eversource; Northeast Utilities", "permid_links": [{"text": 4295903197, "url": "https://permid.org/1-4295903197"}], "parent_info": "Northeast Utilities", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ES", "url": "https://www.google.com/finance/quote/es:nyse"}], "market_full": [{"text": "NYSE:ES", "url": "https://www.google.com/finance/quote/es:nyse"}, {"text": "GER:NWJX", "url": "https://www.google.com/finance/quote/ger:nwjx"}, {"text": "MEX:ES*", "url": "https://www.google.com/finance/quote/es*:mex"}, {"text": "SAO:E1SE34", "url": "https://www.google.com/finance/quote/e1se34:sao"}, {"text": "FRA:NWJ", "url": "https://www.google.com/finance/quote/fra:nwj"}, {"text": "BER:NWJ", "url": "https://www.google.com/finance/quote/ber:nwj"}, {"text": "ASE:ES", "url": "https://www.google.com/finance/quote/ase:es"}, {"text": "DUS:NWJ", "url": "https://www.google.com/finance/quote/dus:nwj"}, {"text": "BRN:NWJ", "url": "https://www.google.com/finance/quote/brn:nwj"}, {"text": "STU:NWJ", "url": "https://www.google.com/finance/quote/nwj:stu"}, {"text": "VIE:ES", "url": "https://www.google.com/finance/quote/es:vie"}, {"text": "LSE:0IJ2", "url": "https://www.google.com/finance/quote/0ij2:lse"}, {"text": "DEU:NWJ", "url": "https://www.google.com/finance/quote/deu:nwj"}, {"text": "NYQ:ES", "url": "https://www.google.com/finance/quote/es:nyq"}, {"text": "MOEX:ES-RM", "url": "https://www.google.com/finance/quote/es-rm:moex"}], "crunchbase_description": "Eversource transmits and delivers electricity and natural gas for more than 3.6 million electric and natural gas customers.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [4, 2, 3, 0, 0, 1, 0, 1, 1, 1, 0], "total": 13, "isTopResearch": false, "rank": 888, "fortune500_rank": 314}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 244, "rank": 644, "fortune500_rank": 339}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "fortune500_rank": 294}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Eversource Energy is a publicly traded, Fortune 500 energy company headquartered in Hartford, Connecticut, and Boston, Massachusetts, with several regulated subsidiaries offering retail electricity, natural gas service and water service to approximately 4 million customers in Connecticut, Massachusetts and New Hampshire.", "wikipedia_link": "https://en.wikipedia.org/wiki/Eversource_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-30", "company_site_description_translation": null}, {"cset_id": 2476, "country": "United States", "website": "http://www.republicservices.com/", "crunchbase": {"text": "f8bae43b-05c6-7f92-888b-d8239a2906ea", "url": "https://www.crunchbase.com/organization/republic-services"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/republic-services-inc"], "stage": "Mature", "name": "Republic Services Inc", "patent_name": "republic services inc", "continent": "North America", "local_logo": "republic_services_inc.png", "aliases": "Republic Services; Republic Services, Inc", "permid_links": [{"text": 4295904818, "url": "https://permid.org/1-4295904818"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:RSG", "url": "https://www.google.com/finance/quote/nyse:rsg"}], "market_full": [{"text": "MEX:RSGA", "url": "https://www.google.com/finance/quote/mex:rsga"}, {"text": "STU:RPU", "url": "https://www.google.com/finance/quote/rpu:stu"}, {"text": "MCX:RSG-RM", "url": "https://www.google.com/finance/quote/mcx:rsg-rm"}, {"text": "DEU:RSGU", "url": "https://www.google.com/finance/quote/deu:rsgu"}, {"text": "SAO:R1SG34", "url": "https://www.google.com/finance/quote/r1sg34:sao"}, {"text": "ASE:RSG", "url": "https://www.google.com/finance/quote/ase:rsg"}, {"text": "BER:RPU", "url": "https://www.google.com/finance/quote/ber:rpu"}, {"text": "HAN:RPU", "url": "https://www.google.com/finance/quote/han:rpu"}, {"text": "DUS:RPU", "url": "https://www.google.com/finance/quote/dus:rpu"}, {"text": "MUN:RPU", "url": "https://www.google.com/finance/quote/mun:rpu"}, {"text": "FRA:RPU", "url": "https://www.google.com/finance/quote/fra:rpu"}, {"text": "NYQ:RSG", "url": "https://www.google.com/finance/quote/nyq:rsg"}, {"text": "BRN:RPU", "url": "https://www.google.com/finance/quote/brn:rpu"}, {"text": "LSE:0KW1", "url": "https://www.google.com/finance/quote/0kw1:lse"}, {"text": "NYSE:RSG", "url": "https://www.google.com/finance/quote/nyse:rsg"}], "crunchbase_description": "Trust earned through action\u2014day after day\u2014that's our pledge to you. With resolve and professionalism.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 242, "rank": 645, "fortune500_rank": 340}, "ai_jobs": {"counts": null, "total": 21, "rank": 683, "fortune500_rank": 344}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Republic Services, Inc is the second largest provider of non-hazardous solid waste collection, transfer, disposal, recycling, and energy services in the United States, as measured by revenue.", "wikipedia_link": "https://en.wikipedia.org/wiki/Republic_Services", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2865, "country": "United States", "website": "http://www.lmi.org/", "crunchbase": {"text": "813f0f8e-dbbb-78e5-973e-d908df28cd37", "url": "https://www.crunchbase.com/organization/lmi"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lmi"], "stage": "Unknown", "name": "Logistics Management Institute", "patent_name": "logistics management institute", "continent": "North America", "local_logo": "logistics_management_institute.png", "aliases": "Lmi", "permid_links": [{"text": 4296284443, "url": "https://permid.org/1-4296284443"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "LMI is a consulting firm dedicated to improving the management of government.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [8, 5, 1, 4, 5, 2, 3, 9, 5, 5, 0], "total": 47, "isTopResearch": false, "rank": 625}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 240, "rank": 646}, "ai_jobs": {"counts": null, "total": 99, "rank": 336}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "The Logistics Management Institute (more commonly referred to as LMI) is a consulting firm. Established as a private, not-for-profit organization in 1961, LMI is headquartered in Tysons, Virginia, near McLean, in the Greater Washington, D.C. area, with satellite offices located throughout the United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Logistics_Management_Institute", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2498, "country": "United States", "website": "https://www.steris.com/", "crunchbase": {"text": "c6430108-4e0d-e78e-d57a-4d484fd2cc78", "url": "https://www.crunchbase.com/organization/steris-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/steris-corporation"], "stage": "Mature", "name": "STERIS plc", "patent_name": "steris plc", "continent": "North America", "local_logo": "steris_plc.png", "aliases": "STERIS Corp; Steris; Steris Corporation", "permid_links": [{"text": 4295904987, "url": "https://permid.org/1-4295904987"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:STE", "url": "https://www.google.com/finance/quote/nyse:ste"}], "market_full": [{"text": "FRA:2TG", "url": "https://www.google.com/finance/quote/2tg:fra"}, {"text": "BER:2TG", "url": "https://www.google.com/finance/quote/2tg:ber"}, {"text": "NYQ:STE", "url": "https://www.google.com/finance/quote/nyq:ste"}, {"text": "LSE:0XI8", "url": "https://www.google.com/finance/quote/0xi8:lse"}, {"text": "STU:2TG", "url": "https://www.google.com/finance/quote/2tg:stu"}, {"text": "MEX:STEN", "url": "https://www.google.com/finance/quote/mex:sten"}, {"text": "SAO:S1TE34", "url": "https://www.google.com/finance/quote/s1te34:sao"}, {"text": "NYSE:STE", "url": "https://www.google.com/finance/quote/nyse:ste"}, {"text": "ASE:STE", "url": "https://www.google.com/finance/quote/ase:ste"}, {"text": "DEU:2TG", "url": "https://www.google.com/finance/quote/2tg:deu"}], "crunchbase_description": "STERIS Corporation offers customized infection prevention and contamination control solutions for a variety of environments.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [4, 7, 7, 3, 3, 6, 1, 5, 1, 3, 0], "total": 40, "isTopResearch": false, "rank": 658, "fortune500_rank": 243}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 240, "rank": 646, "fortune500_rank": 341}, "ai_jobs": {"counts": null, "total": 13, "rank": 790, "fortune500_rank": 393}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Steris Corporation is an American Irish-domiciled medical equipment company specializing in sterilization and surgical products for the US healthcare system. Steris is operationally headquartered in Mentor, Ohio, but has been legally registered since 2018 in Dublin, Ireland for tax purposes; it was previously registered in the United Kingdom from 2014 to 2018. Steris is quoted on the NYSE, and is a constituent of the S&P 500 Index.", "wikipedia_link": "https://en.wikipedia.org/wiki/Steris", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2518, "country": "United States", "website": "https://www.underarmour.com/", "crunchbase": {"text": "33539e1d-3a92-c2ce-a822-fd158669fa98", "url": "https://www.crunchbase.com/organization/under-armour"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/under-armour"], "stage": "Mature", "name": "Under Armour", "patent_name": "under armour", "continent": "North America", "local_logo": "under_armour.png", "aliases": "Under Armour; Under Armour, Inc; Under Armour\u00ae, Inc", "permid_links": [{"text": 4295914754, "url": "https://permid.org/1-4295914754"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:UA", "url": "https://www.google.com/finance/quote/nyse:ua"}], "market_full": [{"text": "MEX:UAAC*", "url": "https://www.google.com/finance/quote/mex:uaac*"}, {"text": "DEU:U9RA", "url": "https://www.google.com/finance/quote/deu:u9ra"}, {"text": "ASE:UA", "url": "https://www.google.com/finance/quote/ase:ua"}, {"text": "LSE:0LIK", "url": "https://www.google.com/finance/quote/0lik:lse"}, {"text": "BER:U9RA", "url": "https://www.google.com/finance/quote/ber:u9ra"}, {"text": "VIE:UAC", "url": "https://www.google.com/finance/quote/uac:vie"}, {"text": "FRA:U9RA", "url": "https://www.google.com/finance/quote/fra:u9ra"}, {"text": "STU:U9RA", "url": "https://www.google.com/finance/quote/stu:u9ra"}, {"text": "NYQ:UA", "url": "https://www.google.com/finance/quote/nyq:ua"}, {"text": "NYSE:UA", "url": "https://www.google.com/finance/quote/nyse:ua"}, {"text": "SAO:U1AI34", "url": "https://www.google.com/finance/quote/sao:u1ai34"}, {"text": "BRN:U9RA", "url": "https://www.google.com/finance/quote/brn:u9ra"}, {"text": "DUS:U9RA", "url": "https://www.google.com/finance/quote/dus:u9ra"}, {"text": "MUN:U9RA", "url": "https://www.google.com/finance/quote/mun:u9ra"}, {"text": "MCX:UA-RM", "url": "https://www.google.com/finance/quote/mcx:ua-rm"}, {"text": "GER:U9RX", "url": "https://www.google.com/finance/quote/ger:u9rx"}], "crunchbase_description": "Under Armour is a manufacturer of footwear, sport, and casual apparel.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Structured text", "field_count": 1}], "clusters": [{"cluster_id": 13618, "cluster_count": 2}, {"cluster_id": 2653, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 12}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 112, "referenced_count": 4}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 3090, "referenced_count": 1}, {"ref_CSET_id": 110, "referenced_count": 1}], "tasks": [{"referent": "classification_tasks", "task_count": 1}, {"referent": "food_recommendation", "task_count": 1}, {"referent": "text_matching", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}, {"referent": "ctc_loss", "method_count": 1}, {"referent": "q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 1, 1, 6, 5, 2, 1, 3, 0], "total": 20, "isTopResearch": false, "rank": 809, "fortune500_rank": 286}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 3, 2, 3, 1, 6, 0], "total": 15, "isTopResearch": false, "rank": 717, "fortune500_rank": 193}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 3.0, 0, 0, 1.0, 0, 0], "total": 5.0, "isTopResearch": false, "rank": 713, "fortune500_rank": 200}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 2, 4, 1, 0, 0, 0, 0], "total": 9, "table": null, "rank": 424, "fortune500_rank": 134}, "ai_patents_growth": {"counts": [], "total": -25.0, "table": null, "rank": 1469, "fortune500_rank": 423}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 20, 40, 10, 0, 0, 0, 0], "total": 90, "table": null, "rank": 424, "fortune500_rank": 134}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 1, 1, 4, 1, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 104, "fortune500_rank": 42}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 2, 1, 1, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 305, "fortune500_rank": 110}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 45, "fortune500_rank": 19}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 239, "rank": 648, "fortune500_rank": 342}, "ai_jobs": {"counts": null, "total": 28, "rank": 616, "fortune500_rank": 317}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "Under Armour, Inc. is an American sports equipment company that manufactures footwear, sports and casual apparel. Under Armour's global headquarters are located in Baltimore, Maryland, with additional offices located in Amsterdam (European headquarters), Austin, Guangzhou, Hong Kong, Houston, Jakarta, London, Mexico City, Munich, New York City, Panama City (international headquarters), Paris, Pittsburgh, Portland, San Francisco, S\u00e3o Paulo, Santiago, Seoul, Shanghai (Greater Chinese headquarters), and Toronto.", "wikipedia_link": "https://en.wikipedia.org/wiki/Under_Armour", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2517, "country": "United States", "website": "https://www.underarmour.com/", "crunchbase": {"text": "33539e1d-3a92-c2ce-a822-fd158669fa98", "url": "https://www.crunchbase.com/organization/under-armour"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/under-armour"], "stage": "Mature", "name": "Under Armour Class A", "patent_name": "under armour class a", "continent": "North America", "local_logo": "under_armour_class_a.png", "aliases": "Under Armour; Under Armour, Inc; Under Armour\u00ae, Inc", "permid_links": [{"text": 4295914754, "url": "https://permid.org/1-4295914754"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:UAA", "url": "https://www.google.com/finance/quote/nyse:uaa"}], "market_full": [{"text": "VIE:UAA", "url": "https://www.google.com/finance/quote/uaa:vie"}, {"text": "DEU:UARM", "url": "https://www.google.com/finance/quote/deu:uarm"}, {"text": "NYSE:UAA", "url": "https://www.google.com/finance/quote/nyse:uaa"}, {"text": "NYQ:UAA", "url": "https://www.google.com/finance/quote/nyq:uaa"}, {"text": "ASE:UAA", "url": "https://www.google.com/finance/quote/ase:uaa"}, {"text": "DUS:U9R", "url": "https://www.google.com/finance/quote/dus:u9r"}, {"text": "GER:U9RX.A", "url": "https://www.google.com/finance/quote/ger:u9rx.a"}, {"text": "FRA:U9R", "url": "https://www.google.com/finance/quote/fra:u9r"}, {"text": "STU:U9R", "url": "https://www.google.com/finance/quote/stu:u9r"}, {"text": "BRN:U9R", "url": "https://www.google.com/finance/quote/brn:u9r"}, {"text": "MEX:UAA*", "url": "https://www.google.com/finance/quote/mex:uaa*"}, {"text": "LSE:0R2I", "url": "https://www.google.com/finance/quote/0r2i:lse"}], "crunchbase_description": "Under Armour is a manufacturer of footwear, sport, and casual apparel.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Structured text", "field_count": 1}], "clusters": [{"cluster_id": 13618, "cluster_count": 2}, {"cluster_id": 2653, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 12}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 112, "referenced_count": 4}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 3090, "referenced_count": 1}, {"ref_CSET_id": 110, "referenced_count": 1}], "tasks": [{"referent": "classification_tasks", "task_count": 1}, {"referent": "food_recommendation", "task_count": 1}, {"referent": "text_matching", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}, {"referent": "ctc_loss", "method_count": 1}, {"referent": "q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 1, 1, 6, 5, 2, 1, 3, 0], "total": 20, "isTopResearch": false, "rank": 809, "fortune500_rank": 286}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 3, 2, 3, 1, 6, 0], "total": 15, "isTopResearch": false, "rank": 717, "fortune500_rank": 193}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 3.0, 0, 0, 1.0, 0, 0], "total": 5.0, "isTopResearch": false, "rank": 713, "fortune500_rank": 200}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 2, 4, 1, 0, 0, 0, 0], "total": 9, "table": null, "rank": 424, "fortune500_rank": 134}, "ai_patents_growth": {"counts": [], "total": -25.0, "table": null, "rank": 1469, "fortune500_rank": 423}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 20, 40, 10, 0, 0, 0, 0], "total": 90, "table": null, "rank": 424, "fortune500_rank": 134}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 1, 1, 4, 1, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 104, "fortune500_rank": 42}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 2, 1, 1, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 305, "fortune500_rank": 110}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 45, "fortune500_rank": 19}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 239, "rank": 648, "fortune500_rank": 342}, "ai_jobs": {"counts": null, "total": 28, "rank": 616, "fortune500_rank": 317}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products"}, {"cset_id": 2511, "country": "United States", "website": "https://www.tractorsupply.com/", "crunchbase": {"text": "f07be62c-c964-9e17-c5c0-a5f988dca1c0", "url": "https://www.crunchbase.com/organization/tractor-supply-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tractor-supply-company"], "stage": "Mature", "name": "Tractor Supply Company", "patent_name": "tractor supply company", "continent": "North America", "local_logo": "tractor_supply_company.png", "aliases": "Tractor Supply; Tractor Supply Co; Tsc", "permid_links": [{"text": 4295908164, "url": "https://permid.org/1-4295908164"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:TSCO", "url": "https://www.google.com/finance/quote/nasdaq:tsco"}], "market_full": [{"text": "BER:TR4", "url": "https://www.google.com/finance/quote/ber:tr4"}, {"text": "MCX:TSCO-RM", "url": "https://www.google.com/finance/quote/mcx:tsco-rm"}, {"text": "STU:TR4", "url": "https://www.google.com/finance/quote/stu:tr4"}, {"text": "BRN:TR4", "url": "https://www.google.com/finance/quote/brn:tr4"}, {"text": "GER:TR4X", "url": "https://www.google.com/finance/quote/ger:tr4x"}, {"text": "FRA:TR4", "url": "https://www.google.com/finance/quote/fra:tr4"}, {"text": "SAO:T1SC34", "url": "https://www.google.com/finance/quote/sao:t1sc34"}, {"text": "MEX:TSCO1*", "url": "https://www.google.com/finance/quote/mex:tsco1*"}, {"text": "DEU:TRCT", "url": "https://www.google.com/finance/quote/deu:trct"}, {"text": "MUN:TR4", "url": "https://www.google.com/finance/quote/mun:tr4"}, {"text": "NASDAQ:TSCO", "url": "https://www.google.com/finance/quote/nasdaq:tsco"}, {"text": "HAN:TR4", "url": "https://www.google.com/finance/quote/han:tr4"}, {"text": "LSE:0REL", "url": "https://www.google.com/finance/quote/0rel:lse"}, {"text": "DUS:TR4", "url": "https://www.google.com/finance/quote/dus:tr4"}, {"text": "HAM:TR4", "url": "https://www.google.com/finance/quote/ham:tr4"}, {"text": "VIE:TSCO", "url": "https://www.google.com/finance/quote/tsco:vie"}], "crunchbase_description": "Tractor Supply Company helps customers find everything they need to maintain their farms, ranches, homes and animals.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 239, "rank": 648, "fortune500_rank": 342}, "ai_jobs": {"counts": null, "total": 21, "rank": 683, "fortune500_rank": 344}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "Tractor Supply Company (TSCO) is an American retail chain of stores that offers products for home improvement, agriculture, lawn and garden maintenance, livestock, equine and pet care.", "wikipedia_link": "https://en.wikipedia.org/wiki/Tractor_Supply_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1868, "country": null, "website": "https://www.dpdhl.com/", "crunchbase": {"text": " 02186b5b-526d-9ae9-57c7-77c36c216a29", "url": " https://www.crunchbase.com/organization/deutsche-post-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/deutsche-post-und-dhl"], "stage": "Unknown", "name": "Deutsche Post Dhl Group", "patent_name": "Deutsche Post DHL Group", "continent": null, "local_logo": null, "aliases": "Deutsche Post DHL Group; Dhl International Gmbh", "permid_links": [{"text": 4295869983, "url": "https://permid.org/1-4295869983"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Big data", "field_count": 1}], "clusters": [{"cluster_id": 40700, "cluster_count": 2}, {"cluster_id": 68543, "cluster_count": 1}, {"cluster_id": 76144, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 27, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "knowledge_base_completion", "task_count": 1}, {"referent": "link_prediction", "task_count": 1}, {"referent": "question_generation", "task_count": 1}, {"referent": "reasoning", "task_count": 1}, {"referent": "knowledge_graphs", "task_count": 1}], "methods": [{"referent": "appo", "method_count": 1}, {"referent": "3d_sa", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [3, 6, 11, 6, 7, 8, 7, 3, 4, 5, 0], "total": 60, "isTopResearch": false, "rank": 591, "sp500_rank": 321}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0], "total": 4, "isTopResearch": false, "rank": 573, "sp500_rank": 275}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 1, 1, 0, 0, 2, 11, 7, 8, 10, 2], "total": 42, "isTopResearch": false, "rank": 607, "sp500_rank": 260}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 2.0, 11.0, 7.0, 0, 10.0, 0], "total": 10.5, "isTopResearch": false, "rank": 522, "sp500_rank": 193}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 1, 1, 1, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525, "sp500_rank": 225}, "ai_patents_growth": {"counts": [], "total": -33.333333333333336, "table": null, "rank": 1491, "sp500_rank": 439}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 10, 10, 10, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525, "sp500_rank": 225}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 159, "sp500_rank": 107}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 116, "sp500_rank": 80}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 7, "sp500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 252, "sp500_rank": 151}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 214, "sp500_rank": 141}, "Control": {"counts": [0, 0, 0, 2, 1, 1, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 190, "sp500_rank": 120}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "sp500_rank": 196}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 238, "rank": 651, "sp500_rank": 268}, "ai_jobs": {"counts": null, "total": 27, "rank": 627, "sp500_rank": 262}}, "sector": "Industrials", "business_sector": "Transportation"}, {"cset_id": 2900, "country": "United States", "website": "https://www.linquest.com/", "crunchbase": {"text": "d000ee02-e4e9-4a2c-a40a-73000bf1cf45", "url": "https://www.crunchbase.com/organization/linquest"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/linquest"], "stage": "Mature", "name": "Linquest Corp", "patent_name": "linquest corp", "continent": "North America", "local_logo": "linquest_corp.png", "aliases": "Linquest; Linquest Corporation", "permid_links": [{"text": 5035946483, "url": "https://permid.org/1-5035946483"}], "parent_info": "Madison Dearborn Partners (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "LinQuest Corporation provides innovative and cost-effective services and solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [3, 2, 3, 5, 2, 3, 8, 1, 3, 2, 0], "total": 32, "isTopResearch": false, "rank": 700}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 235, "rank": 652}, "ai_jobs": {"counts": null, "total": 32, "rank": 575}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "LinQuest Corporation provides innovative and high quality technologies, solutions, and services to national security and industry customers focused on the convergence of C4ISR, information, and cyber systems. We lead the way on developing innovative solutions to tomorrow's challenges today.", "company_site_link": "https://www.linquest.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 54, "country": "United States", "website": "http://cerebras.net/", "crunchbase": {"text": "8f3e6d2d-c8cb-fca5-e2e4-ca567940c6da", "url": "https://www.crunchbase.com/organization/cerebras-systems"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cerebras-systems"], "stage": "Mature", "name": "Cerebras Systems", "patent_name": "cerebras systems", "continent": "North America", "local_logo": "cerebras_systems.png", "aliases": "Cerebras Systems Inc", "permid_links": [{"text": 5079235196, "url": "https://permid.org/1-5079235196"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Cerebras Systems develops computing chips with the sole purpose of accelerating AI.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Principle of compositionality", "field_count": 2}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 1621, "cluster_count": 2}, {"cluster_id": 1149, "cluster_count": 2}, {"cluster_id": 6516, "cluster_count": 2}, {"cluster_id": 616, "cluster_count": 1}, {"cluster_id": 3064, "cluster_count": 1}, {"cluster_id": 1989, "cluster_count": 1}, {"cluster_id": 5070, "cluster_count": 1}, {"cluster_id": 986, "cluster_count": 1}, {"cluster_id": 10424, "cluster_count": 1}, {"cluster_id": 45249, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 51}, {"ref_CSET_id": 163, "referenced_count": 29}, {"ref_CSET_id": 184, "referenced_count": 22}, {"ref_CSET_id": 127, "referenced_count": 16}, {"ref_CSET_id": 87, "referenced_count": 16}, {"ref_CSET_id": 115, "referenced_count": 15}, {"ref_CSET_id": 112, "referenced_count": 6}, {"ref_CSET_id": 327, "referenced_count": 4}, {"ref_CSET_id": 833, "referenced_count": 4}, {"ref_CSET_id": 52, "referenced_count": 3}], "tasks": [{"referent": "inference_attack", "task_count": 3}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "word_recognition", "task_count": 2}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "image_recognition", "task_count": 1}, {"referent": "network_traffic_classification", "task_count": 1}, {"referent": "brain_tumor_segmentation", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "drug_discovery", "task_count": 1}, {"referent": "recommendation_systems", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "reinforcement_learning", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "natural_gradient_descent", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}, {"referent": "annealing_snnl", "method_count": 1}, {"referent": "3d_sa", "method_count": 1}, {"referent": "random_erasing", "method_count": 1}, {"referent": "inplace_abn", "method_count": 1}, {"referent": "graphs", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 1, 1, 5, 16, 5, 0], "total": 29, "isTopResearch": false, "rank": 719}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 3, 10, 0, 0], "total": 15, "isTopResearch": false, "rank": 346}, "ai_publications_growth": {"counts": [], "total": 111.11111111111113, "isTopResearch": false, "rank": 16}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 5, 19, 21, 42, 61, 0], "total": 148, "isTopResearch": false, "rank": 443}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 5.0, 19.0, 7.0, 4.2, 0, 0], "total": 9.866666666666667, "isTopResearch": false, "rank": 545}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 7, 4, 3, 1, 0, 0, 0], "total": 15, "table": null, "rank": 355}, "ai_patents_growth": {"counts": [], "total": -44.84126984126984, "table": null, "rank": 1505}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 70, 40, 30, 10, 0, 0, 0], "total": 150, "table": null, "rank": 355}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 5, 4, 1, 0, 0, 0, 0], "total": 10, "table": "industry", "rank": 261}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 235, "rank": 652}, "ai_jobs": {"counts": null, "total": 20, "rank": 692}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Cerebras Systems is a team of pioneering computer architects, computer scientists, and deep learning researchers. We have come together to build a new class of computer system that accelerates artificial intelligence by orders of magnitude beyond the current state of the art.", "company_site_link": "https://cerebras.net/about-3/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2192, "country": "United States", "website": "https://www.activisionblizzard.com/", "crunchbase": {"text": "443b284c-9939-cbaa-e4e0-961b6819ab69", "url": "https://www.crunchbase.com/organization/activision"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/activision-blizzard"], "stage": "Mature", "name": "Activision Blizzard", "patent_name": "activision blizzard", "continent": "North America", "local_logo": "activision_blizzard.png", "aliases": "Activision Blizzard Inc; Blizzard Entertainment, Inc", "permid_links": [{"text": 4298036388, "url": "https://permid.org/1-4298036388"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Activision Blizzard creates interactive gaming and entertainment experiences.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 2}, {"field_name": "Convolution", "field_count": 1}], "clusters": [{"cluster_id": 914, "cluster_count": 1}, {"cluster_id": 2505, "cluster_count": 1}, {"cluster_id": 17480, "cluster_count": 1}, {"cluster_id": 54296, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 24}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 223, "referenced_count": 2}, {"ref_CSET_id": 637, "referenced_count": 1}, {"ref_CSET_id": 133, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 161, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}], "tasks": [{"referent": "fine_grained_action_detection", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}, {"referent": "unsupervised_clustering", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "gts", "method_count": 1}, {"referent": "atss", "method_count": 1}, {"referent": "monte_carlo_tree_search", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "residual_srm", "method_count": 1}, {"referent": "condconv", "method_count": 1}, {"referent": "root", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 1, 2, 2, 1, 2, 0, 0], "total": 9, "isTopResearch": false, "rank": 958, "fortune500_rank": 330}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "fortune500_rank": 157}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "fortune500_rank": 419}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 1, 11, 22, 11, 10, 0], "total": 56, "isTopResearch": false, "rank": 571, "fortune500_rank": 156}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "fortune500_rank": 94}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.5, 11.0, 22.0, 0, 0, 0], "total": 14.0, "isTopResearch": false, "rank": 423, "fortune500_rank": 130}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 2, 0, 4, 0, 0, 0], "total": 8, "table": null, "rank": 443, "fortune500_rank": 142}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509, "fortune500_rank": 438}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 20, 0, 40, 0, 0, 0], "total": 80, "table": null, "rank": 443, "fortune500_rank": 142}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "fortune500_rank": 114}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 32, "fortune500_rank": 14}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 234, "rank": 654, "fortune500_rank": 345}, "ai_jobs": {"counts": null, "total": 38, "rank": 538, "fortune500_rank": 278}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Activision Blizzard, Inc. is an American video game holding company based in Santa Monica, California. The company was founded in July 2008 through the merger of Activision, Inc. (the publicly traded parent company of Activision Publishing) and Vivendi Games. The company is traded on the NASDAQ stock exchange under the ticker symbol ATVI, and since 2015 has been one of the stocks that make up the S&P 500. Activision Blizzard currently includes five business units: Activision Publishing, Blizzard Entertainment, King, Major League Gaming, and Activision Blizzard Studios.", "wikipedia_link": "https://en.wikipedia.org/wiki/Activision_Blizzard", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2487, "country": "United States", "website": "https://www.sempra.com/", "crunchbase": {"text": "82f35d98-d7ab-5a68-5a1f-ef5bab879feb", "url": "https://www.crunchbase.com/organization/sempra-energy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sempra"], "stage": "Mature", "name": "Sempra Energy", "patent_name": "sempra energy", "continent": "North America", "local_logo": "sempra_energy.png", "aliases": "Aig Trading; Sempra Energy (Nyse: Sre); Sempra Energy\u00ae", "permid_links": [{"text": 4295904901, "url": "https://permid.org/1-4295904901"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SRE", "url": "https://www.google.com/finance/quote/nyse:sre"}, {"text": "NYSE:SREA", "url": "https://www.google.com/finance/quote/nyse:srea"}], "market_full": [{"text": "VIE:SREN", "url": "https://www.google.com/finance/quote/sren:vie"}, {"text": "MCX:SRE-RM", "url": "https://www.google.com/finance/quote/mcx:sre-rm"}, {"text": "FRA:SE4", "url": "https://www.google.com/finance/quote/fra:se4"}, {"text": "NYSE:SRE", "url": "https://www.google.com/finance/quote/nyse:sre"}, {"text": "MUN:SE4", "url": "https://www.google.com/finance/quote/mun:se4"}, {"text": "BRN:SE4", "url": "https://www.google.com/finance/quote/brn:se4"}, {"text": "NYQ:SRE", "url": "https://www.google.com/finance/quote/nyq:sre"}, {"text": "DEU:SRE", "url": "https://www.google.com/finance/quote/deu:sre"}, {"text": "NYQ:SREA", "url": "https://www.google.com/finance/quote/nyq:srea"}, {"text": "GER:SE4X", "url": "https://www.google.com/finance/quote/ger:se4x"}, {"text": "SAO:S1RE34", "url": "https://www.google.com/finance/quote/s1re34:sao"}, {"text": "NYSE:SREA", "url": "https://www.google.com/finance/quote/nyse:srea"}, {"text": "LSE:0L5A", "url": "https://www.google.com/finance/quote/0l5a:lse"}, {"text": "ASE:SRE", "url": "https://www.google.com/finance/quote/ase:sre"}, {"text": "MEX:SRE*", "url": "https://www.google.com/finance/quote/mex:sre*"}, {"text": "DUS:SE4", "url": "https://www.google.com/finance/quote/dus:se4"}, {"text": "STU:SE4", "url": "https://www.google.com/finance/quote/se4:stu"}, {"text": "ASE:SREA", "url": "https://www.google.com/finance/quote/ase:srea"}], "crunchbase_description": "Sempra Energy is a utility company that offers gas and electrical services to most California residence.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 234, "rank": 654, "fortune500_rank": 345}, "ai_jobs": {"counts": null, "total": 8, "rank": 908, "fortune500_rank": 424}}, "sector": "Utilities", "business_sector": "Utilities", "wikipedia_description": "Sempra Energy is a North American energy infrastructure company based in San Diego, California. Sempra Energy's focus is on electric and natural gas infrastructure. Its operating companies include: Southern California Gas Company (SoCalGas) and San Diego Gas & Electric (SDG&E) in Southern California; Oncor Electric Delivery Company (Oncor) in Texas; Sempra LNG; and IEnova, based in Mexico.", "wikipedia_link": "https://en.wikipedia.org/wiki/Sempra_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2482, "country": "United States", "website": "http://rossstores.com/#", "crunchbase": {"text": "5d916802-bd8d-bd22-d725-7e9f8e11f39e", "url": "https://www.crunchbase.com/organization/ross-stores-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ross-stores"], "stage": "Mature", "name": "Ross Stores", "patent_name": "ross stores", "continent": "North America", "local_logo": "ross_stores.png", "aliases": "Ross; Ross Stores, Inc", "permid_links": [{"text": 4295907815, "url": "https://permid.org/1-4295907815"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ROST", "url": "https://www.google.com/finance/quote/nasdaq:rost"}], "market_full": [{"text": "MUN:RSO", "url": "https://www.google.com/finance/quote/mun:rso"}, {"text": "STU:RSO", "url": "https://www.google.com/finance/quote/rso:stu"}, {"text": "MCX:ROST-RM", "url": "https://www.google.com/finance/quote/mcx:rost-rm"}, {"text": "DEU:RSO", "url": "https://www.google.com/finance/quote/deu:rso"}, {"text": "GER:RSOX", "url": "https://www.google.com/finance/quote/ger:rsox"}, {"text": "VIE:ROST", "url": "https://www.google.com/finance/quote/rost:vie"}, {"text": "FRA:RSO", "url": "https://www.google.com/finance/quote/fra:rso"}, {"text": "DUS:RSO", "url": "https://www.google.com/finance/quote/dus:rso"}, {"text": "SAO:ROST34", "url": "https://www.google.com/finance/quote/rost34:sao"}, {"text": "BER:RSO", "url": "https://www.google.com/finance/quote/ber:rso"}, {"text": "MEX:ROST*", "url": "https://www.google.com/finance/quote/mex:rost*"}, {"text": "HAM:RSO", "url": "https://www.google.com/finance/quote/ham:rso"}, {"text": "BUE:ROST3", "url": "https://www.google.com/finance/quote/bue:rost3"}, {"text": "LSE:0KXO", "url": "https://www.google.com/finance/quote/0kxo:lse"}, {"text": "BRN:RSO", "url": "https://www.google.com/finance/quote/brn:rso"}, {"text": "HAN:RSO", "url": "https://www.google.com/finance/quote/han:rso"}, {"text": "NASDAQ:ROST", "url": "https://www.google.com/finance/quote/nasdaq:rost"}], "crunchbase_description": "Ross Stores, Inc. is an off-price apparel and home fashion chain in the United States.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 233, "rank": 656, "fortune500_rank": 347}, "ai_jobs": {"counts": null, "total": 19, "rank": 706, "fortune500_rank": 356}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "Ross Stores, Inc., operating under the brand name Ross Dress for Less, is an American chain of discount department stores headquartered in Dublin, California. It is the largest off-price retailer in the U.S.; as of 2018, Ross operates 1,483 stores in 37 U.S. states, the District of Columbia and Guam, covering much of the country, but with no presence in New England, New York, northern New Jersey, Alaska, Puerto Rico and areas of the Midwest.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ross_Stores", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1793, "country": "Switzerland", "website": "https://www.glencore.com/", "crunchbase": {"text": " d0abbf38-c5ad-f47c-4478-47bb33998430", "url": " https://www.crunchbase.com/organization/glencore"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/glencore"], "stage": "Mature", "name": "Glencore", "patent_name": "Glencore", "continent": "Europe", "local_logo": null, "aliases": "Glencore; Glencore Plc; Glencore Xstrata", "permid_links": [{"text": 5034844193, "url": "https://permid.org/1-5034844193"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "STU:8GC", "url": "https://www.google.com/finance/quote/8GC:STU"}, {"text": "MEX:GLENN", "url": "https://www.google.com/finance/quote/GLENN:MEX"}, {"text": "SAO:GLEN34", "url": "https://www.google.com/finance/quote/GLEN34:SAO"}, {"text": "HAN:8GC", "url": "https://www.google.com/finance/quote/8GC:HAN"}, {"text": "DEU:8GC", "url": "https://www.google.com/finance/quote/8GC:DEU"}, {"text": "FRA:8GCA", "url": "https://www.google.com/finance/quote/8GCA:FRA"}, {"text": "PKC:GLNCY", "url": "https://www.google.com/finance/quote/GLNCY:PKC"}, {"text": "FRA:8GC", "url": "https://www.google.com/finance/quote/8GC:FRA"}, {"text": "STU:8GCA", "url": "https://www.google.com/finance/quote/8GCA:STU"}, {"text": "DUS:8GC", "url": "https://www.google.com/finance/quote/8GC:DUS"}, {"text": "JNB:GLN", "url": "https://www.google.com/finance/quote/GLN:JNB"}, {"text": "DEU:8GCA", "url": "https://www.google.com/finance/quote/8GCA:DEU"}, {"text": "LSE:GLEN", "url": "https://www.google.com/finance/quote/GLEN:LSE"}, {"text": "HAM:8GC", "url": "https://www.google.com/finance/quote/8GC:HAM"}, {"text": "MUN:8GC", "url": "https://www.google.com/finance/quote/8GC:MUN"}, {"text": "PKC:GLCNF", "url": "https://www.google.com/finance/quote/GLCNF:PKC"}, {"text": "BER:8GC", "url": "https://www.google.com/finance/quote/8GC:BER"}, {"text": "BER:8GCA", "url": "https://www.google.com/finance/quote/8GCA:BER"}, {"text": "MUN:8GCA", "url": "https://www.google.com/finance/quote/8GCA:MUN"}, {"text": "MCX:GLEN-ME", "url": "https://www.google.com/finance/quote/GLEN-ME:MCX"}, {"text": "LSE:0IVW", "url": "https://www.google.com/finance/quote/0IVW:LSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [{"cluster_id": 73234, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "point_processes", "task_count": 1}, {"referent": "sla", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [10, 9, 11, 16, 17, 13, 13, 9, 17, 15, 1], "total": 131, "isTopResearch": false, "rank": 474, "sp500_rank": 281}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 2, 0], "total": 4, "isTopResearch": false, "rank": 833, "sp500_rank": 338}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0, 0, 0, 0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735, "sp500_rank": 295}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 232, "rank": 657, "sp500_rank": 269}, "ai_jobs": {"counts": null, "total": 26, "rank": 639, "sp500_rank": 268}}, "sector": "Basic Materials", "business_sector": "Mineral Resources"}, {"cset_id": 2431, "country": "United States", "website": "https://newscorp.com/", "crunchbase": {"text": "7103e064-eb56-1aeb-af09-2a4d53d03e16", "url": "https://www.crunchbase.com/organization/newscorporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/newscorp"], "stage": "Mature", "name": "News Corp. Class B", "patent_name": "news corp. class b", "continent": "North America", "local_logo": "news_corp_class_b.png", "aliases": "News Corp; News Corporation", "permid_links": [{"text": 5039926532, "url": "https://permid.org/1-5039926532"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:NWS", "url": "https://www.google.com/finance/quote/nasdaq:nws"}], "market_full": [{"text": "STU:NC0E", "url": "https://www.google.com/finance/quote/nc0e:stu"}, {"text": "SAO:N1WS35", "url": "https://www.google.com/finance/quote/n1ws35:sao"}, {"text": "LSE:0K7V", "url": "https://www.google.com/finance/quote/0k7v:lse"}, {"text": "DEU:NC0B", "url": "https://www.google.com/finance/quote/deu:nc0b"}, {"text": "BER:NC0E", "url": "https://www.google.com/finance/quote/ber:nc0e"}, {"text": "BER:NC0B", "url": "https://www.google.com/finance/quote/ber:nc0b"}, {"text": "DUS:NC0E", "url": "https://www.google.com/finance/quote/dus:nc0e"}, {"text": "MUN:NC0E", "url": "https://www.google.com/finance/quote/mun:nc0e"}, {"text": "FRA:NC0B", "url": "https://www.google.com/finance/quote/fra:nc0b"}, {"text": "MCX:NWS-RM", "url": "https://www.google.com/finance/quote/mcx:nws-rm"}, {"text": "DEU:NC0E", "url": "https://www.google.com/finance/quote/deu:nc0e"}, {"text": "ASX:NWS", "url": "https://www.google.com/finance/quote/asx:nws"}, {"text": "NASDAQ:NWS", "url": "https://www.google.com/finance/quote/nasdaq:nws"}, {"text": "MUN:NC0B", "url": "https://www.google.com/finance/quote/mun:nc0b"}, {"text": "DUS:NC0B", "url": "https://www.google.com/finance/quote/dus:nc0b"}, {"text": "STU:NC0B", "url": "https://www.google.com/finance/quote/nc0b:stu"}, {"text": "BRN:NC0B", "url": "https://www.google.com/finance/quote/brn:nc0b"}, {"text": "FRA:NC0E", "url": "https://www.google.com/finance/quote/fra:nc0e"}], "crunchbase_description": "News Corp is a media and information services company that creates and distributes engaging content and other products and services.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 23933, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "optical_coherence_tomography", "task_count": 1}, {"referent": "clinical_language_translation", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 1, 0, 0, 1, 2, 5, 5, 3, 0, 0], "total": 18, "isTopResearch": false, "rank": 825, "fortune500_rank": 292}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 901, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "fortune500_rank": 237}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 232, "rank": 657, "fortune500_rank": 348}, "ai_jobs": {"counts": null, "total": 24, "rank": 649, "fortune500_rank": 330}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services"}, {"cset_id": 2430, "country": "United States", "website": "http://www.newscorp.com/", "crunchbase": {"text": "7103e064-eb56-1aeb-af09-2a4d53d03e16", "url": "https://www.crunchbase.com/organization/newscorporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/newscorp"], "stage": "Mature", "name": "News Corp. Class A", "patent_name": "news corp. class a", "continent": "North America", "local_logo": "news_corp_class_a.png", "aliases": "News Corp; News Corporation", "permid_links": [{"text": 5039926532, "url": "https://permid.org/1-5039926532"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:NWSA", "url": "https://www.google.com/finance/quote/nasdaq:nwsa"}], "market_full": [{"text": "DEU:NC0", "url": "https://www.google.com/finance/quote/deu:nc0"}, {"text": "BER:NC0", "url": "https://www.google.com/finance/quote/ber:nc0"}, {"text": "LSE:0K7U", "url": "https://www.google.com/finance/quote/0k7u:lse"}, {"text": "MUN:NC0", "url": "https://www.google.com/finance/quote/mun:nc0"}, {"text": "ASX:NWSLV", "url": "https://www.google.com/finance/quote/asx:nwslv"}, {"text": "FRA:NC0", "url": "https://www.google.com/finance/quote/fra:nc0"}, {"text": "PKC:NWSAL", "url": "https://www.google.com/finance/quote/nwsal:pkc"}, {"text": "DUS:NC0", "url": "https://www.google.com/finance/quote/dus:nc0"}, {"text": "SAO:N1WS34", "url": "https://www.google.com/finance/quote/n1ws34:sao"}, {"text": "NASDAQ:NWSA", "url": "https://www.google.com/finance/quote/nasdaq:nwsa"}, {"text": "STU:NC0", "url": "https://www.google.com/finance/quote/nc0:stu"}, {"text": "BRN:NC0", "url": "https://www.google.com/finance/quote/brn:nc0"}], "crunchbase_description": "News Corp is a media and information services company that creates and distributes engaging content and other products and services.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 23933, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "optical_coherence_tomography", "task_count": 1}, {"referent": "clinical_language_translation", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 1, 0, 0, 1, 2, 5, 5, 3, 0, 0], "total": 18, "isTopResearch": false, "rank": 825, "fortune500_rank": 292}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 901, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "fortune500_rank": 237}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 232, "rank": 657, "fortune500_rank": 348}, "ai_jobs": {"counts": null, "total": 24, "rank": 649, "fortune500_rank": 330}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "The current incarnation of News Corporation, stylized as News Corp, is an American mass media and publishing company operating across digital real estate information, news media, book publishing, and cable television. It was formed in 2013 as a spin-off of the original News Corporation (as founded by Rupert Murdoch in 1980). The company is headquartered in New York City and incorporated in Delaware.", "wikipedia_link": "https://en.wikipedia.org/wiki/News_Corp", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 424, "country": "United States", "website": "https://www.duolingo.com", "crunchbase": {"text": "c999a7f8-6a98-144a-e29f-05fb6df60f73", "url": "https://www.crunchbase.com/organization/duolingo"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/duolingo"], "stage": "Mature", "name": "Duolingo", "patent_name": "duolingo", "continent": "North America", "local_logo": "duolingo.png", "aliases": "Duolingo Inc; Duolingo, Inc", "permid_links": [{"text": 5037845241, "url": "https://permid.org/1-5037845241"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Duolingo is a language-learning education platform that offers 98 total courses across nearly 40 distinct languages.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Problem domain", "field_count": 1}, {"field_name": "Knowledge base", "field_count": 1}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Regret", "field_count": 1}, {"field_name": "Adaptive learning", "field_count": 1}, {"field_name": "Active learning (machine learning)", "field_count": 1}], "clusters": [{"cluster_id": 18617, "cluster_count": 2}, {"cluster_id": 31116, "cluster_count": 2}, {"cluster_id": 5300, "cluster_count": 1}, {"cluster_id": 59815, "cluster_count": 1}, {"cluster_id": 7496, "cluster_count": 1}, {"cluster_id": 33791, "cluster_count": 1}, {"cluster_id": 11510, "cluster_count": 1}, {"cluster_id": 7396, "cluster_count": 1}, {"cluster_id": 6689, "cluster_count": 1}, {"cluster_id": 1149, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 18}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 319, "referenced_count": 1}, {"ref_CSET_id": 424, "referenced_count": 1}, {"ref_CSET_id": 795, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "knowledge_base", "task_count": 1}, {"referent": "online_multi_object_tracking", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "accented_speech_recognition", "task_count": 1}, {"referent": "domain_adaptation", "task_count": 1}, {"referent": "domain_generalization", "task_count": 1}, {"referent": "image_comprehension", "task_count": 1}, {"referent": "lipreading", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 4}, {"referent": "q_learning", "method_count": 3}, {"referent": "mad_learning", "method_count": 2}, {"referent": "fine_tuning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "awd_lstm", "method_count": 1}, {"referent": "feature_upsampling", "method_count": 1}, {"referent": "linear_regression", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 1, 1, 3, 0, 2, 3, 8, 12, 11, 0], "total": 42, "isTopResearch": false, "rank": 647}, "ai_publications": {"counts": [0, 1, 1, 1, 0, 2, 2, 2, 4, 1, 0], "total": 14, "isTopResearch": false, "rank": 359}, "ai_publications_growth": {"counts": [], "total": 8.333333333333334, "isTopResearch": false, "rank": 165}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 169}, "citation_counts": {"counts": [4, 3, 9, 21, 26, 62, 131, 148, 175, 122, 2], "total": 703, "isTopResearch": false, "rank": 227}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 1, 2, 1, 2, 0, 0], "total": 7, "isTopResearch": true, "rank": 117}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 3.0, 9.0, 21.0, 0, 31.0, 65.5, 74.0, 43.75, 122.0, 0], "total": 50.214285714285715, "isTopResearch": false, "rank": 94}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 232, "rank": 657}, "ai_jobs": {"counts": null, "total": 20, "rank": 692}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Duolingo OO-oh-LING-goh) is an American language-learning website and mobile app, as well as a digital language proficiency assessment exam. The company uses the freemium model: the app and the website are accessible without charge, although Duolingo also offers a premium service for a fee.\nAs of 10 February 2021, the language-learning website and app offered 106 different language courses in 38 languages. The app has over 300 million registered users across the world.", "wikipedia_link": "https://en.wikipedia.org/wiki/Duolingo", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2847, "country": "United States", "website": "https://www.hdrinc.com/", "crunchbase": {"text": "9b31bccc-3260-c726-e33e-fdcb8704e0e0", "url": "https://www.crunchbase.com/organization/hdr-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hdr"], "stage": "Unknown", "name": "HDR Inc", "patent_name": "hdr inc", "continent": "North America", "local_logo": "hdr_inc.png", "aliases": "Hdr; Hdr Inc", "permid_links": [{"text": 4296317763, "url": "https://permid.org/1-4296317763"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "HDR Inc are specialize in engineering, architecture, environmental and construction services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [9, 10, 13, 14, 15, 14, 6, 9, 6, 3, 0], "total": 99, "isTopResearch": false, "rank": 514}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 231, "rank": 661}, "ai_jobs": {"counts": null, "total": 21, "rank": 683}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "HDR, Inc. is an employee-owned design firm, specializing in engineering, architecture, environmental, and construction services. HDR has worked on projects in all 50 U.S. states and in 60 countries, including notable projects such as the Hoover Dam Bypass, Fort Belvoir Community Hospital, and Roslin Institute building. The firm employs over 10,000 professionals and represents hundreds of disciplines in various markets. HDR is the 10th largest employee-owned company in the United States with revenues of over $2.4 billion in 2017. Engineering News-Record ranked HDR as the 7th largest design firm in the United States in 2019.", "wikipedia_link": "https://en.wikipedia.org/wiki/HDR,_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 102, "country": "United Kingdom", "website": "https://www.graphcore.ai/", "crunchbase": {"text": "5f543728-d9a4-c9e4-dc0f-48ffd232b353", "url": "https://www.crunchbase.com/organization/graphcore"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/graphcore"], "stage": "Mature", "name": "Graphcore", "patent_name": "graphcore", "continent": "Europe", "local_logo": "graphcore.png", "aliases": "Graphcore Limited; Graphcore Ltd", "permid_links": [{"text": 5052163873, "url": "https://permid.org/1-5052163873"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Graphcore develops a microprocessor designed for AI and machine learning applications.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Visual search", "field_count": 1}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Convolution", "field_count": 1}], "clusters": [{"cluster_id": 27589, "cluster_count": 2}, {"cluster_id": 78939, "cluster_count": 1}, {"cluster_id": 98548, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 820, "referenced_count": 2}, {"ref_CSET_id": 35, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 800, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 456, "referenced_count": 1}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "vehicle_detection", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "active_object_detection", "task_count": 1}], "methods": [{"referent": "grouped_convolution", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "neural_probabilistic_language_model", "method_count": 1}, {"referent": "harm_net", "method_count": 1}, {"referent": "graphs", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 2, 8, 4, 6, 0], "total": 20, "isTopResearch": false, "rank": 809}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0], "total": 5, "isTopResearch": false, "rank": 540}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 15, 18, 10, 0], "total": 43, "isTopResearch": false, "rank": 605}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 7.5, 9.0, 0, 0], "total": 8.6, "isTopResearch": false, "rank": 583}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 12, 8, 13, 11, 0, 0, 0], "total": 44, "table": null, "rank": 231}, "ai_patents_growth": {"counts": [], "total": 4.594017094017093, "table": null, "rank": 351}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 120, 80, 130, 110, 0, 0, 0], "total": 440, "table": null, "rank": 231}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 12, 8, 13, 8, 0, 0, 0], "total": 41, "table": "industry", "rank": 132}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 249}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 3, 2, 0, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 126}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 230, "rank": 662}, "ai_jobs": {"counts": null, "total": 31, "rank": 589}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Graphcore is a British semiconductor company that develops accelerators for AI and machine learning. It aims to make a massively parallel Intelligence Processing Unit (IPU) that holds the complete machine learning model inside the processor.", "wikipedia_link": "https://en.wikipedia.org/wiki/Graphcore", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2202, "country": "Ireland", "website": "https://www.allegion.com/corp/en/index.html", "crunchbase": {"text": "b9acb20c-520a-bfad-d0f3-981d132a7fb0", "url": "https://www.crunchbase.com/organization/allegion"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/allegion"], "stage": "Mature", "name": "Allegion", "patent_name": "allegion", "continent": "Europe", "local_logo": "allegion.png", "aliases": "Allegion Plc", "permid_links": [{"text": 5040047599, "url": "https://permid.org/1-5040047599"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ALLE", "url": "https://www.google.com/finance/quote/alle:nyse"}], "market_full": [{"text": "ASE:ALLE", "url": "https://www.google.com/finance/quote/alle:ase"}, {"text": "STU:60A", "url": "https://www.google.com/finance/quote/60a:stu"}, {"text": "DUS:60A", "url": "https://www.google.com/finance/quote/60a:dus"}, {"text": "NYSE:ALLE", "url": "https://www.google.com/finance/quote/alle:nyse"}, {"text": "FRA:60A", "url": "https://www.google.com/finance/quote/60a:fra"}, {"text": "SAO:A1GN34", "url": "https://www.google.com/finance/quote/a1gn34:sao"}, {"text": "LSE:0Y5C", "url": "https://www.google.com/finance/quote/0y5c:lse"}, {"text": "MEX:ALLEN", "url": "https://www.google.com/finance/quote/allen:mex"}, {"text": "DEU:60A", "url": "https://www.google.com/finance/quote/60a:deu"}, {"text": "NYQ:ALLE", "url": "https://www.google.com/finance/quote/alle:nyq"}, {"text": "BRN:60A", "url": "https://www.google.com/finance/quote/60a:brn"}, {"text": "BER:60A", "url": "https://www.google.com/finance/quote/60a:ber"}], "crunchbase_description": "Allegion plc is a global provider of security products and solutions.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 1, 1, 2, 0, 0, 0], "total": 6, "table": null, "rank": 487, "fortune500_rank": 154}, "ai_patents_growth": {"counts": [], "total": 16.666666666666668, "table": null, "rank": 306, "fortune500_rank": 96}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 10, 10, 20, 0, 0, 0], "total": 60, "table": null, "rank": 487, "fortune500_rank": 154}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "fortune500_rank": 70}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87, "fortune500_rank": 29}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 363, "fortune500_rank": 124}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 172, "fortune500_rank": 60}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 277, "fortune500_rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 230, "rank": 662, "fortune500_rank": 350}, "ai_jobs": {"counts": null, "total": 7, "rank": 944, "fortune500_rank": 427}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Allegion plc is an American-Irish provider based in Dublin of security products, for homes and businesses. It comprises thirty one global brands, including CISA, Interflex, LCN, Schlage and Von Duprin. The $US2 billion company sells products in more than 130 countries across the world. David D. Petratis has been announced Chairman of the Board, Chief Executive Officer and President of the Company, in August 2013.", "wikipedia_link": "https://en.wikipedia.org/wiki/Allegion", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2085, "country": "United States", "website": "https://www.chsinc.com/", "crunchbase": {"text": " 53bbdc7c-bf81-2567-bb45-4b111afd1f04 ", "url": " https://www.crunchbase.com/organization/chs-hedging "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/chs"], "stage": "Mature", "name": "Chs", "patent_name": "CHS", "continent": "North America", "local_logo": null, "aliases": "CHS; Chs Pharma Inc", "permid_links": [{"text": 4296341355, "url": "https://permid.org/1-4296341355"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CHSCN", "url": "https://www.google.com/finance/quote/CHSCN:NASDAQ"}, {"text": "NASDAQ:CHSCM", "url": "https://www.google.com/finance/quote/CHSCM:NASDAQ"}, {"text": "NASDAQ:CHSCO", "url": "https://www.google.com/finance/quote/CHSCO:NASDAQ"}, {"text": "NASDAQ:CHSCP", "url": "https://www.google.com/finance/quote/CHSCP:NASDAQ"}, {"text": "NASDAQ:CHSCL", "url": "https://www.google.com/finance/quote/CHSCL:NASDAQ"}], "market_full": [{"text": "NASDAQ:CHSCN", "url": "https://www.google.com/finance/quote/CHSCN:NASDAQ"}, {"text": "NASDAQ:CHSCM", "url": "https://www.google.com/finance/quote/CHSCM:NASDAQ"}, {"text": "NASDAQ:CHSCO", "url": "https://www.google.com/finance/quote/CHSCO:NASDAQ"}, {"text": "NASDAQ:CHSCP", "url": "https://www.google.com/finance/quote/CHSCP:NASDAQ"}, {"text": "NASDAQ:CHSCL", "url": "https://www.google.com/finance/quote/CHSCL:NASDAQ"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Classifier (UML)", "field_count": 1}, {"field_name": "Verb", "field_count": 1}, {"field_name": "Intelligibility (communication)", "field_count": 1}], "clusters": [{"cluster_id": 20808, "cluster_count": 1}, {"cluster_id": 46697, "cluster_count": 1}, {"cluster_id": 15900, "cluster_count": 1}, {"cluster_id": 75400, "cluster_count": 1}, {"cluster_id": 92019, "cluster_count": 1}, {"cluster_id": 4694, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "skills_assessment", "task_count": 1}], "methods": [{"referent": "linear_regression", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "auxiliary_classifier", "method_count": 1}, {"referent": "dcgan", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [31, 34, 32, 25, 42, 54, 64, 53, 41, 41, 0], "total": 417, "isTopResearch": false, "rank": 300, "sp500_rank": 197}, "ai_publications": {"counts": [0, 1, 1, 0, 1, 2, 1, 1, 1, 0, 0], "total": 8, "isTopResearch": false, "rank": 455, "sp500_rank": 233}, "ai_publications_growth": {"counts": [], "total": -33.333333333333336, "isTopResearch": false, "rank": 1404, "sp500_rank": 386}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 3, 0, 3, 6, 16, 40, 0], "total": 68, "isTopResearch": false, "rank": 548, "sp500_rank": 240}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 141, "sp500_rank": 83}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0, 0.0, 0.0, 0, 3.0, 0.0, 3.0, 6.0, 16.0, 0, 0], "total": 8.5, "isTopResearch": false, "rank": 584, "sp500_rank": 221}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 229, "rank": 664, "sp500_rank": 270}, "ai_jobs": {"counts": null, "total": 38, "rank": 538, "sp500_rank": 246}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2178, "country": "United States", "website": "https://www.dollargeneral.com/", "crunchbase": {"text": " b1d38f6c-c3a8-0dd4-e543-d7dc49894ae2", "url": " https://www.crunchbase.com/organization/dollar-general-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dollar-general"], "stage": "Mature", "name": "Dollar General", "patent_name": "Dollar General", "continent": "North America", "local_logo": null, "aliases": "Dollar General; Dollar General Corporation", "permid_links": [{"text": 4295903123, "url": "https://permid.org/1-4295903123"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DG", "url": "https://www.google.com/finance/quote/DG:NYSE"}], "market_full": [{"text": "GER:7DGX", "url": "https://www.google.com/finance/quote/7DGX:GER"}, {"text": "MCX:DG-RM", "url": "https://www.google.com/finance/quote/DG-RM:MCX"}, {"text": "VIE:DGEN", "url": "https://www.google.com/finance/quote/DGEN:VIE"}, {"text": "BER:7DG", "url": "https://www.google.com/finance/quote/7DG:BER"}, {"text": "MUN:7DG", "url": "https://www.google.com/finance/quote/7DG:MUN"}, {"text": "DUS:7DG", "url": "https://www.google.com/finance/quote/7DG:DUS"}, {"text": "FRA:7DG", "url": "https://www.google.com/finance/quote/7DG:FRA"}, {"text": "LSE:0IC7", "url": "https://www.google.com/finance/quote/0IC7:LSE"}, {"text": "ASE:DG", "url": "https://www.google.com/finance/quote/ASE:DG"}, {"text": "HAN:7DG", "url": "https://www.google.com/finance/quote/7DG:HAN"}, {"text": "BRN:7DG", "url": "https://www.google.com/finance/quote/7DG:BRN"}, {"text": "NYSE:DG", "url": "https://www.google.com/finance/quote/DG:NYSE"}, {"text": "SAO:DGCO34", "url": "https://www.google.com/finance/quote/DGCO34:SAO"}, {"text": "STU:7DG", "url": "https://www.google.com/finance/quote/7DG:STU"}, {"text": "NYQ:DG", "url": "https://www.google.com/finance/quote/DG:NYQ"}, {"text": "MEX:DGG", "url": "https://www.google.com/finance/quote/DGG:MEX"}, {"text": "DEU:DG", "url": "https://www.google.com/finance/quote/DEU:DG"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 227, "rank": 665, "sp500_rank": 271, "fortune500_rank": 351}, "ai_jobs": {"counts": null, "total": 16, "rank": 738, "sp500_rank": 281, "fortune500_rank": 370}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers"}, {"cset_id": 2398, "country": "United States", "website": "https://www.livenationentertainment.com/", "crunchbase": {"text": "66120225-ce40-6f20-2021-0c5e363a2e26", "url": "https://www.crunchbase.com/organization/live-nation-entertainment"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/live-nation"], "stage": "Mature", "name": "Live Nation Entertainment", "patent_name": "live nation entertainment", "continent": "North America", "local_logo": "live_nation_entertainment.png", "aliases": "Live Nation; Live Nation Entertainment Inc; Live Nation Worldwide Inc; Live Nation Worldwide, Inc", "permid_links": [{"text": 5000634824, "url": "https://permid.org/1-5000634824"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LYV", "url": "https://www.google.com/finance/quote/lyv:nyse"}], "market_full": [{"text": "FRA:3LN", "url": "https://www.google.com/finance/quote/3ln:fra"}, {"text": "MOEX:LYV-RM", "url": "https://www.google.com/finance/quote/lyv-rm:moex"}, {"text": "DUS:3LN", "url": "https://www.google.com/finance/quote/3ln:dus"}, {"text": "BER:3LN", "url": "https://www.google.com/finance/quote/3ln:ber"}, {"text": "BRN:3LN", "url": "https://www.google.com/finance/quote/3ln:brn"}, {"text": "ASE:LYV", "url": "https://www.google.com/finance/quote/ase:lyv"}, {"text": "GER:3LNX", "url": "https://www.google.com/finance/quote/3lnx:ger"}, {"text": "LSE:0JVD", "url": "https://www.google.com/finance/quote/0jvd:lse"}, {"text": "NYSE:LYV", "url": "https://www.google.com/finance/quote/lyv:nyse"}, {"text": "SAO:L1YV34", "url": "https://www.google.com/finance/quote/l1yv34:sao"}, {"text": "MUN:3LN", "url": "https://www.google.com/finance/quote/3ln:mun"}, {"text": "MEX:LYV*", "url": "https://www.google.com/finance/quote/lyv*:mex"}, {"text": "DEU:LYV", "url": "https://www.google.com/finance/quote/deu:lyv"}, {"text": "STU:3LN", "url": "https://www.google.com/finance/quote/3ln:stu"}, {"text": "NYQ:LYV", "url": "https://www.google.com/finance/quote/lyv:nyq"}], "crunchbase_description": "Live Nation Entertainment is a producer, promoter, and seller of live concert tickets for artists and fans.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 2, 3, 1, 0, 0, 0], "total": 7, "table": null, "rank": 464, "fortune500_rank": 148}, "ai_patents_growth": {"counts": [], "total": 27.777777777777775, "table": null, "rank": 280, "fortune500_rank": 84}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 20, 30, 10, 0, 0, 0], "total": 70, "table": null, "rank": 464, "fortune500_rank": 148}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 2, 2, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 128, "fortune500_rank": 48}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 305, "fortune500_rank": 110}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 249, "fortune500_rank": 95}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 226, "rank": 666, "fortune500_rank": 352}, "ai_jobs": {"counts": null, "total": 29, "rank": 607, "fortune500_rank": 311}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Live Nation Entertainment, Inc is an American global entertainment company, founded in 2010, following the merger of Live Nation and Ticketmaster. The company promotes, operates, and manages ticket sales for live entertainment in the United States and internationally. It also owns and operates entertainment venues, and manages the careers of music artists.", "wikipedia_link": "https://en.wikipedia.org/wiki/Live_Nation_Entertainment", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2204, "country": "United States", "website": "https://www.alliancedata.com/", "crunchbase": {"text": "0a9d0231-5ebc-9757-5d08-c893ca8d6c14", "url": "https://www.crunchbase.com/organization/alliance-data-systems"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/alliance-data"], "stage": "Mature", "name": "Alliance Data Systems", "patent_name": "alliance data systems", "continent": "North America", "local_logo": null, "aliases": "Ads Alliance Data Systems, Inc; Alliance Data; Alliance Data Systems; Alliance Data Systems Corp", "permid_links": [{"text": 5000001395, "url": "https://permid.org/1-5000001395"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BFH", "url": "https://www.google.com/finance/quote/BFH:nyse"}], "market_full": [{"text": "NYSE:BFH", "url": "https://www.google.com/finance/quote/BFH:nyse"}], "crunchbase_description": "Alliance Data Systems is a leading provider of transaction services, credit services and marketing services.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 5765, "cluster_count": 1}, {"cluster_id": 1153, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [{"referent": "ctc_loss", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 2, 1, 2, 0, 1, 0, 0], "total": 7, "isTopResearch": false, "rank": 1006, "fortune500_rank": 339}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 857, "fortune500_rank": 236}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0, 1.0, 0, 0, 0, 0], "total": 1.5, "isTopResearch": false, "rank": 855, "fortune500_rank": 232}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 226, "rank": 666, "fortune500_rank": 352}, "ai_jobs": {"counts": null, "total": 25, "rank": 646, "fortune500_rank": 327}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Alliance Data Systems Corporation is a publicly traded provider of loyalty and marketing services, such as private label credit cards, coalition loyalty programs, and direct marketing, derived from the capture and analysis of transaction-rich data.", "wikipedia_link": "https://en.wikipedia.org/wiki/Alliance_Data", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 279, "country": "China", "website": "https://www.xiaohongshu.com/", "crunchbase": {"text": "f5b4c5ec-fc40-1bd7-e34a-401b3b8c4ade", "url": "https://www.crunchbase.com/organization/xiaohongshu"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/xiaohongshu"], "stage": "Mature", "name": "Xiaohongshu (Little Red Book)", "patent_name": "xiaohongshu (little red book)", "continent": "Asia", "local_logo": "xiaohongshu_little_red_book.png", "aliases": "Information Technology (Shanghai) Co., Ltd; Little Red Book; Xiaohongshu; Xingyin Information Technology (Shanghai) Co., Ltd; Xingyin Information Technology Shanghai Co Ltd; Xingyin Xinxi Keji (Shanghai) Youxian Gongsi; \u5c0f\u7ea2\u4e66; \u884c\u541f\u4fe1\u606f\u79d1\u6280\uff08\u4e0a\u6d77\uff09\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5043318136, "url": "https://permid.org/1-5043318136"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Xiaohongshu is a social e-commerce platform for users to share product reviews and shopping experiences.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 5}, {"field_name": "Sentiment analysis", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Ontology (information science)", "field_count": 1}, {"field_name": "Discriminative model", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 1609, "cluster_count": 4}, {"cluster_id": 10485, "cluster_count": 1}, {"cluster_id": 51204, "cluster_count": 1}, {"cluster_id": 37792, "cluster_count": 1}, {"cluster_id": 14861, "cluster_count": 1}, {"cluster_id": 11988, "cluster_count": 1}, {"cluster_id": 67519, "cluster_count": 1}, {"cluster_id": 25609, "cluster_count": 1}, {"cluster_id": 148, "cluster_count": 1}, {"cluster_id": 66067, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 46}, {"ref_CSET_id": 163, "referenced_count": 20}, {"ref_CSET_id": 87, "referenced_count": 9}, {"ref_CSET_id": 245, "referenced_count": 6}, {"ref_CSET_id": 112, "referenced_count": 6}, {"ref_CSET_id": 115, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 3}, {"ref_CSET_id": 21, "referenced_count": 3}, {"ref_CSET_id": 223, "referenced_count": 3}, {"ref_CSET_id": 790, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "segmentation", "task_count": 2}, {"referent": "automated_writing_evaluation", "task_count": 2}, {"referent": "fine_grained_opinion_analysis", "task_count": 2}, {"referent": "sentiment_detection", "task_count": 2}, {"referent": "sequence_to_sequence_speech_recognition", "task_count": 1}, {"referent": "activity_detection", "task_count": 1}, {"referent": "general_reinforcement_learning", "task_count": 1}, {"referent": "portfolio_optimization", "task_count": 1}, {"referent": "super_resolution", "task_count": 1}], "methods": [{"referent": "reinforcement_learning", "method_count": 4}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "deep_belief_network", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "gradient_based_subword_tokenization", "method_count": 1}, {"referent": "markov_chain_monte_carlo", "method_count": 1}, {"referent": "policy_gradient_methods", "method_count": 1}, {"referent": "value_function_estimation", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "semi_supervised_learning_methods", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 1, 2, 8, 7, 10, 11, 0], "total": 40, "isTopResearch": false, "rank": 658}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 4, 4, 3, 5, 0], "total": 17, "isTopResearch": false, "rank": 330}, "ai_publications_growth": {"counts": [], "total": 13.888888888888891, "isTopResearch": false, "rank": 139}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 2, 3, 0], "total": 6, "isTopResearch": false, "rank": 140}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 0, 27, 56, 36, 1], "total": 121, "isTopResearch": false, "rank": 477}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0], "total": 4, "isTopResearch": true, "rank": 313}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 1, 0], "total": 4, "isTopResearch": true, "rank": 161}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 1.0, 0.0, 6.75, 18.666666666666668, 7.2, 0], "total": 7.117647058823529, "isTopResearch": false, "rank": 632}}, "patents": {"ai_patents": {"counts": [0, 0, 2, 1, 8, 10, 25, 39, 37, 24, 0], "total": 146, "table": null, "rank": 126}, "ai_patents_growth": {"counts": [], "total": 77.0, "table": null, "rank": 149}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 20, 10, 80, 100, 250, 390, 370, 240, 0], "total": 1460, "table": null, "rank": 126}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "table": null, "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0], "total": 5, "table": "industry", "rank": 128}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": null, "rank": 50}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 3, 3, 12, 14, 16, 15, 0], "total": 63, "table": "industry", "rank": 98}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 0, 0, 0, 2, 1, 0, 0], "total": 4, "table": "industry", "rank": 115}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 2, 2, 10, 3, 0, 0], "total": 17, "table": "industry", "rank": 140}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 0, 0, 0, 2, 1, 4, 12, 7, 8, 0], "total": 34, "table": "industry", "rank": 73}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0], "total": 4, "table": null, "rank": 86}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": null, "rank": 37}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 1, 3, 2, 3, 0], "total": 10, "table": "application", "rank": 81}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 2, 0, 2, 7, 3, 5, 0], "total": 19, "table": "application", "rank": 83}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 2, 0, 0, 3, 8, 13, 11, 6, 0], "total": 43, "table": "application", "rank": 126}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 3, 2, 0], "total": 6, "table": "application", "rank": 147}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 225, "rank": 668}, "ai_jobs": {"counts": null, "total": 47, "rank": 497}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Xiaohongshu, also known as RED (Chinese: \u5c0f\u7ea2\u4e66; pinyin: xi\u01ceoh\u00f3ngsh\u016b; lit. 'Little Red Book') is a social media and e-commerce platform.", "wikipedia_link": "https://en.wikipedia.org/wiki/Xiaohongshu", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 62, "country": "United States", "website": "https://www.dataminr.com/", "crunchbase": {"text": "4a5a1f99-423c-052c-8da3-9e43d703a8b8", "url": "https://www.crunchbase.com/organization/dataminr"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dataminr"], "stage": "Mature", "name": "Dataminr", "patent_name": "dataminr", "continent": "North America", "local_logo": "dataminr.png", "aliases": "Dataminr Inc; Ebh Enterprises Inc", "permid_links": [{"text": 5000584306, "url": "https://permid.org/1-5000584306"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Dataminr develops an artificial intelligence platform designed for real-time event and risk detection.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Automatic summarization", "field_count": 2}, {"field_name": "Unsupervised learning", "field_count": 1}, {"field_name": "Semantic Web", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Question answering", "field_count": 1}], "clusters": [{"cluster_id": 8196, "cluster_count": 2}, {"cluster_id": 46075, "cluster_count": 2}, {"cluster_id": 43403, "cluster_count": 1}, {"cluster_id": 68514, "cluster_count": 1}, {"cluster_id": 46634, "cluster_count": 1}, {"cluster_id": 21509, "cluster_count": 1}, {"cluster_id": 59218, "cluster_count": 1}, {"cluster_id": 1609, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 32}, {"ref_CSET_id": 163, "referenced_count": 19}, {"ref_CSET_id": 87, "referenced_count": 11}, {"ref_CSET_id": 792, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 5}, {"ref_CSET_id": 23, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 4}, {"ref_CSET_id": 6, "referenced_count": 3}, {"ref_CSET_id": 62, "referenced_count": 2}, {"ref_CSET_id": 1425, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "natural_language_processing", "task_count": 2}, {"referent": "style_transfer", "task_count": 2}, {"referent": "automated_writing_evaluation", "task_count": 2}, {"referent": "real_time_object_detection", "task_count": 1}, {"referent": "learning_word_embeddings", "task_count": 1}, {"referent": "recommendation_systems", "task_count": 1}, {"referent": "general_reinforcement_learning", "task_count": 1}, {"referent": "domain_generalization", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "topic_embeddings", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "cross_attention_module", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "target_policy_smoothing", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 0, 2, 0, 1, 1, 6, 5, 7, 0], "total": 23, "isTopResearch": false, "rank": 777}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 4, 3, 3, 0], "total": 12, "isTopResearch": false, "rank": 384}, "ai_publications_growth": {"counts": [], "total": 91.66666666666667, "isTopResearch": false, "rank": 26}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 2, 2, 0], "total": 6, "isTopResearch": false, "rank": 140}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 3, 25, 44, 38, 3], "total": 114, "isTopResearch": false, "rank": 482}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 2, 3, 0], "total": 8, "isTopResearch": true, "rank": 110}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 1.0, 3.0, 6.25, 14.666666666666666, 12.666666666666666, 0], "total": 9.5, "isTopResearch": false, "rank": 558}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 222, "rank": 669}, "ai_jobs": {"counts": null, "total": 50, "rank": 483}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Dataminr is a New York based company that specialises in artificial intelligence to provide real-time information alerts to clients. It was founded in 2009 and employs about 600 people.", "wikipedia_link": "https://en.wikipedia.org/wiki/Dataminr", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2279, "country": "United States", "website": "https://www.danaher.com/", "crunchbase": {"text": "1a9a2d66-1d24-af97-f30b-54b34e0b18ee", "url": "https://www.crunchbase.com/organization/danaher"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/danaher"], "stage": "Mature", "name": "Danaher Corp.", "patent_name": "danaher corp.", "continent": "North America", "local_logo": "danaher_corp.png", "aliases": "Danaher; Danaher Corporation", "permid_links": [{"text": 4295903833, "url": "https://permid.org/1-4295903833"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DHR", "url": "https://www.google.com/finance/quote/dhr:nyse"}], "market_full": [{"text": "SAO:DHER34", "url": "https://www.google.com/finance/quote/dher34:sao"}, {"text": "FRA:DAP", "url": "https://www.google.com/finance/quote/dap:fra"}, {"text": "MUN:DAP", "url": "https://www.google.com/finance/quote/dap:mun"}, {"text": "NYQ:DHR", "url": "https://www.google.com/finance/quote/dhr:nyq"}, {"text": "NYSE:DHR", "url": "https://www.google.com/finance/quote/dhr:nyse"}, {"text": "BER:DAP", "url": "https://www.google.com/finance/quote/ber:dap"}, {"text": "DUS:DAP", "url": "https://www.google.com/finance/quote/dap:dus"}, {"text": "VIE:DHRC", "url": "https://www.google.com/finance/quote/dhrc:vie"}, {"text": "MCX:DHR-RM", "url": "https://www.google.com/finance/quote/dhr-rm:mcx"}, {"text": "STU:DAP", "url": "https://www.google.com/finance/quote/dap:stu"}, {"text": "GER:DAPX", "url": "https://www.google.com/finance/quote/dapx:ger"}, {"text": "HAN:DAP", "url": "https://www.google.com/finance/quote/dap:han"}, {"text": "MEX:DHR*", "url": "https://www.google.com/finance/quote/dhr*:mex"}, {"text": "ASE:DHR", "url": "https://www.google.com/finance/quote/ase:dhr"}, {"text": "LSE:0R2B", "url": "https://www.google.com/finance/quote/0r2b:lse"}, {"text": "DEU:DHR", "url": "https://www.google.com/finance/quote/deu:dhr"}], "crunchbase_description": "Danaher is a global science and technology innovator committed to helping their customers solve complex challenges and improve quality.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Machine vision", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 54074, "cluster_count": 2}, {"cluster_id": 9894, "cluster_count": 1}, {"cluster_id": 60337, "cluster_count": 1}, {"cluster_id": 36136, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 7}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 812, "referenced_count": 1}, {"ref_CSET_id": 674, "referenced_count": 1}, {"ref_CSET_id": 800, "referenced_count": 1}, {"ref_CSET_id": 2279, "referenced_count": 1}, {"ref_CSET_id": 274, "referenced_count": 1}, {"ref_CSET_id": 796, "referenced_count": 1}, {"ref_CSET_id": 1950, "referenced_count": 1}], "tasks": [{"referent": "defect_detection", "task_count": 2}, {"referent": "multi_label_learning", "task_count": 1}, {"referent": "video_similarity", "task_count": 1}, {"referent": "panel_extraction", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "structural_health_monitoring", "task_count": 1}, {"referent": "3d_shape_recognition", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}], "methods": [{"referent": "loss_functions", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "som", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [43, 28, 39, 50, 34, 27, 45, 77, 50, 41, 0], "total": 434, "isTopResearch": false, "rank": 296, "fortune500_rank": 117}, "ai_publications": {"counts": [1, 1, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "fortune500_rank": 157}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [2, 5, 6, 6, 10, 9, 13, 33, 39, 43, 1], "total": 167, "isTopResearch": false, "rank": 416, "fortune500_rank": 120}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [2.0, 5.0, 0, 0, 0, 0, 6.5, 0, 0, 0, 0], "total": 41.75, "isTopResearch": false, "rank": 121, "fortune500_rank": 32}}, "patents": {"ai_patents": {"counts": [1, 2, 4, 2, 7, 18, 23, 14, 8, 0, 0], "total": 79, "table": null, "rank": 175, "fortune500_rank": 54}, "ai_patents_growth": {"counts": [], "total": 48.596733379342076, "table": null, "rank": 217, "fortune500_rank": 66}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 20, 40, 20, 70, 180, 230, 140, 80, 0, 0], "total": 790, "table": null, "rank": 175, "fortune500_rank": 54}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 1, 0, 1, 0, 0, 1, 2, 0, 0], "total": 6, "table": "industry", "rank": 68, "fortune500_rank": 23}, "Life_Sciences": {"counts": [1, 0, 1, 1, 1, 3, 12, 3, 3, 0, 0], "total": 25, "table": "industry", "rank": 42, "fortune500_rank": 18}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 131, "fortune500_rank": 46}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 6, "fortune500_rank": 4}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "fortune500_rank": 11}, "Personal_Devices_and_Computing": {"counts": [0, 0, 3, 1, 2, 6, 10, 1, 3, 0, 0], "total": 26, "table": "industry", "rank": 165, "fortune500_rank": 61}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 2, 6, 4, 0, 1, 0, 0], "total": 13, "table": "industry", "rank": 153, "fortune500_rank": 60}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 119, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191, "fortune500_rank": 76}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 190, "fortune500_rank": 67}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [1, 0, 2, 1, 4, 13, 16, 9, 3, 0, 0], "total": 49, "table": "application", "rank": 118, "fortune500_rank": 36}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 1, 2, 0, 1, 0, 0], "total": 5, "table": "application", "rank": 160, "fortune500_rank": 66}, "Measuring_and_Testing": {"counts": [1, 1, 3, 0, 2, 3, 4, 3, 3, 0, 0], "total": 20, "table": "application", "rank": 84, "fortune500_rank": 25}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 222, "rank": 669, "fortune500_rank": 354}, "ai_jobs": {"counts": null, "total": 20, "rank": 692, "fortune500_rank": 349}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Danaher Corporation is an American globally diversified conglomerate with its headquarters in Washington, D.C.. The company designs, manufactures, and markets professional, medical, industrial, and commercial products and services. The company's 4 platforms are \"Life Sciences\", \"Diagnostics\", \"Water Quality\", and \"Environmental & Applied Solutions\".\nDanaher is ranked 160th on the Fortune 500.", "wikipedia_link": "https://en.wikipedia.org/wiki/Danaher_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2542, "country": "United States", "website": "https://www.weyerhaeuser.com/", "crunchbase": {"text": "4a7e0b31-cb66-81a4-4f7c-3d8e35acffaf", "url": "https://www.crunchbase.com/organization/weyerhaeuser"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/weyerhaeuser"], "stage": "Mature", "name": "Weyerhaeuser", "patent_name": "weyerhaeuser", "continent": "North America", "local_logo": "weyerhaeuser.png", "aliases": "Weyerhaeuser Co; Weyerhaeuser Company", "permid_links": [{"text": 4295903255, "url": "https://permid.org/1-4295903255"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WY", "url": "https://www.google.com/finance/quote/nyse:wy"}], "market_full": [{"text": "DEU:WHC", "url": "https://www.google.com/finance/quote/deu:whc"}, {"text": "MUN:WHC", "url": "https://www.google.com/finance/quote/mun:whc"}, {"text": "NYSE:WY", "url": "https://www.google.com/finance/quote/nyse:wy"}, {"text": "DUS:WHC", "url": "https://www.google.com/finance/quote/dus:whc"}, {"text": "LSE:0LWG", "url": "https://www.google.com/finance/quote/0lwg:lse"}, {"text": "ASE:WY", "url": "https://www.google.com/finance/quote/ase:wy"}, {"text": "STU:WHC", "url": "https://www.google.com/finance/quote/stu:whc"}, {"text": "HAN:WHC", "url": "https://www.google.com/finance/quote/han:whc"}, {"text": "BRN:WHC", "url": "https://www.google.com/finance/quote/brn:whc"}, {"text": "SAO:W1YC34", "url": "https://www.google.com/finance/quote/sao:w1yc34"}, {"text": "NYQ:WY", "url": "https://www.google.com/finance/quote/nyq:wy"}, {"text": "FRA:WHC", "url": "https://www.google.com/finance/quote/fra:whc"}, {"text": "MEX:WY*", "url": "https://www.google.com/finance/quote/mex:wy*"}, {"text": "HAM:WHC", "url": "https://www.google.com/finance/quote/ham:whc"}, {"text": "BER:WHC", "url": "https://www.google.com/finance/quote/ber:whc"}], "crunchbase_description": "Weyerhaeuser is one of the world's largest private owners of timberlands. It owns or controls more than 6 million acres of timberlands,", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 23644, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [22, 27, 29, 29, 17, 23, 27, 23, 25, 20, 1], "total": 243, "isTopResearch": false, "rank": 386, "fortune500_rank": 149}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 901, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "fortune500_rank": 237}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 221, "rank": 671, "fortune500_rank": 355}, "ai_jobs": {"counts": null, "total": 14, "rank": 775, "fortune500_rank": 384}}, "sector": "Real Estate", "business_sector": "Real Estate", "wikipedia_description": "Weyerhaeuser Company is an American timberland company which owns nearly 12,400,000 acres (19,400 sq mi; 50,000 km2) of timberlands in the U.S. and manages an additional 14,000,000 acres (22,000 sq mi; 57,000 km2) timberlands under long-term licenses in Canada. The company also manufactures wood products. Weyerhaeuser is a real estate investment trust.", "wikipedia_link": "https://en.wikipedia.org/wiki/Weyerhaeuser", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2386, "country": "United States", "website": "https://www.kindermorgan.com/", "crunchbase": {"text": "3c4ffde6-81a7-e713-c01b-1151a20103f4", "url": "https://www.crunchbase.com/organization/kinder-morgan"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kinder-morgan"], "stage": "Mature", "name": "Kinder Morgan", "patent_name": "kinder morgan", "continent": "North America", "local_logo": "kinder_morgan.png", "aliases": "Kinder Morgan Inc; Kinder Morgan, Inc", "permid_links": [{"text": 4298464085, "url": "https://permid.org/1-4298464085"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:KMI", "url": "https://www.google.com/finance/quote/kmi:nyse"}], "market_full": [{"text": "DUS:2KD", "url": "https://www.google.com/finance/quote/2kd:dus"}, {"text": "LSE:0JR2", "url": "https://www.google.com/finance/quote/0jr2:lse"}, {"text": "GER:2KDX", "url": "https://www.google.com/finance/quote/2kdx:ger"}, {"text": "BRN:2KD", "url": "https://www.google.com/finance/quote/2kd:brn"}, {"text": "MUN:2KD", "url": "https://www.google.com/finance/quote/2kd:mun"}, {"text": "SAO:KMIC34", "url": "https://www.google.com/finance/quote/kmic34:sao"}, {"text": "ASE:KMI", "url": "https://www.google.com/finance/quote/ase:kmi"}, {"text": "FRA:2KD", "url": "https://www.google.com/finance/quote/2kd:fra"}, {"text": "BER:2KD", "url": "https://www.google.com/finance/quote/2kd:ber"}, {"text": "NYQ:KMI", "url": "https://www.google.com/finance/quote/kmi:nyq"}, {"text": "MOEX:KMI-RM", "url": "https://www.google.com/finance/quote/kmi-rm:moex"}, {"text": "NYSE:KMI", "url": "https://www.google.com/finance/quote/kmi:nyse"}, {"text": "STU:2KD", "url": "https://www.google.com/finance/quote/2kd:stu"}, {"text": "MEX:KMI*", "url": "https://www.google.com/finance/quote/kmi*:mex"}, {"text": "DEU:2KD", "url": "https://www.google.com/finance/quote/2kd:deu"}, {"text": "VIE:KMI", "url": "https://www.google.com/finance/quote/kmi:vie"}], "crunchbase_description": "Kinder Morgan is the largest energy infrastructure company in North America.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 3, 2, 1, 0, 2, 0, 4, 1, 3, 0], "total": 16, "isTopResearch": false, "rank": 847, "fortune500_rank": 300}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 219, "rank": 672, "fortune500_rank": 356}, "ai_jobs": {"counts": null, "total": 22, "rank": 667, "fortune500_rank": 336}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Kinder Morgan, Inc. is one of the largest energy infrastructure companies in North America. The company specializes in owning and controlling oil and gas pipelines and terminals.", "wikipedia_link": "https://en.wikipedia.org/wiki/Kinder_Morgan", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2879, "country": "United States", "website": "https://www.torchtechnologies.com/", "crunchbase": {"text": "e49f34ce-a740-4d0c-135c-b130867f1ed4", "url": "https://www.crunchbase.com/organization/torch-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/torch-technologies-inc."], "stage": "Startup", "name": "Torch Technologies Inc", "patent_name": "torch technologies inc", "continent": "North America", "local_logo": "torch_technologies_inc.png", "aliases": "Torch; Torch Technologies; Torch Technologies Inc; Torch Technologies, Inc", "permid_links": [{"text": 5000746956, "url": "https://permid.org/1-5000746956"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Torch Technologies provides scientific and engineering programmatic support services to defense and other industries.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Camera resectioning", "field_count": 1}, {"field_name": "Point cloud", "field_count": 1}, {"field_name": "Synthetic data", "field_count": 1}], "clusters": [{"cluster_id": 11702, "cluster_count": 1}, {"cluster_id": 1176, "cluster_count": 1}, {"cluster_id": 214, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 2879, "referenced_count": 1}, {"ref_CSET_id": 1132, "referenced_count": 1}], "tasks": [{"referent": "object_detection", "task_count": 1}, {"referent": "synthetic_data_generation", "task_count": 1}, {"referent": "continual_learning", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "robotic_process_automation", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "image_fusion", "task_count": 1}, {"referent": "image_registration", "task_count": 1}, {"referent": "rul", "task_count": 1}, {"referent": "computational_manga", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "wgan_gp", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 4, 1, 1, 4, 6, 2, 4, 6, 4, 0], "total": 34, "isTopResearch": false, "rank": 689}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 2, 0, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 1, 0, 0, 1, 2, 2, 1, 1], "total": 8, "isTopResearch": false, "rank": 782}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 0.0, 0, 0, 1.0, 0, 0], "total": 2.0, "isTopResearch": false, "rank": 823}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 217, "rank": 673}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Torch Technologies is a 100% employee-owned system engineering, applied science, modeling & simulation and information technology business. Its primary customers are the United States Army Aviation and Missile Command (AMCOM) and the Missile Defense Agency, although it has contracts with other DoD agencies including the Navy and the Air Force. Torch has over 915 employee-owners and is headquartered in Huntsville, AL, with technical offices located in Aberdeen, MD, Albuquerque, NM, Detroit, MI, Colorado Springs, CO, Patuxent River, MD, and Shalimar, FL.", "wikipedia_link": "https://en.wikipedia.org/wiki/Torch_Technologies", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3135, "country": "United States", "website": "https://www.riteaid.com/", "crunchbase": {"text": " 634d8750-81ab-407e-00e4-7dc4ac8d36ed ", "url": " https://www.crunchbase.com/organization/rite-aid "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/riteaid"], "stage": "Mature", "name": "Rite Aid", "patent_name": "Rite Aid", "continent": "North America", "local_logo": null, "aliases": "Rite Aid; Rite Aid Corporation", "permid_links": [{"text": 4295904827, "url": "https://permid.org/1-4295904827"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:RAD", "url": "https://www.google.com/finance/quote/NYSE:RAD"}], "market_full": [{"text": "FRA:RTA1", "url": "https://www.google.com/finance/quote/FRA:RTA1"}, {"text": "BRN:RTA1", "url": "https://www.google.com/finance/quote/BRN:RTA1"}, {"text": "NYSE:RAD", "url": "https://www.google.com/finance/quote/NYSE:RAD"}, {"text": "DUS:RTA1", "url": "https://www.google.com/finance/quote/DUS:RTA1"}, {"text": "NYQ:RAD", "url": "https://www.google.com/finance/quote/NYQ:RAD"}, {"text": "BER:RTA1", "url": "https://www.google.com/finance/quote/BER:RTA1"}, {"text": "DEU:RTA1", "url": "https://www.google.com/finance/quote/DEU:RTA1"}, {"text": "ASE:RAD", "url": "https://www.google.com/finance/quote/ASE:RAD"}, {"text": "STU:RTA1", "url": "https://www.google.com/finance/quote/RTA1:STU"}, {"text": "LSE:0A6H", "url": "https://www.google.com/finance/quote/0A6H:LSE"}, {"text": "MUN:RTA1", "url": "https://www.google.com/finance/quote/MUN:RTA1"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "sp500_rank": 439}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 216, "rank": 674, "sp500_rank": 272}, "ai_jobs": {"counts": null, "total": 15, "rank": 754, "sp500_rank": 284}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 109, "country": "China", "website": "http://www.hoperun.com/", "crunchbase": {"text": "bc58a3f0-aad7-4533-88f0-ac2580046d5f", "url": "https://www.crunchbase.com/organization/jiangsu-hoperun-software"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/jiangsu-hoperun-software-co.-ltd."], "stage": "Mature", "name": "Hoperun", "patent_name": "hoperun", "continent": "Asia", "local_logo": "hoperun.png", "aliases": "Hoperun Information Technology; Hoperun Software; Jiangsu Hoperun Software; Jiangsu Hoperun Software Co., Ltd; Jiangsu Hoperun Software Hangzhou Branch Co Ltd; Jiangsu Runhe Software Co., Ltd; \u6c5f\u82cf\u6da6\u548c\u8f6f\u4ef6\u80a1\u4efd\u6709\u9650\u516c\u53f8; \u6da6\u548c\u8f6f\u4ef6", "permid_links": [{"text": 5040047337, "url": "https://permid.org/1-5040047337"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "SZSE:300339", "url": "https://www.google.com/finance/quote/300339:szse"}], "market_full": [{"text": "SZSE:300339", "url": "https://www.google.com/finance/quote/300339:szse"}], "crunchbase_description": "Jiangsu Hoperun Software provides software outsourcing services for professional fields.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 1, 0, 2, 1, 1, 0, 2, 1, 0], "total": 9, "isTopResearch": false, "rank": 958}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 2, 1, 0, 0, 4, 0], "total": 8, "table": null, "rank": 443}, "ai_patents_growth": {"counts": [], "total": -16.666666666666668, "table": null, "rank": 1452}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 20, 10, 0, 0, 40, 0], "total": 80, "table": null, "rank": 443}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0], "total": 4, "table": "industry", "rank": 363}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0], "total": 3, "table": "industry", "rank": 277}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": "industry", "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 216, "rank": 674}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2351, "country": "United States", "website": "https://www.henryschein.com/", "crunchbase": {"text": "b02a79db-99a6-19d5-4b39-47ba122066ca", "url": "https://www.crunchbase.com/organization/henry-schein-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/henry-schein"], "stage": "Mature", "name": "Henry Schein", "patent_name": "henry schein", "continent": "North America", "local_logo": "henry_schein.png", "aliases": "Henry Schein, Inc", "permid_links": [{"text": 4295907871, "url": "https://permid.org/1-4295907871"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:HSIC", "url": "https://www.google.com/finance/quote/hsic:nasdaq"}], "market_full": [{"text": "MUN:HS2", "url": "https://www.google.com/finance/quote/hs2:mun"}, {"text": "VIE:HSIC", "url": "https://www.google.com/finance/quote/hsic:vie"}, {"text": "HAN:HS2", "url": "https://www.google.com/finance/quote/han:hs2"}, {"text": "STU:HS2", "url": "https://www.google.com/finance/quote/hs2:stu"}, {"text": "HAM:HS2", "url": "https://www.google.com/finance/quote/ham:hs2"}, {"text": "DEU:HSIC", "url": "https://www.google.com/finance/quote/deu:hsic"}, {"text": "FRA:HS2", "url": "https://www.google.com/finance/quote/fra:hs2"}, {"text": "SAO:H1SI34", "url": "https://www.google.com/finance/quote/h1si34:sao"}, {"text": "DUS:HS2", "url": "https://www.google.com/finance/quote/dus:hs2"}, {"text": "BER:HS2", "url": "https://www.google.com/finance/quote/ber:hs2"}, {"text": "MOEX:HSIC-RM", "url": "https://www.google.com/finance/quote/hsic-rm:moex"}, {"text": "LSE:0L3C", "url": "https://www.google.com/finance/quote/0l3c:lse"}, {"text": "NASDAQ:HSIC", "url": "https://www.google.com/finance/quote/hsic:nasdaq"}, {"text": "GER:HS2X", "url": "https://www.google.com/finance/quote/ger:hs2x"}, {"text": "BRN:HS2", "url": "https://www.google.com/finance/quote/brn:hs2"}], "crunchbase_description": "Henry Schein, Inc. is the world's largest provider of health care products and services to office-based dental, medical and animal health", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 215, "rank": 676, "fortune500_rank": 357}, "ai_jobs": {"counts": null, "total": 26, "rank": 639, "fortune500_rank": 324}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Henry Schein, Inc. is an American distributor of health care products and services with a presence in 32 countries. The company is a Fortune World's Most Admired Company and is ranked number one in its industry for social responsibility by Fortune magazine. Henry Schein has been recognized by the Ethisphere Institute as the World's Most Ethical Company six times as of 2017. Henry Schein has received criticism from the ICL-CIT due to the firing and alleged exploitation of its workers during the pandemic.", "wikipedia_link": "https://en.wikipedia.org/wiki/Henry_Schein", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3149, "country": "United States", "website": "https://www.unfi.com/", "crunchbase": {"text": " 3fc33a90-e92e-8f34-3387-7b8171108839 ", "url": " https://www.crunchbase.com/organization/united-natural-foods "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/unfi"], "stage": "Mature", "name": "United Natural Foods", "patent_name": "United Natural Foods", "continent": "North America", "local_logo": null, "aliases": "United Natural Foods; United Natural Foods, Inc", "permid_links": [{"text": 4295908260, "url": "https://permid.org/1-4295908260"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:UNFI", "url": "https://www.google.com/finance/quote/NYSE:UNFI"}], "market_full": [{"text": "MUN:UN3", "url": "https://www.google.com/finance/quote/MUN:UN3"}, {"text": "DEU:UNFI", "url": "https://www.google.com/finance/quote/DEU:UNFI"}, {"text": "BRN:UN3", "url": "https://www.google.com/finance/quote/BRN:UN3"}, {"text": "BER:UN3", "url": "https://www.google.com/finance/quote/BER:UN3"}, {"text": "NYQ:UNFI", "url": "https://www.google.com/finance/quote/NYQ:UNFI"}, {"text": "ASE:UNFI", "url": "https://www.google.com/finance/quote/ASE:UNFI"}, {"text": "FRA:UN3", "url": "https://www.google.com/finance/quote/FRA:UN3"}, {"text": "STU:UN3", "url": "https://www.google.com/finance/quote/STU:UN3"}, {"text": "NYSE:UNFI", "url": "https://www.google.com/finance/quote/NYSE:UNFI"}, {"text": "DUS:UN3", "url": "https://www.google.com/finance/quote/DUS:UN3"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 214, "rank": 677, "sp500_rank": 273}, "ai_jobs": {"counts": null, "total": 9, "rank": 880, "sp500_rank": 304}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 1967, "country": "Japan", "website": "https://www.kddi.com/", "crunchbase": {"text": " b32f5ab3-f968-a346-c639-f35e840a7ed8", "url": " https://www.crunchbase.com/organization/kddi"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kddi-corporation"], "stage": "Mature", "name": "Kddi", "patent_name": "KDDI", "continent": "Asia", "local_logo": null, "aliases": "KDDI; Kddi Corporation", "permid_links": [{"text": 4295880577, "url": "https://permid.org/1-4295880577"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:9433", "url": "https://www.google.com/finance/quote/9433:TYO"}], "market_full": [{"text": "TYO:9433", "url": "https://www.google.com/finance/quote/9433:TYO"}, {"text": "STU:DIP", "url": "https://www.google.com/finance/quote/DIP:STU"}, {"text": "FRA:DIP0", "url": "https://www.google.com/finance/quote/DIP0:FRA"}, {"text": "DUS:DIP", "url": "https://www.google.com/finance/quote/DIP:DUS"}, {"text": "HAN:DIP", "url": "https://www.google.com/finance/quote/DIP:HAN"}, {"text": "FRA:DIP", "url": "https://www.google.com/finance/quote/DIP:FRA"}, {"text": "MUN:DIP", "url": "https://www.google.com/finance/quote/DIP:MUN"}, {"text": "DEU:9433", "url": "https://www.google.com/finance/quote/9433:DEU"}, {"text": "PNK:KDDIY", "url": "https://www.google.com/finance/quote/KDDIY:PNK"}, {"text": "PKL:KDDIF", "url": "https://www.google.com/finance/quote/KDDIF:PKL"}, {"text": "DEU:DIP0", "url": "https://www.google.com/finance/quote/DEU:DIP0"}, {"text": "MUN:DIP0", "url": "https://www.google.com/finance/quote/DIP0:MUN"}, {"text": "MEX:9433N", "url": "https://www.google.com/finance/quote/9433N:MEX"}, {"text": "BER:DIP", "url": "https://www.google.com/finance/quote/BER:DIP"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 14}, {"field_name": "Augmented reality", "field_count": 9}, {"field_name": "Object (computer science)", "field_count": 7}, {"field_name": "Silhouette", "field_count": 6}, {"field_name": "Artificial neural network", "field_count": 6}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Speech synthesis", "field_count": 5}, {"field_name": "Camera resectioning", "field_count": 5}, {"field_name": "Robustness (computer science)", "field_count": 4}, {"field_name": "Point cloud", "field_count": 4}], "clusters": [{"cluster_id": 5622, "cluster_count": 15}, {"cluster_id": 6913, "cluster_count": 10}, {"cluster_id": 791, "cluster_count": 8}, {"cluster_id": 1821, "cluster_count": 7}, {"cluster_id": 7639, "cluster_count": 5}, {"cluster_id": 228, "cluster_count": 5}, {"cluster_id": 6335, "cluster_count": 5}, {"cluster_id": 11988, "cluster_count": 4}, {"cluster_id": 27185, "cluster_count": 4}, {"cluster_id": 916, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 161}, {"ref_CSET_id": 163, "referenced_count": 158}, {"ref_CSET_id": 1967, "referenced_count": 141}, {"ref_CSET_id": 87, "referenced_count": 56}, {"ref_CSET_id": 115, "referenced_count": 38}, {"ref_CSET_id": 184, "referenced_count": 16}, {"ref_CSET_id": 3131, "referenced_count": 16}, {"ref_CSET_id": 37, "referenced_count": 12}, {"ref_CSET_id": 112, "referenced_count": 12}, {"ref_CSET_id": 6, "referenced_count": 12}], "tasks": [{"referent": "classification", "task_count": 50}, {"referent": "system_identification", "task_count": 12}, {"referent": "object_detection", "task_count": 12}, {"referent": "speech_recognition", "task_count": 10}, {"referent": "feature_selection", "task_count": 9}, {"referent": "image_retrieval", "task_count": 8}, {"referent": "activity_detection", "task_count": 8}, {"referent": "speech_emotion_recognition", "task_count": 8}, {"referent": "image_processing", "task_count": 8}, {"referent": "community_detection", "task_count": 7}], "methods": [{"referent": "mad_learning", "method_count": 24}, {"referent": "double_q_learning", "method_count": 23}, {"referent": "vqa_models", "method_count": 14}, {"referent": "auto_classifier", "method_count": 14}, {"referent": "recurrent_neural_networks", "method_count": 14}, {"referent": "convolutional_neural_networks", "method_count": 13}, {"referent": "symbolic_deep_learning", "method_count": 13}, {"referent": "1d_cnn", "method_count": 11}, {"referent": "3d_representations", "method_count": 11}, {"referent": "cgnn", "method_count": 11}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [224, 194, 176, 201, 172, 179, 163, 213, 204, 203, 3], "total": 1932, "isTopResearch": false, "rank": 127, "sp500_rank": 99}, "ai_publications": {"counts": [25, 19, 16, 23, 20, 33, 45, 46, 37, 19, 0], "total": 283, "isTopResearch": false, "rank": 64, "sp500_rank": 51}, "ai_publications_growth": {"counts": [], "total": -21.99721460591026, "isTopResearch": false, "rank": 1342, "sp500_rank": 358}, "ai_pubs_top_conf": {"counts": [0, 1, 0, 0, 1, 1, 3, 0, 0, 1, 0], "total": 7, "isTopResearch": false, "rank": 134, "sp500_rank": 66}, "citation_counts": {"counts": [47, 73, 97, 116, 126, 172, 218, 303, 403, 357, 11], "total": 1923, "isTopResearch": false, "rank": 144, "sp500_rank": 86}, "cv_pubs": {"counts": [11, 6, 7, 8, 6, 12, 13, 13, 15, 5, 0], "total": 96, "isTopResearch": true, "rank": 56, "sp500_rank": 41}, "nlp_pubs": {"counts": [3, 4, 3, 2, 4, 6, 8, 11, 2, 1, 0], "total": 44, "isTopResearch": true, "rank": 49, "sp500_rank": 36}, "robotics_pubs": {"counts": [3, 3, 2, 4, 1, 5, 3, 1, 2, 1, 0], "total": 25, "isTopResearch": true, "rank": 70, "sp500_rank": 54}, "citations_per_article": {"counts": [1.88, 3.8421052631578947, 6.0625, 5.043478260869565, 6.3, 5.212121212121212, 4.844444444444444, 6.586956521739131, 10.891891891891891, 18.789473684210527, 0], "total": 6.795053003533569, "isTopResearch": false, "rank": 650, "sp500_rank": 257}}, "patents": {"ai_patents": {"counts": [1, 2, 6, 3, 22, 37, 16, 15, 6, 1, 0], "total": 109, "table": null, "rank": 155, "sp500_rank": 101}, "ai_patents_growth": {"counts": [], "total": 1.7250204750204763, "table": null, "rank": 355, "sp500_rank": 167}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 20, 60, 30, 220, 370, 160, 150, 60, 10, 0], "total": 1090, "table": null, "rank": 155, "sp500_rank": 101}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 141, "sp500_rank": 95}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 5, 2, 0, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 287, "sp500_rank": 150}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 2, 0, 1, 0, 1, 0, 0], "total": 4, "table": "industry", "rank": 249, "sp500_rank": 129}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 345, "sp500_rank": 187}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "sp500_rank": 183}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 213, "rank": 678, "sp500_rank": 274}, "ai_jobs": {"counts": null, "total": 13, "rank": 790, "sp500_rank": 288}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 24, "country": "United States", "website": "http://www.anduril.com", "crunchbase": {"text": "41d91de0-370f-41c9-84f9-0879b1b9c7a1", "url": "https://www.crunchbase.com/organization/anduril-industries"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/andurilindustries"], "stage": "Mature", "name": "Anduril Industries", "patent_name": "anduril industries", "continent": "North America", "local_logo": "anduril_industries.png", "aliases": "Anduril; Anduril Industries, Inc", "permid_links": [{"text": 5073085346, "url": "https://permid.org/1-5073085346"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Anduril Industries is a defense product company that builds technology for military agencies and border surveillance.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Speech processing", "field_count": 1}], "clusters": [{"cluster_id": 1422, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 1784, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 637, "referenced_count": 1}, {"ref_CSET_id": 786, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 3131, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0], "total": 10, "isTopResearch": false, "rank": 760}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0, 0], "total": 10.0, "isTopResearch": false, "rank": 535}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 212, "rank": 679}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Anduril builds cutting-edge hardware and software products that solve complex national security challenges for America and its allies.", "company_site_link": "http://www.anduril.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 186, "country": "United Kingdom", "website": "http://www.onfido.com", "crunchbase": {"text": "f1b80af8-5b99-b05f-3a96-e7d33cd626e2", "url": "https://www.crunchbase.com/organization/onfido"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/onfido"], "stage": "Mature", "name": "Onfido", "patent_name": "onfido", "continent": "Europe", "local_logo": "onfido.png", "aliases": "Onfido Limited; Onfido Ltd", "permid_links": [{"text": 5045106233, "url": "https://permid.org/1-5045106233"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Onfido - simplifying identity for everyone.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Activity recognition", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Big data", "field_count": 1}, {"field_name": "Canonical correlation", "field_count": 1}, {"field_name": "Missing data", "field_count": 1}, {"field_name": "Object (computer science)", "field_count": 1}, {"field_name": "Bayesian optimization", "field_count": 1}], "clusters": [{"cluster_id": 5109, "cluster_count": 2}, {"cluster_id": 10638, "cluster_count": 2}, {"cluster_id": 5070, "cluster_count": 1}, {"cluster_id": 13372, "cluster_count": 1}, {"cluster_id": 8457, "cluster_count": 1}, {"cluster_id": 16788, "cluster_count": 1}, {"cluster_id": 32923, "cluster_count": 1}, {"cluster_id": 4634, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 24}, {"ref_CSET_id": 101, "referenced_count": 14}, {"ref_CSET_id": 115, "referenced_count": 9}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 23, "referenced_count": 5}, {"ref_CSET_id": 112, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 3}, {"ref_CSET_id": 1126, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 2}], "tasks": [{"referent": "expressive_speech_synthesis", "task_count": 2}, {"referent": "computer_vision", "task_count": 2}, {"referent": "zero_shot_learning", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "object_detection", "task_count": 1}, {"referent": "facial_expression_analysis", "task_count": 1}, {"referent": "neural_network_compression", "task_count": 1}, {"referent": "parameter_estimation", "task_count": 1}, {"referent": "structure_from_motion", "task_count": 1}, {"referent": "super_resolution", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "autoencoder", "method_count": 1}, {"referent": "spatial_transformer", "method_count": 1}, {"referent": "hit_detector", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "estimation_statistics", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 2, 2, 5, 3, 1, 2, 0], "total": 15, "isTopResearch": false, "rank": 859}, "ai_publications": {"counts": [0, 0, 0, 0, 2, 0, 4, 3, 1, 2, 0], "total": 12, "isTopResearch": false, "rank": 384}, "ai_publications_growth": {"counts": [], "total": 2.7777777777777763, "isTopResearch": false, "rank": 191}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 169}, "citation_counts": {"counts": [0, 0, 0, 0, 4, 2, 10, 34, 56, 47, 1], "total": 154, "isTopResearch": false, "rank": 435}, "cv_pubs": {"counts": [0, 0, 0, 0, 2, 0, 2, 2, 0, 2, 0], "total": 8, "isTopResearch": true, "rank": 229}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 2.0, 0, 2.5, 11.333333333333334, 56.0, 23.5, 0], "total": 12.833333333333334, "isTopResearch": false, "rank": 452}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 4, 1, 0, 1, 0, 0], "total": 8, "table": null, "rank": 443}, "ai_patents_growth": {"counts": [], "total": -25.0, "table": null, "rank": 1469}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 40, 10, 0, 10, 0, 0], "total": 80, "table": null, "rank": 443}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 4, 1, 0, 1, 0, 0], "total": 8, "table": "application", "rank": 269}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 211, "rank": 680}, "ai_jobs": {"counts": null, "total": 37, "rank": 544}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Onfido is a technology company that helps businesses verify people's identities using a photo-based identity document, a selfie and artificial intelligence algorithms. It was founded in July 2012 by three former students at Oxford University: CEO Husayn Kassai, COO Eamon Jubbawy, and Chief Architect Ruhul Amin. Onfido is headquartered in London and has over 400 employees in offices in San Francisco, Albuquerque, New York, Lisbon, Paris, Berlin, Delhi, Mumbai, Bangalore and Singapore.", "wikipedia_link": "https://en.wikipedia.org/wiki/Onfido", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 368, "country": "United States", "website": "http://www.bwater.com/", "crunchbase": {"text": "fd8cc57d-ffca-4d0c-b6fd-137aa206b176", "url": "https://www.crunchbase.com/organization/bridgewater-associates"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bridgewater-associates"], "stage": "Mature", "name": "Bridgewater Associates", "patent_name": "bridgewater associates", "continent": "North America", "local_logo": "bridgewater_associates.png", "aliases": "Bridgewater; Bridgewater Associates, Lp", "permid_links": [{"text": 4296510180, "url": "https://permid.org/1-4296510180"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Bridgewater manages approximately $120 billion in global investments for a wide array of institutional clients, including foreign", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 8473, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 1132, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "relation_classification", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 2, 0, 1, 0, 0, 0, 0, 2, 2, 0], "total": 8, "isTopResearch": false, "rank": 980}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 857}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0, 0, 0, 0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 211, "rank": 680}, "ai_jobs": {"counts": null, "total": 20, "rank": 692}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Bridgewater Associates is an American investment management firm founded by Ray Dalio in 1975. The firm serves institutional clients including pension funds, endowments, foundations, foreign governments, and central banks.", "wikipedia_link": "https://en.wikipedia.org/wiki/Bridgewater_Associates", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 1969, "country": "United States", "website": "https://www.bunge.com/", "crunchbase": {"text": " 7e77f4a6-b1a3-a71b-b55f-92da19153a03 ", "url": " https://www.crunchbase.com/organization/bunge "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bunge"], "stage": "Mature", "name": "Bunge", "patent_name": "Bunge", "continent": "North America", "local_logo": null, "aliases": "Bunge; Bunge Ltd", "permid_links": [{"text": 4295913049, "url": "https://permid.org/1-4295913049"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BG", "url": "https://www.google.com/finance/quote/BG:NYSE"}], "market_full": [{"text": "BRN:BU3", "url": "https://www.google.com/finance/quote/BRN:BU3"}, {"text": "NYQ:BG", "url": "https://www.google.com/finance/quote/BG:NYQ"}, {"text": "DEU:BU3", "url": "https://www.google.com/finance/quote/BU3:DEU"}, {"text": "LSE:0U6R", "url": "https://www.google.com/finance/quote/0U6R:LSE"}, {"text": "HAM:BU3", "url": "https://www.google.com/finance/quote/BU3:HAM"}, {"text": "MUN:BU3", "url": "https://www.google.com/finance/quote/BU3:MUN"}, {"text": "MEX:BG*", "url": "https://www.google.com/finance/quote/BG*:MEX"}, {"text": "BER:BU3", "url": "https://www.google.com/finance/quote/BER:BU3"}, {"text": "ASE:BG", "url": "https://www.google.com/finance/quote/ASE:BG"}, {"text": "FRA:BU3", "url": "https://www.google.com/finance/quote/BU3:FRA"}, {"text": "STU:BU3", "url": "https://www.google.com/finance/quote/BU3:STU"}, {"text": "BUE:BNG3", "url": "https://www.google.com/finance/quote/BNG3:BUE"}, {"text": "HAN:BU3", "url": "https://www.google.com/finance/quote/BU3:HAN"}, {"text": "NYSE:BG", "url": "https://www.google.com/finance/quote/BG:NYSE"}, {"text": "DUS:BU3", "url": "https://www.google.com/finance/quote/BU3:DUS"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Corpus linguistics", "field_count": 1}], "clusters": [{"cluster_id": 16521, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "image_analysis", "task_count": 1}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 1}, {"referent": "data_classification", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [14, 15, 8, 15, 10, 9, 16, 8, 13, 8, 1], "total": 117, "isTopResearch": false, "rank": 486, "sp500_rank": 285}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 1, 0, 1, 2, 0, 2, 2, 0, 1, 0], "total": 9, "isTopResearch": false, "rank": 774, "sp500_rank": 321}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 9.0, "isTopResearch": false, "rank": 573, "sp500_rank": 216}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 209, "rank": 682, "sp500_rank": 275}, "ai_jobs": {"counts": null, "total": 33, "rank": 569, "sp500_rank": 254}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2014, "country": "Netherlands", "website": "https://www.ldc.com/", "crunchbase": {"text": " c42f1e59-28d2-62e7-d15f-262b7382e6aa", "url": " https://www.crunchbase.com/organization/louis-dreyfus-commodities"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/louis-dreyfus-company"], "stage": "Unknown", "name": "Louis Dreyfus", "patent_name": "Louis Dreyfus", "continent": "Europe", "local_logo": null, "aliases": "Louis Dreyfus; Louis Dreyfus Holding B.V", "permid_links": [{"text": 5037646479, "url": "https://permid.org/1-5037646479"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2, 1, 3, 1, 0, 1, 0, 0, 0, 1, 0], "total": 9, "isTopResearch": false, "rank": 958, "sp500_rank": 397}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 208, "rank": 683, "sp500_rank": 276}, "ai_jobs": {"counts": null, "total": 40, "rank": 527, "sp500_rank": 243}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2352, "country": "United States", "website": "https://www.thehersheycompany.com/", "crunchbase": {"text": "a2a05ada-72b2-e3b6-0709-a8f13e531f17", "url": "https://www.crunchbase.com/organization/the-hershey-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-hershey-company"], "stage": "Mature", "name": "The Hershey Company", "patent_name": "the hershey company", "continent": "North America", "local_logo": "the_hershey_company.png", "aliases": "Hershey; Hershey Co; Hershey Company; Hershey'S", "permid_links": [{"text": 4295904171, "url": "https://permid.org/1-4295904171"}], "parent_info": "Hershey Trust Company", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HSY", "url": "https://www.google.com/finance/quote/hsy:nyse"}], "market_full": [{"text": "SAO:HSHY34", "url": "https://www.google.com/finance/quote/hshy34:sao"}, {"text": "MEX:HSY", "url": "https://www.google.com/finance/quote/hsy:mex"}, {"text": "FRA:HSY", "url": "https://www.google.com/finance/quote/fra:hsy"}, {"text": "MUN:HSY", "url": "https://www.google.com/finance/quote/hsy:mun"}, {"text": "DUS:HSY", "url": "https://www.google.com/finance/quote/dus:hsy"}, {"text": "GER:HSYX", "url": "https://www.google.com/finance/quote/ger:hsyx"}, {"text": "HAN:HSY", "url": "https://www.google.com/finance/quote/han:hsy"}, {"text": "LSE:0J4X", "url": "https://www.google.com/finance/quote/0j4x:lse"}, {"text": "NYSE:HSY", "url": "https://www.google.com/finance/quote/hsy:nyse"}, {"text": "BUE:HSY3", "url": "https://www.google.com/finance/quote/bue:hsy3"}, {"text": "BER:HSY", "url": "https://www.google.com/finance/quote/ber:hsy"}, {"text": "BRN:HSY", "url": "https://www.google.com/finance/quote/brn:hsy"}, {"text": "NYQ:HSY", "url": "https://www.google.com/finance/quote/hsy:nyq"}, {"text": "MOEX:HSY", "url": "https://www.google.com/finance/quote/hsy:moex"}, {"text": "HAM:HSY", "url": "https://www.google.com/finance/quote/ham:hsy"}, {"text": "DEU:HSY", "url": "https://www.google.com/finance/quote/deu:hsy"}, {"text": "ASE:HSY", "url": "https://www.google.com/finance/quote/ase:hsy"}, {"text": "STU:HSY", "url": "https://www.google.com/finance/quote/hsy:stu"}, {"text": "VIE:HSY", "url": "https://www.google.com/finance/quote/hsy:vie"}], "crunchbase_description": "The Hershey Company is a global confectionery that provides chocolates, sweets, mints, and other snacks around the world.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [13, 13, 6, 9, 11, 12, 4, 8, 8, 0, 0], "total": 84, "isTopResearch": false, "rank": 540, "fortune500_rank": 201}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 207, "rank": 684, "fortune500_rank": 358}, "ai_jobs": {"counts": null, "total": 56, "rank": 459, "fortune500_rank": 243}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "The Hershey Company, commonly known as Hershey's, is an American multinational company and one of the largest chocolate manufacturers in the world. It also manufactures baked products, such as cookies and cakes, and sells beverages like milkshakes, and many more that are produced globally. Its headquarters are in Hershey, Pennsylvania, which is also home to Hersheypark and Hershey's Chocolate World. It was founded by Milton S. Hershey in 1894 as the Hershey Chocolate Company, a subsidiary of his Lancaster Caramel Company. The Hershey Trust Company owns a minority stake but retains a majority of the voting power within the company.", "wikipedia_link": "https://en.wikipedia.org/wiki/The_Hershey_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1804, "country": "China", "website": "http://www.ccb.com/", "crunchbase": {"text": " a5fed75c-b427-3f68-1605-6fd5a4229f42 ", "url": " https://www.crunchbase.com/organization/china-construction-bank "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/china-construction-bank"], "stage": "Mature", "name": "China Construction Bank", "patent_name": "China Construction Bank", "continent": "Asia", "local_logo": null, "aliases": "China Construction Bank; China Construction Bank Corporation; \u4e2d\u56fd\u5efa\u8bbe\u94f6\u884c", "permid_links": [{"text": 4295863663, "url": "https://permid.org/1-4295863663"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:939", "url": "https://www.google.com/finance/quote/939:HKG"}], "market_full": [{"text": "VIE:CNCB", "url": "https://www.google.com/finance/quote/CNCB:VIE"}, {"text": "PKC:CICHF", "url": "https://www.google.com/finance/quote/CICHF:PKC"}, {"text": "STU:C6T", "url": "https://www.google.com/finance/quote/C6T:STU"}, {"text": "DUS:C6T", "url": "https://www.google.com/finance/quote/C6T:DUS"}, {"text": "HAN:C6T", "url": "https://www.google.com/finance/quote/C6T:HAN"}, {"text": "SHH:601939", "url": "https://www.google.com/finance/quote/601939:SHH"}, {"text": "FRA:C6TB", "url": "https://www.google.com/finance/quote/C6TB:FRA"}, {"text": "PKC:CICHY", "url": "https://www.google.com/finance/quote/CICHY:PKC"}, {"text": "HKG:939", "url": "https://www.google.com/finance/quote/939:HKG"}, {"text": "BER:C6T", "url": "https://www.google.com/finance/quote/BER:C6T"}, {"text": "FRA:C6T", "url": "https://www.google.com/finance/quote/C6T:FRA"}, {"text": "HAM:C6T", "url": "https://www.google.com/finance/quote/C6T:HAM"}, {"text": "MUN:C6T", "url": "https://www.google.com/finance/quote/C6T:MUN"}, {"text": "JKT:MCOR", "url": "https://www.google.com/finance/quote/JKT:MCOR"}, {"text": "DEU:C6TB", "url": "https://www.google.com/finance/quote/C6TB:DEU"}, {"text": "DEU:0939", "url": "https://www.google.com/finance/quote/0939:DEU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 3}, {"field_name": "Speaker recognition", "field_count": 2}, {"field_name": "Anomaly detection", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Ontology (information science)", "field_count": 1}, {"field_name": "Normalization (statistics)", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}], "clusters": [{"cluster_id": 44849, "cluster_count": 3}, {"cluster_id": 16998, "cluster_count": 2}, {"cluster_id": 23369, "cluster_count": 2}, {"cluster_id": 13304, "cluster_count": 1}, {"cluster_id": 177, "cluster_count": 1}, {"cluster_id": 4301, "cluster_count": 1}, {"cluster_id": 84037, "cluster_count": 1}, {"cluster_id": 18737, "cluster_count": 1}, {"cluster_id": 68045, "cluster_count": 1}, {"cluster_id": 6890, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 39}, {"ref_CSET_id": 101, "referenced_count": 23}, {"ref_CSET_id": 37, "referenced_count": 19}, {"ref_CSET_id": 87, "referenced_count": 14}, {"ref_CSET_id": 115, "referenced_count": 12}, {"ref_CSET_id": 112, "referenced_count": 12}, {"ref_CSET_id": 21, "referenced_count": 8}, {"ref_CSET_id": 1804, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 4}, {"ref_CSET_id": 1790, "referenced_count": 4}], "tasks": [{"referent": "classification", "task_count": 9}, {"referent": "image_recognition", "task_count": 3}, {"referent": "multi_task_learning", "task_count": 3}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "binary_classification", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "image_annotation", "task_count": 2}, {"referent": "speaker_recognition", "task_count": 2}, {"referent": "disease_detection", "task_count": 2}, {"referent": "sentiment_detection", "task_count": 2}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "meta_learning_algorithms", "method_count": 4}, {"referent": "q_learning", "method_count": 3}, {"referent": "attention", "method_count": 3}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "rule_based_systems", "method_count": 2}, {"referent": "metrix", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [139, 118, 92, 60, 46, 57, 52, 62, 73, 60, 0], "total": 759, "isTopResearch": false, "rank": 226, "sp500_rank": 157}, "ai_publications": {"counts": [1, 1, 2, 2, 1, 2, 6, 7, 8, 6, 0], "total": 36, "isTopResearch": false, "rank": 215, "sp500_rank": 131}, "ai_publications_growth": {"counts": [], "total": 1.9841269841269853, "isTopResearch": false, "rank": 193, "sp500_rank": 95}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [4, 7, 3, 3, 14, 6, 17, 36, 66, 82, 4], "total": 242, "isTopResearch": false, "rank": 364, "sp500_rank": 170}, "cv_pubs": {"counts": [1, 1, 0, 0, 0, 0, 0, 3, 1, 2, 0], "total": 8, "isTopResearch": true, "rank": 229, "sp500_rank": 126}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 4, 1, 0], "total": 7, "isTopResearch": true, "rank": 117, "sp500_rank": 74}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [4.0, 7.0, 1.5, 1.5, 14.0, 3.0, 2.8333333333333335, 5.142857142857143, 8.25, 13.666666666666666, 0], "total": 6.722222222222222, "isTopResearch": false, "rank": 654, "sp500_rank": 259}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 1, 0, 1, 24, 89, 193, 67, 0], "total": 376, "table": null, "rank": 66, "sp500_rank": 51}, "ai_patents_growth": {"counts": [], "total": 1285.4166666666667, "table": null, "rank": 4, "sp500_rank": 1}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 10, 0, 10, 240, 890, 1930, 670, 0], "total": 3760, "table": null, "rank": 66, "sp500_rank": 51}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "table": null, "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 7, 3, 0], "total": 12, "table": "industry", "rank": 80, "sp500_rank": 59}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "table": null, "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 3, 2, 0], "total": 6, "table": null, "rank": 9, "sp500_rank": 6}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 9, 49, 79, 20, 0], "total": 157, "table": "industry", "rank": 50, "sp500_rank": 39}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 0, 0, 8, 24, 44, 11, 0], "total": 88, "table": "industry", "rank": 13, "sp500_rank": 11}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 7, 6, 0, 0], "total": 14, "table": "industry", "rank": 147, "sp500_rank": 91}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "table": null, "rank": 55, "sp500_rank": 41}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 5, 20, 33, 11, 0], "total": 70, "table": "industry", "rank": 38, "sp500_rank": 30}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 4, 6, 0, 0], "total": 12, "table": "application", "rank": 75, "sp500_rank": 53}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 6, 2, 0, 0], "total": 8, "table": "application", "rank": 88, "sp500_rank": 59}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 1, 14, 22, 8, 0], "total": 46, "table": "application", "rank": 40, "sp500_rank": 34}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 10, 19, 57, 11, 0], "total": 97, "table": "application", "rank": 68, "sp500_rank": 48}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 4, 0, 0], "total": 6, "table": "application", "rank": 147, "sp500_rank": 103}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 207, "rank": 684, "sp500_rank": 277}, "ai_jobs": {"counts": null, "total": 16, "rank": 738, "sp500_rank": 281}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 273, "country": "United States", "website": "https://www.verkada.com/", "crunchbase": {"text": "df14a446-4704-bfee-df1e-f6f491c9196a", "url": "https://www.crunchbase.com/organization/verkada"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/verkada"], "stage": "Mature", "name": "Verkada", "patent_name": "verkada", "continent": "North America", "local_logo": "verkada.png", "aliases": "Verkada Inc; Verkada, Inc", "permid_links": [{"text": 5052168400, "url": "https://permid.org/1-5052168400"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Verkada builds modern security solutions for cloud-managed enterprise building security.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 207, "rank": 684}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "By approaching safety with a software-first approach, we\u2019re making security as seamless and modern as the organizations we protect.", "company_site_link": "https://www.verkada.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2356, "country": "United States", "website": "https://www.hologic.com/", "crunchbase": {"text": "64a27b10-4474-97e0-8832-31e9efb9d2b6", "url": "https://www.crunchbase.com/organization/hologic"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hologic"], "stage": "Mature", "name": "Hologic", "patent_name": "hologic", "continent": "North America", "local_logo": "hologic.png", "aliases": "Hologic Inc; Hologic, Inc", "permid_links": [{"text": 4295906709, "url": "https://permid.org/1-4295906709"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:HOLX", "url": "https://www.google.com/finance/quote/holx:nasdaq"}], "market_full": [{"text": "FRA:HO1", "url": "https://www.google.com/finance/quote/fra:ho1"}, {"text": "DUS:HO1", "url": "https://www.google.com/finance/quote/dus:ho1"}, {"text": "MEX:HOLX*", "url": "https://www.google.com/finance/quote/holx*:mex"}, {"text": "SAO:H1OL34", "url": "https://www.google.com/finance/quote/h1ol34:sao"}, {"text": "BER:HO1", "url": "https://www.google.com/finance/quote/ber:ho1"}, {"text": "MUN:HO1", "url": "https://www.google.com/finance/quote/ho1:mun"}, {"text": "STU:HO1", "url": "https://www.google.com/finance/quote/ho1:stu"}, {"text": "BRN:HO1", "url": "https://www.google.com/finance/quote/brn:ho1"}, {"text": "GER:HOX", "url": "https://www.google.com/finance/quote/ger:hox"}, {"text": "VIE:HOLX", "url": "https://www.google.com/finance/quote/holx:vie"}, {"text": "MOEX:HOLX-RM", "url": "https://www.google.com/finance/quote/holx-rm:moex"}, {"text": "LSE:0J5Q", "url": "https://www.google.com/finance/quote/0j5q:lse"}, {"text": "DEU:HOLX", "url": "https://www.google.com/finance/quote/deu:holx"}, {"text": "NASDAQ:HOLX", "url": "https://www.google.com/finance/quote/holx:nasdaq"}, {"text": "HAN:HO1", "url": "https://www.google.com/finance/quote/han:ho1"}], "crunchbase_description": "Hologic engages in the development and supply of medical imaging systems and diagnostic products focused on the healthcare needs of women.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Motion (physics)", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "False positive paradox", "field_count": 1}], "clusters": [{"cluster_id": 6425, "cluster_count": 2}, {"cluster_id": 14119, "cluster_count": 1}, {"cluster_id": 10703, "cluster_count": 1}, {"cluster_id": 9754, "cluster_count": 1}, {"cluster_id": 179, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 789, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 1}, {"ref_CSET_id": 661, "referenced_count": 1}, {"ref_CSET_id": 1457, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 2356, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "breast_cancer_detection", "task_count": 3}, {"referent": "mammogram", "task_count": 2}, {"referent": "motion_synthesis", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "breast_density_classification", "task_count": 2}, {"referent": "segmentation", "task_count": 1}, {"referent": "image_fusion", "task_count": 1}, {"referent": "skills_assessment", "task_count": 1}], "methods": [{"referent": "graphs", "method_count": 2}, {"referent": "mad_learning", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "q_learning_networks", "method_count": 1}, {"referent": "visual_attention", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "k_sparse_autoencoder", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "ae", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [23, 32, 41, 47, 53, 35, 41, 62, 16, 21, 0], "total": 371, "isTopResearch": false, "rank": 327, "fortune500_rank": 124}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "fortune500_rank": 157}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 1, 2, 3, 1, 2, 3, 6, 8, 6, 0], "total": 32, "isTopResearch": false, "rank": 647, "fortune500_rank": 177}, "cv_pubs": {"counts": [0, 1, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 313, "fortune500_rank": 84}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 1.0, 0, 0, 0, 1.0, 0, 6.0, 0, 0, 0], "total": 8.0, "isTopResearch": false, "rank": 595, "fortune500_rank": 171}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 4, 3, 5, 3, 1, 0, 0], "total": 17, "table": null, "rank": 345, "fortune500_rank": 114}, "ai_patents_growth": {"counts": [], "total": 0.5555555555555571, "table": null, "rank": 359, "fortune500_rank": 119}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 40, 30, 50, 30, 10, 0, 0], "total": 170, "table": null, "rank": 345, "fortune500_rank": 114}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 1, 4, 3, 4, 2, 0, 0, 0], "total": 14, "table": "industry", "rank": 64, "fortune500_rank": 27}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "fortune500_rank": 89}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "fortune500_rank": 78}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 4, 2, 3, 2, 0, 0, 0], "total": 12, "table": "application", "rank": 229, "fortune500_rank": 69}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 173, "fortune500_rank": 70}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 206, "rank": 687, "fortune500_rank": 359}, "ai_jobs": {"counts": null, "total": 16, "rank": 738, "fortune500_rank": 370}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Hologic, Inc. is a medical technology company primarily focused on women\u2019s health; it sells medical devices for diagnostics, surgery, and medical imaging.", "wikipedia_link": "https://en.wikipedia.org/wiki/Hologic", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 621, "country": "Germany", "website": "http://www.osram.com/", "crunchbase": {"text": "dfe85f4c-db69-7ca4-6d3e-95d17ff062c3", "url": "https://www.crunchbase.com/organization/osram"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/osram"], "stage": "Unknown", "name": "OSRAM", "patent_name": "osram", "continent": "Europe", "local_logo": "osram.png", "aliases": "Osram Gmbh; Osram Sylvania; Osram Sylvania Inc", "permid_links": [{"text": 5000600974, "url": "https://permid.org/1-5000600974"}, {"text": 5038081272, "url": "https://permid.org/1-5038081272"}], "parent_info": "Ams", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "LedEngin, Inc based in Munich, is a global high-tech company with a history dating back more than 110 years.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Pose", "field_count": 2}, {"field_name": "Smoothing", "field_count": 1}, {"field_name": "False positive paradox", "field_count": 1}, {"field_name": "Frame rate", "field_count": 1}, {"field_name": "Pixel", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Pooling", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Object (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 19977, "cluster_count": 3}, {"cluster_id": 8919, "cluster_count": 3}, {"cluster_id": 1436, "cluster_count": 2}, {"cluster_id": 2505, "cluster_count": 2}, {"cluster_id": 16136, "cluster_count": 2}, {"cluster_id": 20032, "cluster_count": 1}, {"cluster_id": 1123, "cluster_count": 1}, {"cluster_id": 14903, "cluster_count": 1}, {"cluster_id": 35599, "cluster_count": 1}, {"cluster_id": 2473, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 63}, {"ref_CSET_id": 163, "referenced_count": 56}, {"ref_CSET_id": 621, "referenced_count": 28}, {"ref_CSET_id": 87, "referenced_count": 26}, {"ref_CSET_id": 223, "referenced_count": 12}, {"ref_CSET_id": 245, "referenced_count": 12}, {"ref_CSET_id": 127, "referenced_count": 10}, {"ref_CSET_id": 23, "referenced_count": 6}, {"ref_CSET_id": 184, "referenced_count": 6}, {"ref_CSET_id": 785, "referenced_count": 5}], "tasks": [{"referent": "classification", "task_count": 7}, {"referent": "object_detection", "task_count": 4}, {"referent": "video_surveillance", "task_count": 4}, {"referent": "trajectory_prediction", "task_count": 3}, {"referent": "lightfield", "task_count": 3}, {"referent": "multi_task_learning", "task_count": 2}, {"referent": "end_to_end_speech_recognition", "task_count": 2}, {"referent": "personal_identification", "task_count": 2}, {"referent": "head_pose_estimation", "task_count": 2}, {"referent": "computer_vision", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 4}, {"referent": "optimization", "method_count": 4}, {"referent": "hit_detector", "method_count": 4}, {"referent": "l1_regularization", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "r_cnn", "method_count": 2}, {"referent": "awd_lstm", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "vqa_models", "method_count": 1}, {"referent": "discriminators", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [109, 98, 68, 91, 100, 72, 55, 52, 27, 12, 0], "total": 684, "isTopResearch": false, "rank": 239}, "ai_publications": {"counts": [1, 0, 0, 1, 6, 7, 4, 5, 0, 0, 0], "total": 24, "isTopResearch": false, "rank": 273}, "ai_publications_growth": {"counts": [], "total": -37.5, "isTopResearch": false, "rank": 1420}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 169}, "citation_counts": {"counts": [0, 0, 1, 0, 0, 34, 61, 127, 139, 96, 6], "total": 464, "isTopResearch": false, "rank": 281}, "cv_pubs": {"counts": [1, 0, 0, 1, 6, 6, 4, 4, 0, 0, 0], "total": 22, "isTopResearch": true, "rank": 130}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0.0, 0, 0, 0.0, 0.0, 4.857142857142857, 15.25, 25.4, 0, 0, 0], "total": 19.333333333333332, "isTopResearch": false, "rank": 322}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 3, 3, 4, 1, 0, 0, 0], "total": 12, "table": null, "rank": 384}, "ai_patents_growth": {"counts": [], "total": -13.888888888888888, "table": null, "rank": 1445}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 30, 30, 40, 10, 0, 0, 0], "total": 120, "table": null, "rank": 384}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 38}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 1, 3, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 336}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [1, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 249}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 119}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [1, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 205, "rank": 688}, "ai_jobs": {"counts": null, "total": 15, "rank": 754}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "Osram Licht AG (stylized as OSRAM) is a globally active German company headquartered in Munich, Germany. The \"Osram\" name is derived from osmium and Wolfram (German for tungsten, also used in English), as both these elements were commonly used for lighting filaments at the time the company was founded. Osram positions itself as a high-tech photonics company that is increasingly focusing on sensor technology, visualization and treatment by light. The operating company of Osram is Osram GmbH.", "wikipedia_link": "https://en.wikipedia.org/wiki/Osram", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2207, "country": "Sweden", "website": "https://www.amcor.com/", "crunchbase": {"text": "19ea5c38-5751-99bb-999e-18e123965b32", "url": "https://www.crunchbase.com/organization/amcor-ltd"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/amcor"], "stage": "Mature", "name": "Amcor plc", "patent_name": "amcor plc", "continent": "Europe", "local_logo": "amcor_plc.png", "aliases": "Amcor; Amcor Ltd", "permid_links": [{"text": 5064691048, "url": "https://permid.org/1-5064691048"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AMCR", "url": "https://www.google.com/finance/quote/amcr:nyse"}], "market_full": [{"text": "MUN:485", "url": "https://www.google.com/finance/quote/485:mun"}, {"text": "NYQ:AMCR", "url": "https://www.google.com/finance/quote/amcr:nyq"}, {"text": "NYSE:AMCR", "url": "https://www.google.com/finance/quote/amcr:nyse"}, {"text": "STU:485B", "url": "https://www.google.com/finance/quote/485b:stu"}, {"text": "STU:485", "url": "https://www.google.com/finance/quote/485:stu"}, {"text": "FRA:485", "url": "https://www.google.com/finance/quote/485:fra"}, {"text": "PKC:AMCCF", "url": "https://www.google.com/finance/quote/amccf:pkc"}, {"text": "DEU:485", "url": "https://www.google.com/finance/quote/485:deu"}, {"text": "MEX:AMCRN", "url": "https://www.google.com/finance/quote/amcrn:mex"}, {"text": "FRA:485B", "url": "https://www.google.com/finance/quote/485b:fra"}, {"text": "BER:485", "url": "https://www.google.com/finance/quote/485:ber"}, {"text": "MUN:485B", "url": "https://www.google.com/finance/quote/485b:mun"}, {"text": "SAO:A1CR34", "url": "https://www.google.com/finance/quote/a1cr34:sao"}, {"text": "DEU:485B", "url": "https://www.google.com/finance/quote/485b:deu"}, {"text": "ASX:AMC", "url": "https://www.google.com/finance/quote/amc:asx"}, {"text": "ASE:AMCR", "url": "https://www.google.com/finance/quote/amcr:ase"}, {"text": "DEU:BFH", "url": "https://www.google.com/finance/quote/BFH:deu"}], "crunchbase_description": "Amcor is a provider of packaging solutions in Australia, Western Europe, North America.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 2, 0, 2, 2, 0, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030, "fortune500_rank": 349}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 204, "rank": 689, "fortune500_rank": 360}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "fortune500_rank": 409}}, "sector": "Basic Materials", "business_sector": "Applied Resources", "wikipedia_description": "Amcor plc is an Australian-American, UK-domiciled packaging company. It develops and produces flexible packaging, rigid containers, specialty cartons, closures and services for food, beverage, pharmaceutical, medical-device, home and personal-care, and other products.", "wikipedia_link": "https://en.wikipedia.org/wiki/Amcor", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 333, "country": "United States", "website": "https://www.data.ai/", "crunchbase": {"text": "5836bc32-4cc0-e2ee-8aef-e6e577f068b7", "url": "https://www.crunchbase.com/organization/app-annie"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dataai"], "stage": "Mature", "name": "Data.Ai", "patent_name": "data.ai", "continent": "North America", "local_logo": "dataai.png", "aliases": "App Annie; App Annie Co. Limited; App Annie Inc; App Annie Limited; App Annie Ltd; App Annie, Inc; Data.Ai Inc", "permid_links": [{"text": 5035414794, "url": "https://permid.org/1-5035414794"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Data.ai is a mobile data and analytics platform that delivers data and insights to succeed in the app economy.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 0, 0, 10, 10, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 201, "rank": 690}, "ai_jobs": {"counts": null, "total": 58, "rank": 450}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 2432, "country": "United States", "website": "http://www.nexteraenergy.com/", "crunchbase": {"text": "69c3cc74-eab1-3282-41cf-da4352a07f46", "url": "https://www.crunchbase.com/organization/nextera-enterprises-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nextera-energy-inc"], "stage": "Mature", "name": "NextEra Energy", "patent_name": "nextera energy", "continent": "North America", "local_logo": "nextera_energy.png", "aliases": "NextEra Energy, Inc", "permid_links": [{"text": 4295903955, "url": "https://permid.org/1-4295903955"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NEE", "url": "https://www.google.com/finance/quote/nee:nyse"}, {"text": "NYSE:NEE.PRP", "url": "https://www.google.com/finance/quote/nee.prp:nyse"}, {"text": "NYSE:NEE.PRQ", "url": "https://www.google.com/finance/quote/nee.prq:nyse"}, {"text": "NYSE:NEE.PRO", "url": "https://www.google.com/finance/quote/nee.pro:nyse"}], "market_full": [{"text": "ASE:NEE.PRP", "url": "https://www.google.com/finance/quote/ase:nee.prp"}, {"text": "STU:FP3", "url": "https://www.google.com/finance/quote/fp3:stu"}, {"text": "NYSE:NEE", "url": "https://www.google.com/finance/quote/nee:nyse"}, {"text": "VIE:NEE", "url": "https://www.google.com/finance/quote/nee:vie"}, {"text": "NYQ:NEE.PRO", "url": "https://www.google.com/finance/quote/nee.pro:nyq"}, {"text": "MCX:NEE-RM", "url": "https://www.google.com/finance/quote/mcx:nee-rm"}, {"text": "NYSE:NEE.PRP", "url": "https://www.google.com/finance/quote/nee.prp:nyse"}, {"text": "BER:FP3", "url": "https://www.google.com/finance/quote/ber:fp3"}, {"text": "SAO:NEXT34", "url": "https://www.google.com/finance/quote/next34:sao"}, {"text": "ASE:NEE", "url": "https://www.google.com/finance/quote/ase:nee"}, {"text": "NYSE:NEE.PRQ", "url": "https://www.google.com/finance/quote/nee.prq:nyse"}, {"text": "NYQ:NEE.PRP", "url": "https://www.google.com/finance/quote/nee.prp:nyq"}, {"text": "LSE:0K80", "url": "https://www.google.com/finance/quote/0k80:lse"}, {"text": "MEX:NEE*", "url": "https://www.google.com/finance/quote/mex:nee*"}, {"text": "MUN:FP3", "url": "https://www.google.com/finance/quote/fp3:mun"}, {"text": "FRA:FP3", "url": "https://www.google.com/finance/quote/fp3:fra"}, {"text": "ASE:NEE.PRO", "url": "https://www.google.com/finance/quote/ase:nee.pro"}, {"text": "DUS:FP3", "url": "https://www.google.com/finance/quote/dus:fp3"}, {"text": "NYSE:NEE.PRO", "url": "https://www.google.com/finance/quote/nee.pro:nyse"}, {"text": "DEU:FPL", "url": "https://www.google.com/finance/quote/deu:fpl"}, {"text": "NYQ:NEE", "url": "https://www.google.com/finance/quote/nee:nyq"}, {"text": "ASE:NEE.PRQ", "url": "https://www.google.com/finance/quote/ase:nee.prq"}, {"text": "BRN:FP3", "url": "https://www.google.com/finance/quote/brn:fp3"}, {"text": "NYQ:NEE.PRQ", "url": "https://www.google.com/finance/quote/nee.prq:nyq"}], "crunchbase_description": "NextEra Energy is a publicly-traded renewable energy company that generates wind and solar power.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 1, 0, 3, 2, 1, 4, 6, 3, 2, 0], "total": 23, "isTopResearch": false, "rank": 777, "fortune500_rank": 279}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 201, "rank": 690, "fortune500_rank": 361}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "fortune500_rank": 294}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "NextEra Energy, Inc. is an American energy company with about 46 gigawatts of generating capacity, revenues of over $17 billion in 2017, and about 14,000 employees throughout the US and Canada. It is the largest electric utility holding company by market capitalization.[clarification needed] Its subsidiaries include Florida Power & Light (FPL), NextEra Energy Resources, NextEra Energy Partners, Gulf Power Company, and NextEra Energy Services.", "wikipedia_link": "https://en.wikipedia.org/wiki/NextEra_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 150, "country": "United States", "website": "https://www.lemonade.com/", "crunchbase": {"text": "1ebaa59b-7035-75d2-316d-e7b35b8a82ed", "url": "https://www.crunchbase.com/organization/lemonade"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lemonade-inc-"], "stage": "Mature", "name": "Lemonade", "patent_name": "lemonade", "continent": "North America", "local_logo": "lemonade.png", "aliases": "Lemonade Insurance Agency; Lemonade Insurance Company; Lemonade, Inc", "permid_links": [{"text": 4298086862, "url": "https://permid.org/1-4298086862"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LMND", "url": "https://www.google.com/finance/quote/lmnd:nyse"}], "market_full": [{"text": "NYSE:LMND", "url": "https://www.google.com/finance/quote/lmnd:nyse"}, {"text": "BMV:LMND", "url": "https://www.google.com/finance/quote/bmv:lmnd"}], "crunchbase_description": "Lemonade operates as a full-stack insurance company powered by AI and behavioral economics and driven by social good.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Automatic summarization", "field_count": 2}, {"field_name": "Speaker recognition", "field_count": 2}, {"field_name": "Modality (human\u2013computer interaction)", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Relevance (information retrieval)", "field_count": 1}], "clusters": [{"cluster_id": 12150, "cluster_count": 4}, {"cluster_id": 14492, "cluster_count": 3}, {"cluster_id": 6121, "cluster_count": 2}, {"cluster_id": 222, "cluster_count": 2}, {"cluster_id": 1432, "cluster_count": 1}, {"cluster_id": 61073, "cluster_count": 1}, {"cluster_id": 29600, "cluster_count": 1}, {"cluster_id": 11701, "cluster_count": 1}, {"cluster_id": 4301, "cluster_count": 1}, {"cluster_id": 22610, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 13}, {"ref_CSET_id": 163, "referenced_count": 12}, {"ref_CSET_id": 150, "referenced_count": 9}, {"ref_CSET_id": 792, "referenced_count": 7}, {"ref_CSET_id": 1797, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 345, "referenced_count": 1}], "tasks": [{"referent": "social_network_analysis", "task_count": 4}, {"referent": "topic_detection", "task_count": 3}, {"referent": "speaker_diarization", "task_count": 3}, {"referent": "user_identification", "task_count": 2}, {"referent": "language_identification", "task_count": 2}, {"referent": "speaker_recognition", "task_count": 2}, {"referent": "graph_partitioning", "task_count": 2}, {"referent": "abuse_detection", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "information_retrieval", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 2}, {"referent": "clustering", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "content_based_attention", "method_count": 2}, {"referent": "polya_gamma_augmentation", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "peleenet", "method_count": 1}, {"referent": "cgnn", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}, {"referent": "representation_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [3, 3, 8, 2, 6, 4, 5, 2, 2, 1, 0], "total": 36, "isTopResearch": false, "rank": 680}, "ai_publications": {"counts": [0, 1, 6, 0, 2, 2, 4, 1, 2, 1, 0], "total": 19, "isTopResearch": false, "rank": 311}, "ai_publications_growth": {"counts": [], "total": -8.333333333333334, "isTopResearch": false, "rank": 1253}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [2, 2, 8, 10, 15, 21, 24, 41, 43, 46, 2], "total": 214, "isTopResearch": false, "rank": 384}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 2, 0, 1, 1, 2, 0, 1, 0, 0], "total": 7, "isTopResearch": true, "rank": 117}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 2.0, 1.3333333333333333, 0, 7.5, 10.5, 6.0, 41.0, 21.5, 46.0, 0], "total": 11.263157894736842, "isTopResearch": false, "rank": 497}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 199, "rank": 692}, "ai_jobs": {"counts": null, "total": 43, "rank": 508}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Lemonade reverses the traditional insurance model. We treat the premiums you pay as if it's your money, not ours. With Lemonade, everything becomes simple and transparent. We take a flat fee, pay claims super fast, and give back what\u2019s left to causes you care about.", "company_site_link": "https://www.lemonade.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2371, "country": "United States", "website": "https://www.iff.com/", "crunchbase": {"text": "99791e2c-2f5a-c6af-9ab5-df51b898ec8a", "url": "https://www.crunchbase.com/organization/international-flavors-fragrances"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/iff"], "stage": "Mature", "name": "Intl Flavors & Fragrances", "patent_name": "intl flavors & fragrances", "continent": "North America", "local_logo": "intl_flavors_&_fragrances.png", "aliases": "Iff; International Flavors & Fragrances, Inc", "permid_links": [{"text": 4295904309, "url": "https://permid.org/1-4295904309"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MCX:IFF-RM", "url": "https://www.google.com/finance/quote/iff-rm:mcx"}, {"text": "FRA:IFF", "url": "https://www.google.com/finance/quote/fra:iff"}, {"text": "BRN:IFF", "url": "https://www.google.com/finance/quote/brn:iff"}, {"text": "STU:IFF", "url": "https://www.google.com/finance/quote/iff:stu"}, {"text": "BER:IFF", "url": "https://www.google.com/finance/quote/ber:iff"}, {"text": "GER:IFFX", "url": "https://www.google.com/finance/quote/ger:iffx"}, {"text": "MYQ:IFF", "url": "https://www.google.com/finance/quote/iff:myq"}, {"text": "DEU:IFF", "url": "https://www.google.com/finance/quote/deu:iff"}, {"text": "BUE:IFF3", "url": "https://www.google.com/finance/quote/bue:iff3"}, {"text": "VIE:IFF", "url": "https://www.google.com/finance/quote/iff:vie"}, {"text": "MUN:IFF", "url": "https://www.google.com/finance/quote/iff:mun"}, {"text": "DUS:IFF", "url": "https://www.google.com/finance/quote/dus:iff"}], "crunchbase_description": "International Flavors & Fragrances Inc. is a innovator of sensorial experiences that move the world.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 10498, "cluster_count": 1}, {"cluster_id": 71267, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1633, "referenced_count": 1}, {"ref_CSET_id": 1861, "referenced_count": 1}, {"ref_CSET_id": 1570, "referenced_count": 1}], "tasks": [{"referent": "skills_assessment", "task_count": 1}, {"referent": "chemical_reaction_prediction", "task_count": 1}, {"referent": "negation_detection", "task_count": 1}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "crossvit", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 7, 5, 0, 8, 6, 5, 3, 17, 25, 0], "total": 76, "isTopResearch": false, "rank": 550, "fortune500_rank": 206}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 3, 3, 2, 2, 9, 0], "total": 19, "isTopResearch": false, "rank": 690, "fortune500_rank": 188}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 3.0, 0, 0, 2.0, 0, 0], "total": 9.5, "isTopResearch": false, "rank": 558, "fortune500_rank": 163}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 199, "rank": 692, "fortune500_rank": 362}, "ai_jobs": {"counts": null, "total": 31, "rank": 589, "fortune500_rank": 305}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages", "wikipedia_description": "International Flavors & Fragrances is an American corporation that produces flavors, fragrances, and cosmetic actives, which it markets globally. It is headquartered in New York City and has creative, sales, and manufacturing facilities in 44 different countries. The company is a member of the S&P 500 Index.", "wikipedia_link": "https://en.wikipedia.org/wiki/International_Flavors_%26_Fragrances", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2375, "country": "United States", "website": "https://www.jackhenry.com", "crunchbase": {"text": "04857c14-d85e-6545-c73b-c432aa45e2a2", "url": "https://www.crunchbase.com/organization/jack-henry-associates"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/jack-henry-&-associates"], "stage": "Mature", "name": "Jack Henry & Associates", "patent_name": "jack henry & associates", "continent": "North America", "local_logo": "jack_henry_&_associates.png", "aliases": "Jack Henry & Associates Inc; Jack Henry & Associates, Inc", "permid_links": [{"text": 4295906693, "url": "https://permid.org/1-4295906693"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:JKHY", "url": "https://www.google.com/finance/quote/jkhy:nasdaq"}], "market_full": [{"text": "STU:JHY", "url": "https://www.google.com/finance/quote/jhy:stu"}, {"text": "LSE:0A6D", "url": "https://www.google.com/finance/quote/0a6d:lse"}, {"text": "BRN:JHY", "url": "https://www.google.com/finance/quote/brn:jhy"}, {"text": "NASDAQ:JKHY", "url": "https://www.google.com/finance/quote/jkhy:nasdaq"}, {"text": "DUS:JHY", "url": "https://www.google.com/finance/quote/dus:jhy"}, {"text": "MUN:JHY", "url": "https://www.google.com/finance/quote/jhy:mun"}, {"text": "FRA:JHY", "url": "https://www.google.com/finance/quote/fra:jhy"}, {"text": "BER:JHY", "url": "https://www.google.com/finance/quote/ber:jhy"}, {"text": "SAO:J1KH34", "url": "https://www.google.com/finance/quote/j1kh34:sao"}, {"text": "MOEX:JKHY-RM", "url": "https://www.google.com/finance/quote/jkhy-rm:moex"}, {"text": "DEU:JKHY", "url": "https://www.google.com/finance/quote/deu:jkhy"}, {"text": "MEX:JKHY*", "url": "https://www.google.com/finance/quote/jkhy*:mex"}], "crunchbase_description": "Jack Henry & Associates, Inc. provides integrated computer systems for in-house and outsourced data processing to commercial banks.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 199, "rank": 692, "fortune500_rank": 362}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153, "fortune500_rank": 463}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Jack Henry & Associates, Inc. is a technology company and payment processing services for the financial services industry. It serves more than 9,000 customers nationwide, and operates through three primary brands. Headquartered in Monett, Missouri, JHA made $1.55 billion in annual revenue during fiscal 2019.", "wikipedia_link": "https://en.wikipedia.org/wiki/Jack_Henry_%26_Associates", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3115, "country": "Finland", "website": "https://www.fortum.com/", "crunchbase": {"text": " d08e0463-f97f-9ddb-6faf-bb92d43b5c4d ", "url": " https://www.crunchbase.com/organization/fortum "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fortum"], "stage": "Mature", "name": "Fortum", "patent_name": "Fortum", "continent": "Europe", "local_logo": null, "aliases": "Fortum; Fortum Oyj", "permid_links": [{"text": 4295866494, "url": "https://permid.org/1-4295866494"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:0HAH", "url": "https://www.google.com/finance/quote/0HAH:LSE"}, {"text": "DEU:FUM1V", "url": "https://www.google.com/finance/quote/DEU:FUM1V"}, {"text": "DUS:FOT", "url": "https://www.google.com/finance/quote/DUS:FOT"}, {"text": "FRA:FOT", "url": "https://www.google.com/finance/quote/FOT:FRA"}, {"text": "MEX:FORTUMN", "url": "https://www.google.com/finance/quote/FORTUMN:MEX"}, {"text": "STU:FOT", "url": "https://www.google.com/finance/quote/FOT:STU"}, {"text": "EBT:FORTUH", "url": "https://www.google.com/finance/quote/EBT:FORTUh"}, {"text": "MUN:FOT", "url": "https://www.google.com/finance/quote/FOT:MUN"}, {"text": "BER:FOT", "url": "https://www.google.com/finance/quote/BER:FOT"}, {"text": "HEX:FUM1V", "url": "https://www.google.com/finance/quote/FUM1V:HEX"}, {"text": "BRN:FOT", "url": "https://www.google.com/finance/quote/BRN:FOT"}, {"text": "GER:FOTX", "url": "https://www.google.com/finance/quote/FOTX:GER"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 198, "rank": 695, "sp500_rank": 278}, "ai_jobs": {"counts": null, "total": 24, "rank": 649, "sp500_rank": 270}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 26, "country": "Taiwan", "website": "appier.com", "crunchbase": {"text": "626510c2-69c6-96df-cafe-608968af40ae", "url": "https://www.crunchbase.com/organization/appier"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/appier"], "stage": "Mature", "name": "Appier", "patent_name": "appier", "continent": "Asia", "local_logo": "appier.png", "aliases": "Appier Inc; Appier.Com", "permid_links": [{"text": 5043316569, "url": "https://permid.org/1-5043316569"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Appier is a Taipei-based startup providing an AI powered platform to brands and retailers to help increase customer engagement.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Active learning (machine learning)", "field_count": 2}, {"field_name": "Pose", "field_count": 1}], "clusters": [{"cluster_id": 6635, "cluster_count": 2}, {"cluster_id": 1609, "cluster_count": 1}, {"cluster_id": 25062, "cluster_count": 1}, {"cluster_id": 88601, "cluster_count": 1}, {"cluster_id": 48290, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 21}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 734, "referenced_count": 2}, {"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 26, "referenced_count": 1}, {"ref_CSET_id": 3131, "referenced_count": 1}, {"ref_CSET_id": 187, "referenced_count": 1}], "tasks": [{"referent": "active_learning", "task_count": 2}, {"referent": "unsupervised_pre_training", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}, {"referent": "bird_view_synthesis", "task_count": 1}, {"referent": "3d_instance_segmentation", "task_count": 1}, {"referent": "binary_classification", "task_count": 1}, {"referent": "multi_class_classification", "task_count": 1}, {"referent": "action_generation", "task_count": 1}, {"referent": "recommendation", "task_count": 1}], "methods": [{"referent": "l1_regularization", "method_count": 2}, {"referent": "nerf", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "alp_gmm", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "nice", "method_count": 1}, {"referent": "topic_embeddings", "method_count": 1}, {"referent": "activation_functions", "method_count": 1}, {"referent": "hierarchical_vae", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 2, 1, 0, 1, 0, 1, 1, 0], "total": 6, "isTopResearch": false, "rank": 1030}, "ai_publications": {"counts": [0, 0, 0, 2, 1, 0, 1, 0, 1, 1, 0], "total": 6, "isTopResearch": false, "rank": 514}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [0, 0, 0, 1, 2, 7, 20, 19, 18, 8, 1], "total": 76, "isTopResearch": false, "rank": 538}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.5, 2.0, 0, 20.0, 0, 18.0, 8.0, 0], "total": 12.666666666666666, "isTopResearch": false, "rank": 455}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 197, "rank": 696}, "ai_jobs": {"counts": null, "total": 51, "rank": 479}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Appier empowers businesses with predictive Artificial Intelligence to grow and succeed based on data-driven decisions.", "company_site_link": "https://www.appier.com/company/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2804, "country": "United States", "website": "https://www.jt4llc.com/", "crunchbase": {"text": "763100c5-3211-412d-ac41-ee2c0e8c81e0", "url": "https://www.crunchbase.com/organization/jt4"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/jt3"], "stage": "Unknown", "name": "JT4 LLC", "patent_name": "jt4 llc", "continent": "North America", "local_logo": "jt4_llc.png", "aliases": "Jt4; Jt4, Llc; Jt4, Llc 2020", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "JT4 offers engineering and technical support to multiple western test ranges for the U.S. Navy and U.S. Air Force.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 195, "rank": 697}, "ai_jobs": {"counts": null, "total": 30, "rank": 597}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 242, "country": "China", "website": "https://www.100tal.com/", "crunchbase": {"text": "4f34520e-9f75-9e83-79c2-320c4c654719", "url": "https://www.crunchbase.com/organization/tal"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/taleducationgroup"], "stage": "Mature", "name": "TAL (tomorrow Advancing Life)", "patent_name": "tal (tomorrow advancing life)", "continent": "Asia", "local_logo": "tal_tomorrow_advancing_life.png", "aliases": "Haoweilai; Tal; Tal Education Group; Tal Education Group, Inc; Tal, Tomorrow Advancing Life; Tomorrow Advancing Life; \u5317\u4eac\u4e16\u7eaa\u597d\u672a\u6765\u6559\u80b2\u79d1\u6280\u6709\u9650\u516c\u53f8; \u597d\u672a\u6765; \u597d\u672a\u6765\u516c\u53f8", "permid_links": [{"text": 5001181437, "url": "https://permid.org/1-5001181437"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TAL", "url": "https://www.google.com/finance/quote/nyse:tal"}], "market_full": [{"text": "MOEX:TAL-RM", "url": "https://www.google.com/finance/quote/moex:tal-rm"}, {"text": "NYSE:TAL", "url": "https://www.google.com/finance/quote/nyse:tal"}, {"text": "BMV:TAL/N", "url": "https://www.google.com/finance/quote/bmv:tal/n"}], "crunchbase_description": "TAL Education Group is a Chinese education and technology company specializing in K-12, english learning, and STEAM.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Feature learning", "field_count": 3}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Active learning (machine learning)", "field_count": 2}, {"field_name": "Dropout (neural networks)", "field_count": 1}, {"field_name": "Facial expression", "field_count": 1}, {"field_name": "Knowledge base", "field_count": 1}, {"field_name": "Test data generation", "field_count": 1}, {"field_name": "Parsing", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}], "clusters": [{"cluster_id": 64808, "cluster_count": 4}, {"cluster_id": 1206, "cluster_count": 3}, {"cluster_id": 20034, "cluster_count": 2}, {"cluster_id": 2006, "cluster_count": 2}, {"cluster_id": 228, "cluster_count": 2}, {"cluster_id": 855, "cluster_count": 2}, {"cluster_id": 7496, "cluster_count": 2}, {"cluster_id": 9819, "cluster_count": 2}, {"cluster_id": 65376, "cluster_count": 2}, {"cluster_id": 55931, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 99}, {"ref_CSET_id": 163, "referenced_count": 96}, {"ref_CSET_id": 87, "referenced_count": 43}, {"ref_CSET_id": 161, "referenced_count": 23}, {"ref_CSET_id": 245, "referenced_count": 20}, {"ref_CSET_id": 184, "referenced_count": 17}, {"ref_CSET_id": 6, "referenced_count": 14}, {"ref_CSET_id": 115, "referenced_count": 14}, {"ref_CSET_id": 37, "referenced_count": 14}, {"ref_CSET_id": 223, "referenced_count": 13}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "classification_tasks", "task_count": 4}, {"referent": "single_image_super_resolution", "task_count": 3}, {"referent": "representation_learning", "task_count": 3}, {"referent": "text_matching", "task_count": 2}, {"referent": "scene_text_detection", "task_count": 2}, {"referent": "computer_vision", "task_count": 2}, {"referent": "sequence_to_sequence_speech_recognition", "task_count": 2}, {"referent": "knowledge_graphs", "task_count": 2}, {"referent": "image_recognition", "task_count": 2}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "1d_cnn", "method_count": 4}, {"referent": "representation_learning", "method_count": 3}, {"referent": "weight_tying", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "gan", "method_count": 3}, {"referent": "multi_attention_network", "method_count": 2}, {"referent": "graphsage", "method_count": 2}, {"referent": "graphs", "method_count": 2}, {"referent": "twin_networks", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 2, 15, 13, 20, 15, 0], "total": 66, "isTopResearch": false, "rank": 574}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 10, 12, 15, 10, 0], "total": 48, "isTopResearch": false, "rank": 189}, "ai_publications_growth": {"counts": [], "total": 3.888888888888888, "isTopResearch": false, "rank": 184}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 3, 2, 3, 3, 0], "total": 11, "isTopResearch": false, "rank": 108}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 21, 59, 173, 239, 6], "total": 499, "isTopResearch": false, "rank": 270}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 4, 4, 14, 7, 0], "total": 30, "isTopResearch": true, "rank": 113}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 4, 1, 2, 0], "total": 9, "isTopResearch": true, "rank": 99}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 1.0, 2.1, 4.916666666666667, 11.533333333333333, 23.9, 0], "total": 10.395833333333334, "isTopResearch": false, "rank": 527}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 194, "rank": 698}, "ai_jobs": {"counts": null, "total": 30, "rank": 597}}, "sector": "Academic & Educational Services", "business_sector": "Academic & Educational Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "\u597d\u672a\u6765\uff08NYSE\uff1aTAL\uff09\u662f\u4e00\u4e2a\u4ee5\u667a\u6167\u6559\u80b2\u548c\u5f00\u653e\u5e73\u53f0\u4e3a\u4e3b\u4f53\uff0c\u4ee5\u7d20\u8d28\u6559\u80b2\u548c\u8bfe\u5916\u8f85\u5bfc\u4e3a\u8f7d\u4f53\uff0c\u5728\u5168\u7403\u8303\u56f4\u5185\u670d\u52a1\u516c\u529e\u6559\u80b2\uff0c\u52a9\u529b\u6c11\u529e\u6559\u80b2\uff0c\u63a2\u7d22\u672a\u6765\u6559\u80b2\u65b0\u6a21\u5f0f\u7684\u79d1\u6280\u6559\u80b2\u516c\u53f8\u3002", "company_site_link": "https://www.100tal.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": "TAL (NYSE: TAL) is a science and technology education company that focuses on smart education and open platforms, and uses quality education and extracurricular tutoring as carriers. It serves public education globally, assists private education, and explores new models of future education."}, {"cset_id": 2194, "country": "United States", "website": "https://www.aes.com/", "crunchbase": {"text": "96c2dcc2-eee2-a374-231e-233c32592d74", "url": "https://www.crunchbase.com/organization/aes"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aes"], "stage": "Mature", "name": "AES Corp", "patent_name": "aes corp", "continent": "North America", "local_logo": "aes_corp.png", "aliases": null, "permid_links": [{"text": 4295903289, "url": "https://permid.org/1-4295903289"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AES", "url": "https://www.google.com/finance/quote/aes:nyse"}, {"text": "NYSE:AESC", "url": "https://www.google.com/finance/quote/aesc:nyse"}], "market_full": [{"text": "ASE:AES", "url": "https://www.google.com/finance/quote/aes:ase"}, {"text": "NYSE:AES", "url": "https://www.google.com/finance/quote/aes:nyse"}, {"text": "GER:AESX", "url": "https://www.google.com/finance/quote/aesx:ger"}, {"text": "DEU:AES", "url": "https://www.google.com/finance/quote/aes:deu"}, {"text": "NYQ:AES", "url": "https://www.google.com/finance/quote/aes:nyq"}, {"text": "ASE:AESC", "url": "https://www.google.com/finance/quote/aesc:ase"}, {"text": "MCX:AES-RM", "url": "https://www.google.com/finance/quote/aes-rm:mcx"}, {"text": "SAO:A1ES34", "url": "https://www.google.com/finance/quote/a1es34:sao"}, {"text": "BER:AES", "url": "https://www.google.com/finance/quote/aes:ber"}, {"text": "DEU:6AR0", "url": "https://www.google.com/finance/quote/6ar0:deu"}, {"text": "STU:AES", "url": "https://www.google.com/finance/quote/aes:stu"}, {"text": "FRA:AES", "url": "https://www.google.com/finance/quote/aes:fra"}, {"text": "LSE:0H6G", "url": "https://www.google.com/finance/quote/0h6g:lse"}, {"text": "BRN:AES", "url": "https://www.google.com/finance/quote/aes:brn"}, {"text": "NYQ:AESC", "url": "https://www.google.com/finance/quote/aesc:nyq"}, {"text": "MEX:AES", "url": "https://www.google.com/finance/quote/aes:mex"}, {"text": "DUS:AES", "url": "https://www.google.com/finance/quote/aes:dus"}, {"text": "FRA:6AR0", "url": "https://www.google.com/finance/quote/6ar0:fra"}, {"text": "NYSE:AESC", "url": "https://www.google.com/finance/quote/aesc:nyse"}, {"text": "MUN:AES", "url": "https://www.google.com/finance/quote/aes:mun"}], "crunchbase_description": "AES improves lives by providing safe, reliable, and sustainable energy solutions in every market it serves.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [8, 9, 9, 4, 6, 5, 4, 2, 2, 3, 0], "total": 52, "isTopResearch": false, "rank": 611, "fortune500_rank": 227}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 55, "fortune500_rank": 23}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 194, "rank": 698, "fortune500_rank": 364}, "ai_jobs": {"counts": null, "total": 30, "rank": 597, "fortune500_rank": 309}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "The AES Corporation is a Fortune 500 company that generates and distributes electrical power. AES is headquartered in Arlington, Virginia, and is one of the world's leading power companies, generating and distributing electric power in 15 countries and employing 10,500 people worldwide.", "wikipedia_link": "https://en.wikipedia.org/wiki/AES_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 508, "country": "United States", "website": "http://insightdatascience.com/", "crunchbase": {"text": "2f27de04-6b8a-871d-c3e4-c7c5791efe25", "url": "https://www.crunchbase.com/organization/insight-data-science"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/insight-data-science"], "stage": "Growth", "name": "Insight Data Science", "patent_name": "insight data science", "continent": "North America", "local_logo": "insight_data_science.png", "aliases": "Insight Fellows Program", "permid_links": [{"text": 5059256943, "url": "https://permid.org/1-5059256943"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Insight Data Science is an intensive seven week post-doctoral training fellowship bridging the gap between academia and data science.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Knowledge base", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Relevance (information retrieval)", "field_count": 1}], "clusters": [{"cluster_id": 7689, "cluster_count": 1}, {"cluster_id": 62571, "cluster_count": 1}, {"cluster_id": 17368, "cluster_count": 1}, {"cluster_id": 60946, "cluster_count": 1}, {"cluster_id": 11991, "cluster_count": 1}, {"cluster_id": 7916, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 58, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}], "tasks": [{"referent": "data_to_text_generation", "task_count": 1}, {"referent": "biometric_authentication", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "fingerprint_recognition", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "crime_prediction", "task_count": 1}, {"referent": "human_dynamics", "task_count": 1}, {"referent": "vehicle_identification", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "trajectory_prediction", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "loss_functions", "method_count": 1}, {"referent": "deepwalk", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 1, 2, 8, 5, 3, 0, 0], "total": 20, "isTopResearch": false, "rank": 809}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 4, 1, 0, 0], "total": 6, "isTopResearch": false, "rank": 514}, "ai_publications_growth": {"counts": [], "total": 41.666666666666664, "isTopResearch": false, "rank": 74}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 5, 6, 8, 0], "total": 20, "isTopResearch": false, "rank": 684}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 1.0, 1.25, 6.0, 0, 0], "total": 3.3333333333333335, "isTopResearch": false, "rank": 767}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 191, "rank": 700}, "ai_jobs": {"counts": null, "total": 169, "rank": 252}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 100, "country": "United States", "website": "https://www.gong.io/", "crunchbase": {"text": "4be78649-78cf-f8f8-8916-93ffa201fc92", "url": "https://www.crunchbase.com/organization/gong-io"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/gong-io"], "stage": "Mature", "name": "Gong", "patent_name": "gong", "continent": "North America", "local_logo": "gong.png", "aliases": "Gong Inc; Gong.Io; Gong.Io Inc", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Gong unlocks reality to help people and companies reach their full potential.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Transcription (software)", "field_count": 1}], "clusters": [{"cluster_id": 1422, "cluster_count": 1}, {"cluster_id": 29227, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 857}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0.0, 0], "total": 1.5, "isTopResearch": false, "rank": 855}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 10, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 160}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 191, "rank": 700}, "ai_jobs": {"counts": null, "total": 12, "rank": 812}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1381, "country": "United States", "website": "http://www.asapp.com", "crunchbase": {"text": "718691d1-edcb-e69a-c22b-5ac6110cccf7", "url": "https://www.crunchbase.com/organization/asapp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/asappco"], "stage": "Growth", "name": "Asapp", "patent_name": "asapp", "continent": "North America", "local_logo": "asapp.png", "aliases": "Asapp Inc; Asapp, Inc", "permid_links": [{"text": 5048743519, "url": "https://permid.org/1-5048743519"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Breakthroughs are born out of research and ASAPP is advancing AI to drive greater human productivity and automating the world's workflows", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 3}, {"field_name": "Language model", "field_count": 3}, {"field_name": "Automatic summarization", "field_count": 3}, {"field_name": "Word error rate", "field_count": 2}, {"field_name": "Speech processing", "field_count": 1}, {"field_name": "Normalization (statistics)", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Transfer of learning", "field_count": 1}, {"field_name": "Commonsense reasoning", "field_count": 1}, {"field_name": "Spatial intelligence", "field_count": 1}], "clusters": [{"cluster_id": 19423, "cluster_count": 3}, {"cluster_id": 31924, "cluster_count": 2}, {"cluster_id": 1193, "cluster_count": 2}, {"cluster_id": 19756, "cluster_count": 2}, {"cluster_id": 1422, "cluster_count": 2}, {"cluster_id": 26678, "cluster_count": 1}, {"cluster_id": 42017, "cluster_count": 1}, {"cluster_id": 7420, "cluster_count": 1}, {"cluster_id": 38767, "cluster_count": 1}, {"cluster_id": 32237, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 132}, {"ref_CSET_id": 87, "referenced_count": 64}, {"ref_CSET_id": 163, "referenced_count": 51}, {"ref_CSET_id": 23, "referenced_count": 14}, {"ref_CSET_id": 37, "referenced_count": 8}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 184, "referenced_count": 6}, {"ref_CSET_id": 3131, "referenced_count": 5}, {"ref_CSET_id": 786, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 5}], "tasks": [{"referent": "speech_recognition", "task_count": 4}, {"referent": "inference_attack", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "large_scale_person_re_identification", "task_count": 2}, {"referent": "summarization", "task_count": 2}, {"referent": "natural_language_processing", "task_count": 2}, {"referent": "classification_tasks", "task_count": 2}, {"referent": "activity_detection", "task_count": 2}, {"referent": "prototype_selection", "task_count": 1}, {"referent": "text_classification", "task_count": 1}], "methods": [{"referent": "convolutions", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "neural_architecture_search", "method_count": 3}, {"referent": "language_models", "method_count": 3}, {"referent": "wgan_gp", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 2}, {"referent": "attention_mechanisms", "method_count": 2}, {"referent": "dueling_network", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "1d_cnn", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 1, 0, 1, 1, 2, 6, 7, 5, 4, 1], "total": 29, "isTopResearch": false, "rank": 719}, "ai_publications": {"counts": [0, 0, 0, 1, 1, 2, 6, 7, 5, 4, 0], "total": 26, "isTopResearch": false, "rank": 266}, "ai_publications_growth": {"counts": [], "total": -10.634920634920634, "isTopResearch": false, "rank": 1271}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 3, 2, 1, 4, 0], "total": 11, "isTopResearch": false, "rank": 108}, "citation_counts": {"counts": [0, 0, 0, 1, 4, 9, 51, 147, 191, 88, 5], "total": 496, "isTopResearch": false, "rank": 272}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 4, 4, 5, 4, 0], "total": 18, "isTopResearch": true, "rank": 68}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 1.0, 4.0, 4.5, 8.5, 21.0, 38.2, 22.0, 0], "total": 19.076923076923077, "isTopResearch": false, "rank": 325}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 4, 7, 9, 11, 5, 3, 0, 0], "total": 39, "table": null, "rank": 242}, "ai_patents_growth": {"counts": [], "total": -1.2506012506012496, "table": null, "rank": 1428}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 40, 70, 90, 110, 50, 30, 0, 0], "total": 390, "table": null, "rank": 242}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "industry", "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 4, 3, 8, 8, 5, 1, 0, 0], "total": 29, "table": "industry", "rank": 154}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 3, 1, 4, 3, 0, 1, 0, 0], "total": 12, "table": "industry", "rank": 160}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 3, 6, 5, 5, 0, 0, 0, 0], "total": 19, "table": "industry", "rank": 109}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 3, 1, 7, 3, 0, 0, 0, 0], "total": 14, "table": "application", "rank": 33}, "Speech_Processing": {"counts": [0, 0, 0, 2, 2, 1, 3, 0, 1, 0, 0], "total": 9, "table": "application", "rank": 86}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 162}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 2, 3, 0, 3, 0, 0, 0, 0], "total": 8, "table": "application", "rank": 143}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 2, 2, 0, 0, 0], "total": 5, "table": "application", "rank": 318}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 189, "rank": 702}, "ai_jobs": {"counts": null, "total": 35, "rank": 560}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We focus on solving complex, data-rich problems \u2014 the kind where there are huge systemic inefficiencies and where a real solution will have a significant economic impact. We address those challenges with AI products that augment and automate human work, radically improving efficiency and effectiveness.", "company_site_link": "https://www.asapp.com/company/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2043, "country": "United States", "website": "https://www.enterpriseproducts.com/", "crunchbase": {"text": " c078a891-55be-af75-9aeb-3362103ed662 ", "url": " https://www.crunchbase.com/organization/enterprise-products-partners "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/enterprise-products"], "stage": "Mature", "name": "Enterprise Products Partners", "patent_name": "Enterprise Products Partners", "continent": "North America", "local_logo": null, "aliases": "Enterprise Products; Enterprise Products Partners", "permid_links": [{"text": 4295901413, "url": "https://permid.org/1-4295901413"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EPD", "url": "https://www.google.com/finance/quote/EPD:NYSE"}], "market_full": [{"text": "MEX:EPD*", "url": "https://www.google.com/finance/quote/EPD*:MEX"}, {"text": "NYQ:EPD", "url": "https://www.google.com/finance/quote/EPD:NYQ"}, {"text": "LSE:0S23", "url": "https://www.google.com/finance/quote/0S23:LSE"}, {"text": "ASE:EPD", "url": "https://www.google.com/finance/quote/ASE:EPD"}, {"text": "NYSE:EPD", "url": "https://www.google.com/finance/quote/EPD:NYSE"}, {"text": "SAO:E2PD34", "url": "https://www.google.com/finance/quote/E2PD34:SAO"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 1, 0, 2, 2, 1, 0, 0, 0], "total": 7, "isTopResearch": false, "rank": 1006, "sp500_rank": 406}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 189, "rank": 702, "sp500_rank": 279}, "ai_jobs": {"counts": null, "total": 18, "rank": 716, "sp500_rank": 279}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2283, "country": "United States", "website": "http://www.devonenergy.com/", "crunchbase": {"text": "58e5d3f9-d6f3-f674-5304-beeeadc6e09c", "url": "https://www.crunchbase.com/organization/devon-energy-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/devon-energy"], "stage": "Mature", "name": "Devon Energy", "patent_name": "devon energy", "continent": "North America", "local_logo": "devon_energy.png", "aliases": "Devon Energy Corp; Devon Energy Corporation", "permid_links": [{"text": 4295912097, "url": "https://permid.org/1-4295912097"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DVN", "url": "https://www.google.com/finance/quote/dvn:nyse"}], "market_full": [{"text": "NYQ:DVN", "url": "https://www.google.com/finance/quote/dvn:nyq"}, {"text": "GER:DY6X", "url": "https://www.google.com/finance/quote/dy6x:ger"}, {"text": "BER:DY6", "url": "https://www.google.com/finance/quote/ber:dy6"}, {"text": "DUS:DY6", "url": "https://www.google.com/finance/quote/dus:dy6"}, {"text": "LSE:0I8W", "url": "https://www.google.com/finance/quote/0i8w:lse"}, {"text": "DEU:DVN", "url": "https://www.google.com/finance/quote/deu:dvn"}, {"text": "STU:DY6", "url": "https://www.google.com/finance/quote/dy6:stu"}, {"text": "BRN:DY6", "url": "https://www.google.com/finance/quote/brn:dy6"}, {"text": "FRA:DY6", "url": "https://www.google.com/finance/quote/dy6:fra"}, {"text": "SAO:D1VN34", "url": "https://www.google.com/finance/quote/d1vn34:sao"}, {"text": "MEX:DVN*", "url": "https://www.google.com/finance/quote/dvn*:mex"}, {"text": "MOEX:DVN-RM", "url": "https://www.google.com/finance/quote/dvn-rm:moex"}, {"text": "NYSE:DVN", "url": "https://www.google.com/finance/quote/dvn:nyse"}, {"text": "MUN:DY6", "url": "https://www.google.com/finance/quote/dy6:mun"}], "crunchbase_description": "Devon Energy is oil and natural gas exploration and production company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 25755, "cluster_count": 1}, {"cluster_id": 8641, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "classification", "task_count": 1}, {"referent": "clustering", "task_count": 1}, {"referent": "seismic_analysis", "task_count": 1}, {"referent": "action_generation", "task_count": 1}, {"referent": "synthetic_data_generation", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}, {"referent": "gru", "method_count": 1}, {"referent": "gts", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [16, 23, 28, 34, 34, 23, 39, 12, 12, 12, 0], "total": 233, "isTopResearch": false, "rank": 391, "fortune500_rank": 150}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 2, 6, 1], "total": 11, "isTopResearch": false, "rank": 754, "fortune500_rank": 203}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 2.0, 0, 0], "total": 5.5, "isTopResearch": false, "rank": 697, "fortune500_rank": 199}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 187, "rank": 704, "fortune500_rank": 365}, "ai_jobs": {"counts": null, "total": 34, "rank": 564, "fortune500_rank": 289}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "Devon Energy Corporation is an American energy company engaged in hydrocarbon exploration in the American market. It is organized in Delaware and its corporate operative headquarters are in the 50-story Devon Energy Center in Oklahoma City, Oklahoma. Its primary operations are in the Barnett Shale, STACK Formation in Oklahoma, Delaware Basin, Eagle Ford Group shale, and the Rocky Mountains.\nThe company is ranked 419th on the Fortune 500. It is not on the Forbes Global 2000.", "wikipedia_link": "https://en.wikipedia.org/wiki/Devon_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2429, "country": "United States", "website": "https://www.newmontgoldcorp.com/", "crunchbase": {"text": "54f7bf17-3fce-4ff5-94e4-673a8519e5a4", "url": "https://www.crunchbase.com/organization/newmont-mining-e5a4"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/newmont"], "stage": "Mature", "name": "Newmont Corporation", "patent_name": "newmont corporation", "continent": "North America", "local_logo": "newmont_corporation.png", "aliases": "Newmont; Newmont Goldcorp; Newmont Mining; Newmont Mining Corporation", "permid_links": [{"text": 4295904618, "url": "https://permid.org/1-4295904618"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NEM", "url": "https://www.google.com/finance/quote/nem:nyse"}], "market_full": [{"text": "BRN:NMM", "url": "https://www.google.com/finance/quote/brn:nmm"}, {"text": "STU:NMM", "url": "https://www.google.com/finance/quote/nmm:stu"}, {"text": "DEU:NEM", "url": "https://www.google.com/finance/quote/deu:nem"}, {"text": "MUN:NMM", "url": "https://www.google.com/finance/quote/mun:nmm"}, {"text": "NYSE:NEM", "url": "https://www.google.com/finance/quote/nem:nyse"}, {"text": "MEX:NEM*", "url": "https://www.google.com/finance/quote/mex:nem*"}, {"text": "LSE:0R28", "url": "https://www.google.com/finance/quote/0r28:lse"}, {"text": "TOR:NGT", "url": "https://www.google.com/finance/quote/ngt:tor"}, {"text": "DUS:NMM", "url": "https://www.google.com/finance/quote/dus:nmm"}, {"text": "SAO:N1EM34", "url": "https://www.google.com/finance/quote/n1em34:sao"}, {"text": "SGO:NEM", "url": "https://www.google.com/finance/quote/nem:sgo"}, {"text": "VIE:NEWM", "url": "https://www.google.com/finance/quote/newm:vie"}, {"text": "HAM:NMM", "url": "https://www.google.com/finance/quote/ham:nmm"}, {"text": "SWX:NEM", "url": "https://www.google.com/finance/quote/nem:swx"}, {"text": "FRA:NMM", "url": "https://www.google.com/finance/quote/fra:nmm"}, {"text": "SGO:NEMCL", "url": "https://www.google.com/finance/quote/nemcl:sgo"}, {"text": "MCX:NEM-RM", "url": "https://www.google.com/finance/quote/mcx:nem-rm"}, {"text": "BER:NMM", "url": "https://www.google.com/finance/quote/ber:nmm"}, {"text": "NYQ:NEM", "url": "https://www.google.com/finance/quote/nem:nyq"}, {"text": "ASE:NEM", "url": "https://www.google.com/finance/quote/ase:nem"}, {"text": "GER:NMMX", "url": "https://www.google.com/finance/quote/ger:nmmx"}, {"text": "HAN:NMM", "url": "https://www.google.com/finance/quote/han:nmm"}, {"text": "BUE:NEM3", "url": "https://www.google.com/finance/quote/bue:nem3"}], "crunchbase_description": "Newmont is a gold mining company that deals in mining gold and a producer of copper, silver, zinc & lead.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [22, 11, 10, 10, 7, 16, 8, 17, 13, 4, 0], "total": 118, "isTopResearch": false, "rank": 485, "fortune500_rank": 180}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 185, "rank": 705, "fortune500_rank": 366}, "ai_jobs": {"counts": null, "total": 12, "rank": 812, "fortune500_rank": 400}}, "sector": "Basic Materials", "business_sector": "Mineral Resources", "wikipedia_description": "Newmont Corporation, based in Greenwood Village, Colorado, United States, is the world's largest gold mining company. Incorporated in 1921, it has ownership of gold mines in Nevada, Colorado, Ontario, Quebec, Mexico, the Dominican Republic, Australia, Ghana, Argentina, Peru, and Suriname. In addition to gold, Newmont mines copper, silver, zinc and lead.", "wikipedia_link": "https://en.wikipedia.org/wiki/Newmont_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2103, "country": "United Kingdom", "website": "https://www.compass-group.com/", "crunchbase": {"text": " b6c24811-f50f-49df-aed0-831427900a1e ", "url": " https://www.crunchbase.com/organization/compass-group-uk "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/compass-group"], "stage": "Mature", "name": "Compass Group", "patent_name": "Compass Group", "continent": "Europe", "local_logo": null, "aliases": "Compass Group; Compass Group Plc", "permid_links": [{"text": 4295895403, "url": "https://permid.org/1-4295895403"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:CPG", "url": "https://www.google.com/finance/quote/CPG:LSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 1, 43, 1, 1, 1, 2, 2, 6, 3, 0], "total": 60, "isTopResearch": false, "rank": 591, "sp500_rank": 321}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 184, "rank": 706, "sp500_rank": 280}, "ai_jobs": {"counts": null, "total": 17, "rank": 728, "sp500_rank": 280}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services"}, {"cset_id": 2291, "country": "United States", "website": "https://www.dovercorporation.com/", "crunchbase": {"text": "9fdb3e16-b597-0d60-a9e1-e4b64ee1c1f8", "url": "https://www.crunchbase.com/organization/dover"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dovercorp"], "stage": "Mature", "name": "Dover Corporation", "patent_name": "dover corporation", "continent": "North America", "local_logo": "dover_corporation.png", "aliases": "Dover; Dover Corp", "permid_links": [{"text": 4295903874, "url": "https://permid.org/1-4295903874"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DOV", "url": "https://www.google.com/finance/quote/dov:nyse"}], "market_full": [{"text": "MOEX:DOV-RM", "url": "https://www.google.com/finance/quote/dov-rm:moex"}, {"text": "FRA:DOV", "url": "https://www.google.com/finance/quote/dov:fra"}, {"text": "SAO:D1OV34", "url": "https://www.google.com/finance/quote/d1ov34:sao"}, {"text": "ASE:DOV", "url": "https://www.google.com/finance/quote/ase:dov"}, {"text": "NYQ:DOV", "url": "https://www.google.com/finance/quote/dov:nyq"}, {"text": "BER:DOV", "url": "https://www.google.com/finance/quote/ber:dov"}, {"text": "HAN:DOV", "url": "https://www.google.com/finance/quote/dov:han"}, {"text": "NYSE:DOV", "url": "https://www.google.com/finance/quote/dov:nyse"}, {"text": "LSE:0ICP", "url": "https://www.google.com/finance/quote/0icp:lse"}, {"text": "MUN:DOV", "url": "https://www.google.com/finance/quote/dov:mun"}, {"text": "BRN:DOV", "url": "https://www.google.com/finance/quote/brn:dov"}, {"text": "DEU:DOV", "url": "https://www.google.com/finance/quote/deu:dov"}, {"text": "DUS:DOV", "url": "https://www.google.com/finance/quote/dov:dus"}, {"text": "STU:DOV", "url": "https://www.google.com/finance/quote/dov:stu"}, {"text": "GER:DOVX", "url": "https://www.google.com/finance/quote/dovx:ger"}], "crunchbase_description": "Dover Corporation (Dover) owns and operates a global portfolio of manufacturing companies providing components and equipment, specialty", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 21619, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1037, "referenced_count": 1}], "tasks": [{"referent": "autonomous_driving", "task_count": 1}], "methods": [{"referent": "semi_supervised_learning_methods", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 1, 0, 2, 1, 2, 1, 0], "total": 8, "isTopResearch": false, "rank": 980, "fortune500_rank": 333}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 901, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1.0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "fortune500_rank": 237}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 3, 0, 2, 1, 0, 0], "total": 7, "table": null, "rank": 464, "fortune500_rank": 148}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198, "fortune500_rank": 56}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 30, 0, 20, 10, 0, 0], "total": 70, "table": null, "rank": 464, "fortune500_rank": 148}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 165, "fortune500_rank": 55}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 6, "fortune500_rank": 4}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 2, 0, 2, 0, 0, 0], "total": 5, "table": "application", "rank": 318, "fortune500_rank": 96}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 184, "rank": 706, "fortune500_rank": 367}, "ai_jobs": {"counts": null, "total": 9, "rank": 880, "fortune500_rank": 420}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Dover Corporation is an American conglomerate manufacturer of industrial products. Founded in 1955 in New York City, Dover is now based in Downers Grove, Illinois, and employs more than 26,000 people worldwide. As of 2014, Dover's business was divided into three segments: Engineered Systems, Fluids, and Refrigeration and Food Equipment. By 2020, there were five segments, with Imaging and Identification and Pumps and Process having been added. Each segment holds operating companies that are run like independent companies. Dover is a constituent of the S&P 500 index and trades on the New York Stock Exchange under \"DOV\". Dover is ranked 360th on the Fortune 500. The company relocated its headquarters to Illinois from New York in mid-2010.", "wikipedia_link": "https://en.wikipedia.org/wiki/Dover_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 235, "country": "United States", "website": "https://www.socure.com/", "crunchbase": {"text": "294b7d8a-e8ec-ef88-da4c-9d8764415e46", "url": "https://www.crunchbase.com/organization/socure"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/socure"], "stage": "Mature", "name": "Socure", "patent_name": "socure", "continent": "North America", "local_logo": "socure.png", "aliases": "Socure Inc; Socure, Inc", "permid_links": [{"text": 5039731052, "url": "https://permid.org/1-5039731052"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Socure is a predictive analytics platform for digital identity verification of consumers.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 30, 20, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], "total": 4, "table": "industry", "rank": 115}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 183, "rank": 708}, "ai_jobs": {"counts": null, "total": 62, "rank": 435}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Market-leading coverage and accuracy from the most comprehensive solution.", "company_site_link": "https://www.socure.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2861, "country": "United Kingdom", "website": "https://www.cobham.com/", "crunchbase": {"text": "6aae0c70-7de1-7af9-520f-6f5a8d0908ce", "url": "https://www.crunchbase.com/organization/cobham"}, "child_crunchbase": [{"text": "f79854a1-8cd9-4e28-9587-bc856a2f56f0", "url": "https://www.crunchbase.com/organization/ultra-electronics-holdings"}], "linkedin": ["https://www.linkedin.com/company/cobham", "https://www.linkedin.com/company/ultra-electronics-group"], "stage": "Mature", "name": "Cobham Plc", "patent_name": "cobham plc", "continent": "Europe", "local_logo": "cobham_plc.png", "aliases": "Cobham; Cobham Limited; Cobham Ltd", "permid_links": [{"text": 4295894904, "url": "https://permid.org/1-4295894904"}, {"text": 4295894686, "url": "https://permid.org/1-4295894686"}], "parent_info": "Advent International (Acquired)", "agg_child_info": "Ultra Electronics Holdings PLC", "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:COB", "url": "https://www.google.com/finance/quote/cob:lse"}], "crunchbase_description": "Cobham is a defense manufacturer of actuation, environmental, and air-to-air refueling systems.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [6, 2, 4, 1, 5, 1, 3, 2, 0, 0, 0], "total": 24, "isTopResearch": false, "rank": 767}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 182, "rank": 709}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Cobham Limited is a British aerospace manufacturing company based in Wimborne Minster, England.", "wikipedia_link": "https://en.wikipedia.org/wiki/Cobham_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2854, "country": "United States", "website": "http://www.comtechtel.com/", "crunchbase": {"text": "1ae4ff6d-79e7-11b1-522c-6c793a7bd05c", "url": "https://www.crunchbase.com/organization/comtech-telecommunications"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/comtech-telecommunications-corp"], "stage": "Mature", "name": "Comtech Telecommunications Corp", "patent_name": "comtech telecommunications corp", "continent": "North America", "local_logo": "comtech_telecommunications_corp.png", "aliases": "Comtech Telecommunications; Comtech Telecommunications Corp", "permid_links": [{"text": 4295906024, "url": "https://permid.org/1-4295906024"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CMTL", "url": "https://www.google.com/finance/quote/cmtl:nasdaq"}], "market_full": [{"text": "NASDAQ:CMTL", "url": "https://www.google.com/finance/quote/cmtl:nasdaq"}], "crunchbase_description": "Comtech Telecommunications designs, develops, produces and markets innovative products, systems and services for advanced", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 181, "rank": 710}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Comtech Telecommunications Corp. designs, develops, produces, and markets innovative products, systems and services for advanced communications solutions. We are technology leaders in the markets we serve and conduct our business through two segments: Commercial Solutions, Government Solutions", "company_site_link": "https://www.comtechtel.com/", "description_retrieval_date": "2021-06-11", "company_site_description_translation": null}, {"cset_id": 2533, "country": "United States", "website": "https://www.berkley.com", "crunchbase": {"text": "38bedcb2-f767-4673-a105-a482e0d317ee", "url": "https://www.crunchbase.com/organization/w-r-berkley"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/wrberkleycorporation"], "stage": "Mature", "name": "W. R. Berkley Corporation", "patent_name": "w. r. berkley corporation", "continent": "North America", "local_logo": "w_r_berkley_corporation.png", "aliases": "Berkley; W. R. Berkley; W. R. Berkley Corp", "permid_links": [{"text": 4295905713, "url": "https://permid.org/1-4295905713"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WRB.PRE", "url": "https://www.google.com/finance/quote/nyse:wrb.pre"}, {"text": "NYSE:WRB", "url": "https://www.google.com/finance/quote/nyse:wrb"}, {"text": "NYSE:WRB.PRG", "url": "https://www.google.com/finance/quote/nyse:wrb.prg"}, {"text": "NYSE:WRB.PRF", "url": "https://www.google.com/finance/quote/nyse:wrb.prf"}, {"text": "NYSE:WRB.PRH", "url": "https://www.google.com/finance/quote/nyse:wrb.prh"}], "market_full": [{"text": "ASE:WRB.PRH", "url": "https://www.google.com/finance/quote/ase:wrb.prh"}, {"text": "BER:WR1", "url": "https://www.google.com/finance/quote/ber:wr1"}, {"text": "DUS:WR1", "url": "https://www.google.com/finance/quote/dus:wr1"}, {"text": "BRN:WR1", "url": "https://www.google.com/finance/quote/brn:wr1"}, {"text": "NYQ:WRB", "url": "https://www.google.com/finance/quote/nyq:wrb"}, {"text": "NYSE:WRB.PRE", "url": "https://www.google.com/finance/quote/nyse:wrb.pre"}, {"text": "ASE:WRB.PRE", "url": "https://www.google.com/finance/quote/ase:wrb.pre"}, {"text": "ASE:WRB.PRF", "url": "https://www.google.com/finance/quote/ase:wrb.prf"}, {"text": "LSE:0HMZ", "url": "https://www.google.com/finance/quote/0hmz:lse"}, {"text": "NYQ:WRB.PRH", "url": "https://www.google.com/finance/quote/nyq:wrb.prh"}, {"text": "DEU:WRB", "url": "https://www.google.com/finance/quote/deu:wrb"}, {"text": "NYQ:WRB.PRF", "url": "https://www.google.com/finance/quote/nyq:wrb.prf"}, {"text": "FRA:WR1", "url": "https://www.google.com/finance/quote/fra:wr1"}, {"text": "SAO:W1RB34", "url": "https://www.google.com/finance/quote/sao:w1rb34"}, {"text": "MCX:WRB-RM", "url": "https://www.google.com/finance/quote/mcx:wrb-rm"}, {"text": "ASE:WRB", "url": "https://www.google.com/finance/quote/ase:wrb"}, {"text": "NYQ:WRB.PRG", "url": "https://www.google.com/finance/quote/nyq:wrb.prg"}, {"text": "STU:WR1", "url": "https://www.google.com/finance/quote/stu:wr1"}, {"text": "NYQ:WRB.PRE", "url": "https://www.google.com/finance/quote/nyq:wrb.pre"}, {"text": "NYSE:WRB", "url": "https://www.google.com/finance/quote/nyse:wrb"}, {"text": "NYSE:WRB.PRG", "url": "https://www.google.com/finance/quote/nyse:wrb.prg"}, {"text": "ASE:WRB.PRG", "url": "https://www.google.com/finance/quote/ase:wrb.prg"}, {"text": "MEX:WRB*", "url": "https://www.google.com/finance/quote/mex:wrb*"}, {"text": "NYSE:WRB.PRF", "url": "https://www.google.com/finance/quote/nyse:wrb.prf"}, {"text": "NYSE:WRB.PRH", "url": "https://www.google.com/finance/quote/nyse:wrb.prh"}], "crunchbase_description": "W. R. Berkley, an insurance holding company, operates as a commercial lines writer in the United States and internationally.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 180, "rank": 711, "fortune500_rank": 368}, "ai_jobs": {"counts": null, "total": 18, "rank": 716, "fortune500_rank": 362}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "W. R. Berkley Corporation is a commercial lines property & casualty insurance holding company organized in Delaware and based in Greenwich, Connecticut.", "wikipedia_link": "https://en.wikipedia.org/wiki/W._R._Berkley_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 103, "country": "United States", "website": "http://h2o.ai/", "crunchbase": {"text": "f727a12c-3306-09b9-0099-363a08603e76", "url": "https://www.crunchbase.com/organization/h2o-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/h2oai"], "stage": "Mature", "name": "H2O.ai", "patent_name": "h2o.ai", "continent": "North America", "local_logo": "h2oai.png", "aliases": "H2O Ai Inc; H2o.Ai, Inc", "permid_links": [{"text": 5047441357, "url": "https://permid.org/1-5047441357"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "H2O.ai is an open source machine learning platform that makes it easy to build smart applications.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "Categorical variable", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Big data", "field_count": 1}], "clusters": [{"cluster_id": 7081, "cluster_count": 3}, {"cluster_id": 54074, "cluster_count": 2}, {"cluster_id": 5109, "cluster_count": 2}, {"cluster_id": 7515, "cluster_count": 1}, {"cluster_id": 15703, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 10}, {"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 103, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 812, "referenced_count": 1}, {"ref_CSET_id": 274, "referenced_count": 1}, {"ref_CSET_id": 796, "referenced_count": 1}, {"ref_CSET_id": 557, "referenced_count": 1}], "tasks": [{"referent": "point_processes", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "graph_sampling", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "defect_detection", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "semi_supervised_semantic_segmentation", "task_count": 1}, {"referent": "path_planning", "task_count": 1}, {"referent": "seismic_analysis", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}], "methods": [{"referent": "1d_cnn", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "loss_functions", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "hopfield_layer", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "cbam", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 2, 0, 4, 3, 3, 2, 0], "total": 14, "isTopResearch": false, "rank": 875}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 3, 3, 3, 0, 0], "total": 10, "isTopResearch": false, "rank": 417}, "ai_publications_growth": {"counts": [], "total": -33.333333333333336, "isTopResearch": false, "rank": 1404}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 7, 25, 41, 62, 77, 3], "total": 215, "isTopResearch": false, "rank": 381}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 313}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 8.333333333333334, 13.666666666666666, 20.666666666666668, 0, 0], "total": 21.5, "isTopResearch": false, "rank": 286}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 4, 1, 0, 0, 0, 0], "total": 7, "table": null, "rank": 464}, "ai_patents_growth": {"counts": [], "total": -25.0, "table": null, "rank": 1469}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 40, 10, 0, 0, 0, 0], "total": 70, "table": null, "rank": 464}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 162}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 178, "rank": 712}, "ai_jobs": {"counts": null, "total": 80, "rank": 381}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "H2O AI Hybrid Cloud offers an end-to-end platform that democratizes artificial intelligence, enabling every employee, customer, and citizen with sophisticated AI technology and easy-to-use AI applications.", "company_site_link": "http://h2o.ai/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3095, "country": "United States", "website": "https://www.westpharma.com/", "crunchbase": {"text": " a7b14a60-c917-6d3e-8396-f0327aa00195", "url": " https://www.crunchbase.com/organization/west-pharmaceutical-services-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/west-pharmaceutical-services"], "stage": "Mature", "name": "West Pharmaceutical Services", "patent_name": "West Pharmaceutical Services", "continent": "North America", "local_logo": null, "aliases": null, "permid_links": [{"text": 4295912317, "url": "https://permid.org/1-4295912317"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WST", "url": "https://www.google.com/finance/quote/NYSE:WST"}], "market_full": [{"text": "BER:WPS", "url": "https://www.google.com/finance/quote/BER:WPS"}, {"text": "NYQ:WST", "url": "https://www.google.com/finance/quote/NYQ:WST"}, {"text": "NYSE:WST", "url": "https://www.google.com/finance/quote/NYSE:WST"}, {"text": "DEU:WST", "url": "https://www.google.com/finance/quote/DEU:WST"}, {"text": "MEX:WST*", "url": "https://www.google.com/finance/quote/MEX:WST*"}, {"text": "GER:WPSX", "url": "https://www.google.com/finance/quote/GER:WPSX"}, {"text": "SAO:W2ST34", "url": "https://www.google.com/finance/quote/SAO:W2ST34"}, {"text": "FRA:WPS", "url": "https://www.google.com/finance/quote/FRA:WPS"}, {"text": "ASE:WST", "url": "https://www.google.com/finance/quote/ASE:WST"}, {"text": "STU:WPS", "url": "https://www.google.com/finance/quote/STU:WPS"}, {"text": "DUS:WPS", "url": "https://www.google.com/finance/quote/DUS:WPS"}, {"text": "MUN:WPS", "url": "https://www.google.com/finance/quote/MUN:WPS"}, {"text": "MCX:WST-RM", "url": "https://www.google.com/finance/quote/MCX:WST-RM"}, {"text": "HAN:WPS", "url": "https://www.google.com/finance/quote/HAN:WPS"}, {"text": "BRN:WPS", "url": "https://www.google.com/finance/quote/BRN:WPS"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [6, 0, 9, 5, 6, 10, 9, 18, 13, 6, 0], "total": 82, "isTopResearch": false, "rank": 542, "fortune500_rank": 202}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 178, "rank": 712, "fortune500_rank": 369}, "ai_jobs": {"counts": null, "total": 16, "rank": 738, "fortune500_rank": 370}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment"}, {"cset_id": 2529, "country": "United States", "website": "https://www.vrtx.com/", "crunchbase": {"text": "83736774-ccac-0c60-42f4-b77f409c2069", "url": "https://www.crunchbase.com/organization/vertex-pharmaceuticals"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vertex-pharmaceuticals"], "stage": "Mature", "name": "Vertex Pharmaceuticals Inc", "patent_name": "vertex pharmaceuticals inc", "continent": "North America", "local_logo": "vertex_pharmaceuticals_inc.png", "aliases": "Vertex Pharmaceuticals; Vertex Pharmaceuticals Incorporated", "permid_links": [{"text": 4295908317, "url": "https://permid.org/1-4295908317"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:VRTX", "url": "https://www.google.com/finance/quote/nasdaq:vrtx"}], "market_full": [{"text": "NASDAQ:VRTX", "url": "https://www.google.com/finance/quote/nasdaq:vrtx"}, {"text": "BER:VX1", "url": "https://www.google.com/finance/quote/ber:vx1"}, {"text": "SAO:VRTX34", "url": "https://www.google.com/finance/quote/sao:vrtx34"}, {"text": "GER:VXX", "url": "https://www.google.com/finance/quote/ger:vxx"}, {"text": "LSE:0QZU", "url": "https://www.google.com/finance/quote/0qzu:lse"}, {"text": "STU:VX1", "url": "https://www.google.com/finance/quote/stu:vx1"}, {"text": "VIE:VRTX", "url": "https://www.google.com/finance/quote/vie:vrtx"}, {"text": "MEX:VRTX*", "url": "https://www.google.com/finance/quote/mex:vrtx*"}, {"text": "BRN:VX1", "url": "https://www.google.com/finance/quote/brn:vx1"}, {"text": "FRA:VX1", "url": "https://www.google.com/finance/quote/fra:vx1"}, {"text": "DUS:VX1", "url": "https://www.google.com/finance/quote/dus:vx1"}, {"text": "MUN:VX1", "url": "https://www.google.com/finance/quote/mun:vx1"}, {"text": "DEU:VRTX", "url": "https://www.google.com/finance/quote/deu:vrtx"}, {"text": "HAN:VX1", "url": "https://www.google.com/finance/quote/han:vx1"}, {"text": "HAM:VX1", "url": "https://www.google.com/finance/quote/ham:vx1"}, {"text": "MCX:VRTX-RM", "url": "https://www.google.com/finance/quote/mcx:vrtx-rm"}], "crunchbase_description": "Vertex Pharmaceuticals is focused on the discovery and development of small molecule drugs for the treatment of serious diseases.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Logistic regression", "field_count": 1}], "clusters": [{"cluster_id": 76022, "cluster_count": 1}, {"cluster_id": 9836, "cluster_count": 1}, {"cluster_id": 34709, "cluster_count": 1}, {"cluster_id": 1373, "cluster_count": 1}, {"cluster_id": 23266, "cluster_count": 1}, {"cluster_id": 2131, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 2529, "referenced_count": 1}, {"ref_CSET_id": 401, "referenced_count": 1}, {"ref_CSET_id": 1633, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "robots", "task_count": 1}, {"referent": "clustering", "task_count": 1}, {"referent": "model_selection", "task_count": 1}, {"referent": "document_clustering", "task_count": 1}, {"referent": "unsupervised_clustering", "task_count": 1}], "methods": [{"referent": "syncbn", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "cgnn", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "wgan_gp", "method_count": 1}, {"referent": "random_erasing", "method_count": 1}, {"referent": "clustering", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [107, 162, 117, 135, 121, 143, 130, 136, 133, 110, 0], "total": 1294, "isTopResearch": false, "rank": 165, "fortune500_rank": 62}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [12, 14, 5, 10, 10, 6, 8, 24, 50, 64, 2], "total": 205, "isTopResearch": false, "rank": 386, "fortune500_rank": 114}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 10.0, 0, 0, 8.0, 0, 50.0, 0, 0], "total": 68.33333333333333, "isTopResearch": false, "rank": 61, "fortune500_rank": 14}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 177, "rank": 714, "fortune500_rank": 370}, "ai_jobs": {"counts": null, "total": 60, "rank": 442, "fortune500_rank": 233}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Vertex Pharmaceuticals, Inc. is an American biopharmaceutical company based in Boston, Massachusetts. It was one of the first biotech firms to use an explicit strategy of rational drug design rather than combinatorial chemistry. It maintains headquarters in South Boston, Massachusetts, and three research facilities, in San Diego, California, and Milton Park, near Oxford, England.", "wikipedia_link": "https://en.wikipedia.org/wiki/Vertex_Pharmaceuticals", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2348, "country": "United States", "website": "https://shop.hasbro.com/en-in", "crunchbase": {"text": "ed5c7b8d-7bab-01c6-e811-54ab5b717d08", "url": "https://www.crunchbase.com/organization/hasbro-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hasbro"], "stage": "Mature", "name": "Hasbro Inc.", "patent_name": "hasbro inc.", "continent": "North America", "local_logo": "hasbro_inc.png", "aliases": "Hasbro", "permid_links": [{"text": 4295904144, "url": "https://permid.org/1-4295904144"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:HAS", "url": "https://www.google.com/finance/quote/has:nasdaq"}], "market_full": [{"text": "LSE:0J3K", "url": "https://www.google.com/finance/quote/0j3k:lse"}, {"text": "HAN:HAS", "url": "https://www.google.com/finance/quote/han:has"}, {"text": "MOEX:HAS-RM", "url": "https://www.google.com/finance/quote/has-rm:moex"}, {"text": "NASDAQ:HAS", "url": "https://www.google.com/finance/quote/has:nasdaq"}, {"text": "DUS:HAS", "url": "https://www.google.com/finance/quote/dus:has"}, {"text": "FWB:HAS", "url": "https://www.google.com/finance/quote/fwb:has"}, {"text": "MUN:HAS", "url": "https://www.google.com/finance/quote/has:mun"}, {"text": "BMV:HAS", "url": "https://www.google.com/finance/quote/bmv:has"}, {"text": "XETR:HAS", "url": "https://www.google.com/finance/quote/has:xetr"}, {"text": "VIE:HAS", "url": "https://www.google.com/finance/quote/has:vie"}, {"text": "BER:HAS", "url": "https://www.google.com/finance/quote/ber:has"}], "crunchbase_description": "Hasbro is engaged in providing children\u2019s and family leisure time products with brands and entertainment properties.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 177, "rank": 714, "fortune500_rank": 370}, "ai_jobs": {"counts": null, "total": 20, "rank": 692, "fortune500_rank": 349}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "Hasbro, Inc. is an American multinational conglomerate with toy, board game, and media assets, headquartered in Pawtucket, Rhode Island. Hasbro owns the trademarks and products of Kenner, Parker Brothers, and Milton Bradley, among others. Hasbro is incorporated in Rhode Island, and as of August 2020 over 80% of its shares were held by large financial institutions.", "wikipedia_link": "https://en.wikipedia.org/wiki/Hasbro", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1821, "country": "United States", "website": "http://www.valero.com/", "crunchbase": {"text": "82b40939-e737-210d-a5d1-1f6e09fe3427", "url": "https://www.crunchbase.com/organization/valero-energy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/valero-energy-corporation"], "stage": "Mature", "name": "Valero Energy Corp", "patent_name": "valero energy corp", "continent": "North America", "local_logo": "valero_energy_corp.png", "aliases": "Valero; Valero Energy; Valero Energy Corporation", "permid_links": [{"text": 4295905198, "url": "https://permid.org/1-4295905198"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:VLO", "url": "https://www.google.com/finance/quote/nyse:vlo"}], "market_full": [{"text": "MEX:VLO*", "url": "https://www.google.com/finance/quote/mex:vlo*"}, {"text": "MUN:V1L", "url": "https://www.google.com/finance/quote/mun:v1l"}, {"text": "MCX:VLO-RM", "url": "https://www.google.com/finance/quote/mcx:vlo-rm"}, {"text": "FRA:V1L", "url": "https://www.google.com/finance/quote/fra:v1l"}, {"text": "SAO:VLOE34", "url": "https://www.google.com/finance/quote/sao:vloe34"}, {"text": "DEU:V1L", "url": "https://www.google.com/finance/quote/deu:v1l"}, {"text": "GER:V1LX", "url": "https://www.google.com/finance/quote/ger:v1lx"}, {"text": "BRN:V1L", "url": "https://www.google.com/finance/quote/brn:v1l"}, {"text": "BER:V1L", "url": "https://www.google.com/finance/quote/ber:v1l"}, {"text": "LSE:0LK6", "url": "https://www.google.com/finance/quote/0lk6:lse"}, {"text": "VIE:VLO", "url": "https://www.google.com/finance/quote/vie:vlo"}, {"text": "NYQ:VLO", "url": "https://www.google.com/finance/quote/nyq:vlo"}, {"text": "STU:V1L", "url": "https://www.google.com/finance/quote/stu:v1l"}, {"text": "NYSE:VLO", "url": "https://www.google.com/finance/quote/nyse:vlo"}, {"text": "ASE:VLO", "url": "https://www.google.com/finance/quote/ase:vlo"}, {"text": "DUS:V1L", "url": "https://www.google.com/finance/quote/dus:v1l"}], "crunchbase_description": "Valero Energy is a Fortune 500 international manufacturer and a marketer of transportation fuels, other petrochemical products and power.", "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [{"cluster_id": 92019, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 1, 6, 9, 11, 8, 5, 6, 5, 0, 0], "total": 54, "isTopResearch": false, "rank": 604, "sp500_rank": 326, "fortune500_rank": 224}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 901, "sp500_rank": 355, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871, "sp500_rank": 345, "fortune500_rank": 237}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 177, "rank": 714, "sp500_rank": 281, "fortune500_rank": 370}, "ai_jobs": {"counts": null, "total": 15, "rank": 754, "sp500_rank": 284, "fortune500_rank": 376}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "Valero Energy Corporation is a Fortune 500 international manufacturer and marketer of transportation fuels, other petrochemical products, and power. It is headquartered in San Antonio, Texas, United States. Throughout the United States and Canada, the company owns and operates 15 refineries, and one in Wales, with a combined throughput capacity of approximately 3 million barrels (480,000 m3) per day, 11 ethanol plants with a combined production capacity of 1.2 billion US gallons (4,500,000 m3) per year, and a 50-megawatt wind farm. Before the 2013 spinoff of CST Brands, Valero was one of the United States' largest retail operators with approximately 6,800 retail and branded wholesale outlets in the United States, Canada, United Kingdom, and the Caribbean under the Valero, Diamond Shamrock, Shamrock, Beacon, and Texaco brands.", "wikipedia_link": "https://en.wikipedia.org/wiki/Valero_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 236, "country": "United States", "website": "http://sparkcognition.com", "crunchbase": {"text": "5d7207a3-34f0-6a72-12dd-0079e7149fea", "url": "https://www.crunchbase.com/organization/sparkcognition"}, "child_crunchbase": [{"text": "3bc74126-1753-49c7-50a8-5cfd810339be", "url": "https://www.crunchbase.com/organization/maana"}], "linkedin": ["https://www.linkedin.com/company/sparkcognition", "https://www.linkedin.com/company/maana"], "stage": "Mature", "name": "SparkCognition", "patent_name": "sparkcognition", "continent": "North America", "local_logo": "sparkcognition.png", "aliases": "Sparkcognition Inc; Sparkcognition, Inc", "permid_links": [{"text": 5040244811, "url": "https://permid.org/1-5040244811"}, {"text": 5038064963, "url": "https://permid.org/1-5038064963"}], "parent_info": null, "agg_child_info": "MAANA", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "SparkCognition is an AI technology startup operating a machine learning software to analyze increasingly complex data stores.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 6}, {"field_name": "Interpretability", "field_count": 1}, {"field_name": "Evolutionary algorithm", "field_count": 1}, {"field_name": "Profiling (information science)", "field_count": 1}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Surrogate model", "field_count": 1}, {"field_name": "Genetic programming", "field_count": 1}], "clusters": [{"cluster_id": 58864, "cluster_count": 3}, {"cluster_id": 303, "cluster_count": 2}, {"cluster_id": 1539, "cluster_count": 1}, {"cluster_id": 104674, "cluster_count": 1}, {"cluster_id": 81133, "cluster_count": 1}, {"cluster_id": 39761, "cluster_count": 1}, {"cluster_id": 93015, "cluster_count": 1}, {"cluster_id": 47204, "cluster_count": 1}, {"cluster_id": 88830, "cluster_count": 1}, {"cluster_id": 76022, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 20}, {"ref_CSET_id": 236, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 676, "referenced_count": 3}, {"ref_CSET_id": 184, "referenced_count": 3}, {"ref_CSET_id": 785, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 3, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "classification", "task_count": 5}, {"referent": "building_extraction", "task_count": 2}, {"referent": "multi_agent_reinforcement_learning", "task_count": 1}, {"referent": "drl", "task_count": 1}, {"referent": "code_search", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}], "methods": [{"referent": "reinforcement_learning", "method_count": 5}, {"referent": "vqa_models", "method_count": 3}, {"referent": "mad_learning", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "pafs", "method_count": 1}, {"referent": "aging_evolution", "method_count": 1}, {"referent": "deep_ensembles", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "natural_language_processing", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 4, 8, 8, 2, 4, 2, 0], "total": 29, "isTopResearch": false, "rank": 719}, "ai_publications": {"counts": [0, 0, 0, 1, 1, 6, 5, 2, 1, 1, 0], "total": 17, "isTopResearch": false, "rank": 330}, "ai_publications_growth": {"counts": [], "total": -36.666666666666664, "isTopResearch": false, "rank": 1418}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [0, 0, 1, 0, 0, 9, 27, 34, 45, 38, 4], "total": 158, "isTopResearch": false, "rank": 432}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0.0, 1.5, 5.4, 17.0, 45.0, 38.0, 0], "total": 9.294117647058824, "isTopResearch": false, "rank": 568}}, "patents": {"ai_patents": {"counts": [0, 2, 0, 0, 15, 9, 9, 15, 0, 0, 0], "total": 50, "table": null, "rank": 219}, "ai_patents_growth": {"counts": [], "total": 8.888888888888891, "table": null, "rank": 340}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 20, 0, 0, 150, 90, 90, 150, 0, 0, 0], "total": 500, "table": null, "rank": 219}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 128}, "Transportation": {"counts": [0, 0, 0, 0, 1, 2, 2, 2, 0, 0, 0], "total": 7, "table": "industry", "rank": 112}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 11, 6, 3, 5, 0, 0, 0], "total": 25, "table": "industry", "rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 172}, "Telecommunications": {"counts": [0, 0, 0, 0, 5, 2, 0, 4, 0, 0, 0], "total": 11, "table": "industry", "rank": 164}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 252}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 1, 2, 0, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 126}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 214}, "Control": {"counts": [0, 0, 0, 0, 1, 2, 0, 3, 0, 0, 0], "total": 6, "table": "application", "rank": 166}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 5, 1, 4, 0, 0, 0], "total": 10, "table": "application", "rank": 241}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 223}, "Measuring_and_Testing": {"counts": [0, 1, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 4, "table": "application", "rank": 189}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 175, "rank": 717}, "ai_jobs": {"counts": null, "total": 51, "rank": 479}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We build AI platforms that enable the world\u2019s most creative problem solvers to ignite lasting impact in their organizations and throughout the world.", "company_site_link": "https://www.sparkcognition.com/company/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1945, "country": "China", "website": "http://zgh.com/", "crunchbase": {"text": " cbcae328-6143-e6a2-15ef-d8b736ca9fff", "url": " https://www.crunchbase.com/organization/zhejiang-geely-holding-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/geely"], "stage": "Unknown", "name": "Zhejiang Geely Holding Group", "patent_name": "Zhejiang Geely Holding Group", "continent": "Asia", "local_logo": null, "aliases": "Geely; Zhejiang Geely Holding Group; Zhejiang Geely Holding Group Co., Ltd; \u5409\u5229\u63a7\u80a1\u96c6\u56e2; \u6d59\u6c5f\u5409\u5229\u63a7\u80a1\u96c6\u56e2", "permid_links": [{"text": 5000695479, "url": "https://permid.org/1-5000695479"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}], "clusters": [{"cluster_id": 71323, "cluster_count": 2}, {"cluster_id": 65639, "cluster_count": 1}, {"cluster_id": 19290, "cluster_count": 1}, {"cluster_id": 17041, "cluster_count": 1}, {"cluster_id": 41601, "cluster_count": 1}, {"cluster_id": 1187, "cluster_count": 1}, {"cluster_id": 303, "cluster_count": 1}, {"cluster_id": 76128, "cluster_count": 1}, {"cluster_id": 4262, "cluster_count": 1}, {"cluster_id": 5596, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 161, "referenced_count": 2}, {"ref_CSET_id": 1945, "referenced_count": 2}, {"ref_CSET_id": 1791, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 936, "referenced_count": 1}], "tasks": [{"referent": "steering_control", "task_count": 2}, {"referent": "text_matching", "task_count": 1}, {"referent": "feature_engineering", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "safety_perception_recognition", "task_count": 1}, {"referent": "presentation_attack_detection", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}, {"referent": "target_recognition", "task_count": 1}], "methods": [{"referent": "q_learning", "method_count": 2}, {"referent": "computer_vision", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "adamw", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "k_means_clustering", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [8, 5, 4, 6, 4, 8, 5, 15, 10, 10, 1], "total": 76, "isTopResearch": false, "rank": 550, "sp500_rank": 307}, "ai_publications": {"counts": [1, 0, 0, 1, 1, 0, 2, 2, 0, 2, 0], "total": 9, "isTopResearch": false, "rank": 437, "sp500_rank": 224}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [1, 3, 4, 6, 11, 11, 12, 25, 24, 26, 2], "total": 125, "isTopResearch": false, "rank": 472, "sp500_rank": 209}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [1.0, 0, 0, 6.0, 11.0, 0, 6.0, 12.5, 0, 13.0, 0], "total": 13.88888888888889, "isTopResearch": false, "rank": 433, "sp500_rank": 146}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 0, 4, 4, 27, 34, 13, 0], "total": 83, "table": null, "rank": 172, "sp500_rank": 109}, "ai_patents_growth": {"counts": [], "total": 287.5, "table": null, "rank": 26, "sp500_rank": 11}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 0, 40, 40, 270, 340, 130, 0], "total": 830, "table": null, "rank": 172, "sp500_rank": 109}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 4, 0, 0], "total": 5, "table": "industry", "rank": 128, "sp500_rank": 88}, "Transportation": {"counts": [0, 0, 0, 0, 0, 2, 3, 6, 6, 2, 0], "total": 19, "table": "industry", "rank": 72, "sp500_rank": 56}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0], "total": 3, "table": null, "rank": 131, "sp500_rank": 89}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 2, 0, 5, 17, 2, 0], "total": 26, "table": "industry", "rank": 165, "sp500_rank": 93}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 4, 1, 0], "total": 10, "table": "industry", "rank": 165, "sp500_rank": 97}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 6, 2, 0], "total": 12, "table": "industry", "rank": 140, "sp500_rank": 96}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0], "total": 3, "table": null, "rank": 97, "sp500_rank": 78}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": null, "rank": 191, "sp500_rank": 101}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 4, 1, 0], "total": 9, "table": "application", "rank": 134, "sp500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 2, 0, 2, 0, 2, 0], "total": 6, "table": "application", "rank": 166, "sp500_rank": 113}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 2, 6, 12, 0, 0], "total": 21, "table": "application", "rank": 182, "sp500_rank": 107}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 9, 1, 0], "total": 14, "table": "application", "rank": 92, "sp500_rank": 69}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 2, 0, 5, 3, 0, 0], "total": 10, "table": "application", "rank": 121, "sp500_rank": 94}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 174, "rank": 718, "sp500_rank": 282}, "ai_jobs": {"counts": null, "total": 12, "rank": 812, "sp500_rank": 290}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 173, "country": "United States", "website": "https://www.moveworks.com/", "crunchbase": {"text": "9f3d100c-07e3-4fac-b59f-c2c6d1ba3ba1", "url": "https://www.crunchbase.com/organization/moveworks"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/moveworksai"], "stage": "Growth", "name": "Moveworks", "patent_name": "moveworks", "continent": "North America", "local_logo": "moveworks.png", "aliases": "Moveworks Inc; Moveworks, Inc", "permid_links": [{"text": 5004073522, "url": "https://permid.org/1-5004073522"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Moveworks is the AI platform that powers the best places to work.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 2, 1, 3, 0, 0, 0], "total": 7, "table": null, "rank": 464}, "ai_patents_growth": {"counts": [], "total": 83.33333333333333, "table": null, "rank": 136}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 20, 10, 30, 0, 0, 0], "total": 70, "table": null, "rank": 464}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 2, 1, 3, 0, 0, 0], "total": 7, "table": "industry", "rank": 287}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 249}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 1, 1, 0, 3, 0, 0, 0], "total": 5, "table": "industry", "rank": 213}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 60}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 75}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 137}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 214}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 173, "rank": 719}, "ai_jobs": {"counts": null, "total": 54, "rank": 467}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Moveworks is a cloud-based AI platform that resolves employees\u2019 IT support issues. Instead of just tracking those issues, we use advanced AI to solve them \u2014 instantly and automatically.", "company_site_link": "https://www.moveworks.com/about", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2267, "country": "United States", "website": "https://www.conagrabrands.com/", "crunchbase": {"text": "10cc39d6-d346-26d6-f560-d74162412c3f", "url": "https://www.crunchbase.com/organization/conagra-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/conagra-brands"], "stage": "Mature", "name": "Conagra Brands", "patent_name": "conagra brands", "continent": "North America", "local_logo": "conagra_brands.png", "aliases": "Conagra Brands, Inc; Conagra Foods Inc", "permid_links": [{"text": 4295903775, "url": "https://permid.org/1-4295903775"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CAG", "url": "https://www.google.com/finance/quote/cag:nyse"}], "market_full": [{"text": "SAO:C1AG34", "url": "https://www.google.com/finance/quote/c1ag34:sao"}, {"text": "ASE:CAG", "url": "https://www.google.com/finance/quote/ase:cag"}, {"text": "STU:CAO", "url": "https://www.google.com/finance/quote/cao:stu"}, {"text": "NYSE:CAG", "url": "https://www.google.com/finance/quote/cag:nyse"}, {"text": "HAN:CAO", "url": "https://www.google.com/finance/quote/cao:han"}, {"text": "BRN:CAO", "url": "https://www.google.com/finance/quote/brn:cao"}, {"text": "DUS:CAO", "url": "https://www.google.com/finance/quote/cao:dus"}, {"text": "LSE:0I2P", "url": "https://www.google.com/finance/quote/0i2p:lse"}, {"text": "FRA:CAO", "url": "https://www.google.com/finance/quote/cao:fra"}, {"text": "BER:CAO", "url": "https://www.google.com/finance/quote/ber:cao"}, {"text": "MCX:CAG-RM", "url": "https://www.google.com/finance/quote/cag-rm:mcx"}, {"text": "NYQ:CAG", "url": "https://www.google.com/finance/quote/cag:nyq"}, {"text": "MUN:CAO", "url": "https://www.google.com/finance/quote/cao:mun"}, {"text": "DEU:CAG", "url": "https://www.google.com/finance/quote/cag:deu"}], "crunchbase_description": "Conagra Brands is a packaged foods company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [4, 4, 2, 2, 11, 3, 2, 7, 2, 5, 0], "total": 42, "isTopResearch": false, "rank": 647, "fortune500_rank": 240}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 173, "rank": 719, "fortune500_rank": 373}, "ai_jobs": {"counts": null, "total": 41, "rank": 520, "fortune500_rank": 270}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Conagra Brands, Inc. is an American packaged foods company headquartered in Chicago, Illinois. Conagra makes and sells products under various brand names that are available in supermarkets, restaurants, and food service establishments.", "wikipedia_link": "https://en.wikipedia.org/wiki/Conagra_Brands", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2345, "country": "United States", "website": "https://www.hanes.com/corporate", "crunchbase": {"text": "4797e601-b38a-4998-5cca-1fd61c76240a", "url": "https://www.crunchbase.com/organization/hanesbrands"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hanesbrands-inc-"], "stage": "Mature", "name": "Hanesbrands Inc", "patent_name": "hanesbrands inc", "continent": "North America", "local_logo": "hanesbrands_inc.png", "aliases": "Hanesbrands; Hanesbrands Inc; Sara Lee Corporation", "permid_links": [{"text": 4295902458, "url": "https://permid.org/1-4295902458"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HBI", "url": "https://www.google.com/finance/quote/hbi:nyse"}], "market_full": [{"text": "NYSE:HBI", "url": "https://www.google.com/finance/quote/hbi:nyse"}, {"text": "STU:HN9", "url": "https://www.google.com/finance/quote/hn9:stu"}, {"text": "DUS:HN9", "url": "https://www.google.com/finance/quote/dus:hn9"}, {"text": "GER:HN9X", "url": "https://www.google.com/finance/quote/ger:hn9x"}, {"text": "FRA:HN9", "url": "https://www.google.com/finance/quote/fra:hn9"}, {"text": "ASE:HBI", "url": "https://www.google.com/finance/quote/ase:hbi"}, {"text": "NYQ:HBI", "url": "https://www.google.com/finance/quote/hbi:nyq"}, {"text": "MOEX:HBI-RM", "url": "https://www.google.com/finance/quote/hbi-rm:moex"}, {"text": "BRN:HN9", "url": "https://www.google.com/finance/quote/brn:hn9"}, {"text": "DEU:HANB", "url": "https://www.google.com/finance/quote/deu:hanb"}, {"text": "SAO:H1BI34", "url": "https://www.google.com/finance/quote/h1bi34:sao"}, {"text": "MUN:HN9", "url": "https://www.google.com/finance/quote/hn9:mun"}, {"text": "BER:HN9", "url": "https://www.google.com/finance/quote/ber:hn9"}, {"text": "LSE:0J2X", "url": "https://www.google.com/finance/quote/0j2x:lse"}], "crunchbase_description": "Hanesbrands Inc. is a manufacturer of several clothing brands including Hanes, Champion, Playtex", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 172, "rank": 721, "fortune500_rank": 374}, "ai_jobs": {"counts": null, "total": 54, "rank": 467, "fortune500_rank": 247}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "Hanesbrands Inc. is an American multinational clothing company based in Winston-Salem, North Carolina. It employs 65,300 people internationally. On September 6, 2006, the company and several brands were spun off by the Sara Lee Corporation.", "wikipedia_link": "https://en.wikipedia.org/wiki/Hanesbrands", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2050, "country": "Japan", "website": "https://global.canon/", "crunchbase": {"text": " 34244a58-b749-4822-93ef-ef94188da779", "url": " https://www.crunchbase.com/organization/canon-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/canonusa"], "stage": "Mature", "name": "Canon", "patent_name": "Canon", "continent": "Asia", "local_logo": null, "aliases": "Canon; Canon Inc", "permid_links": [{"text": 4295877413, "url": "https://permid.org/1-4295877413"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:7751", "url": "https://www.google.com/finance/quote/7751:TYO"}, {"text": "NYSE:CAJ", "url": "https://www.google.com/finance/quote/CAJ:NYSE"}], "market_full": [{"text": "PKC:CAJFF", "url": "https://www.google.com/finance/quote/CAJFF:PKC"}, {"text": "FRA:CNN1", "url": "https://www.google.com/finance/quote/CNN1:FRA"}, {"text": "MUN:CNNA", "url": "https://www.google.com/finance/quote/CNNA:MUN"}, {"text": "HAM:CNN1", "url": "https://www.google.com/finance/quote/CNN1:HAM"}, {"text": "STU:CNN1", "url": "https://www.google.com/finance/quote/CNN1:STU"}, {"text": "TYO:7751", "url": "https://www.google.com/finance/quote/7751:TYO"}, {"text": "FRA:CNNA", "url": "https://www.google.com/finance/quote/CNNA:FRA"}, {"text": "HAN:CNN1", "url": "https://www.google.com/finance/quote/CNN1:HAN"}, {"text": "ASE:CAJ", "url": "https://www.google.com/finance/quote/ASE:CAJ"}, {"text": "MUN:CNN1", "url": "https://www.google.com/finance/quote/CNN1:MUN"}, {"text": "BUE:CAJ3", "url": "https://www.google.com/finance/quote/BUE:CAJ3"}, {"text": "VIE:CNN1", "url": "https://www.google.com/finance/quote/CNN1:VIE"}, {"text": "BER:CNN1", "url": "https://www.google.com/finance/quote/BER:CNN1"}, {"text": "STU:CNNA", "url": "https://www.google.com/finance/quote/CNNA:STU"}, {"text": "BER:CNNA", "url": "https://www.google.com/finance/quote/BER:CNNA"}, {"text": "NYQ:CAJ", "url": "https://www.google.com/finance/quote/CAJ:NYQ"}, {"text": "MEX:CAJN", "url": "https://www.google.com/finance/quote/CAJN:MEX"}, {"text": "NYSE:CAJ", "url": "https://www.google.com/finance/quote/CAJ:NYSE"}, {"text": "DEU:CNNA", "url": "https://www.google.com/finance/quote/CNNA:DEU"}, {"text": "DUS:CNN1", "url": "https://www.google.com/finance/quote/CNN1:DUS"}, {"text": "DEU:7751", "url": "https://www.google.com/finance/quote/7751:DEU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 4}, {"field_name": "Segmentation", "field_count": 3}, {"field_name": "Feature (computer vision)", "field_count": 3}, {"field_name": "Salience (neuroscience)", "field_count": 2}, {"field_name": "Robot", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Robotic arm", "field_count": 2}, {"field_name": "Iterative reconstruction", "field_count": 2}, {"field_name": "Pose", "field_count": 2}, {"field_name": "Structured light", "field_count": 1}], "clusters": [{"cluster_id": 1621, "cluster_count": 5}, {"cluster_id": 4429, "cluster_count": 4}, {"cluster_id": 1122, "cluster_count": 3}, {"cluster_id": 49769, "cluster_count": 3}, {"cluster_id": 3742, "cluster_count": 3}, {"cluster_id": 15486, "cluster_count": 2}, {"cluster_id": 16878, "cluster_count": 2}, {"cluster_id": 37070, "cluster_count": 2}, {"cluster_id": 41168, "cluster_count": 2}, {"cluster_id": 39679, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 71}, {"ref_CSET_id": 101, "referenced_count": 56}, {"ref_CSET_id": 2050, "referenced_count": 26}, {"ref_CSET_id": 87, "referenced_count": 24}, {"ref_CSET_id": 127, "referenced_count": 14}, {"ref_CSET_id": 161, "referenced_count": 12}, {"ref_CSET_id": 223, "referenced_count": 12}, {"ref_CSET_id": 23, "referenced_count": 11}, {"ref_CSET_id": 115, "referenced_count": 11}, {"ref_CSET_id": 245, "referenced_count": 8}], "tasks": [{"referent": "classification", "task_count": 10}, {"referent": "segmentation", "task_count": 8}, {"referent": "object_detection", "task_count": 7}, {"referent": "image_processing", "task_count": 7}, {"referent": "face_recognition", "task_count": 6}, {"referent": "image_registration", "task_count": 5}, {"referent": "image_restoration", "task_count": 5}, {"referent": "portfolio_optimization", "task_count": 4}, {"referent": "steering_control", "task_count": 4}, {"referent": "image_recognition", "task_count": 4}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 6}, {"referent": "twin_networks", "method_count": 5}, {"referent": "dueling_network", "method_count": 5}, {"referent": "3d_representations", "method_count": 5}, {"referent": "double_q_learning", "method_count": 5}, {"referent": "1d_cnn", "method_count": 5}, {"referent": "vqa_models", "method_count": 4}, {"referent": "griffin_lim_algorithm", "method_count": 4}, {"referent": "q_learning", "method_count": 4}, {"referent": "ggs_nns", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [130, 115, 112, 82, 72, 69, 58, 51, 52, 32, 0], "total": 773, "isTopResearch": false, "rank": 224, "sp500_rank": 155}, "ai_publications": {"counts": [16, 10, 10, 11, 9, 6, 5, 8, 9, 2, 0], "total": 86, "isTopResearch": false, "rank": 133, "sp500_rank": 89}, "ai_publications_growth": {"counts": [], "total": -1.759259259259257, "isTopResearch": false, "rank": 1216, "sp500_rank": 288}, "ai_pubs_top_conf": {"counts": [1, 0, 0, 0, 2, 2, 3, 4, 1, 0, 0], "total": 13, "isTopResearch": false, "rank": 99, "sp500_rank": 51}, "citation_counts": {"counts": [45, 44, 67, 89, 124, 229, 332, 370, 346, 245, 6], "total": 1897, "isTopResearch": false, "rank": 145, "sp500_rank": 87}, "cv_pubs": {"counts": [7, 5, 4, 5, 6, 2, 4, 7, 6, 2, 0], "total": 48, "isTopResearch": true, "rank": 87, "sp500_rank": 58}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [5, 3, 3, 0, 3, 1, 0, 0, 1, 0, 0], "total": 16, "isTopResearch": true, "rank": 88, "sp500_rank": 65}, "citations_per_article": {"counts": [2.8125, 4.4, 6.7, 8.090909090909092, 13.777777777777779, 38.166666666666664, 66.4, 46.25, 38.44444444444444, 122.5, 0], "total": 22.058139534883722, "isTopResearch": false, "rank": 278, "sp500_rank": 78}}, "patents": {"ai_patents": {"counts": [18, 28, 18, 45, 92, 149, 292, 184, 82, 3, 0], "total": 911, "table": null, "rank": 30, "sp500_rank": 24}, "ai_patents_growth": {"counts": [], "total": 40.31445824389451, "table": null, "rank": 242, "sp500_rank": 110}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [180, 280, 180, 450, 920, 1490, 2920, 1840, 820, 30, 0], "total": 9110, "table": null, "rank": 30, "sp500_rank": 24}, "Physical_Sciences_and_Engineering": {"counts": [2, 0, 1, 0, 1, 1, 1, 0, 0, 0, 0], "total": 6, "table": null, "rank": 68, "sp500_rank": 56}, "Life_Sciences": {"counts": [4, 3, 1, 8, 19, 44, 64, 38, 16, 0, 0], "total": 197, "table": "industry", "rank": 7, "sp500_rank": 6}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 3, 1, 0, 3, 2, 3, 0, 0], "total": 12, "table": null, "rank": 80, "sp500_rank": 59}, "Transportation": {"counts": [0, 0, 0, 0, 1, 2, 1, 1, 1, 0, 0], "total": 6, "table": null, "rank": 123, "sp500_rank": 89}, "Industrial_and_Manufacturing": {"counts": [3, 0, 1, 0, 3, 7, 9, 2, 3, 0, 0], "total": 28, "table": "industry", "rank": 28, "sp500_rank": 24}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 1, 4, 0, 0, 0, 0], "total": 5, "table": null, "rank": 2, "sp500_rank": 2}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 38, "sp500_rank": 31}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [3, 4, 5, 9, 22, 15, 46, 29, 10, 0, 0], "total": 143, "table": "industry", "rank": 56, "sp500_rank": 44}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [2, 6, 1, 6, 17, 25, 60, 33, 24, 0, 0], "total": 174, "table": "industry", "rank": 23, "sp500_rank": 20}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 1, 2, 5, 2, 0, 0, 0, 0], "total": 10, "table": null, "rank": 149, "sp500_rank": 101}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 5, 0, 0], "total": 7, "table": null, "rank": 62, "sp500_rank": 58}, "Entertainment": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 2, 2, 6, 12, 10, 0, 0], "total": 32, "table": "industry", "rank": 6, "sp500_rank": 4}, "Language_Processing": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 87, "sp500_rank": 57}, "Speech_Processing": {"counts": [1, 0, 0, 0, 1, 0, 2, 1, 0, 0, 0], "total": 5, "table": null, "rank": 117, "sp500_rank": 72}, "Knowledge_Representation": {"counts": [0, 2, 0, 0, 1, 1, 1, 3, 0, 0, 0], "total": 8, "table": null, "rank": 88, "sp500_rank": 59}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 2, 5, 2, 0, 0, 0, 0], "total": 9, "table": "application", "rank": 134, "sp500_rank": 94}, "Control": {"counts": [0, 0, 1, 0, 6, 14, 14, 10, 2, 0, 0], "total": 47, "table": "application", "rank": 54, "sp500_rank": 43}, "Distributed_AI": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 36, "sp500_rank": 28}, "Robotics": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23, "sp500_rank": 14}, "Computer_Vision": {"counts": [16, 20, 14, 27, 70, 88, 168, 100, 40, 0, 0], "total": 543, "table": "application", "rank": 15, "sp500_rank": 12}, "Analytics_and_Algorithms": {"counts": [1, 2, 0, 3, 4, 10, 14, 8, 6, 0, 0], "total": 48, "table": "application", "rank": 29, "sp500_rank": 26}, "Measuring_and_Testing": {"counts": [2, 5, 0, 1, 7, 14, 31, 12, 2, 0, 0], "total": 74, "table": "application", "rank": 35, "sp500_rank": 26}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 172, "rank": 721, "sp500_rank": 283}, "ai_jobs": {"counts": null, "total": 12, "rank": 812, "sp500_rank": 290}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 620, "country": "United States", "website": "https://www.oshkoshcorp.com/", "crunchbase": {"text": "fb3fc642-fdf6-8f49-182d-4889b5c03d54", "url": "https://www.crunchbase.com/organization/oshkosh-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/oshkosh-corporation"], "stage": "Mature", "name": "Oshkosh Corp", "patent_name": "oshkosh corp", "continent": "North America", "local_logo": "oshkosh_corp.png", "aliases": "Oshkosh; Oshkosh Corporation; Oshkosh Corporation, Inc", "permid_links": [{"text": 5050303085, "url": "https://permid.org/1-5050303085"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:OSK", "url": "https://www.google.com/finance/quote/nasdaq:osk"}, {"text": "NYSE:OSK", "url": "https://www.google.com/finance/quote/nyse:osk"}], "market_full": [{"text": "FWB:OK3", "url": "https://www.google.com/finance/quote/fwb:ok3"}, {"text": "NASDAQ:OSK", "url": "https://www.google.com/finance/quote/nasdaq:osk"}, {"text": "NYSE:OSK", "url": "https://www.google.com/finance/quote/nyse:osk"}, {"text": "LSE:0KDI", "url": "https://www.google.com/finance/quote/0kdi:lse"}], "crunchbase_description": "Oshkosh is a manufacturer and marketer of access equipment, specialty vehicles, and truck bodies.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Unmanned ground vehicle", "field_count": 1}], "clusters": [{"cluster_id": 13210, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 27, "referenced_count": 1}], "tasks": [{"referent": "developmental_learning", "task_count": 1}, {"referent": "safety_perception_recognition", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}], "methods": [{"referent": "automl", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [4, 3, 4, 2, 4, 4, 0, 6, 4, 0, 0], "total": 31, "isTopResearch": false, "rank": 710}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 1, 0, 5, 0, 1, 2, 3, 1, 0], "total": 13, "isTopResearch": false, "rank": 733}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 13.0, "isTopResearch": false, "rank": 445}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 171, "rank": 723}, "ai_jobs": {"counts": null, "total": 18, "rank": 716}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Oshkosh Corporation, formerly Oshkosh Truck, is an American industrial company that designs and builds specialty trucks, military vehicles, truck bodies, airport fire apparatus, and access equipment. The corporation also owns Pierce Manufacturing, a fire apparatus manufacturer in Appleton, Wisconsin and JLG Industries, a leading manufacturer of lift equipment, including aerial lifts, boom lifts, scissor lifts, telehandlers and low-level access lifts. Based in Oshkosh, Wisconsin, the company employs approximately 16,000 people around the world. It is organized in four primary business groups: access equipment, defense, fire and emergency, and commercial.", "wikipedia_link": "https://en.wikipedia.org/wiki/Oshkosh_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2417, "country": "United States", "website": "http://mohawkind.com/", "crunchbase": {"text": "0ef5abdb-ace8-b687-e77e-6c14781a5196", "url": "https://www.crunchbase.com/organization/mohawk-industries"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mohawk-industries"], "stage": "Mature", "name": "Mohawk Industries", "patent_name": "mohawk industries", "continent": "North America", "local_logo": "mohawk_industries.png", "aliases": "Mohawk; Mohawk Industries Inc; Mohawk Industries, Inc", "permid_links": [{"text": 4295904551, "url": "https://permid.org/1-4295904551"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MHK", "url": "https://www.google.com/finance/quote/mhk:nyse"}], "market_full": [{"text": "DUS:MWK", "url": "https://www.google.com/finance/quote/dus:mwk"}, {"text": "MEX:MHK*", "url": "https://www.google.com/finance/quote/mex:mhk*"}, {"text": "MUN:MWK", "url": "https://www.google.com/finance/quote/mun:mwk"}, {"text": "NYSE:MHK", "url": "https://www.google.com/finance/quote/mhk:nyse"}, {"text": "LSE:0K2F", "url": "https://www.google.com/finance/quote/0k2f:lse"}, {"text": "FRA:MWK", "url": "https://www.google.com/finance/quote/fra:mwk"}, {"text": "NYQ:MHK", "url": "https://www.google.com/finance/quote/mhk:nyq"}, {"text": "BER:MWK", "url": "https://www.google.com/finance/quote/ber:mwk"}, {"text": "BRN:MWK", "url": "https://www.google.com/finance/quote/brn:mwk"}, {"text": "ASE:MHK", "url": "https://www.google.com/finance/quote/ase:mhk"}, {"text": "DEU:MHK", "url": "https://www.google.com/finance/quote/deu:mhk"}, {"text": "SAO:M1HK34", "url": "https://www.google.com/finance/quote/m1hk34:sao"}, {"text": "MCX:MHK-RM", "url": "https://www.google.com/finance/quote/mcx:mhk-rm"}, {"text": "STU:MWK", "url": "https://www.google.com/finance/quote/mwk:stu"}], "crunchbase_description": "A leading global flooring manufacturer that creates products to enhance residential and commercial spaces around the world.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 171, "rank": 723, "fortune500_rank": 375}, "ai_jobs": {"counts": null, "total": 18, "rank": 716, "fortune500_rank": 362}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "Mohawk Industries is an American flooring manufacturer based in Calhoun, Georgia, United States. Mohawk produces floor covering products for residential and commercial applications in North America and residential applications in Europe. The company manufacturing portfolio consists of soft flooring products (carpet and rugs), hard flooring products (ceramic and porcelain tile, natural stone and hardwood flooring), laminate flooring, sheet vinyl and luxury vinyl tile. The company employs 37,800 in operations in Australia, Brazil, Canada, Europe, India, Malaysia, Mexico, New Zealand, Russia and the United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Mohawk_Industries", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2346, "country": "United States", "website": "https://www.harley-davidson.com/", "crunchbase": {"text": "b2e1bf57-3376-8140-f99b-3fe91cc06441", "url": "https://www.crunchbase.com/organization/harley-davidson-motor-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/harley-davidson-motor-company"], "stage": "Mature", "name": "Harley-Davidson", "patent_name": "harley-davidson", "continent": "North America", "local_logo": "harley-davidson.png", "aliases": "H-D U.S.A., Llc; Harley; Harley-Davidson Inc; Harley-Davidson Motor Company", "permid_links": [{"text": 4295904129, "url": "https://permid.org/1-4295904129"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HOG", "url": "https://www.google.com/finance/quote/hog:nyse"}], "market_full": [{"text": "BRN:HAR", "url": "https://www.google.com/finance/quote/brn:har"}, {"text": "STU:HAR", "url": "https://www.google.com/finance/quote/har:stu"}, {"text": "NYQ:HOG", "url": "https://www.google.com/finance/quote/hog:nyq"}, {"text": "DUS:HAR", "url": "https://www.google.com/finance/quote/dus:har"}, {"text": "MUN:HAR", "url": "https://www.google.com/finance/quote/har:mun"}, {"text": "ASE:HOG", "url": "https://www.google.com/finance/quote/ase:hog"}, {"text": "DEU:HOG", "url": "https://www.google.com/finance/quote/deu:hog"}, {"text": "BUE:HOG3", "url": "https://www.google.com/finance/quote/bue:hog3"}, {"text": "LSE:0QYY", "url": "https://www.google.com/finance/quote/0qyy:lse"}, {"text": "NYSE:HOG", "url": "https://www.google.com/finance/quote/hog:nyse"}, {"text": "SAO:H1OG34", "url": "https://www.google.com/finance/quote/h1og34:sao"}, {"text": "VIE:HOG", "url": "https://www.google.com/finance/quote/hog:vie"}, {"text": "MEX:HOG", "url": "https://www.google.com/finance/quote/hog:mex"}, {"text": "BER:HAR", "url": "https://www.google.com/finance/quote/ber:har"}, {"text": "FRA:HAR", "url": "https://www.google.com/finance/quote/fra:har"}, {"text": "MOEX:HOG-RM", "url": "https://www.google.com/finance/quote/hog-rm:moex"}, {"text": "GER:HARX", "url": "https://www.google.com/finance/quote/ger:harx"}], "crunchbase_description": "Harley-Davidson Motor Company manufactures heavyweight motorcycles and offers motorcycle parts, accessories, and other related services.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 0, 2, 1, 2, 0, 0, 1, 0, 0, 0], "total": 8, "isTopResearch": false, "rank": 980, "fortune500_rank": 333}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 171, "rank": 723, "fortune500_rank": 375}, "ai_jobs": {"counts": null, "total": 12, "rank": 812, "fortune500_rank": 400}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "Harley-Davidson, Inc., H-D, or Harley, is an American motorcycle manufacturer founded in 1903 in Milwaukee, Wisconsin. Along with Indian, it was one of two major American motorcycle manufacturers to survive the Great Depression. The company has survived numerous ownership arrangements, subsidiary arrangements, periods of poor economic health and product quality, and intense global competition to become one of the world's largest motorcycle manufacturers and an iconic brand widely known for its loyal following. There are owner clubs and events worldwide, as well as a company-sponsored, brand-focused museum.", "wikipedia_link": "https://en.wikipedia.org/wiki/Harley-Davidson", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1927, "country": "Mexico", "website": "https://www.americamovil.com/", "crunchbase": {"text": " 585e3fe6-8d99-3729-fe33-fc047d86cc82", "url": " https://www.crunchbase.com/organization/amrica-mvil"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/am-rica-m-vil"], "stage": "Unknown", "name": "Am\u00e9rica M\u00f3vil", "patent_name": "Am\u00e9rica M\u00f3vil", "continent": "North America", "local_logo": null, "aliases": "Amx; Am\u00e9rica M\u00f3vil", "permid_links": [{"text": 4295884344, "url": "https://permid.org/1-4295884344"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "sp500_rank": 446}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 171, "rank": 723, "sp500_rank": 284}, "ai_jobs": {"counts": null, "total": 11, "rank": 829, "sp500_rank": 294}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1435, "country": "United States", "website": "http://loadsmart.com/", "crunchbase": {"text": "e194c71e-f337-4bcc-4791-6501369dbd09", "url": "https://www.crunchbase.com/organization/loadsmart"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/loadsmart"], "stage": "Mature", "name": "Loadsmart", "patent_name": "loadsmart", "continent": "North America", "local_logo": "loadsmart.png", "aliases": "Loadsmart Inc; Loadsmart, Inc", "permid_links": [{"text": 5045864550, "url": "https://permid.org/1-5045864550"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Loadsmart helps shippers move their freight fast and carriers keep trucks full.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 170, "rank": 727}, "ai_jobs": {"counts": null, "total": 22, "rank": 667}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We can now bring you integrated and greatly expanded solutions that combine genetics, chemistry and precision agriculture. We help farmers maximize the value of their investment through high-performing genetics and effective science-based solutions that optimize yield and crop quality.", "company_site_link": "https://www.corteva.com/products-and-services.html", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2256, "country": "United States", "website": "https://www.chipotle.com/", "crunchbase": {"text": "09dbda1a-ddf6-93a5-4d93-e5bea9fc4c2a", "url": "https://www.crunchbase.com/organization/chipotle-mexican-grill"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/chipotle-mexican-grill"], "stage": "Mature", "name": "Chipotle Mexican Grill", "patent_name": "chipotle mexican grill", "continent": "North America", "local_logo": "chipotle_mexican_grill.png", "aliases": "Chipotle; Chipotle Mexican Grill Inc", "permid_links": [{"text": 4295900112, "url": "https://permid.org/1-4295900112"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CMG", "url": "https://www.google.com/finance/quote/cmg:nyse"}], "market_full": [{"text": "STU:C9F", "url": "https://www.google.com/finance/quote/c9f:stu"}, {"text": "LSE:0HXW", "url": "https://www.google.com/finance/quote/0hxw:lse"}, {"text": "MUN:C9F", "url": "https://www.google.com/finance/quote/c9f:mun"}, {"text": "SAO:C1MG34", "url": "https://www.google.com/finance/quote/c1mg34:sao"}, {"text": "BRN:C9F", "url": "https://www.google.com/finance/quote/brn:c9f"}, {"text": "GER:C9FX", "url": "https://www.google.com/finance/quote/c9fx:ger"}, {"text": "DEU:C9F", "url": "https://www.google.com/finance/quote/c9f:deu"}, {"text": "VIE:CHMG", "url": "https://www.google.com/finance/quote/chmg:vie"}, {"text": "BER:C9F", "url": "https://www.google.com/finance/quote/ber:c9f"}, {"text": "MCX:CMG-RM", "url": "https://www.google.com/finance/quote/cmg-rm:mcx"}, {"text": "ASE:CMG", "url": "https://www.google.com/finance/quote/ase:cmg"}, {"text": "NYSE:CMG", "url": "https://www.google.com/finance/quote/cmg:nyse"}, {"text": "FRA:C9F", "url": "https://www.google.com/finance/quote/c9f:fra"}, {"text": "MEX:CMG*", "url": "https://www.google.com/finance/quote/cmg*:mex"}, {"text": "NYQ:CMG", "url": "https://www.google.com/finance/quote/cmg:nyq"}, {"text": "DUS:C9F", "url": "https://www.google.com/finance/quote/c9f:dus"}], "crunchbase_description": "Chipotle Mexican Grill is a chain of restaurants that specializes in burritos and tacos.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 170, "rank": 727, "fortune500_rank": 377}, "ai_jobs": {"counts": null, "total": 22, "rank": 667, "fortune500_rank": 336}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Chipotle Mexican Grill, Inc. , often known simply as Chipotle, is an American chain of fast casual restaurants in the United States, United Kingdom, Canada, Germany, and France, specializing in tacos and Mission burritos that are made to order in front of the customer. Its name derives from chipotle, the Nahuatl name for a smoked and dried jalape\u00f1o chili pepper. The company trades on the New York Stock Exchange under the ticker symbol CMG.", "wikipedia_link": "https://en.wikipedia.org/wiki/Chipotle_Mexican_Grill", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2945, "country": "United States", "website": "http://www.sms.com", "crunchbase": {"text": "ffa8662e-6ea2-4b11-2fa2-a3da332bf71a", "url": "https://www.crunchbase.com/organization/smart-medical-services-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sms-data-products"], "stage": "Unknown", "name": "SMS Data Products Group Inc", "patent_name": "sms data products group inc", "continent": "North America", "local_logo": "sms_data_products_group_inc.png", "aliases": "Sms Data Products Group, Inc; Sms Technologies", "permid_links": [{"text": 4296501144, "url": "https://permid.org/1-4296501144"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "SMS is a company which provides advanced technology products and services to the Federal Government.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 170, "rank": 727}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We turn our customers\u2019 challenges into workable solutions, serving critical agencies and deploying top engineers and architects to support federal government operations.", "company_site_link": "http://www.sms.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2325, "country": "United States", "website": "https://www.flowserve.com/", "crunchbase": {"text": "40f8d24b-044c-a2c3-72f4-cfbc6dcf350d", "url": "https://www.crunchbase.com/organization/flowserve"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/flowserve"], "stage": "Mature", "name": "Flowserve Corporation", "patent_name": "flowserve corporation", "continent": "North America", "local_logo": "flowserve_corporation.png", "aliases": "Flowserve; Flowserve Corp", "permid_links": [{"text": 4295904011, "url": "https://permid.org/1-4295904011"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:FLS", "url": "https://www.google.com/finance/quote/fls:nyse"}], "market_full": [{"text": "LSE:0IQE", "url": "https://www.google.com/finance/quote/0iqe:lse"}, {"text": "MEX:FLS", "url": "https://www.google.com/finance/quote/fls:mex"}, {"text": "NYQ:FLS", "url": "https://www.google.com/finance/quote/fls:nyq"}, {"text": "DEU:FWV", "url": "https://www.google.com/finance/quote/deu:fwv"}, {"text": "STU:FWV", "url": "https://www.google.com/finance/quote/fwv:stu"}, {"text": "BER:FWV", "url": "https://www.google.com/finance/quote/ber:fwv"}, {"text": "BRN:FWV", "url": "https://www.google.com/finance/quote/brn:fwv"}, {"text": "FRA:FWV", "url": "https://www.google.com/finance/quote/fra:fwv"}, {"text": "ASE:FLS", "url": "https://www.google.com/finance/quote/ase:fls"}, {"text": "SAO:F1LS34", "url": "https://www.google.com/finance/quote/f1ls34:sao"}, {"text": "NYSE:FLS", "url": "https://www.google.com/finance/quote/fls:nyse"}, {"text": "MUN:FWV", "url": "https://www.google.com/finance/quote/fwv:mun"}, {"text": "DUS:FWV", "url": "https://www.google.com/finance/quote/dus:fwv"}], "crunchbase_description": "Flowserve specializes in supplying pumps, valves, seals, automation, and services to the power, oil, gas, chemical, and other industries.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [6, 4, 8, 3, 7, 7, 4, 5, 2, 1, 0], "total": 47, "isTopResearch": false, "rank": 625, "fortune500_rank": 232}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 169, "rank": 730, "fortune500_rank": 378}, "ai_jobs": {"counts": null, "total": 14, "rank": 775, "fortune500_rank": 384}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "The Flowserve Corporation is an American multinational corporation and one of the largest suppliers of industrial and environmental machinery such as pumps, valves, end face mechanical seals, automation, and services to the power, oil, gas, chemical and other industries. Headquartered in Irving, Texas, a suburb of Dallas, Flowserve has over 18,000 employees in more than 55 countries. Flowserve sells products and offers aftermarket services to engineering and construction firms, original equipment manufacturers, distributors and end users. The Flowserve brand name originated in 1997 with a merger of BW/IP and Durco International.", "wikipedia_link": "https://en.wikipedia.org/wiki/Flowserve", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2094, "country": null, "website": "https://www.dzbank.com/", "crunchbase": {"text": " a3eb746c-876a-8fdb-4f11-9a23e921f7a2", "url": " https://www.crunchbase.com/organization/dz-bank"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dzbank"], "stage": "Unknown", "name": "Dz Bank", "patent_name": "DZ Bank", "continent": null, "local_logo": null, "aliases": "DZ Bank; Dz Bank Ag", "permid_links": [{"text": 4296420951, "url": "https://permid.org/1-4296420951"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 28660, "cluster_count": 2}, {"cluster_id": 73350, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 2094, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "unsupervised_pre_training", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "mad_learning", "method_count": 1}, {"referent": "hermite_activation", "method_count": 1}, {"referent": "autoencoder", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "inception_a", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "image_representations", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [4, 4, 2, 6, 6, 11, 3, 6, 3, 1, 0], "total": 46, "isTopResearch": false, "rank": 633, "sp500_rank": 334}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 2, 0, 2, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "sp500_rank": 275}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 2, 4, 5, 6, 3, 0], "total": 20, "isTopResearch": false, "rank": 684, "sp500_rank": 285}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 1.0, 0, 2.5, 0, 0, 0], "total": 5.0, "isTopResearch": false, "rank": 713, "sp500_rank": 284}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 167, "rank": 731, "sp500_rank": 285}, "ai_jobs": {"counts": null, "total": 15, "rank": 754, "sp500_rank": 284}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 2453, "country": "United States", "website": "https://www.pentair.com/", "crunchbase": {"text": "0f2ecaa1-104d-7bf2-a0da-b97061fc6de0", "url": "https://www.crunchbase.com/organization/pentair"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pentair"], "stage": "Mature", "name": "Pentair PLC", "patent_name": "pentair plc", "continent": "North America", "local_logo": "pentair_plc.png", "aliases": "Pentair", "permid_links": [{"text": 5040925358, "url": "https://permid.org/1-5040925358"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PNR", "url": "https://www.google.com/finance/quote/nyse:pnr"}], "market_full": [{"text": "STU:PNT", "url": "https://www.google.com/finance/quote/pnt:stu"}, {"text": "ASE:PNR", "url": "https://www.google.com/finance/quote/ase:pnr"}, {"text": "DUS:PNT", "url": "https://www.google.com/finance/quote/dus:pnt"}, {"text": "NYSE:PNR", "url": "https://www.google.com/finance/quote/nyse:pnr"}, {"text": "MUN:PNT", "url": "https://www.google.com/finance/quote/mun:pnt"}, {"text": "FRA:PNT", "url": "https://www.google.com/finance/quote/fra:pnt"}, {"text": "BRN:PNT", "url": "https://www.google.com/finance/quote/brn:pnt"}, {"text": "GER:PNTX", "url": "https://www.google.com/finance/quote/ger:pntx"}, {"text": "DEU:PNT", "url": "https://www.google.com/finance/quote/deu:pnt"}, {"text": "NYQ:PNR", "url": "https://www.google.com/finance/quote/nyq:pnr"}, {"text": "LSE:0Y5X", "url": "https://www.google.com/finance/quote/0y5x:lse"}, {"text": "SAO:P1NR34", "url": "https://www.google.com/finance/quote/p1nr34:sao"}], "crunchbase_description": "Pentair is a global diversified industrial company that provides water treatment and sustainable solutions.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 167, "rank": 731, "fortune500_rank": 379}, "ai_jobs": {"counts": null, "total": 13, "rank": 790, "fortune500_rank": 393}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Pentair makes the most of life\u2019s essential resources, from great tasting water straight from the kitchen faucet, to industrial water management and everywhere in between. We deliver solutions that help people move, improve and enjoy water, and sustainable applications that help ensure the health of the world.", "company_site_link": "https://www.pentair.com/en-us/about-pentair.html", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2492, "country": "United States", "website": "https://www.snapon.com/", "crunchbase": {"text": "b16b5d0a-f2d2-6eb1-b2fa-541671ce9dc5", "url": "https://www.crunchbase.com/organization/snap-on"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/snap-on"], "stage": "Mature", "name": "Snap-On", "patent_name": "snap-on", "continent": "North America", "local_logo": "snap-on.png", "aliases": "Snap-On Incorporated; Snap-on Inc", "permid_links": [{"text": 4295904934, "url": "https://permid.org/1-4295904934"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SNA", "url": "https://www.google.com/finance/quote/nyse:sna"}], "market_full": [{"text": "FRA:SPU", "url": "https://www.google.com/finance/quote/fra:spu"}, {"text": "GER:SPUX", "url": "https://www.google.com/finance/quote/ger:spux"}, {"text": "MCX:SNA-RM", "url": "https://www.google.com/finance/quote/mcx:sna-rm"}, {"text": "BER:SPU", "url": "https://www.google.com/finance/quote/ber:spu"}, {"text": "NYSE:SNA", "url": "https://www.google.com/finance/quote/nyse:sna"}, {"text": "ASE:SNA", "url": "https://www.google.com/finance/quote/ase:sna"}, {"text": "BUE:SNA3", "url": "https://www.google.com/finance/quote/bue:sna3"}, {"text": "MUN:SPU", "url": "https://www.google.com/finance/quote/mun:spu"}, {"text": "HAN:SPU", "url": "https://www.google.com/finance/quote/han:spu"}, {"text": "SAO:S1NA34", "url": "https://www.google.com/finance/quote/s1na34:sao"}, {"text": "DEU:SNA", "url": "https://www.google.com/finance/quote/deu:sna"}, {"text": "STU:SPU", "url": "https://www.google.com/finance/quote/spu:stu"}, {"text": "NYQ:SNA", "url": "https://www.google.com/finance/quote/nyq:sna"}, {"text": "LSE:0L7G", "url": "https://www.google.com/finance/quote/0l7g:lse"}, {"text": "DUS:SPU", "url": "https://www.google.com/finance/quote/dus:spu"}, {"text": "BRN:SPU", "url": "https://www.google.com/finance/quote/brn:spu"}], "crunchbase_description": "Snap-on is a global innovator, manufacturer and marketer of tools, diagnostics, equipment, software and service.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 10, 0, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 167, "rank": 731, "fortune500_rank": 379}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094, "fortune500_rank": 452}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Snap-on Incorporated is an American designer, manufacturer and marketer of high-end tools and equipment for professional use in the transportation industry including the automotive, heavy duty, equipment, marine, aviation, and railroad industries. Snap-on also distributes lower-end tools under the brand name Blue-Point. Their primary competitors include Matco, Mac Tools and Cornwell Tools.", "wikipedia_link": "https://en.wikipedia.org/wiki/Snap-on", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1407, "country": "United States", "website": "https://concertohealthai.com/", "crunchbase": {"text": "6adedecd-7ef9-4b2f-a0ce-485d7262d227", "url": "https://www.crunchbase.com/organization/concerto-healthai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/concertai"], "stage": "Unknown", "name": "Concerto HealthAI", "patent_name": "concerto healthai", "continent": "North America", "local_logo": null, "aliases": "Concertai; Concerto Healthai Solutions Llc; Concerto Healthcare Inc", "permid_links": [{"text": 5068476765, "url": "https://permid.org/1-5068476765"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 20, 34, 37, 29, 0], "total": 120, "isTopResearch": false, "rank": 482}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 166, "rank": 734}, "ai_jobs": {"counts": null, "total": 108, "rank": 325}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our mission is to accelerate insights and outcomes for patients through leading real-world data, AI technologies, and scientific expertise in partnership with the leading biomedical innovators, healthcare providers, and medical societies.", "company_site_link": "https://www.concertai.com/about-us/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 3005, "country": "United States", "website": "https://www.teksynap.com/", "crunchbase": {"text": "02620f13-f39d-4c50-aade-95d6da78eac7", "url": "https://www.crunchbase.com/organization/teksynap"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/teksynap"], "stage": "Unknown", "name": "TekSynap", "patent_name": "teksynap", "continent": "North America", "local_logo": "teksynap.png", "aliases": "Synaptek Inc", "permid_links": [{"text": 4296594887, "url": "https://permid.org/1-4296594887"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "TekSynap is a well planned information management environment that offers to meet the business needs of Local Government customers.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 166, "rank": 734}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "TekSynap provides information technology and other technical services to federal government agencies as a prime contractor and through our system integration partners.", "company_site_link": "https://www.teksynap.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3146, "country": "United States", "website": "https://www.synnexcorp.com/", "crunchbase": {"text": " 9f8f9559-76fc-46bf-9265-fdd3568c19ab ", "url": " https://www.crunchbase.com/organization/td-synnex "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/synnexcorporation"], "stage": "Mature", "name": "Synnex", "patent_name": "Synnex", "continent": "North America", "local_logo": null, "aliases": "Synnex; Synnex Corporation", "permid_links": [{"text": 4295899452, "url": "https://permid.org/1-4295899452"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SNX", "url": "https://www.google.com/finance/quote/NYSE:SNX"}], "market_full": [{"text": "MUN:SUX", "url": "https://www.google.com/finance/quote/MUN:SUX"}, {"text": "FRA:SUX", "url": "https://www.google.com/finance/quote/FRA:SUX"}, {"text": "STU:SUX", "url": "https://www.google.com/finance/quote/STU:SUX"}, {"text": "NYSE:SNX", "url": "https://www.google.com/finance/quote/NYSE:SNX"}, {"text": "ASE:SNX", "url": "https://www.google.com/finance/quote/ASE:SNX"}, {"text": "BRN:SUX", "url": "https://www.google.com/finance/quote/BRN:SUX"}, {"text": "NYQ:SNX", "url": "https://www.google.com/finance/quote/NYQ:SNX"}, {"text": "DEU:SNX", "url": "https://www.google.com/finance/quote/DEU:SNX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "sp500_rank": 446}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 165, "rank": 736, "sp500_rank": 286}, "ai_jobs": {"counts": null, "total": 8, "rank": 908, "sp500_rank": 311}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 78, "country": "China", "website": "https://www.dji.com/", "crunchbase": {"text": "43149a55-3eb5-b954-c600-f1f00a07070b", "url": "https://www.crunchbase.com/organization/dji"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dji"], "stage": "Mature", "name": "DJI", "patent_name": "dji", "continent": "Asia", "local_logo": "dji.png", "aliases": "Dji Innovations; Dji International Co Ltd; Shenzhen Dji Technology Co., Ltd; \u5927\u7586\u521b\u65b0; \u6df1\u5733\u5e02\u5927\u7586\u521b\u65b0\u79d1\u6280\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5060004785, "url": "https://permid.org/1-5060004785"}], "parent_info": "Iflight Technology Company Limited", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "DJI develops and manufactures innovative drone and camera technology for commercial and recreational use.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 3}, {"field_name": "RGB color model", "field_count": 1}, {"field_name": "Progressive refinement", "field_count": 1}, {"field_name": "Video camera", "field_count": 1}, {"field_name": "Object (computer science)", "field_count": 1}, {"field_name": "Transfer of learning", "field_count": 1}, {"field_name": "Digital camera", "field_count": 1}, {"field_name": "Intrinsics", "field_count": 1}, {"field_name": "Pose", "field_count": 1}, {"field_name": "Pixel", "field_count": 1}], "clusters": [{"cluster_id": 1106, "cluster_count": 2}, {"cluster_id": 23307, "cluster_count": 2}, {"cluster_id": 2410, "cluster_count": 2}, {"cluster_id": 25609, "cluster_count": 2}, {"cluster_id": 28601, "cluster_count": 2}, {"cluster_id": 52707, "cluster_count": 1}, {"cluster_id": 36820, "cluster_count": 1}, {"cluster_id": 64784, "cluster_count": 1}, {"cluster_id": 31316, "cluster_count": 1}, {"cluster_id": 17884, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 75}, {"ref_CSET_id": 101, "referenced_count": 57}, {"ref_CSET_id": 87, "referenced_count": 30}, {"ref_CSET_id": 6, "referenced_count": 26}, {"ref_CSET_id": 223, "referenced_count": 17}, {"ref_CSET_id": 127, "referenced_count": 12}, {"ref_CSET_id": 184, "referenced_count": 12}, {"ref_CSET_id": 23, "referenced_count": 7}, {"ref_CSET_id": 790, "referenced_count": 7}, {"ref_CSET_id": 783, "referenced_count": 7}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "autonomous_driving", "task_count": 4}, {"referent": "classification_tasks", "task_count": 3}, {"referent": "motion_planning", "task_count": 3}, {"referent": "unmanned_aerial_vehicles", "task_count": 2}, {"referent": "trajectory_prediction", "task_count": 2}, {"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "object_detection", "task_count": 2}, {"referent": "image_manipulation", "task_count": 2}, {"referent": "image_enhancement", "task_count": 2}], "methods": [{"referent": "1d_cnn", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "recurrent_neural_networks", "method_count": 3}, {"referent": "metrix", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "hit_detector", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "loss_functions", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "cgnn", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 2, 5, 2, 6, 9, 10, 10, 11, 0], "total": 56, "isTopResearch": false, "rank": 599}, "ai_publications": {"counts": [0, 1, 2, 4, 2, 5, 7, 7, 6, 4, 0], "total": 38, "isTopResearch": false, "rank": 211}, "ai_publications_growth": {"counts": [], "total": -15.873015873015873, "isTopResearch": false, "rank": 1294}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 3, 1, 1, 1, 0], "total": 7, "isTopResearch": false, "rank": 134}, "citation_counts": {"counts": [0, 0, 0, 5, 6, 25, 76, 212, 314, 277, 8], "total": 923, "isTopResearch": false, "rank": 198}, "cv_pubs": {"counts": [0, 0, 1, 4, 1, 3, 6, 7, 2, 3, 0], "total": 27, "isTopResearch": true, "rank": 120}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 1, 1, 2, 0, 2, 1, 2, 4, 1, 0], "total": 14, "isTopResearch": true, "rank": 94}, "citations_per_article": {"counts": [0, 0.0, 0.0, 1.25, 3.0, 5.0, 10.857142857142858, 30.285714285714285, 52.333333333333336, 69.25, 0], "total": 24.289473684210527, "isTopResearch": false, "rank": 252}}, "patents": {"ai_patents": {"counts": [0, 7, 3, 7, 21, 33, 54, 44, 3, 1, 0], "total": 173, "table": null, "rank": 114}, "ai_patents_growth": {"counts": [], "total": 34.08690075356742, "table": null, "rank": 259}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 70, 30, 70, 210, 330, 540, 440, 30, 10, 0], "total": 1730, "table": null, "rank": 114}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240}, "Transportation": {"counts": [0, 6, 3, 7, 8, 12, 6, 2, 0, 0, 0], "total": 44, "table": "industry", "rank": 49}, "Industrial_and_Manufacturing": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 7}, "Agricultural": {"counts": [0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 29}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 2, 0, 2, 8, 8, 7, 7, 1, 0, 0], "total": 35, "table": "industry", "rank": 140}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 2, 0, 3, 4, 10, 10, 5, 1, 0, 0], "total": 35, "table": "industry", "rank": 96}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345}, "Energy_Management": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 117}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298}, "Control": {"counts": [0, 6, 3, 7, 6, 12, 6, 5, 0, 0, 0], "total": 45, "table": "application", "rank": 55}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 23}, "Computer_Vision": {"counts": [0, 3, 0, 4, 8, 21, 36, 19, 0, 1, 0], "total": 92, "table": "application", "rank": 71}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191}, "Measuring_and_Testing": {"counts": [0, 3, 1, 4, 3, 6, 5, 2, 0, 0, 0], "total": 24, "table": "application", "rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 164, "rank": 737}, "ai_jobs": {"counts": null, "total": 28, "rank": 616}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "SZ DJI Technology Co., Ltd. or Shenzhen DJI Sciences and Technologies Ltd. (Chinese: \u6df1\u5733\u5927\u7586\u521b\u65b0\u79d1\u6280\u6709\u9650\u516c\u53f8) in full, more popularly known as its trade name DJI, which stands for Da-Jiang Innovations (\u5927\u7586\u521b\u65b0; 'Great Frontier Innovations'), is a Chinese technology company headquartered in Shenzhen, Guangdong with manufacturing facilities throughout the world. DJI manufactures commercial unmanned aerial vehicles (drones) for aerial photography and videography. It also designs and manufactures camera gimbals, action cameras, camera stabilizers, flight platforms and propulsion systems and flight control systems.", "wikipedia_link": "https://en.wikipedia.org/wiki/DJI", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2404, "country": "United States", "website": "https://www.marketaxess.com/", "crunchbase": {"text": "aa83d1f5-ea28-ad33-38e5-b088422f05c4", "url": "https://www.crunchbase.com/organization/marketaxess"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/marketaxess"], "stage": "Mature", "name": "MarketAxess", "patent_name": "marketaxess", "continent": "North America", "local_logo": "marketaxess.png", "aliases": "Marketaxess Holdings Inc", "permid_links": [{"text": 4295915617, "url": "https://permid.org/1-4295915617"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:MKTX", "url": "https://www.google.com/finance/quote/mktx:nasdaq"}], "market_full": [{"text": "BRN:MWI", "url": "https://www.google.com/finance/quote/brn:mwi"}, {"text": "NASDAQ:MKTX", "url": "https://www.google.com/finance/quote/mktx:nasdaq"}, {"text": "DUS:MWI", "url": "https://www.google.com/finance/quote/dus:mwi"}, {"text": "BER:MWI", "url": "https://www.google.com/finance/quote/ber:mwi"}, {"text": "GER:MWIX", "url": "https://www.google.com/finance/quote/ger:mwix"}, {"text": "MUN:MWI", "url": "https://www.google.com/finance/quote/mun:mwi"}, {"text": "MOEX:MKTX-RM", "url": "https://www.google.com/finance/quote/mktx-rm:moex"}, {"text": "MEX:MKTX*", "url": "https://www.google.com/finance/quote/mex:mktx*"}, {"text": "STU:MWI", "url": "https://www.google.com/finance/quote/mwi:stu"}, {"text": "DEU:MKTX", "url": "https://www.google.com/finance/quote/deu:mktx"}, {"text": "FRA:MWI", "url": "https://www.google.com/finance/quote/fra:mwi"}, {"text": "SAO:M1KT34", "url": "https://www.google.com/finance/quote/m1kt34:sao"}], "crunchbase_description": "MarketAxess operates a leading electronic trading platform that enables fixed-income market participants for trade corporate bonds.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 164, "rank": 737, "fortune500_rank": 381}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "fortune500_rank": 409}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "MarketAxess Holdings Inc. (MarketAxess) is an international financial technology company that operates an electronic trading platform for the institutional credit markets, and also provides market data and post-trade services. It enables institutional investors and broker-dealers to trade credit instruments, including corporate bonds, and other types of fixed income products.", "wikipedia_link": "https://en.wikipedia.org/wiki/MarketAxess", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2206, "country": "United States", "website": "https://www.altria.com/", "crunchbase": {"text": "cff8f8dc-4976-3599-3548-c0775e5a6bf6", "url": "https://www.crunchbase.com/organization/altria"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/altria"], "stage": "Mature", "name": "Altria Group Inc", "patent_name": "altria group inc", "continent": "North America", "local_logo": "altria_group_inc.png", "aliases": "Altria; Altria Group, Inc; Philip Morris Companies. Inc", "permid_links": [{"text": 4295903207, "url": "https://permid.org/1-4295903207"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MO", "url": "https://www.google.com/finance/quote/mo:nyse"}], "market_full": [{"text": "ASE:BFH", "url": "https://www.google.com/finance/quote/BFH:ase"}, {"text": "HAN:PHM7", "url": "https://www.google.com/finance/quote/han:phm7"}, {"text": "BRN:PHM7", "url": "https://www.google.com/finance/quote/brn:phm7"}, {"text": "BUE:MO3", "url": "https://www.google.com/finance/quote/bue:mo3"}, {"text": "DEU:MO", "url": "https://www.google.com/finance/quote/deu:mo"}, {"text": "NYSE:MO", "url": "https://www.google.com/finance/quote/mo:nyse"}, {"text": "NYQ:MO", "url": "https://www.google.com/finance/quote/mo:nyq"}, {"text": "MEX:MO*", "url": "https://www.google.com/finance/quote/mex:mo*"}, {"text": "BER:PHM7", "url": "https://www.google.com/finance/quote/ber:phm7"}, {"text": "LSE:0R31", "url": "https://www.google.com/finance/quote/0r31:lse"}, {"text": "STU:PHM7", "url": "https://www.google.com/finance/quote/phm7:stu"}, {"text": "SAO:MOOO34", "url": "https://www.google.com/finance/quote/mooo34:sao"}, {"text": "FRA:PHM7", "url": "https://www.google.com/finance/quote/fra:phm7"}, {"text": "SWX:MO", "url": "https://www.google.com/finance/quote/mo:swx"}, {"text": "HAM:PHM7", "url": "https://www.google.com/finance/quote/ham:phm7"}, {"text": "MUN:PHM7", "url": "https://www.google.com/finance/quote/mun:phm7"}, {"text": "MCX:MO-RM", "url": "https://www.google.com/finance/quote/mcx:mo-rm"}, {"text": "SGO:MO", "url": "https://www.google.com/finance/quote/mo:sgo"}, {"text": "ASE:MO", "url": "https://www.google.com/finance/quote/ase:mo"}, {"text": "DUS:PHM7", "url": "https://www.google.com/finance/quote/dus:phm7"}, {"text": "GER:PHM7X", "url": "https://www.google.com/finance/quote/ger:phm7x"}, {"text": "SGO:MOCL", "url": "https://www.google.com/finance/quote/mocl:sgo"}, {"text": "VIE:ALTR", "url": "https://www.google.com/finance/quote/altr:vie"}], "crunchbase_description": "Altria operates as a producers and marketers of tobacco, cigarettes and related products.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Hyperspectral imaging", "field_count": 1}], "clusters": [{"cluster_id": 5672, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "hyperspectral", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [18, 7, 8, 13, 7, 16, 9, 15, 19, 34, 1], "total": 147, "isTopResearch": false, "rank": 457, "fortune500_rank": 175}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 1, 1, 0], "total": 4, "isTopResearch": false, "rank": 833, "fortune500_rank": 228}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735, "fortune500_rank": 206}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 4, "table": null, "rank": 565, "fortune500_rank": 176}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [20, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0], "total": 40, "table": null, "rank": 565, "fortune500_rank": 176}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [2, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 158, "fortune500_rank": 65}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 131, "fortune500_rank": 46}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 29, "fortune500_rank": 8}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 119, "fortune500_rank": 31}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "fortune500_rank": 83}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 163, "rank": 739, "fortune500_rank": 382}, "ai_jobs": {"counts": null, "total": 60, "rank": 442, "fortune500_rank": 233}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages", "wikipedia_description": "Altria Group, Inc. (previously known as Philip Morris Companies, Inc.) is an American corporation and one of the world's largest producers and marketers of tobacco, cigarettes and related products. It operates worldwide and is headquartered in unincorporated Henrico County, Virginia, just outside the city of Richmond.", "wikipedia_link": "https://en.wikipedia.org/wiki/Altria", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 3132, "country": "Singapore", "website": "https://www.olamgroup.com/", "crunchbase": {"text": " f5524be9-b6f1-a3f7-4491-03352562194a", "url": " https://www.crunchbase.com/organization/olam-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/olam-international"], "stage": "Mature", "name": "Olam International", "patent_name": "Olam International", "continent": "Asia", "local_logo": null, "aliases": "Olam Group; Olam International; Olam International Limited", "permid_links": [{"text": 4295888157, "url": "https://permid.org/1-4295888157"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "SES:VC2", "url": "https://www.google.com/finance/quote/SES:VC2"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 2, 3, 6, 5, 5, 2, 1, 0], "total": 24, "isTopResearch": false, "rank": 767, "sp500_rank": 363}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 163, "rank": 739, "sp500_rank": 287}, "ai_jobs": {"counts": null, "total": 26, "rank": 639, "sp500_rank": 268}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2262, "country": "United States", "website": "https://www.thecloroxcompany.com/", "crunchbase": {"text": "459e8095-b488-6a22-0e93-bb13568a47ba", "url": "https://www.crunchbase.com/organization/the-clorox-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-clorox-company"], "stage": "Mature", "name": "The Clorox Company", "patent_name": "the clorox company", "continent": "North America", "local_logo": "the_clorox_company.png", "aliases": "Clorox; Clorox Co", "permid_links": [{"text": 4295903733, "url": "https://permid.org/1-4295903733"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CLX", "url": "https://www.google.com/finance/quote/clx:nyse"}], "market_full": [{"text": "SAO:CLXC34", "url": "https://www.google.com/finance/quote/clxc34:sao"}, {"text": "MUN:CXX", "url": "https://www.google.com/finance/quote/cxx:mun"}, {"text": "LSE:0I0J", "url": "https://www.google.com/finance/quote/0i0j:lse"}, {"text": "STU:CXX", "url": "https://www.google.com/finance/quote/cxx:stu"}, {"text": "MEX:CLX*", "url": "https://www.google.com/finance/quote/clx*:mex"}, {"text": "DEU:CLX", "url": "https://www.google.com/finance/quote/clx:deu"}, {"text": "DUS:CXX", "url": "https://www.google.com/finance/quote/cxx:dus"}, {"text": "GER:CXXX", "url": "https://www.google.com/finance/quote/cxxx:ger"}, {"text": "ASE:CLX", "url": "https://www.google.com/finance/quote/ase:clx"}, {"text": "FRA:CXX", "url": "https://www.google.com/finance/quote/cxx:fra"}, {"text": "BER:CXX", "url": "https://www.google.com/finance/quote/ber:cxx"}, {"text": "NYSE:CLX", "url": "https://www.google.com/finance/quote/clx:nyse"}, {"text": "BRN:CXX", "url": "https://www.google.com/finance/quote/brn:cxx"}, {"text": "MCX:CLX-RM", "url": "https://www.google.com/finance/quote/clx-rm:mcx"}, {"text": "NYQ:CLX", "url": "https://www.google.com/finance/quote/clx:nyq"}], "crunchbase_description": "The Clorox Company (NYSE: CLX) is a leading multinational manufacturer and marketer of consumer and professional products.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 2, 0, 2, 3, 1, 2, 2, 3, 0], "total": 15, "isTopResearch": false, "rank": 859, "fortune500_rank": 305}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 162, "rank": 741, "fortune500_rank": 383}, "ai_jobs": {"counts": null, "total": 49, "rank": 487, "fortune500_rank": 258}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services", "wikipedia_description": "The Clorox Company (formerly Clorox Chemical Company), based in Oakland, California, is an American global manufacturer and marketer of consumer and professional products, with approximately 8,700 employees worldwide, as of June 30, 2018. Net sales in the company's 2019 fiscal year were US$6.2 billion. Clorox ranked no. 468 on Fortune's 2018 Fortune 500 list.", "wikipedia_link": "https://en.wikipedia.org/wiki/Clorox", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1899, "country": "India", "website": "https://ongcindia.com/", "crunchbase": {"text": "a800b1b5-978f-0ec3-a391-5d310ac4b081", "url": "https://www.crunchbase.com/organization/ongc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ongc"], "stage": "Mature", "name": "Oil & Natural Gas", "patent_name": "Oil & Natural Gas", "continent": "Asia", "local_logo": "oil_&_natural_gas.png", "aliases": "Oil & Natural Gas; Oil & Natural Gas Companies", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "NSI:IOC", "url": "https://www.google.com/finance/quote/IOC:NSI"}], "crunchbase_description": "A central public enterprise under the Government of India", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 1}, {"field_name": "Dynamic time warping", "field_count": 1}], "clusters": [{"cluster_id": 7515, "cluster_count": 2}, {"cluster_id": 8641, "cluster_count": 1}, {"cluster_id": 60922, "cluster_count": 1}, {"cluster_id": 38533, "cluster_count": 1}, {"cluster_id": 25755, "cluster_count": 1}, {"cluster_id": 41505, "cluster_count": 1}, {"cluster_id": 32008, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 1495, "referenced_count": 3}, {"ref_CSET_id": 366, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 1617, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "image_analysis", "task_count": 2}, {"referent": "portfolio_optimization", "task_count": 2}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "facies_classification", "task_count": 1}, {"referent": "gan_inversion", "task_count": 1}, {"referent": "matrix_completion", "task_count": 1}, {"referent": "automated_writing_evaluation", "task_count": 1}, {"referent": "robust_design", "task_count": 1}, {"referent": "seismic_source_localization", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "cgnn", "method_count": 1}, {"referent": "ulmfit", "method_count": 1}, {"referent": "som", "method_count": 1}, {"referent": "atss", "method_count": 1}, {"referent": "optimization", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [13, 24, 44, 56, 67, 66, 103, 60, 80, 45, 1], "total": 559, "isTopResearch": false, "rank": 263, "sp500_rank": 175}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 3, 1, 0], "total": 6, "isTopResearch": false, "rank": 514, "sp500_rank": 255}, "ai_publications_growth": {"counts": [], "total": 66.66666666666666, "isTopResearch": false, "rank": 48, "sp500_rank": 26}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [5, 3, 6, 6, 4, 5, 2, 17, 36, 30, 3], "total": 117, "isTopResearch": false, "rank": 479, "sp500_rank": 213}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 6.0, 0, 0, 0, 0, 17.0, 12.0, 30.0, 0], "total": 19.5, "isTopResearch": false, "rank": 321, "sp500_rank": 98}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 162, "rank": 741, "sp500_rank": 288}, "ai_jobs": {"counts": null, "total": 9, "rank": 880, "sp500_rank": 304}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2446, "country": "United States", "website": "http://www.oneok.com/", "crunchbase": {"text": "edd0fcb9-2272-8914-04be-3408c77f3db7", "url": "https://www.crunchbase.com/organization/oneok"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/oneok"], "stage": "Mature", "name": "ONEOK", "patent_name": "oneok", "continent": "North America", "local_logo": "oneok.png", "aliases": "ONEOK Inc; Oneok, Inc; Oneok, Inc. (Nyse: Oke)", "permid_links": [{"text": 4295904660, "url": "https://permid.org/1-4295904660"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:OKE", "url": "https://www.google.com/finance/quote/nyse:oke"}], "market_full": [{"text": "SAO:O1KE34", "url": "https://www.google.com/finance/quote/o1ke34:sao"}, {"text": "DUS:ONK", "url": "https://www.google.com/finance/quote/dus:onk"}, {"text": "BER:ONK", "url": "https://www.google.com/finance/quote/ber:onk"}, {"text": "LSE:0KCI", "url": "https://www.google.com/finance/quote/0kci:lse"}, {"text": "ASE:OKE", "url": "https://www.google.com/finance/quote/ase:oke"}, {"text": "GER:ONKX", "url": "https://www.google.com/finance/quote/ger:onkx"}, {"text": "STU:ONK", "url": "https://www.google.com/finance/quote/onk:stu"}, {"text": "DEU:OKE", "url": "https://www.google.com/finance/quote/deu:oke"}, {"text": "MCX:OKE-RM", "url": "https://www.google.com/finance/quote/mcx:oke-rm"}, {"text": "MUN:ONK", "url": "https://www.google.com/finance/quote/mun:onk"}, {"text": "FRA:ONK", "url": "https://www.google.com/finance/quote/fra:onk"}, {"text": "HAN:ONK", "url": "https://www.google.com/finance/quote/han:onk"}, {"text": "BRN:ONK", "url": "https://www.google.com/finance/quote/brn:onk"}, {"text": "NYSE:OKE", "url": "https://www.google.com/finance/quote/nyse:oke"}, {"text": "NYQ:OKE", "url": "https://www.google.com/finance/quote/nyq:oke"}], "crunchbase_description": "ONEOK is a midstream service provider and own one of the nation\u2019s premier natural gas liquids systems.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 2, 2, 1, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063, "fortune500_rank": 359}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 160, "rank": 743, "fortune500_rank": 384}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "fortune500_rank": 437}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "ONEOK, Inc. is a diversified Fortune 500 corporation based in Tulsa, Oklahoma. ONEOK was founded in 1906 as Oklahoma Natural Gas Company, but It changed its corporate name to ONEOK in December 1980. It also owns major natural gas liquids (NGL) systems due to the 2005 acquisition of Koch Industries natural gas businesses.", "wikipedia_link": "https://en.wikipedia.org/wiki/Oneok", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2433, "country": "United States", "website": "https://www.nisource.com/", "crunchbase": {"text": "5a5d2177-af00-b333-453b-d38bba6037da", "url": "https://www.crunchbase.com/organization/nisource"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nisource"], "stage": "Mature", "name": "NiSource Inc.", "patent_name": "nisource inc.", "continent": "North America", "local_logo": "nisource_inc.png", "aliases": "Nipsco Industries; Nisource", "permid_links": [{"text": 4295911971, "url": "https://permid.org/1-4295911971"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NIMC", "url": "https://www.google.com/finance/quote/nimc:nyse"}, {"text": "NYSE:NI.PRB", "url": "https://www.google.com/finance/quote/ni.prb:nyse"}, {"text": "NYSE:NI", "url": "https://www.google.com/finance/quote/ni:nyse"}], "market_full": [{"text": "ASE:NI.PRB", "url": "https://www.google.com/finance/quote/ase:ni.prb"}, {"text": "NYQ:NI", "url": "https://www.google.com/finance/quote/ni:nyq"}, {"text": "NYSE:NIMC", "url": "https://www.google.com/finance/quote/nimc:nyse"}, {"text": "SAO:N1IS34", "url": "https://www.google.com/finance/quote/n1is34:sao"}, {"text": "NYQ:NI.PRB", "url": "https://www.google.com/finance/quote/ni.prb:nyq"}, {"text": "MUN:NOU", "url": "https://www.google.com/finance/quote/mun:nou"}, {"text": "STU:NOU", "url": "https://www.google.com/finance/quote/nou:stu"}, {"text": "NYSE:NI.PRB", "url": "https://www.google.com/finance/quote/ni.prb:nyse"}, {"text": "BRN:NOU", "url": "https://www.google.com/finance/quote/brn:nou"}, {"text": "NYQ:NIMC", "url": "https://www.google.com/finance/quote/nimc:nyq"}, {"text": "ASE:NIMC", "url": "https://www.google.com/finance/quote/ase:nimc"}, {"text": "DUS:NOU", "url": "https://www.google.com/finance/quote/dus:nou"}, {"text": "DEU:NIZ0", "url": "https://www.google.com/finance/quote/deu:niz0"}, {"text": "ASE:NI", "url": "https://www.google.com/finance/quote/ase:ni"}, {"text": "MCX:NI-RM", "url": "https://www.google.com/finance/quote/mcx:ni-rm"}, {"text": "DEU:NI", "url": "https://www.google.com/finance/quote/deu:ni"}, {"text": "FRA:NIZ0", "url": "https://www.google.com/finance/quote/fra:niz0"}, {"text": "LSE:0K87", "url": "https://www.google.com/finance/quote/0k87:lse"}, {"text": "FRA:NOU", "url": "https://www.google.com/finance/quote/fra:nou"}, {"text": "NYSE:NI", "url": "https://www.google.com/finance/quote/ni:nyse"}], "crunchbase_description": "NiSource helps energize the lives of its nearly 4 million natural gas and electric customers across seven states.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 159, "rank": 744, "fortune500_rank": 385}, "ai_jobs": {"counts": null, "total": 16, "rank": 738, "fortune500_rank": 370}}, "sector": "Utilities", "business_sector": "Utilities", "wikipedia_description": "NiSource Inc. is one of the largest fully regulated utility companies in the United States, serving approximately 3.5 million natural gas customers and 500,000 electric customers across seven states through its local Columbia Gas and NIPSCO brands. The company, based in Merrillville, Indiana, has more than 8,000 employees. As of 2018, NiSource is the sole Indiana-based utility company.", "wikipedia_link": "https://en.wikipedia.org/wiki/NiSource", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2508, "country": "United States", "website": "http://textron.com/", "crunchbase": {"text": "4fcfe064-dec2-71d5-a4d2-c965b43ed779", "url": "https://www.crunchbase.com/organization/textron"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/textron"], "stage": "Mature", "name": "Textron Inc", "patent_name": "textron inc", "continent": "North America", "local_logo": "textron_inc.png", "aliases": "Textron; Textron Inc", "permid_links": [{"text": 4295905064, "url": "https://permid.org/1-4295905064"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TXT", "url": "https://www.google.com/finance/quote/nyse:txt"}], "market_full": [{"text": "MCX:TXT", "url": "https://www.google.com/finance/quote/mcx:txt"}, {"text": "BRN:TXT", "url": "https://www.google.com/finance/quote/brn:txt"}, {"text": "MUN:TXT", "url": "https://www.google.com/finance/quote/mun:txt"}, {"text": "DEU:TXT", "url": "https://www.google.com/finance/quote/deu:txt"}, {"text": "FRA:TXT", "url": "https://www.google.com/finance/quote/fra:txt"}, {"text": "ASE:TXT", "url": "https://www.google.com/finance/quote/ase:txt"}, {"text": "LSE:0LF0", "url": "https://www.google.com/finance/quote/0lf0:lse"}, {"text": "NYSE:TXT", "url": "https://www.google.com/finance/quote/nyse:txt"}, {"text": "NYQ:TXT", "url": "https://www.google.com/finance/quote/nyq:txt"}, {"text": "DUS:TXT", "url": "https://www.google.com/finance/quote/dus:txt"}, {"text": "MEX:TXT*", "url": "https://www.google.com/finance/quote/mex:txt*"}, {"text": "STU:TXT", "url": "https://www.google.com/finance/quote/stu:txt"}, {"text": "SAO:T1XT34", "url": "https://www.google.com/finance/quote/sao:t1xt34"}, {"text": "BER:TXT", "url": "https://www.google.com/finance/quote/ber:txt"}], "crunchbase_description": "Textron Inc. is a multi-industry company that leverages its global network of aircraft, defense, industrial and finance businesses to", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Robustness (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 16633, "cluster_count": 1}, {"cluster_id": 35263, "cluster_count": 1}, {"cluster_id": 53898, "cluster_count": 1}, {"cluster_id": 19619, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "image_analysis", "task_count": 1}, {"referent": "reasoning", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "atr", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "multiobjective_optimization", "task_count": 1}, {"referent": "human_robot_interaction", "task_count": 1}], "methods": [{"referent": "automl", "method_count": 1}, {"referent": "one_shot_aggregation", "method_count": 1}, {"referent": "bert", "method_count": 1}, {"referent": "non_parametric_regression", "method_count": 1}, {"referent": "atmo", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [6, 5, 5, 2, 5, 6, 1, 0, 6, 3, 0], "total": 39, "isTopResearch": false, "rank": 667, "fortune500_rank": 244}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 805, "fortune500_rank": 220}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 1.0, 0, 0, 0, 1.0, 0, 0, 0, 0.0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "fortune500_rank": 217}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 1, 3, 2, 4, 0, 0, 0], "total": 11, "table": null, "rank": 394, "fortune500_rank": 126}, "ai_patents_growth": {"counts": [], "total": 88.88888888888887, "table": null, "rank": 126, "fortune500_rank": 26}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 10, 30, 20, 40, 0, 0, 0], "total": 110, "table": null, "rank": 394, "fortune500_rank": 126}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 1, 1, 2, 1, 4, 0, 0, 0], "total": 9, "table": "industry", "rank": 102, "fortune500_rank": 27}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 1, 1, 1, 2, 3, 0, 0, 0], "total": 8, "table": "application", "rank": 150, "fortune500_rank": 50}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 159, "rank": 744, "fortune500_rank": 385}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "fortune500_rank": 409}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Textron Inc. is an American industrial conglomerate based in Providence, Rhode Island. Textron's subsidiaries include Arctic Cat, Bell Textron, Textron Aviation (which itself includes the Beechcraft, Hawker, and Cessna brands), and Lycoming Engines. It was founded by Royal Little in 1923 as the Special Yarns Company. In 2018, Textron employed over 37,000 people worldwide. The company ranked 208th on the 2018 Fortune 500 of the largest United States corporations by revenue.", "wikipedia_link": "https://en.wikipedia.org/wiki/Textron", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3096, "country": "France", "website": "https://www.technipenergies.com/", "crunchbase": {"text": " b2d4d18b-595a-49de-a419-e5d11247cc63", "url": " https://www.crunchbase.com/organization/technip-energies-nv"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/technip-energies"], "stage": "Mature", "name": "Technip Energies", "patent_name": "Technip Energies", "continent": "Europe", "local_logo": null, "aliases": null, "permid_links": [{"text": 4298160640, "url": "https://permid.org/1-4298160640"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "BER:68F", "url": "https://www.google.com/finance/quote/68F:BER"}, {"text": "DEU:68F0", "url": "https://www.google.com/finance/quote/68F0:DEU"}, {"text": "DEU:68F", "url": "https://www.google.com/finance/quote/68F:DEU"}, {"text": "MUN:68F", "url": "https://www.google.com/finance/quote/68F:MUN"}, {"text": "PKC:THNPF", "url": "https://www.google.com/finance/quote/PKC:THNPF"}, {"text": "MUN:68F0", "url": "https://www.google.com/finance/quote/68F0:MUN"}, {"text": "STU:68F0", "url": "https://www.google.com/finance/quote/68F0:STU"}, {"text": "STU:68F", "url": "https://www.google.com/finance/quote/68F:STU"}, {"text": "FRA:68F", "url": "https://www.google.com/finance/quote/68F:FRA"}, {"text": "BER:68F0", "url": "https://www.google.com/finance/quote/68F0:BER"}, {"text": "DUS:68F", "url": "https://www.google.com/finance/quote/68F:DUS"}, {"text": "PAR:TE", "url": "https://www.google.com/finance/quote/PAR:TE"}, {"text": "LSE:0A8A", "url": "https://www.google.com/finance/quote/0A8A:LSE"}, {"text": "FRA:68F0", "url": "https://www.google.com/finance/quote/68F0:FRA"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 0], "total": 6, "isTopResearch": false, "rank": 1030}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 157, "rank": 746}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 1925, "country": "United States", "website": "https://www.energytransfer.com/", "crunchbase": {"text": " a40fd219-68df-e333-20bf-9092332216f8", "url": " https://www.crunchbase.com/organization/energy-transfer-equity"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/energy-transfer"], "stage": "Mature", "name": "Energy Transfer", "patent_name": "Energy Transfer", "continent": "North America", "local_logo": null, "aliases": "Energy Transfer; Energy Transfer Partners", "permid_links": [{"text": 4295914798, "url": "https://permid.org/1-4295914798"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ET PR C", "url": "https://www.google.com/finance/quote/ET PR C:NYSE"}, {"text": "NYSE:ET", "url": "https://www.google.com/finance/quote/ET:NYSE"}, {"text": "NYSE:ET PR E", "url": "https://www.google.com/finance/quote/ET PR E:NYSE"}, {"text": "NYSE:ET PR D", "url": "https://www.google.com/finance/quote/ET PR D:NYSE"}], "market_full": [{"text": "NYQ:ET PR D", "url": "https://www.google.com/finance/quote/ET PR D:NYQ"}, {"text": "NYSE:ET PR C", "url": "https://www.google.com/finance/quote/ET PR C:NYSE"}, {"text": "ASE:ET PR C", "url": "https://www.google.com/finance/quote/ASE:ET PR C"}, {"text": "NYQ:ET", "url": "https://www.google.com/finance/quote/ET:NYQ"}, {"text": "ASE:ET PR D", "url": "https://www.google.com/finance/quote/ASE:ET PR D"}, {"text": "NYSE:ET", "url": "https://www.google.com/finance/quote/ET:NYSE"}, {"text": "ASE:ET PR E", "url": "https://www.google.com/finance/quote/ASE:ET PR E"}, {"text": "NYQ:ET PR C", "url": "https://www.google.com/finance/quote/ET PR C:NYQ"}, {"text": "NYQ:ET PR E", "url": "https://www.google.com/finance/quote/ET PR E:NYQ"}, {"text": "NYSE:ET PR E", "url": "https://www.google.com/finance/quote/ET PR E:NYSE"}, {"text": "ASE:ET", "url": "https://www.google.com/finance/quote/ASE:ET"}, {"text": "MEX:ET*", "url": "https://www.google.com/finance/quote/ET*:MEX"}, {"text": "NYSE:ET PR D", "url": "https://www.google.com/finance/quote/ET PR D:NYSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "sp500_rank": 439}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 157, "rank": 746, "sp500_rank": 289}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "sp500_rank": 328}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2218, "country": "United States", "website": "http://www.apachecorp.com/", "crunchbase": {"text": "520e7fc0-98d2-5ae2-6505-be23b1ad61a0", "url": "https://www.crunchbase.com/organization/apache-corp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/apache-corporation"], "stage": "Mature", "name": "Apache Corporation", "patent_name": "apache corporation", "continent": "North America", "local_logo": "apache_corporation.png", "aliases": "Apache; Apache Corp", "permid_links": [{"text": 4295903449, "url": "https://permid.org/1-4295903449"}], "parent_info": "Apa Corporation", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:APA", "url": "https://www.google.com/finance/quote/apa:nasdaq"}], "market_full": [{"text": "MUN:2S3", "url": "https://www.google.com/finance/quote/2s3:mun"}, {"text": "BER:2S3", "url": "https://www.google.com/finance/quote/2s3:ber"}, {"text": "MEX:APA*", "url": "https://www.google.com/finance/quote/apa*:mex"}, {"text": "LSE:0HGC", "url": "https://www.google.com/finance/quote/0hgc:lse"}, {"text": "GER:2S3X", "url": "https://www.google.com/finance/quote/2s3x:ger"}, {"text": "DEU:2S3", "url": "https://www.google.com/finance/quote/2s3:deu"}, {"text": "NASDAQ:APA", "url": "https://www.google.com/finance/quote/apa:nasdaq"}, {"text": "SAO:A1PA34", "url": "https://www.google.com/finance/quote/a1pa34:sao"}, {"text": "FRA:2S3", "url": "https://www.google.com/finance/quote/2s3:fra"}, {"text": "MCX:APA-RM", "url": "https://www.google.com/finance/quote/apa-rm:mcx"}], "crunchbase_description": "Apache Corporation is an oil and gas exploration and production company with operations world wide.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 29455, "cluster_count": 1}, {"cluster_id": 53305, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "image_analysis", "task_count": 1}, {"referent": "protein_function_prediction", "task_count": 1}, {"referent": "speech_production", "task_count": 1}], "methods": [{"referent": "lookahead", "method_count": 1}, {"referent": "neural_probabilistic_language_model", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 6, 10, 9, 10, 4, 7, 9, 4, 1, 0], "total": 69, "isTopResearch": false, "rank": 568, "fortune500_rank": 211}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "fortune500_rank": 182}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 901, "fortune500_rank": 252}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0, 0], "total": 0.5, "isTopResearch": false, "rank": 905, "fortune500_rank": 253}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 155, "rank": 748, "fortune500_rank": 387}, "ai_jobs": {"counts": null, "total": 22, "rank": 667, "fortune500_rank": 336}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "APA Corporation is the holding company for Apache Corporation, a company engaged in hydrocarbon exploration. It is organized in Delaware and headquartered in Houston. The company is ranked 465th on the Fortune 500.", "wikipedia_link": "https://en.wikipedia.org/wiki/APA_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1389, "country": null, "website": null, "crunchbase": {"text": null, "url": null}, "child_crunchbase": [{"text": "c083cd7f-d360-44d5-f2c0-b3903d7edc48", "url": "https://www.crunchbase.com/organization/meredith"}], "linkedin": ["https://www.linkedin.com/company/meredith"], "stage": "Unknown", "name": "Gray Television", "patent_name": "Gray Television", "continent": null, "local_logo": null, "aliases": null, "permid_links": [{"text": 4295904513, "url": "https://permid.org/1-4295904513"}], "parent_info": null, "agg_child_info": "Meredith Corporation", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Time series", "field_count": 1}], "clusters": [{"cluster_id": 3226, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "steering_control", "task_count": 1}, {"referent": "6d_pose_estimation", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "univariate_time_series_forecasting", "task_count": 1}, {"referent": "weather_forecasting", "task_count": 1}], "methods": [{"referent": "cgnn", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 2, 4, 10, 6, 0], "total": 22, "isTopResearch": false, "rank": 676}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 22.0, "isTopResearch": false, "rank": 279}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 155, "rank": 748}, "ai_jobs": {"counts": null, "total": 22, "rank": 667}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services"}, {"cset_id": 81, "country": "United States", "website": "https://www.dremio.com/", "crunchbase": {"text": "46bfe2c0-fa1e-b048-433a-9a7ef70d6d32", "url": "https://www.crunchbase.com/organization/dremio-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dremio"], "stage": "Mature", "name": "Dremio", "patent_name": "dremio", "continent": "North America", "local_logo": "dremio.png", "aliases": "Dremio Corp; Dremio Corporation", "permid_links": [{"text": 5060578893, "url": "https://permid.org/1-5060578893"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "The Easy and Open Data Lakehouse: Self-service analytics with data warehouse functionality and data lake flexibility across all of your data", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 0.0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 155, "rank": 748}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Dremio is a next-generation data lake engine that liberates your data with live, interactive queries directly on cloud data lake storage.", "company_site_link": "https://www.dremio.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2333, "country": "United States", "website": "https://www.fcx.com/", "crunchbase": {"text": "0e2ebfaa-273d-57f6-8bda-deedea74d989", "url": "https://www.crunchbase.com/organization/freeport-mcmoran"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/freeport-mcmoran-inc"], "stage": "Mature", "name": "Freeport-McMoRan Inc.", "patent_name": "freeport-mcmoran inc.", "continent": "North America", "local_logo": null, "aliases": "Fcx; Freeport-Mcmoran; Freeport-Mcmoran Copper & Gold Inc", "permid_links": [{"text": 4295908588, "url": "https://permid.org/1-4295908588"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:FCX", "url": "https://www.google.com/finance/quote/fcx:nyse"}], "market_full": [{"text": "DEU:FCXB", "url": "https://www.google.com/finance/quote/deu:fcxb"}, {"text": "SGO:FCX", "url": "https://www.google.com/finance/quote/fcx:sgo"}, {"text": "NYQ:FCX", "url": "https://www.google.com/finance/quote/fcx:nyq"}, {"text": "STU:FPMB", "url": "https://www.google.com/finance/quote/fpmb:stu"}, {"text": "BUE:FCX3", "url": "https://www.google.com/finance/quote/bue:fcx3"}, {"text": "SAO:FCXO34", "url": "https://www.google.com/finance/quote/fcxo34:sao"}, {"text": "ASE:FCX", "url": "https://www.google.com/finance/quote/ase:fcx"}, {"text": "BER:FPMB", "url": "https://www.google.com/finance/quote/ber:fpmb"}, {"text": "LSE:0R2O", "url": "https://www.google.com/finance/quote/0r2o:lse"}, {"text": "MEX:FCX*", "url": "https://www.google.com/finance/quote/fcx*:mex"}, {"text": "DUS:FPMB", "url": "https://www.google.com/finance/quote/dus:fpmb"}, {"text": "BRN:FPMB", "url": "https://www.google.com/finance/quote/brn:fpmb"}, {"text": "FRA:FPMB", "url": "https://www.google.com/finance/quote/fpmb:fra"}, {"text": "NYSE:FCX", "url": "https://www.google.com/finance/quote/fcx:nyse"}, {"text": "MUN:FPMB", "url": "https://www.google.com/finance/quote/fpmb:mun"}, {"text": "MOEX:FCX-RM", "url": "https://www.google.com/finance/quote/fcx-rm:moex"}, {"text": "SWX:FCX", "url": "https://www.google.com/finance/quote/fcx:swx"}, {"text": "VIE:FCX", "url": "https://www.google.com/finance/quote/fcx:vie"}], "crunchbase_description": "Freeport-McMoRan Chino Mines Company is a subsidiary of Freeport-McMoRan Inc.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 2, 10, 6, 8, 9, 2, 5, 3, 5, 0], "total": 52, "isTopResearch": false, "rank": 611, "fortune500_rank": 227}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 1, 1, 2, 0, 0, 0], "total": 5, "table": null, "rank": 525, "fortune500_rank": 169}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198, "fortune500_rank": 56}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 10, 10, 20, 0, 0, 0], "total": 50, "table": null, "rank": 525, "fortune500_rank": 169}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 61, "fortune500_rank": 17}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 252, "fortune500_rank": 82}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 214, "fortune500_rank": 70}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 212, "fortune500_rank": 73}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 154, "rank": 751, "fortune500_rank": 388}, "ai_jobs": {"counts": null, "total": 28, "rank": 616, "fortune500_rank": 317}}, "sector": "Basic Materials", "business_sector": "Mineral Resources", "wikipedia_description": "Freeport-McMoRan Inc., often called Freeport, is a mining company based in the Freeport-McMoRan Center, in Phoenix, Arizona.", "wikipedia_link": "https://en.wikipedia.org/wiki/Freeport-McMoRan", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 46, "country": "United States", "website": "https://www.wunderkind.co/", "crunchbase": {"text": "ca55300e-a961-283d-739f-10a26a99e067", "url": "https://www.crunchbase.com/organization/bounce-exchange"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bewunderkind"], "stage": "Growth", "name": "Wunderkind", "patent_name": "wunderkind", "continent": "North America", "local_logo": "wunderkind.png", "aliases": "Bounce Exchange; Bounce Exchange, Inc; BounceX; Wunderkind Corporation", "permid_links": [{"text": 5040054253, "url": "https://permid.org/1-5040054253"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Wunderkind enables the world's top brands to better recognize their customers online, providing 1-to-1 marketing at scale.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 153, "rank": 752}, "ai_jobs": {"counts": null, "total": 18, "rank": 716}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 2869, "country": "United States", "website": "http://mcdean.com/", "crunchbase": {"text": "56f0ea08-fe3c-4c1f-86f1-f45299c86198", "url": "https://www.crunchbase.com/organization/m-c-dean-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/m-c-dean-inc"], "stage": "Unknown", "name": "MC Dean Inc", "patent_name": "mc dean inc", "continent": "North America", "local_logo": "mc_dean_inc.png", "aliases": "M C Dean Inc; M.C. Dean; M.C. Dean, Inc", "permid_links": [{"text": 5000340131, "url": "https://permid.org/1-5000340131"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "M.C. Dean, Inc. offers comprehensive technological systems in Washington.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 153, "rank": 752}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "M.C. Dean, Inc. is a design-build and systems integration corporation for complex, mission-critical organizations. Started in 1949 as a small electrical firm, it has since grown to 3,800 employees and a revenue of approximately $810 million in 2011 It has headquarters in Tysons, Virginia, United States, and over 30 other offices, including branches in Atlanta, Georgia;Tampa, Florida; Stuttgart, Germany; and Dallas, Texas.", "wikipedia_link": "https://en.wikipedia.org/wiki/M.C._Dean,_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 595, "country": "United States", "website": "http://www.newbalance.com", "crunchbase": {"text": "25b341ab-c342-5f0a-5ac7-4ce694de5275", "url": "https://www.crunchbase.com/organization/new-balance-athletic-shoe"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/new-balance"], "stage": "Mature", "name": "New Balance", "patent_name": "new balance", "continent": "North America", "local_logo": "new_balance.png", "aliases": "New Balance Arch Support; New Balance Athletic Shoe; New Balance Athletics Inc; New Balance Inc", "permid_links": [{"text": 4296726973, "url": "https://permid.org/1-4296726973"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "New Balance is an American multinational corporation based in the Brighton neighborhood of Boston.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 7017, "cluster_count": 2}, {"cluster_id": 23078, "cluster_count": 1}, {"cluster_id": 6495, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 595, "referenced_count": 1}], "tasks": [{"referent": "image_recognition", "task_count": 1}], "methods": [{"referent": "optimization", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [4, 3, 2, 3, 3, 1, 1, 1, 0, 0, 0], "total": 18, "isTopResearch": false, "rank": 825}, "ai_publications": {"counts": [1, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [3, 8, 9, 7, 4, 5, 6, 9, 5, 7, 0], "total": 63, "isTopResearch": false, "rank": 556}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [3.0, 8.0, 0, 0, 4.0, 0, 0, 0, 0, 0, 0], "total": 21.0, "isTopResearch": false, "rank": 294}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 152, "rank": 754}, "ai_jobs": {"counts": null, "total": 16, "rank": 738}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "New Balance (NB) is an American sports footwear and apparel brand that was established in 1906. The brand was originally associated with the New Balance Arch Support Company. Today the brand is associated with New Balance Athletics, Inc., an American multinational corporation and its parent New Balance, Inc., a Jim Davis owned holding company that owns New Balance Athletics, Inc. New Balance Athletics, Inc. and New Balance, Inc. are both based in the same headquarters located in Boston, Massachusetts.", "wikipedia_link": "https://en.wikipedia.org/wiki/New_Balance", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1994, "country": "India", "website": "https://www.bharatpetroleum.in/", "crunchbase": {"text": " af86669e-904f-9c02-ba22-462285537160 ", "url": " https://www.crunchbase.com/organization/bharat-petroleum "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bpcl"], "stage": "Mature", "name": "Bharat Petroleum", "patent_name": "Bharat Petroleum", "continent": "Asia", "local_logo": null, "aliases": "Bharat Petroleum; Bharat Petroleum Corporation Limited", "permid_links": [{"text": 4295872490, "url": "https://permid.org/1-4295872490"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "NSI:BPCL", "url": "https://www.google.com/finance/quote/BPCL:NSI"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Big data", "field_count": 1}], "clusters": [{"cluster_id": 458, "cluster_count": 1}, {"cluster_id": 35571, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "lexical_analysis", "task_count": 1}, {"referent": "data_visualization", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "soft_robotics", "task_count": 1}, {"referent": "remote_sensing", "task_count": 1}, {"referent": "muscular_movement_recognition", "task_count": 1}], "methods": [{"referent": "soft_actor_critic", "method_count": 1}, {"referent": "ghm_r", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [7, 11, 10, 4, 16, 8, 7, 7, 17, 12, 2], "total": 101, "isTopResearch": false, "rank": 512, "sp500_rank": 294}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 5, 1], "total": 7, "isTopResearch": false, "rank": 794, "sp500_rank": 326}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0.0, 0, 0], "total": 3.5, "isTopResearch": false, "rank": 764, "sp500_rank": 303}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 152, "rank": 754, "sp500_rank": 290}, "ai_jobs": {"counts": null, "total": 11, "rank": 829, "sp500_rank": 294}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2280, "country": "United States", "website": "https://www.darden.com", "crunchbase": {"text": "b1b20792-6fc6-5469-9f3c-59c0ddf91be0", "url": "https://www.crunchbase.com/organization/darden-restaurants"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/darden"], "stage": "Mature", "name": "Darden Restaurants", "patent_name": "darden restaurants", "continent": "North America", "local_logo": "darden_restaurants.png", "aliases": "Darden Restaurants, Inc", "permid_links": [{"text": 4295903847, "url": "https://permid.org/1-4295903847"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DRI", "url": "https://www.google.com/finance/quote/dri:nyse"}], "market_full": [{"text": "DUS:DDN", "url": "https://www.google.com/finance/quote/ddn:dus"}, {"text": "FRA:DDN", "url": "https://www.google.com/finance/quote/ddn:fra"}, {"text": "STU:DDN", "url": "https://www.google.com/finance/quote/ddn:stu"}, {"text": "DEU:DRI", "url": "https://www.google.com/finance/quote/deu:dri"}, {"text": "SAO:D1RI34", "url": "https://www.google.com/finance/quote/d1ri34:sao"}, {"text": "BRN:DDN", "url": "https://www.google.com/finance/quote/brn:ddn"}, {"text": "ASE:DRI", "url": "https://www.google.com/finance/quote/ase:dri"}, {"text": "GER:DDNX", "url": "https://www.google.com/finance/quote/ddnx:ger"}, {"text": "MOEX:DRI-RM", "url": "https://www.google.com/finance/quote/dri-rm:moex"}, {"text": "MUN:DDN", "url": "https://www.google.com/finance/quote/ddn:mun"}, {"text": "LSE:0I77", "url": "https://www.google.com/finance/quote/0i77:lse"}, {"text": "NYQ:DRI", "url": "https://www.google.com/finance/quote/dri:nyq"}, {"text": "NYSE:DRI", "url": "https://www.google.com/finance/quote/dri:nyse"}, {"text": "BER:DDN", "url": "https://www.google.com/finance/quote/ber:ddn"}], "crunchbase_description": "Darden Restaurants, Inc. is a full service restaurant company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 14, 0, 0, 0, 0, 0], "total": 14, "isTopResearch": false, "rank": 875, "fortune500_rank": 310}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 151, "rank": 756, "fortune500_rank": 389}, "ai_jobs": {"counts": null, "total": 7, "rank": 944, "fortune500_rank": 427}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Darden Restaurants, Inc. is an American multi-brand restaurant operator headquartered in Orlando. As of April 2017, the firm owns two fine dining restaurant chains: Eddie V's Prime Seafood and The Capital Grille; and six casual dining restaurant chains: Olive Garden, LongHorn Steakhouse, Bahama Breeze, Seasons 52, Yard House and Cheddar's Scratch Kitchen. Until July 28, 2014, Darden also owned Red Lobster. Darden has more than 1,500 restaurant locations and more than 150,000 employees, making it the world's largest full-service restaurant company. As of 2018, Darden is the only Fortune 500 company with its corporate headquarters in Greater Orlando.", "wikipedia_link": "https://en.wikipedia.org/wiki/Darden_Restaurants", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2378, "country": "United States", "website": "https://www.jmsmucker.com/", "crunchbase": {"text": "97ff7b6a-4627-24b2-1a0a-8b53f3a0321f", "url": "https://www.crunchbase.com/organization/jm-smucker-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-jm-smucker-co"], "stage": "Mature", "name": "JM Smucker", "patent_name": "jm smucker", "continent": "North America", "local_logo": "jm_smucker.png", "aliases": "J. M. Smucker; J. M. Smucker Company; Smucker And Smucker'S; The J.M. Smucker Company", "permid_links": [{"text": 4295908680, "url": "https://permid.org/1-4295908680"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SJM", "url": "https://www.google.com/finance/quote/nyse:sjm"}], "market_full": [{"text": "DEU:SJM", "url": "https://www.google.com/finance/quote/deu:sjm"}, {"text": "BRN:JM2", "url": "https://www.google.com/finance/quote/brn:jm2"}, {"text": "NYSE:SJM", "url": "https://www.google.com/finance/quote/nyse:sjm"}, {"text": "BER:JM2", "url": "https://www.google.com/finance/quote/ber:jm2"}, {"text": "STU:JM2", "url": "https://www.google.com/finance/quote/jm2:stu"}, {"text": "LSE:0L7F", "url": "https://www.google.com/finance/quote/0l7f:lse"}, {"text": "DUS:JM2", "url": "https://www.google.com/finance/quote/dus:jm2"}, {"text": "FRA:JM2", "url": "https://www.google.com/finance/quote/fra:jm2"}, {"text": "ASE:SJM", "url": "https://www.google.com/finance/quote/ase:sjm"}, {"text": "GER:JM2X", "url": "https://www.google.com/finance/quote/ger:jm2x"}, {"text": "SAO:S1JM34", "url": "https://www.google.com/finance/quote/s1jm34:sao"}, {"text": "MUN:JM2", "url": "https://www.google.com/finance/quote/jm2:mun"}, {"text": "HAN:JM2", "url": "https://www.google.com/finance/quote/han:jm2"}, {"text": "MOEX:SJM-RM", "url": "https://www.google.com/finance/quote/moex:sjm-rm"}, {"text": "NYQ:SJM", "url": "https://www.google.com/finance/quote/nyq:sjm"}, {"text": "MEX:SJM", "url": "https://www.google.com/finance/quote/mex:sjm"}], "crunchbase_description": "J. M. Smucker is an manufacturer of food products.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 1, 0, 0, 0, 3, 3, 0, 0], "total": 8, "isTopResearch": false, "rank": 980, "fortune500_rank": 333}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 150, "rank": 757, "fortune500_rank": 390}, "ai_jobs": {"counts": null, "total": 35, "rank": 560, "fortune500_rank": 287}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "The J. M. Smucker Company, also known as Smucker and Smucker's, is an American manufacturer of jam, peanut butter, jelly, fruit syrups, beverages, shortening, ice cream toppings, and other products in North America. Smucker's headquarters are located in Orrville, Ohio. It was founded in 1897.", "wikipedia_link": "https://en.wikipedia.org/wiki/The_J.M._Smucker_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1929, "country": "China", "website": "http://www.cpic.com.cn/", "crunchbase": {"text": " 0a58e476-ca1c-46e5-4c85-f57366977e0b", "url": " https://www.crunchbase.com/organization/china-pacific-insurance"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/china-pacific-insurance-company"], "stage": "Mature", "name": "China Pacific Insurance (Group)", "patent_name": "China Pacific Insurance (Group)", "continent": "Asia", "local_logo": null, "aliases": "China Pacific Insurance (Group); China Pacific Insurance(Group) Co.,Ltd; Cpic; \u4e2d\u56fd\u592a\u5e73\u6d0b\u4fdd\u9669\uff08\u96c6\u56e2\uff09\u80a1\u4efd\u6709\u9650\u516c\u53f8; \u592a\u4fdd\u4ea7\u9669; \u592a\u5e73\u6d0b\u4fdd\u9669", "permid_links": [{"text": 4295864691, "url": "https://permid.org/1-4295864691"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:2601", "url": "https://www.google.com/finance/quote/2601:HKG"}], "market_full": [{"text": "FRA:75C", "url": "https://www.google.com/finance/quote/75C:FRA"}, {"text": "LSE:CPIC", "url": "https://www.google.com/finance/quote/CPIC:LSE"}, {"text": "PKC:CHPXF", "url": "https://www.google.com/finance/quote/CHPXF:PKC"}, {"text": "SHH:601601", "url": "https://www.google.com/finance/quote/601601:SHH"}, {"text": "PKC:CHPXY", "url": "https://www.google.com/finance/quote/CHPXY:PKC"}, {"text": "DEU:2601", "url": "https://www.google.com/finance/quote/2601:DEU"}, {"text": "HKG:2601", "url": "https://www.google.com/finance/quote/2601:HKG"}, {"text": "DEU:75CB", "url": "https://www.google.com/finance/quote/75CB:DEU"}, {"text": "FRA:75CB", "url": "https://www.google.com/finance/quote/75CB:FRA"}, {"text": "BER:75C", "url": "https://www.google.com/finance/quote/75C:BER"}, {"text": "HKG.HS:2601", "url": "https://www.google.com/finance/quote/2601:HKG.HS"}, {"text": "STU:75C", "url": "https://www.google.com/finance/quote/75C:STU"}, {"text": "HKG.HZ:2601", "url": "https://www.google.com/finance/quote/2601:HKG.HZ"}, {"text": "MEX:2601N", "url": "https://www.google.com/finance/quote/2601N:MEX"}, {"text": "MUN:75C", "url": "https://www.google.com/finance/quote/75C:MUN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Automatic summarization", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Pattern recognition (psychology)", "field_count": 1}, {"field_name": "Information extraction", "field_count": 1}, {"field_name": "Question answering", "field_count": 1}], "clusters": [{"cluster_id": 32538, "cluster_count": 1}, {"cluster_id": 86993, "cluster_count": 1}, {"cluster_id": 24664, "cluster_count": 1}, {"cluster_id": 21619, "cluster_count": 1}, {"cluster_id": 36707, "cluster_count": 1}, {"cluster_id": 49342, "cluster_count": 1}, {"cluster_id": 2505, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 170, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 69, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 381, "referenced_count": 1}], "tasks": [{"referent": "multi_task_learning", "task_count": 1}, {"referent": "facial_expression_recognition", "task_count": 1}, {"referent": "aspect_extraction", "task_count": 1}, {"referent": "information_extraction", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "hierarchical_clustering", "task_count": 1}, {"referent": "trajectory_prediction", "task_count": 1}, {"referent": "skills_assessment", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}], "methods": [{"referent": "multi_attention_network", "method_count": 1}, {"referent": "emf", "method_count": 1}, {"referent": "actkr", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "topic_embeddings", "method_count": 1}, {"referent": "word_embeddings", "method_count": 1}, {"referent": "document_embeddings", "method_count": 1}, {"referent": "all_attention_layer", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [4, 0, 3, 2, 2, 4, 0, 1, 5, 6, 0], "total": 27, "isTopResearch": false, "rank": 736, "sp500_rank": 359}, "ai_publications": {"counts": [1, 0, 0, 0, 1, 1, 0, 1, 2, 3, 0], "total": 9, "isTopResearch": false, "rank": 437, "sp500_rank": 224}, "ai_publications_growth": {"counts": [], "total": 75.0, "isTopResearch": false, "rank": 35, "sp500_rank": 19}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99}, "citation_counts": {"counts": [0, 2, 1, 2, 4, 1, 1, 0, 2, 10, 0], "total": 23, "isTopResearch": false, "rank": 670, "sp500_rank": 279}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0], "total": 4, "isTopResearch": true, "rank": 161, "sp500_rank": 94}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 4.0, 1.0, 0, 0.0, 1.0, 3.3333333333333335, 0], "total": 2.5555555555555554, "isTopResearch": false, "rank": 808, "sp500_rank": 321}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 1, 9, 0, 3, 1, 0], "total": 15, "table": null, "rank": 355, "sp500_rank": 175}, "ai_patents_growth": {"counts": [], "total": 350.0, "table": null, "rank": 20, "sp500_rank": 7}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 10, 90, 0, 30, 10, 0], "total": 150, "table": null, "rank": 355, "sp500_rank": 175}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 4, 0, 1, 0, 0], "total": 6, "table": "industry", "rank": 95, "sp500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 4, 0, 1, 0, 0], "total": 6, "table": "industry", "rank": 196, "sp500_rank": 128}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 3, 0, 1, 0, 0], "total": 5, "table": "application", "rank": 183, "sp500_rank": 120}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 4, 0, 1, 0, 0], "total": 5, "table": "application", "rank": 318, "sp500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 150, "rank": 757, "sp500_rank": 291}, "ai_jobs": {"counts": null, "total": 24, "rank": 649, "sp500_rank": 270}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2005, "country": "France", "website": "https://www.bouygues.com/", "crunchbase": {"text": " 46e825db-89e5-3e9d-5999-304b261429d6", "url": " https://www.crunchbase.com/organization/bouygues-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bouygues-construction"], "stage": "Mature", "name": "Bouygues", "patent_name": "Bouygues", "continent": "Europe", "local_logo": null, "aliases": "Bouygues; Bouygues Construction; Bouygues S.A", "permid_links": [{"text": 4295867226, "url": "https://permid.org/1-4295867226"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "FRA:BYG0", "url": "https://www.google.com/finance/quote/BYG0:FRA"}, {"text": "HAM:BYG", "url": "https://www.google.com/finance/quote/BYG:HAM"}, {"text": "DEU:BYG0", "url": "https://www.google.com/finance/quote/BYG0:DEU"}, {"text": "MEX:ENN", "url": "https://www.google.com/finance/quote/ENN:MEX"}, {"text": "LSE:0HAN", "url": "https://www.google.com/finance/quote/0HAN:LSE"}, {"text": "PAR:EN", "url": "https://www.google.com/finance/quote/EN:PAR"}, {"text": "PAR:ENNV", "url": "https://www.google.com/finance/quote/ENNV:PAR"}, {"text": "DUS:BYG", "url": "https://www.google.com/finance/quote/BYG:DUS"}, {"text": "SWX:EN", "url": "https://www.google.com/finance/quote/EN:SWX"}, {"text": "HAN:BYG", "url": "https://www.google.com/finance/quote/BYG:HAN"}, {"text": "STU:BYG0", "url": "https://www.google.com/finance/quote/BYG0:STU"}, {"text": "FRA:BYG", "url": "https://www.google.com/finance/quote/BYG:FRA"}, {"text": "BER:BYG", "url": "https://www.google.com/finance/quote/BER:BYG"}, {"text": "EBT:ENP", "url": "https://www.google.com/finance/quote/EBT:ENp"}, {"text": "STU:BYG", "url": "https://www.google.com/finance/quote/BYG:STU"}, {"text": "VIE:EN", "url": "https://www.google.com/finance/quote/EN:VIE"}, {"text": "MUN:BYG", "url": "https://www.google.com/finance/quote/BYG:MUN"}, {"text": "DEU:BOUY", "url": "https://www.google.com/finance/quote/BOUY:DEU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 2}, {"field_name": "Local search (optimization)", "field_count": 2}, {"field_name": "Gesture", "field_count": 1}, {"field_name": "Decision tree", "field_count": 1}], "clusters": [{"cluster_id": 2204, "cluster_count": 3}, {"cluster_id": 4166, "cluster_count": 2}, {"cluster_id": 25766, "cluster_count": 1}, {"cluster_id": 39333, "cluster_count": 1}, {"cluster_id": 16550, "cluster_count": 1}, {"cluster_id": 45400, "cluster_count": 1}, {"cluster_id": 26387, "cluster_count": 1}, {"cluster_id": 56508, "cluster_count": 1}, {"cluster_id": 15075, "cluster_count": 1}, {"cluster_id": 6905, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 12}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 2005, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}], "tasks": [{"referent": "building_extraction", "task_count": 3}, {"referent": "safety_perception_recognition", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "robots", "task_count": 1}, {"referent": "action_generation", "task_count": 1}, {"referent": "visual_localization", "task_count": 1}, {"referent": "routing", "task_count": 1}, {"referent": "damage_detection", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}, {"referent": "bifpn", "method_count": 2}, {"referent": "clustering", "method_count": 2}, {"referent": "q_learning", "method_count": 1}, {"referent": "nt_xent", "method_count": 1}, {"referent": "random_search", "method_count": 1}, {"referent": "randomized_value_functions", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "heuristic_search_algorithms", "method_count": 1}, {"referent": "edgeboxes", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [24, 6, 10, 21, 20, 25, 7, 12, 18, 10, 0], "total": 153, "isTopResearch": false, "rank": 452, "sp500_rank": 269}, "ai_publications": {"counts": [1, 1, 1, 1, 2, 1, 0, 2, 1, 0, 0], "total": 10, "isTopResearch": false, "rank": 417, "sp500_rank": 218}, "ai_publications_growth": {"counts": [], "total": -75.0, "isTopResearch": false, "rank": 1526, "sp500_rank": 435}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [5, 10, 9, 6, 10, 17, 18, 29, 24, 47, 2], "total": 177, "isTopResearch": false, "rank": 403, "sp500_rank": 182}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [5.0, 10.0, 9.0, 6.0, 5.0, 17.0, 0, 14.5, 24.0, 0, 0], "total": 17.7, "isTopResearch": false, "rank": 355, "sp500_rank": 115}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 150, "rank": 757, "sp500_rank": 291}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "sp500_rank": 335}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 2841, "country": "United States", "website": "https://www.sosi.com/", "crunchbase": {"text": "1b877415-ab62-601a-c5d2-703e83c2f961", "url": "https://www.crunchbase.com/organization/sos-international-llc-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sos-international-llc"], "stage": "Unknown", "name": "SOS International LLC", "patent_name": "sos international llc", "continent": "North America", "local_logo": "sos_international_llc.png", "aliases": "SOS International; Sosi", "permid_links": [{"text": 5032084845, "url": "https://permid.org/1-5032084845"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "SOS International LLC is a government services integrator", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 149, "rank": 760}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "SOSi is the largest private, family-owned and operated technology and services integrator in the aerospace, defense, and government services industry. Founded in 1989 to provide specialized analytical services to the U.S. law enforcement community, the company has evolved into an international solutions provider with experience in 30 countries worldwide. Our global portfolio includes military logistics, intelligence analysis, software development, and cybersecurity.", "company_site_link": "https://www.sosi.com", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2921, "country": "United States", "website": "http://www.redriver.com/", "crunchbase": {"text": "67819160-e416-a439-f4d8-5d583e3c433a", "url": "https://www.crunchbase.com/organization/red-river"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/red-river-technology"], "stage": "Unknown", "name": "Red River Technology LLC", "patent_name": "red river technology llc", "continent": "North America", "local_logo": "red_river_technology_llc.png", "aliases": "Red River; Red River Computer Co., Inc", "permid_links": [{"text": 5062726694, "url": "https://permid.org/1-5062726694"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Red River is a technology integrator that helps customers optimize business processes and maximize technology investments.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 149, "rank": 760}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We can support your organization with the solutions you need to stay on top of the latest technology, the tools to manage your investments and the expertise to drive efficiency.", "company_site_link": "http://www.redriver.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3134, "country": "United Kingdom", "website": "https://www.thephoenixgroup.com/", "crunchbase": {"text": "c8596afb-f8b9-4c30-85f4-8a3e1fa2229b", "url": "https://www.crunchbase.com/organization/phoenix-group-229b"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/phoenixgroup-uk"], "stage": "Mature", "name": "Phoenix Group Holdings", "patent_name": "Phoenix Group Holdings", "continent": "Europe", "local_logo": "phoenix_group_holdings.png", "aliases": "Phoenix Group Holdings; Phoenix Group Holdings Plc", "permid_links": [{"text": 5000095322, "url": "https://permid.org/1-5000095322"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PKC:PNXGF", "url": "https://www.google.com/finance/quote/PKC:PNXGF"}, {"text": "FRA:1BF", "url": "https://www.google.com/finance/quote/1BF:FRA"}, {"text": "DEU:1BF", "url": "https://www.google.com/finance/quote/1BF:DEU"}, {"text": "HAN:1BF", "url": "https://www.google.com/finance/quote/1BF:HAN"}, {"text": "STU:1BF", "url": "https://www.google.com/finance/quote/1BF:STU"}, {"text": "BER:1BF", "url": "https://www.google.com/finance/quote/1BF:BER"}, {"text": "LSE:PHNX", "url": "https://www.google.com/finance/quote/LSE:PHNX"}, {"text": "MUN:1BF", "url": "https://www.google.com/finance/quote/1BF:MUN"}], "crunchbase_description": "Phoenix Group is a life assurance fund consolidator that specializes in the management and acquisition of closed life and pension funds.", "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 148, "rank": 762, "sp500_rank": 293}, "ai_jobs": {"counts": null, "total": 28, "rank": 616, "sp500_rank": 261}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2211, "country": "United States", "website": "http://amwater.com/", "crunchbase": {"text": "647387a4-790c-bae7-29c5-6381aad79184", "url": "https://www.crunchbase.com/organization/american-water-works"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/american-water"], "stage": "Mature", "name": "American Water Works Co Inc", "patent_name": "american water works co inc", "continent": "North America", "local_logo": "american_water_works_co_inc.png", "aliases": "American Water; American Water Works; American Water Works Company Inc; American Water Works Company, Inc", "permid_links": [{"text": 4295903347, "url": "https://permid.org/1-4295903347"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AWK", "url": "https://www.google.com/finance/quote/awk:nyse"}], "market_full": [{"text": "DUS:LID", "url": "https://www.google.com/finance/quote/dus:lid"}, {"text": "NYSE:AWK", "url": "https://www.google.com/finance/quote/awk:nyse"}, {"text": "LSE:0HEW", "url": "https://www.google.com/finance/quote/0hew:lse"}, {"text": "FRA:AWC", "url": "https://www.google.com/finance/quote/awc:fra"}, {"text": "MCX:AWK-RM", "url": "https://www.google.com/finance/quote/awk-rm:mcx"}, {"text": "SAO:A1WK34", "url": "https://www.google.com/finance/quote/a1wk34:sao"}, {"text": "DEU:AWK", "url": "https://www.google.com/finance/quote/awk:deu"}, {"text": "GER:AWCX", "url": "https://www.google.com/finance/quote/awcx:ger"}, {"text": "VIE:AWK", "url": "https://www.google.com/finance/quote/awk:vie"}, {"text": "STU:AWC", "url": "https://www.google.com/finance/quote/awc:stu"}, {"text": "HAN:AWC", "url": "https://www.google.com/finance/quote/awc:han"}, {"text": "BRN:AWC", "url": "https://www.google.com/finance/quote/awc:brn"}, {"text": "DUS:AWC", "url": "https://www.google.com/finance/quote/awc:dus"}, {"text": "NYQ:AWK", "url": "https://www.google.com/finance/quote/awk:nyq"}, {"text": "MUN:AWC", "url": "https://www.google.com/finance/quote/awc:mun"}, {"text": "MEX:AWK*", "url": "https://www.google.com/finance/quote/awk*:mex"}, {"text": "ASE:AWK", "url": "https://www.google.com/finance/quote/ase:awk"}, {"text": "BER:AWC", "url": "https://www.google.com/finance/quote/awc:ber"}], "crunchbase_description": "American Water Works Company, Inc. (American Water) is a water and wastewater utility company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 3, 4, 3, 3, 2, 3, 3, 3, 1, 0], "total": 28, "isTopResearch": false, "rank": 727, "fortune500_rank": 258}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 145, "rank": 763, "fortune500_rank": 391}, "ai_jobs": {"counts": null, "total": 16, "rank": 738, "fortune500_rank": 370}}, "sector": "Utilities", "business_sector": "Utilities", "wikipedia_description": "American Water is an American public utility company operating in the United States and Canada. It was founded in 1886 as the American Water Works & Guarantee Company. In 1914, American Water Works and Guarantee Company became American Water Works and Electric Company. In 1947 it was reorganized as American Water Works Company, Inc. The company was a subsidiary of the German-based RWE Group from 2001 to 2008, but the company was divested on April 23, 2008 in an initial public offering (IPO) on the NYSE.", "wikipedia_link": "https://en.wikipedia.org/wiki/American_Water_Works", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2403, "country": "United States", "website": "https://www.marathonoil.com/", "crunchbase": {"text": "f6ba6938-a88d-8de8-edb1-5307f2ee1172", "url": "https://www.crunchbase.com/organization/marathon-oil-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/marathon-oil-corporation"], "stage": "Mature", "name": "Marathon Oil Corp.", "patent_name": "marathon oil corp.", "continent": "North America", "local_logo": "marathon_oil_corp.png", "aliases": "Marathon Oil Corporation", "permid_links": [{"text": 4295905140, "url": "https://permid.org/1-4295905140"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MRO", "url": "https://www.google.com/finance/quote/mro:nyse"}], "market_full": [{"text": "MEX:MRO", "url": "https://www.google.com/finance/quote/mex:mro"}, {"text": "DUS:USS", "url": "https://www.google.com/finance/quote/dus:uss"}, {"text": "FRA:USS", "url": "https://www.google.com/finance/quote/fra:uss"}, {"text": "NYQ:MRO", "url": "https://www.google.com/finance/quote/mro:nyq"}, {"text": "MUN:USS", "url": "https://www.google.com/finance/quote/mun:uss"}, {"text": "BER:USS", "url": "https://www.google.com/finance/quote/ber:uss"}, {"text": "NYSE:MRO", "url": "https://www.google.com/finance/quote/mro:nyse"}, {"text": "MOEX:MRO-RM", "url": "https://www.google.com/finance/quote/moex:mro-rm"}], "crunchbase_description": "Marathon Oil Corporation is an international independent energy company engaged in exploration and production.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Relevance (information retrieval)", "field_count": 2}], "clusters": [{"cluster_id": 99509, "cluster_count": 2}, {"cluster_id": 5180, "cluster_count": 1}, {"cluster_id": 35889, "cluster_count": 1}, {"cluster_id": 7515, "cluster_count": 1}, {"cluster_id": 74488, "cluster_count": 1}, {"cluster_id": 2785, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2403, "referenced_count": 4}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 3}, {"referent": "seismic_analysis", "task_count": 2}, {"referent": "categorization", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "continual_learning", "task_count": 1}], "methods": [{"referent": "q_learning", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "reduction_a", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [21, 17, 15, 8, 23, 2, 3, 3, 8, 2, 0], "total": 102, "isTopResearch": false, "rank": 511, "fortune500_rank": 191}, "ai_publications": {"counts": [2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "fortune500_rank": 157}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 4, 2, 6, 8, 7, 12, 15, 8, 5, 0], "total": 68, "isTopResearch": false, "rank": 548, "fortune500_rank": 148}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0.5, 4.0, 0, 6.0, 0, 0, 0, 0, 0, 0, 0], "total": 17.0, "isTopResearch": false, "rank": 364, "fortune500_rank": 113}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 145, "rank": 763, "fortune500_rank": 391}, "ai_jobs": {"counts": null, "total": 15, "rank": 754, "fortune500_rank": 376}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "Marathon Oil Corporation, usually simply referred to as Marathon Oil, is an American petroleum and natural gas exploration and production company headquartered in the Marathon Oil Tower in Houston, Texas. Marathon Oil is incorporated in Ohio.", "wikipedia_link": "https://en.wikipedia.org/wiki/Marathon_Oil", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2399, "country": "United States", "website": "https://www.lkqcorp.com/", "crunchbase": {"text": "c52fc7b1-c5be-c57e-62a2-742de124d944", "url": "https://www.crunchbase.com/organization/lkq-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lkq-corporation"], "stage": "Mature", "name": "LKQ Corporation", "patent_name": "lkq corporation", "continent": "North America", "local_logo": "lkq_corporation.png", "aliases": "LKQ Corp; Lkq", "permid_links": [{"text": 4295899858, "url": "https://permid.org/1-4295899858"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:LKQ", "url": "https://www.google.com/finance/quote/lkq:nasdaq"}], "market_full": [{"text": "BER:LKQ1", "url": "https://www.google.com/finance/quote/ber:lkq1"}, {"text": "FRA:LKQ1", "url": "https://www.google.com/finance/quote/fra:lkq1"}, {"text": "LSE:0JSJ", "url": "https://www.google.com/finance/quote/0jsj:lse"}, {"text": "MUN:LKQ1", "url": "https://www.google.com/finance/quote/lkq1:mun"}, {"text": "DEU:LKQX", "url": "https://www.google.com/finance/quote/deu:lkqx"}, {"text": "MOEX:LKQ-RM", "url": "https://www.google.com/finance/quote/lkq-rm:moex"}, {"text": "NASDAQ:LKQ", "url": "https://www.google.com/finance/quote/lkq:nasdaq"}, {"text": "STU:LKQ1", "url": "https://www.google.com/finance/quote/lkq1:stu"}, {"text": "SAO:L1KQ34", "url": "https://www.google.com/finance/quote/l1kq34:sao"}, {"text": "BRN:LKQ1", "url": "https://www.google.com/finance/quote/brn:lkq1"}, {"text": "DUS:LKQ1", "url": "https://www.google.com/finance/quote/dus:lkq1"}, {"text": "HAN:LKQ1", "url": "https://www.google.com/finance/quote/han:lkq1"}], "crunchbase_description": "LKQ Corporation is the largest nationwide provider of alternative collision replacement parts and a leading provider of recycled engines", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 145, "rank": 763, "fortune500_rank": 391}, "ai_jobs": {"counts": null, "total": 15, "rank": 754, "fortune500_rank": 376}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "LKQ Corporation (Like Kind and Quality) is an American provider of alternative and speciality parts to repair and accessorise automobiles and other vehicles. LKQ has operations in North America, Europe and Taiwan. LKQ sells replacement systems, components, equipment and parts to repair and accessorize automobiles, trucks, and recreational and performance vehicles.\nIn December 2018, it was #300 on the list Fortune 500. In March 2017, Dominick P. Zarcone was selected to become the new President and Chief Executive Officer.", "wikipedia_link": "https://en.wikipedia.org/wiki/LKQ_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1406, "country": "United Kingdom", "website": "https://complyadvantage.com/", "crunchbase": {"text": "0cc3c46d-f271-f3fb-edde-b41c549327a9", "url": "https://www.crunchbase.com/organization/comply-advantage"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/complyadvantage"], "stage": "Growth", "name": "Complyadvantage", "patent_name": "complyadvantage", "continent": "Europe", "local_logo": "complyadvantage.png", "aliases": "Complyadvantage Ltd; Ivxs Uk Limited", "permid_links": [{"text": 5051222767, "url": "https://permid.org/1-5051222767"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "ComplyAdvantage provides AI-driven financial crime risk data and detection technology.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 144, "rank": 766}, "ai_jobs": {"counts": null, "total": 29, "rank": 607}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "ComplyAdvantage, founded in 2014, is a UK-based RegTech company that provides anti-money laundering technology. The company uses artificial intelligence, machine learning and natural language processing to help regulated organisations manage risk obligations and counteract financial crime.", "wikipedia_link": "https://en.wikipedia.org/wiki/ComplyAdvantage", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2824, "country": "United States", "website": "http://www.timken.com/", "crunchbase": {"text": "4d3f6782-a4b2-dc1d-98aa-a4100e2b82b8", "url": "https://www.crunchbase.com/organization/the-timken-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-timken-company"], "stage": "Mature", "name": "Timken Co/The", "patent_name": "timken co/the", "continent": "North America", "local_logo": "timken_co_the.png", "aliases": "The Timken Company; Timken; Timken Co", "permid_links": [{"text": 4295905089, "url": "https://permid.org/1-4295905089"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TKR", "url": "https://www.google.com/finance/quote/nyse:tkr"}], "market_full": [{"text": "MEX:TKR", "url": "https://www.google.com/finance/quote/mex:tkr"}, {"text": "DUS:TKH", "url": "https://www.google.com/finance/quote/dus:tkh"}, {"text": "NYSE:TKR", "url": "https://www.google.com/finance/quote/nyse:tkr"}, {"text": "STU:TKH", "url": "https://www.google.com/finance/quote/stu:tkh"}, {"text": "BRN:TKH", "url": "https://www.google.com/finance/quote/brn:tkh"}, {"text": "BER:TKH", "url": "https://www.google.com/finance/quote/ber:tkh"}, {"text": "DEU:TKR", "url": "https://www.google.com/finance/quote/deu:tkr"}, {"text": "NYQ:TKR", "url": "https://www.google.com/finance/quote/nyq:tkr"}, {"text": "FRA:TKH", "url": "https://www.google.com/finance/quote/fra:tkh"}], "crunchbase_description": "The Timken Company provides friction management and power transmission solutions for many major market segments.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 15259, "cluster_count": 1}, {"cluster_id": 13201, "cluster_count": 1}, {"cluster_id": 4044, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "classification_tasks", "task_count": 1}, {"referent": "human_robot_interaction", "task_count": 1}, {"referent": "robotic_process_automation", "task_count": 1}], "methods": [{"referent": "root", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [43, 13, 20, 15, 14, 7, 10, 11, 8, 4, 0], "total": 145, "isTopResearch": false, "rank": 459}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], "total": 3, "isTopResearch": false, "rank": 857}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 1.0, 0, 0], "total": 1.5, "isTopResearch": false, "rank": 855}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 144, "rank": 766}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "The Timken Company is an American manufacturer of bearings and related components and assemblies. For many decades it was also a steelmaker concentrating mainly on alloy steel tube, but the steel business line was spun off to TimkenSteel in 2014. Timken operates from 33 countries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Timken_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3038, "country": "United States", "website": "https://www.dsainc.com/", "crunchbase": {"text": "c929a7a4-bdb0-168b-1a69-fdd9bf8d9473", "url": "https://www.crunchbase.com/organization/data-systems-analysts"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dsa"], "stage": "Unknown", "name": "Data Systems Analysts Inc", "patent_name": "data systems analysts inc", "continent": "North America", "local_logo": "data_systems_analysts_inc.png", "aliases": "Data Systems Analysts; Data Systems Analysts, Inc; Data Systems Analysts, Inc. (Dsa); Dsa Inc", "permid_links": [{"text": 4296358970, "url": "https://permid.org/1-4296358970"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Data Systems Analysts provides Defense and Federal Government customers.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 144, "rank": 766}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Founded in 1963, Data Systems Analysts, Inc. (DSA) has been providing Federal Government customers business-driven Information Technology and consulting solutions and services for more than 50 years. DSA's people excel in helping customers achieve sensitive, mission-critical goals and objectives. DSA is a 100 percent employee-owned company: every employee has a stake in the success of our company and our customers.", "company_site_link": "https://www.dsainc.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1418, "country": "United Kingdom", "website": "https://www.featurespace.com/", "crunchbase": {"text": "303929f9-f8cc-be72-089b-50ebbe530648", "url": "https://www.crunchbase.com/organization/featurespace"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/featurespace"], "stage": "Startup", "name": "Featurespace", "patent_name": "featurespace", "continent": "Europe", "local_logo": "featurespace.png", "aliases": "Featurespace Limited; Featurespace Ltd", "permid_links": [{"text": 5020521660, "url": "https://permid.org/1-5020521660"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Featurespace provides an adaptive behavioral analytics technology and automated deep behavioral networks for risk management.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 1}], "clusters": [{"cluster_id": 29600, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "clustering", "task_count": 1}, {"referent": "human_dynamics", "task_count": 1}, {"referent": "domain_adaptation", "task_count": 1}, {"referent": "target_recognition", "task_count": 1}], "methods": [{"referent": "clustering", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 901}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 10, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 143, "rank": 769}, "ai_jobs": {"counts": null, "total": 39, "rank": 533}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Featurespace is the inventor of Adaptive Behavioral Analytics and Automated Deep Behavioral Networks technology for fraud and financial crime management", "company_site_link": "https://www.featurespace.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 646, "country": "United States", "website": "https://quizlet.com/", "crunchbase": {"text": "aa36050d-c886-e132-2794-40360fa75fac", "url": "https://www.crunchbase.com/organization/quizlet"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/quizlet"], "stage": "Growth", "name": "Quizlet, Inc.", "patent_name": "quizlet, inc.", "continent": "North America", "local_logo": "quizlet,_inc.png", "aliases": "Quizlet; Quizlet Inc", "permid_links": [{"text": 5047644904, "url": "https://permid.org/1-5047644904"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Quizlet is a learning platform that uses activities and games to help students practice and master what they\u2019re learning.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Recommender system", "field_count": 1}], "clusters": [{"cluster_id": 68912, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 805, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 176, "referenced_count": 1}], "tasks": [{"referent": "recommendation", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "bpnet", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "context2vec", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 857}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 142, "rank": 770}, "ai_jobs": {"counts": null, "total": 30, "rank": 597}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Quizlet is an American online study application that allows students to study various topics via learning tools and games. It was founded by Andrew Sutherland in October 2005 and released to the public in January 2007.", "wikipedia_link": "https://en.wikipedia.org/wiki/Quizlet", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2251, "country": "United States", "website": "https://www.celanese.com/", "crunchbase": {"text": "7509ad29-30a4-66b7-42c5-2ada5eed557e", "url": "https://www.crunchbase.com/organization/celanese"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/celanese"], "stage": "Mature", "name": "Celanese", "patent_name": "celanese", "continent": "North America", "local_logo": "celanese.png", "aliases": "Celanese Corp; Celanese Corporation; Hoechst Celanese", "permid_links": [{"text": 4295899696, "url": "https://permid.org/1-4295899696"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CE", "url": "https://www.google.com/finance/quote/ce:nyse"}, {"text": "NASDAQ:CE", "url": "https://www.google.com/finance/quote/ce:nasdaq"}], "market_full": [{"text": "FRA:DG3", "url": "https://www.google.com/finance/quote/dg3:fra"}, {"text": "MUN:DG3", "url": "https://www.google.com/finance/quote/dg3:mun"}, {"text": "MCX:CE-RM", "url": "https://www.google.com/finance/quote/ce-rm:mcx"}, {"text": "DEU:DG3", "url": "https://www.google.com/finance/quote/deu:dg3"}, {"text": "LSE:0HUR", "url": "https://www.google.com/finance/quote/0hur:lse"}, {"text": "STU:DG3", "url": "https://www.google.com/finance/quote/dg3:stu"}, {"text": "DUS:DG3", "url": "https://www.google.com/finance/quote/dg3:dus"}, {"text": "BRN:DG3", "url": "https://www.google.com/finance/quote/brn:dg3"}, {"text": "NYQ:CE", "url": "https://www.google.com/finance/quote/ce:nyq"}, {"text": "BER:DG3", "url": "https://www.google.com/finance/quote/ber:dg3"}, {"text": "NYSE:CE", "url": "https://www.google.com/finance/quote/ce:nyse"}, {"text": "SAO:C1NS34", "url": "https://www.google.com/finance/quote/c1ns34:sao"}, {"text": "ASE:CE", "url": "https://www.google.com/finance/quote/ase:ce"}, {"text": "NASDAQ:CE", "url": "https://www.google.com/finance/quote/ce:nasdaq"}], "crunchbase_description": "Celanese is a global technology and specialty materials company that engineers and manufactures a wide variety of products.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 18450, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "image_processing", "task_count": 1}, {"referent": "speech_production", "task_count": 1}, {"referent": "intrusion_detection", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 6, 7, 2, 8, 9, 9, 2, 2, 4, 0], "total": 58, "isTopResearch": false, "rank": 594, "fortune500_rank": 219}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 5, 4, 3, 1, 3, 4, 5, 6, 6, 1], "total": 39, "isTopResearch": false, "rank": 621, "fortune500_rank": 169}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 141, "rank": 771, "fortune500_rank": 394}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "fortune500_rank": 409}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "Celanese Corporation, formerly known as Hoechst Celanese, is a Fortune 500 global technology and specialty materials company headquartered in Irving, Texas, United States. The company is the world\u2019s leading producer of acetic acid, with the company\u2019s total output, which currently stands at 1.95 million tonnes per year, representing approximately 25% of global production. Celanese is also the world's largest producer of vinyl acetate monomer (VAM).", "wikipedia_link": "https://en.wikipedia.org/wiki/Celanese", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1919, "country": "France", "website": "https://www.dior.com/", "crunchbase": {"text": " a79a9f14-734c-becb-dbda-06d437c412c5 ", "url": " https://www.crunchbase.com/organization/christian-dior-couture "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/christian-dior-couture"], "stage": "Mature", "name": "Christian Dior", "patent_name": "Christian Dior", "continent": "Europe", "local_logo": null, "aliases": "Christian Dior; Christian Dior Se", "permid_links": [{"text": 4295867165, "url": "https://permid.org/1-4295867165"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MUN:DIO", "url": "https://www.google.com/finance/quote/DIO:MUN"}, {"text": "STU:DIO", "url": "https://www.google.com/finance/quote/DIO:STU"}, {"text": "FRA:DIO0", "url": "https://www.google.com/finance/quote/DIO0:FRA"}, {"text": "BER:DIO", "url": "https://www.google.com/finance/quote/BER:DIO"}, {"text": "VIE:CDI", "url": "https://www.google.com/finance/quote/CDI:VIE"}, {"text": "DEU:DIOR", "url": "https://www.google.com/finance/quote/DEU:DIOR"}, {"text": "STU:DIO0", "url": "https://www.google.com/finance/quote/DIO0:STU"}, {"text": "FRA:DIO", "url": "https://www.google.com/finance/quote/DIO:FRA"}, {"text": "GER:DIO0", "url": "https://www.google.com/finance/quote/DIO0:GER"}, {"text": "PAR:CDI", "url": "https://www.google.com/finance/quote/CDI:PAR"}, {"text": "LSE:0NPL", "url": "https://www.google.com/finance/quote/0NPL:LSE"}, {"text": "EBT:CDIP", "url": "https://www.google.com/finance/quote/CDIp:EBT"}, {"text": "DEU:DIO0", "url": "https://www.google.com/finance/quote/DEU:DIO0"}, {"text": "DUS:DIO", "url": "https://www.google.com/finance/quote/DIO:DUS"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0], "total": 3, "isTopResearch": false, "rank": 1148, "sp500_rank": 428}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 140, "rank": 772, "sp500_rank": 294}, "ai_jobs": {"counts": null, "total": 11, "rank": 829, "sp500_rank": 294}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products"}, {"cset_id": 2503, "country": "United States", "website": "http://www.take2games.com/", "crunchbase": {"text": "4c955869-47cf-5410-08ce-4bb9362ab7e2", "url": "https://www.crunchbase.com/organization/take-two-interactive-software"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/take-2-interactive-software-inc-"], "stage": "Mature", "name": "Take-Two Interactive", "patent_name": "take-two interactive", "continent": "North America", "local_logo": "take-two_interactive.png", "aliases": "Take-Two Interactive Software; Take-Two Interactive Software, Inc", "permid_links": [{"text": 4295915088, "url": "https://permid.org/1-4295915088"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:TTWO", "url": "https://www.google.com/finance/quote/nasdaq:ttwo"}], "market_full": [{"text": "FRA:TKE", "url": "https://www.google.com/finance/quote/fra:tke"}, {"text": "BRN:TKE", "url": "https://www.google.com/finance/quote/brn:tke"}, {"text": "VIE:TTWO", "url": "https://www.google.com/finance/quote/ttwo:vie"}, {"text": "LSE:0LCX", "url": "https://www.google.com/finance/quote/0lcx:lse"}, {"text": "MEX:TTWO*", "url": "https://www.google.com/finance/quote/mex:ttwo*"}, {"text": "BER:TKE", "url": "https://www.google.com/finance/quote/ber:tke"}, {"text": "DUS:TKE", "url": "https://www.google.com/finance/quote/dus:tke"}, {"text": "MCX:TTWO-RM", "url": "https://www.google.com/finance/quote/mcx:ttwo-rm"}, {"text": "SAO:T1TW34", "url": "https://www.google.com/finance/quote/sao:t1tw34"}, {"text": "STU:TKE", "url": "https://www.google.com/finance/quote/stu:tke"}, {"text": "DEU:TTWO", "url": "https://www.google.com/finance/quote/deu:ttwo"}, {"text": "GER:TKEX", "url": "https://www.google.com/finance/quote/ger:tkex"}, {"text": "MUN:TKE", "url": "https://www.google.com/finance/quote/mun:tke"}, {"text": "NASDAQ:TTWO", "url": "https://www.google.com/finance/quote/nasdaq:ttwo"}], "crunchbase_description": "Take-Two Interactive Software is an American publisher, developer, and distributor of video games.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 60, "fortune500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 138, "rank": 773, "fortune500_rank": 395}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "fortune500_rank": 294}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Take-Two Interactive Software, Inc. is an American video game holding company based in New York City and founded by Ryan Brant in September 1993.", "wikipedia_link": "https://en.wikipedia.org/wiki/Take-Two_Interactive", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2270, "country": "United States", "website": "http://www.cbrands.com/", "crunchbase": {"text": "ffdd1238-07db-9c53-1932-6a77c7402ad8", "url": "https://www.crunchbase.com/organization/constellation-brands"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/constellation-brands"], "stage": "Mature", "name": "Constellation Brands", "patent_name": "constellation brands", "continent": "North America", "local_logo": "constellation_brands.png", "aliases": "Canandaigua Brands; Cbrands; Constellation Brands, Inc", "permid_links": [{"text": 4295908564, "url": "https://permid.org/1-4295908564"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:STZ", "url": "https://www.google.com/finance/quote/nyse:stz"}, {"text": "NYSE:STZ.B", "url": "https://www.google.com/finance/quote/nyse:stz.b"}], "market_full": [{"text": "ASE:STZ", "url": "https://www.google.com/finance/quote/ase:stz"}, {"text": "BRN:CB1A", "url": "https://www.google.com/finance/quote/brn:cb1a"}, {"text": "DUS:CB1A", "url": "https://www.google.com/finance/quote/cb1a:dus"}, {"text": "MUN:CB1A", "url": "https://www.google.com/finance/quote/cb1a:mun"}, {"text": "MCX:STZ-RM", "url": "https://www.google.com/finance/quote/mcx:stz-rm"}, {"text": "LSE:0REP", "url": "https://www.google.com/finance/quote/0rep:lse"}, {"text": "DEU:CB1B", "url": "https://www.google.com/finance/quote/cb1b:deu"}, {"text": "NYQ:STZ.B", "url": "https://www.google.com/finance/quote/nyq:stz.b"}, {"text": "NYQ:STZ", "url": "https://www.google.com/finance/quote/nyq:stz"}, {"text": "NYSE:STZ", "url": "https://www.google.com/finance/quote/nyse:stz"}, {"text": "GER:CB1X.A", "url": "https://www.google.com/finance/quote/cb1x.a:ger"}, {"text": "DEU:STZ", "url": "https://www.google.com/finance/quote/deu:stz"}, {"text": "NYSE:STZ.B", "url": "https://www.google.com/finance/quote/nyse:stz.b"}, {"text": "MEX:STZ*", "url": "https://www.google.com/finance/quote/mex:stz*"}, {"text": "SAO:STZB34", "url": "https://www.google.com/finance/quote/sao:stzb34"}, {"text": "BER:CB1A", "url": "https://www.google.com/finance/quote/ber:cb1a"}, {"text": "VIE:STZ", "url": "https://www.google.com/finance/quote/stz:vie"}, {"text": "STU:CB1A", "url": "https://www.google.com/finance/quote/cb1a:stu"}, {"text": "FRA:CB1B", "url": "https://www.google.com/finance/quote/cb1b:fra"}, {"text": "FRA:CB1A", "url": "https://www.google.com/finance/quote/cb1a:fra"}, {"text": "ASE:STZ.B", "url": "https://www.google.com/finance/quote/ase:stz.b"}], "crunchbase_description": "Constellation Brands is a producer and marketer of beer, premium wine, and spirits brands.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 3, 2, 0, 1, 2, 4, 3, 0], "total": 16, "isTopResearch": false, "rank": 847, "fortune500_rank": 300}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 138, "rank": 773, "fortune500_rank": 395}, "ai_jobs": {"counts": null, "total": 27, "rank": 627, "fortune500_rank": 321}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages", "wikipedia_description": "Constellation Brands, Inc., a Fortune 500 company, is an American producer and marketer of beer, wine, and spirits. Constellation is the largest beer import company in the US, measured by sales, and has the third-largest market share (7.4 percent) of all major beer suppliers. It also has investments in medical and recreational cannabis. Based in Victor, New York, Constellation has about 40 facilities and approximately 9,000 employees.", "wikipedia_link": "https://en.wikipedia.org/wiki/Constellation_Brands", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 3006, "country": "United States", "website": "https://www.altamiracorp.com/", "crunchbase": {"text": "2c9beff8-5875-4df5-9493-45a33041aa96", "url": "https://www.crunchbase.com/organization/altamira-aa96"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/altamira-corporation"], "stage": "Unknown", "name": "Altamira Technologies Corp", "patent_name": "altamira technologies corp", "continent": "North America", "local_logo": "altamira_technologies_corp.png", "aliases": "Altamira; Altamira Technologies; Altamira Technologies Corporation", "permid_links": [{"text": 5045062943, "url": "https://permid.org/1-5045062943"}], "parent_info": "Clearsky (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Altamira delivers end-to-end analytic and engineering solutions, informed by mission experts.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 0.0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 138, "rank": 773}, "ai_jobs": {"counts": null, "total": 24, "rank": 649}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "As a leading mission partner to the defense and intelligence communities, Altamira provides advanced engineering and analytics to innovate the missions of Space Superiority, Cyberspace Dominance, and Battlespace Awareness.\nWe combine deep domain knowledge with agility and scale to develop and deliver trusted solutions that advance the current mission state.", "company_site_link": "https://www.altamiracorp.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1877, "country": "China", "website": "http://www.cofco.com/", "crunchbase": {"text": " 675f66b0-0af3-c52c-caa8-1c8b5d6baf81", "url": " https://www.crunchbase.com/organization/cofco"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cofco"], "stage": "Mature", "name": "Cofco", "patent_name": "COFCO", "continent": "Asia", "local_logo": null, "aliases": "COFCO; China National Cereals; Cofco Corporation; Oils And Foodstuffs Corporation; Zhongliang; \u4e2d\u7cae; \u4e2d\u7cae\u96c6\u56e2\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5000029409, "url": "https://permid.org/1-5000029409"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "SHH:600737", "url": "https://www.google.com/finance/quote/600737:SHH"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Electronic nose", "field_count": 1}, {"field_name": "Point cloud", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Fingerprint (computing)", "field_count": 1}], "clusters": [{"cluster_id": 102528, "cluster_count": 1}, {"cluster_id": 5014, "cluster_count": 1}, {"cluster_id": 2959, "cluster_count": 1}, {"cluster_id": 3446, "cluster_count": 1}, {"cluster_id": 5195, "cluster_count": 1}, {"cluster_id": 8786, "cluster_count": 1}, {"cluster_id": 793, "cluster_count": 1}, {"cluster_id": 65159, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}, {"ref_CSET_id": 336, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}], "tasks": [{"referent": "art_analysis", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "imputation", "task_count": 1}, {"referent": "model_selection", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "fingerprint_recognition", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "use", "method_count": 1}, {"referent": "wfst", "method_count": 1}, {"referent": "cgnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [134, 119, 151, 116, 129, 120, 178, 175, 211, 126, 6], "total": 1465, "isTopResearch": false, "rank": 146, "sp500_rank": 114}, "ai_publications": {"counts": [0, 0, 2, 1, 0, 1, 1, 1, 0, 1, 0], "total": 7, "isTopResearch": false, "rank": 481, "sp500_rank": 243}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [1, 5, 2, 7, 19, 27, 49, 72, 88, 91, 3], "total": 364, "isTopResearch": false, "rank": 309, "sp500_rank": 154}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 1.0, 7.0, 0, 27.0, 49.0, 72.0, 0, 91.0, 0], "total": 52.0, "isTopResearch": false, "rank": 89, "sp500_rank": 17}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 4, 2, 0], "total": 9, "table": null, "rank": 424, "sp500_rank": 196}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 10, 10, 40, 20, 0], "total": 90, "table": null, "rank": 424, "sp500_rank": 196}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 38, "sp500_rank": 31}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": "industry", "rank": 445, "sp500_rank": 196}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": "application", "rank": 239, "sp500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "sp500_rank": 211}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": "application", "rank": 223, "sp500_rank": 134}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 138, "rank": 773, "sp500_rank": 295}, "ai_jobs": {"counts": null, "total": 22, "rank": 667, "sp500_rank": 273}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2340, "country": "United States", "website": "https://investors.globelifeinsurance.com/", "crunchbase": {"text": "7b53817b-990a-51c5-7ba0-685ac7a3405c", "url": "https://www.crunchbase.com/organization/globe-life-and-accident-insurance"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/globelife"], "stage": "Mature", "name": "Globe Life Inc.", "patent_name": "globe life inc.", "continent": "North America", "local_logo": "globe_life_inc.png", "aliases": "Globe Life; Globe Life And Accident Insurance; Globe Life Inc; Globe Life Insurance", "permid_links": [{"text": 4295905104, "url": "https://permid.org/1-4295905104"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:GL", "url": "https://www.google.com/finance/quote/gl:nyse"}], "market_full": [{"text": "NYSE:GL", "url": "https://www.google.com/finance/quote/gl:nyse"}, {"text": "DEU:TMK", "url": "https://www.google.com/finance/quote/deu:tmk"}, {"text": "ASE:GL", "url": "https://www.google.com/finance/quote/ase:gl"}, {"text": "MUN:TMJ", "url": "https://www.google.com/finance/quote/mun:tmj"}, {"text": "DUS:TMJ", "url": "https://www.google.com/finance/quote/dus:tmj"}, {"text": "NYQ:GL", "url": "https://www.google.com/finance/quote/gl:nyq"}, {"text": "SAO:G1LL34", "url": "https://www.google.com/finance/quote/g1ll34:sao"}, {"text": "STU:TMJ", "url": "https://www.google.com/finance/quote/stu:tmj"}, {"text": "BER:TMJ", "url": "https://www.google.com/finance/quote/ber:tmj"}, {"text": "FRA:TMJ", "url": "https://www.google.com/finance/quote/fra:tmj"}], "crunchbase_description": "Globe Life And Accident Insurance provides life and health insurance to policyholders in the United States.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 138, "rank": 773, "fortune500_rank": 395}, "ai_jobs": {"counts": null, "total": 22, "rank": 667, "fortune500_rank": 336}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "No matter what tomorrow brings, you have protection when you need it most. Globe Life Inc. (NYSE: GL) has helped protect this promise since our roots began in 1900. That\u2019s why more people choose life insurance from Globe Life than any other insurance provider, according to S&P Global Market Intelligence. Together, we work to Make Tomorrow Better.", "company_site_link": "https://investors.globelifeinsurance.com/", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2228, "country": "United States", "website": "http://ball.com/", "crunchbase": {"text": "d310b67f-3a94-e0ea-51cc-5eb263bbafa1", "url": "https://www.crunchbase.com/organization/ball-corporation-altrista"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ball"], "stage": "Mature", "name": "Ball Corp", "patent_name": "ball corp", "continent": "North America", "local_logo": "ball_corp.png", "aliases": "Ball Corporation", "permid_links": [{"text": 4295903520, "url": "https://permid.org/1-4295903520"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BLL", "url": "https://www.google.com/finance/quote/bll:nyse"}], "market_full": [{"text": "MCX:BLL-RM", "url": "https://www.google.com/finance/quote/bll-rm:mcx"}, {"text": "VIE:BLL", "url": "https://www.google.com/finance/quote/bll:vie"}, {"text": "BRN:BL8", "url": "https://www.google.com/finance/quote/bl8:brn"}, {"text": "GER:BL8X", "url": "https://www.google.com/finance/quote/bl8x:ger"}, {"text": "NYSE:BLL", "url": "https://www.google.com/finance/quote/bll:nyse"}, {"text": "NYQ:BLL", "url": "https://www.google.com/finance/quote/bll:nyq"}, {"text": "MUN:BL8", "url": "https://www.google.com/finance/quote/bl8:mun"}, {"text": "LSE:0HL5", "url": "https://www.google.com/finance/quote/0hl5:lse"}, {"text": "DUS:BL8", "url": "https://www.google.com/finance/quote/bl8:dus"}, {"text": "STU:BL8", "url": "https://www.google.com/finance/quote/bl8:stu"}, {"text": "ASE:BLL", "url": "https://www.google.com/finance/quote/ase:bll"}, {"text": "HAN:BL8", "url": "https://www.google.com/finance/quote/bl8:han"}, {"text": "FRA:BL8", "url": "https://www.google.com/finance/quote/bl8:fra"}, {"text": "SAO:B1LL34", "url": "https://www.google.com/finance/quote/b1ll34:sao"}, {"text": "DEU:BLL", "url": "https://www.google.com/finance/quote/bll:deu"}, {"text": "MEX:BLL*", "url": "https://www.google.com/finance/quote/bll*:mex"}, {"text": "BER:BL8", "url": "https://www.google.com/finance/quote/ber:bl8"}], "crunchbase_description": "Ball Corporation is a provider of metal packaging of aerospace and other technologies and services", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Feature extraction", "field_count": 1}, {"field_name": "Wavelet", "field_count": 1}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Inertial measurement unit", "field_count": 1}, {"field_name": "Tracking (particle physics)", "field_count": 1}], "clusters": [{"cluster_id": 28764, "cluster_count": 2}, {"cluster_id": 15743, "cluster_count": 1}, {"cluster_id": 23569, "cluster_count": 1}, {"cluster_id": 90236, "cluster_count": 1}, {"cluster_id": 71442, "cluster_count": 1}, {"cluster_id": 6188, "cluster_count": 1}, {"cluster_id": 21873, "cluster_count": 1}, {"cluster_id": 3683, "cluster_count": 1}, {"cluster_id": 31122, "cluster_count": 1}, {"cluster_id": 27115, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2228, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "srl", "task_count": 2}, {"referent": "remote_sensing", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "autonomous_navigation", "task_count": 2}, {"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "graph_sampling", "task_count": 1}, {"referent": "object_detection", "task_count": 1}, {"referent": "real_time_object_detection", "task_count": 1}, {"referent": "moving_object_detection", "task_count": 1}], "methods": [{"referent": "wgan_gp", "method_count": 2}, {"referent": "som", "method_count": 2}, {"referent": "impala", "method_count": 2}, {"referent": "gts", "method_count": 2}, {"referent": "video_sampling", "method_count": 1}, {"referent": "sttp", "method_count": 1}, {"referent": "esp", "method_count": 1}, {"referent": "ghost_module", "method_count": 1}, {"referent": "wfst", "method_count": 1}, {"referent": "atss", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [20, 37, 20, 36, 24, 32, 14, 22, 10, 15, 0], "total": 230, "isTopResearch": false, "rank": 392, "fortune500_rank": 151}, "ai_publications": {"counts": [0, 2, 1, 1, 0, 0, 0, 0, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [12, 21, 18, 16, 14, 18, 27, 11, 13, 10, 0], "total": 160, "isTopResearch": false, "rank": 426, "fortune500_rank": 124}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 1, 1, 1, 0, 0, 0, 0, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 187, "fortune500_rank": 49}, "citations_per_article": {"counts": [0, 10.5, 18.0, 16.0, 0, 0, 0, 0, 13.0, 0, 0], "total": 32.0, "isTopResearch": false, "rank": 179, "fortune500_rank": 51}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 4, 2, 1, 0, 0, 0], "total": 9, "table": null, "rank": 424, "fortune500_rank": 134}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 40, 20, 10, 0, 0, 0], "total": 90, "table": null, "rank": 424, "fortune500_rank": 134}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 2, 2, 1, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 204, "fortune500_rank": 77}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390, "fortune500_rank": 120}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 209, "fortune500_rank": 71}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 138, "rank": 773, "fortune500_rank": 395}, "ai_jobs": {"counts": null, "total": 7, "rank": 944, "fortune500_rank": 427}}, "sector": "Basic Materials", "business_sector": "Applied Resources", "wikipedia_description": "Ball Corporation is an American company headquartered in Westminster, Colorado. It is best known for its early production of glass jars, lids, and related products used for home canning. Since its founding in Buffalo, New York, in 1880, when it was known as the Wooden Jacket Can Company, the Ball company has expanded and diversified into other business ventures, including aerospace technology. It eventually became the world's largest manufacturer of recyclable metal beverage and food containers.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ball_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2187, "country": "China", "website": "https://www.taikang.com/", "crunchbase": {"text": "86491137-c106-35d0-b36a-e9d3f262e7c8", "url": "https://www.crunchbase.com/organization/taikang-life-insurance"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/taikang-life-insurance"], "stage": "Unknown", "name": "Taikang Insurance Group", "patent_name": "Taikang Insurance Group", "continent": "Asia", "local_logo": "taikang_insurance_group.png", "aliases": "Taikang Insurance Group; Taikang Life Insurance Co.,Ltd; \u6cf0\u5eb7\u4eba\u5bff", "permid_links": [{"text": 4296419072, "url": "https://permid.org/1-4296419072"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Taikang Life Insurance offers life, annuity, and health insurance products.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Structured text", "field_count": 1}], "clusters": [{"cluster_id": 9019, "cluster_count": 2}, {"cluster_id": 5096, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 37, "referenced_count": 7}, {"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 21, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 161, "referenced_count": 2}, {"ref_CSET_id": 812, "referenced_count": 1}, {"ref_CSET_id": 803, "referenced_count": 1}, {"ref_CSET_id": 2079, "referenced_count": 1}], "tasks": [{"referent": "image_classification_tasks", "task_count": 1}, {"referent": "document_image_classification", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "large_scale_person_re_identification", "task_count": 1}, {"referent": "entity_linking", "task_count": 1}, {"referent": "identity_recognition", "task_count": 1}, {"referent": "self_supervised_learning", "task_count": 1}, {"referent": "sentence_classification", "task_count": 1}, {"referent": "action_understanding", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "transformers", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "bp_transformer", "method_count": 1}, {"referent": "resnet", "method_count": 1}, {"referent": "googlenet", "method_count": 1}, {"referent": "fcn", "method_count": 1}, {"referent": "graph_convolutional_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 2, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063, "sp500_rank": 414}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "sp500_rank": 285}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 0], "total": 5, "isTopResearch": false, "rank": 820, "sp500_rank": 333}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 1.0, 0, 0], "total": 1.6666666666666667, "isTopResearch": false, "rank": 851, "sp500_rank": 338}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 8, 23, 54, 59, 49, 0, 0], "total": 193, "table": null, "rank": 104, "sp500_rank": 73}, "ai_patents_growth": {"counts": [], "total": 110.51395598497048, "table": null, "rank": 101, "sp500_rank": 46}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 80, 230, 540, 590, 490, 0, 0], "total": 1930, "table": null, "rank": 104, "sp500_rank": 73}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 2, 4, 8, 5, 3, 0, 0], "total": 22, "table": "industry", "rank": 49, "sp500_rank": 34}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 2, 1, 1, 0, 0], "total": 5, "table": null, "rank": 128, "sp500_rank": 88}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 3, 2, 1, 0, 0], "total": 6, "table": "industry", "rank": 9, "sp500_rank": 6}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 3, 16, 15, 17, 0, 0], "total": 51, "table": "industry", "rank": 115, "sp500_rank": 74}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 2, 13, 15, 5, 0, 0], "total": 35, "table": "industry", "rank": 31, "sp500_rank": 25}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 2, 1, 1, 0, 0], "total": 5, "table": null, "rank": 225, "sp500_rank": 119}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 1, 2, 9, 6, 3, 0, 0], "total": 21, "table": "industry", "rank": 99, "sp500_rank": 70}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 2, 3, 0, 0, 0], "total": 6, "table": "application", "rank": 105, "sp500_rank": 66}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 2, 6, 5, 1, 0, 0], "total": 15, "table": "application", "rank": 97, "sp500_rank": 69}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 3, 6, 18, 30, 30, 0, 0], "total": 87, "table": "application", "rank": 74, "sp500_rank": 53}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "table": "application", "rank": 223, "sp500_rank": 134}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 137, "rank": 779, "sp500_rank": 296}, "ai_jobs": {"counts": null, "total": 32, "rank": 575, "sp500_rank": 255}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2395, "country": "United States", "website": "https://www.lennar.com/", "crunchbase": {"text": "8d18b6b5-47f7-71fd-689c-1e23cc7ba1f4", "url": "https://www.crunchbase.com/organization/lennar-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lennar"], "stage": "Mature", "name": "Lennar Corp.", "patent_name": "lennar corp.", "continent": "North America", "local_logo": "lennar_corp.png", "aliases": "Lennar; Lennar Corporation", "permid_links": [{"text": 4295904410, "url": "https://permid.org/1-4295904410"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LEN", "url": "https://www.google.com/finance/quote/len:nyse"}], "market_full": [{"text": "MUN:LNN", "url": "https://www.google.com/finance/quote/lnn:mun"}, {"text": "BRN:LNN", "url": "https://www.google.com/finance/quote/brn:lnn"}, {"text": "MEX:LEN*", "url": "https://www.google.com/finance/quote/len*:mex"}, {"text": "NYQ:LEN", "url": "https://www.google.com/finance/quote/len:nyq"}, {"text": "MOEX:LEN-RM", "url": "https://www.google.com/finance/quote/len-rm:moex"}, {"text": "SAO:L1EN34", "url": "https://www.google.com/finance/quote/l1en34:sao"}, {"text": "LSE:0JU0", "url": "https://www.google.com/finance/quote/0ju0:lse"}, {"text": "FRA:LNN", "url": "https://www.google.com/finance/quote/fra:lnn"}, {"text": "BER:LNN", "url": "https://www.google.com/finance/quote/ber:lnn"}, {"text": "STU:LNN", "url": "https://www.google.com/finance/quote/lnn:stu"}, {"text": "DEU:LEN", "url": "https://www.google.com/finance/quote/deu:len"}, {"text": "NYSE:LEN", "url": "https://www.google.com/finance/quote/len:nyse"}, {"text": "ASE:LEN", "url": "https://www.google.com/finance/quote/ase:len"}, {"text": "DUS:LNN", "url": "https://www.google.com/finance/quote/dus:lnn"}], "crunchbase_description": "Lennar is a home building company providing new home construction and buying services in various states.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 136, "rank": 780, "fortune500_rank": 399}, "ai_jobs": {"counts": null, "total": 18, "rank": 716, "fortune500_rank": 362}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "Lennar Corporation is a home construction and real estate company based in Fontainebleau, Florida, with a Miami postal address. In 2017 the company was the largest home construction company in the United States after its purchase of CalAtlantic Homes. The company is ranked 154th on the Fortune 500 as of 2019. The company operates in 21 states and owns Rialto Capital Management, the sponsor of six private equity funds that invest in real estate and an originator commercial mortgage loans for securitization. The company also developed and retains ownership interests in 53 apartment communities. The name Lennar is a portmanteau of the first names of two of the company's founders, Leonard Miller and Arnold Rosen.", "wikipedia_link": "https://en.wikipedia.org/wiki/Lennar_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2213, "country": "United States", "website": "https://www.ametek.com/", "crunchbase": {"text": "61e652c0-8a8d-6e82-8357-7b1dce5c2364", "url": "https://www.crunchbase.com/organization/ametek"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ametek"], "stage": "Mature", "name": "AMETEK Inc.", "patent_name": "ametek inc.", "continent": "North America", "local_logo": "ametek_inc.png", "aliases": "Ametek; Ametek Inc; Ametek, Inc; Elgar Electronics Corporation", "permid_links": [{"text": 4295903382, "url": "https://permid.org/1-4295903382"}], "parent_info": "Xantrex Technology (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AME", "url": "https://www.google.com/finance/quote/ame:nyse"}], "market_full": [{"text": "DEU:A0T", "url": "https://www.google.com/finance/quote/a0t:deu"}, {"text": "MUN:A0T", "url": "https://www.google.com/finance/quote/a0t:mun"}, {"text": "NYSE:AME", "url": "https://www.google.com/finance/quote/ame:nyse"}, {"text": "BER:A0T", "url": "https://www.google.com/finance/quote/a0t:ber"}, {"text": "MEX:AMT*", "url": "https://www.google.com/finance/quote/amt*:mex"}, {"text": "BRN:A0T", "url": "https://www.google.com/finance/quote/a0t:brn"}, {"text": "SAO:T1OW34", "url": "https://www.google.com/finance/quote/sao:t1ow34"}, {"text": "STU:A0T", "url": "https://www.google.com/finance/quote/a0t:stu"}, {"text": "NYQ:AME", "url": "https://www.google.com/finance/quote/ame:nyq"}, {"text": "DUS:A0T", "url": "https://www.google.com/finance/quote/a0t:dus"}, {"text": "MCX:AMT-RM", "url": "https://www.google.com/finance/quote/amt-rm:mcx"}, {"text": "ASE:AMT", "url": "https://www.google.com/finance/quote/amt:ase"}, {"text": "HAN:A0T", "url": "https://www.google.com/finance/quote/a0t:han"}, {"text": "FRA:A0T", "url": "https://www.google.com/finance/quote/a0t:fra"}, {"text": "LSE:0HEU", "url": "https://www.google.com/finance/quote/0heu:lse"}, {"text": "VIE:AMTG", "url": "https://www.google.com/finance/quote/amtg:vie"}, {"text": "BRN:LID", "url": "https://www.google.com/finance/quote/brn:lid"}], "crunchbase_description": "AMETEK is a global manufacturer of electronic instruments and electromechanical devices.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 7, 8, 3, 9, 9, 8, 10, 9, 11, 0], "total": 79, "isTopResearch": false, "rank": 547, "fortune500_rank": 205}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 0, 10, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240, "fortune500_rank": 91}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 135, "rank": 781, "fortune500_rank": 400}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153, "fortune500_rank": 463}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "AMETEK, Inc. is an American global manufacturer of electronic instruments and electromechanical devices with a headquarters in the United States and over 220 manufacturing sites worldwide.\nThe company was founded in 1930. The company's original name, American Machine and Metals, was changed to AMETEK in the early 1960s, reflecting AME's evolution from a provider of heavy machinery to a manufacturer of analytical instruments, precision components and specialty materials.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ametek", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1799, "country": "Singapore", "website": "https://www.trafigura.com/", "crunchbase": {"text": " ab5832c6-339f-15d0-8279-2453bff004ea", "url": " https://www.crunchbase.com/organization/trafigura"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/trafigura"], "stage": "Unknown", "name": "Trafigura Group", "patent_name": "Trafigura Group", "continent": "Asia", "local_logo": null, "aliases": "Trafigura; Trafigura Group", "permid_links": [{"text": 5040145126, "url": "https://permid.org/1-5040145126"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063, "sp500_rank": 414}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 134, "rank": 782, "sp500_rank": 297}, "ai_jobs": {"counts": null, "total": 48, "rank": 490, "sp500_rank": 232}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2223, "country": "United States", "website": "https://www.atmosenergy.com/", "crunchbase": {"text": "75242e8c-cf94-031a-1712-2e7064526f00", "url": "https://www.crunchbase.com/organization/atmos-energy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/atmos-energy"], "stage": "Mature", "name": "Atmos Energy", "patent_name": "atmos energy", "continent": "North America", "local_logo": "atmos_energy.png", "aliases": "Atmos Energy Corp; Atmos Energy Corporation; Atmos Energy Marketing; Atmos Energy Marketing Llc", "permid_links": [{"text": 4295903484, "url": "https://permid.org/1-4295903484"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ATO", "url": "https://www.google.com/finance/quote/ato:nyse"}], "market_full": [{"text": "FRA:AEO", "url": "https://www.google.com/finance/quote/aeo:fra"}, {"text": "ASE:ATO", "url": "https://www.google.com/finance/quote/ase:ato"}, {"text": "BRN:AEO", "url": "https://www.google.com/finance/quote/aeo:brn"}, {"text": "NYSE:ATO", "url": "https://www.google.com/finance/quote/ato:nyse"}, {"text": "MUN:AEO", "url": "https://www.google.com/finance/quote/aeo:mun"}, {"text": "MCX:ATO-RM", "url": "https://www.google.com/finance/quote/ato-rm:mcx"}, {"text": "NYQ:ATO", "url": "https://www.google.com/finance/quote/ato:nyq"}, {"text": "GER:AEOX", "url": "https://www.google.com/finance/quote/aeox:ger"}, {"text": "STU:AEO", "url": "https://www.google.com/finance/quote/aeo:stu"}, {"text": "DEU:ATO", "url": "https://www.google.com/finance/quote/ato:deu"}, {"text": "SAO:A1TM34", "url": "https://www.google.com/finance/quote/a1tm34:sao"}, {"text": "HAN:AEO", "url": "https://www.google.com/finance/quote/aeo:han"}], "crunchbase_description": "Atmos Energy Marketing is a full-service natural gas marketing company providing supply and asset management services.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 134, "rank": 782, "fortune500_rank": 401}, "ai_jobs": {"counts": null, "total": 19, "rank": 706, "fortune500_rank": 356}}, "sector": "Utilities", "business_sector": "Utilities", "wikipedia_description": "Atmos Energy Corporation, headquartered in Dallas, Texas, is one of the United States' largest natural-gas-only distributors, serving about three million natural gas distribution customers in over 1,400 communities in nine states from the Blue Ridge Mountains in the East to the Rocky Mountains in the West.", "wikipedia_link": "https://en.wikipedia.org/wiki/Atmos_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1828, "country": "Brazil", "website": "https://petrobras.com.br/", "crunchbase": {"text": " 7d835d0f-0b91-f107-bb4b-938986a025b2", "url": " https://www.crunchbase.com/organization/petrobras"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/petrobras"], "stage": "Mature", "name": "Petrobras", "patent_name": "Petrobras", "continent": "South America", "local_logo": null, "aliases": "Petrobras; Petr\u00f3leo Brasileiro S.A", "permid_links": [{"text": 4295859763, "url": "https://permid.org/1-4295859763"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PBR", "url": "https://www.google.com/finance/quote/NYSE:PBR"}, {"text": "NYSE:PBR.A", "url": "https://www.google.com/finance/quote/NYSE:PBR.A"}], "market_full": [{"text": "STU:PJXA", "url": "https://www.google.com/finance/quote/PJXA:STU"}, {"text": "MUN:PJX", "url": "https://www.google.com/finance/quote/MUN:PJX"}, {"text": "DUS:PJX", "url": "https://www.google.com/finance/quote/DUS:PJX"}, {"text": "BER:PJXC", "url": "https://www.google.com/finance/quote/BER:PJXC"}, {"text": "DEU:PJX", "url": "https://www.google.com/finance/quote/DEU:PJX"}, {"text": "BER:PJX", "url": "https://www.google.com/finance/quote/BER:PJX"}, {"text": "NYQ:PBR", "url": "https://www.google.com/finance/quote/NYQ:PBR"}, {"text": "DUS:PJXA", "url": "https://www.google.com/finance/quote/DUS:PJXA"}, {"text": "BUE:PBR3", "url": "https://www.google.com/finance/quote/BUE:PBR3"}, {"text": "MUN:PJXB", "url": "https://www.google.com/finance/quote/MUN:PJXB"}, {"text": "BER:PJXA", "url": "https://www.google.com/finance/quote/BER:PJXA"}, {"text": "LAT:XPBR", "url": "https://www.google.com/finance/quote/LAT:XPBR"}, {"text": "FRA:PJX", "url": "https://www.google.com/finance/quote/FRA:PJX"}, {"text": "LSE:0KHP", "url": "https://www.google.com/finance/quote/0KHP:LSE"}, {"text": "SAO:PETR4", "url": "https://www.google.com/finance/quote/PETR4:SAO"}, {"text": "NYQ:PBR.A", "url": "https://www.google.com/finance/quote/NYQ:PBR.A"}, {"text": "STU:PJXC", "url": "https://www.google.com/finance/quote/PJXC:STU"}, {"text": "DEU:PJXB", "url": "https://www.google.com/finance/quote/DEU:PJXB"}, {"text": "MEX:PBRN", "url": "https://www.google.com/finance/quote/MEX:PBRN"}, {"text": "MUN:PJXC", "url": "https://www.google.com/finance/quote/MUN:PJXC"}, {"text": "MUN:PJXA", "url": "https://www.google.com/finance/quote/MUN:PJXA"}, {"text": "FRA:PJXA", "url": "https://www.google.com/finance/quote/FRA:PJXA"}, {"text": "LAT:XPBRA", "url": "https://www.google.com/finance/quote/LAT:XPBRA"}, {"text": "DUS:PJXC", "url": "https://www.google.com/finance/quote/DUS:PJXC"}, {"text": "DEU:PETR", "url": "https://www.google.com/finance/quote/DEU:PETR"}, {"text": "NYSE:PBR", "url": "https://www.google.com/finance/quote/NYSE:PBR"}, {"text": "DUS:PJXB", "url": "https://www.google.com/finance/quote/DUS:PJXB"}, {"text": "FRA:PJXB", "url": "https://www.google.com/finance/quote/FRA:PJXB"}, {"text": "DEU:PJXA", "url": "https://www.google.com/finance/quote/DEU:PJXA"}, {"text": "MEX:PBRAN", "url": "https://www.google.com/finance/quote/MEX:PBRAN"}, {"text": "ASE:PBR", "url": "https://www.google.com/finance/quote/ASE:PBR"}, {"text": "BER:PJXB", "url": "https://www.google.com/finance/quote/BER:PJXB"}, {"text": "NYSE:PBR.A", "url": "https://www.google.com/finance/quote/NYSE:PBR.A"}, {"text": "STU:PJX", "url": "https://www.google.com/finance/quote/PJX:STU"}, {"text": "FRA:PJXC", "url": "https://www.google.com/finance/quote/FRA:PJXC"}, {"text": "STU:PJXB", "url": "https://www.google.com/finance/quote/PJXB:STU"}, {"text": "ASE:PBR.A", "url": "https://www.google.com/finance/quote/ASE:PBR.A"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 14}, {"field_name": "Support vector machine", "field_count": 6}, {"field_name": "Ensemble learning", "field_count": 6}, {"field_name": "Robot", "field_count": 5}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Feature (computer vision)", "field_count": 5}, {"field_name": "Convolutional neural network", "field_count": 4}, {"field_name": "Anomaly detection", "field_count": 4}, {"field_name": "Cluster analysis", "field_count": 4}, {"field_name": "Photogrammetry", "field_count": 3}], "clusters": [{"cluster_id": 102491, "cluster_count": 17}, {"cluster_id": 12122, "cluster_count": 10}, {"cluster_id": 70792, "cluster_count": 6}, {"cluster_id": 15719, "cluster_count": 5}, {"cluster_id": 7515, "cluster_count": 5}, {"cluster_id": 22609, "cluster_count": 5}, {"cluster_id": 29455, "cluster_count": 5}, {"cluster_id": 25755, "cluster_count": 4}, {"cluster_id": 33577, "cluster_count": 4}, {"cluster_id": 93015, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 111}, {"ref_CSET_id": 1828, "referenced_count": 104}, {"ref_CSET_id": 163, "referenced_count": 58}, {"ref_CSET_id": 87, "referenced_count": 36}, {"ref_CSET_id": 1617, "referenced_count": 11}, {"ref_CSET_id": 1797, "referenced_count": 11}, {"ref_CSET_id": 115, "referenced_count": 10}, {"ref_CSET_id": 6, "referenced_count": 7}, {"ref_CSET_id": 2344, "referenced_count": 6}, {"ref_CSET_id": 805, "referenced_count": 5}], "tasks": [{"referent": "classification", "task_count": 36}, {"referent": "fault_detection", "task_count": 22}, {"referent": "image_processing", "task_count": 13}, {"referent": "decision_making", "task_count": 12}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 10}, {"referent": "seismic_analysis", "task_count": 9}, {"referent": "point_processes", "task_count": 7}, {"referent": "uncertainty_estimation", "task_count": 7}, {"referent": "developmental_learning", "task_count": 7}, {"referent": "anomaly_detection", "task_count": 7}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 37}, {"referent": "auto_classifier", "method_count": 22}, {"referent": "vqa_models", "method_count": 20}, {"referent": "convolutional_neural_networks", "method_count": 20}, {"referent": "mad_learning", "method_count": 16}, {"referent": "optimization", "method_count": 15}, {"referent": "symbolic_deep_learning", "method_count": 11}, {"referent": "double_q_learning", "method_count": 11}, {"referent": "griffin_lim_algorithm", "method_count": 8}, {"referent": "automl", "method_count": 7}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [505, 470, 536, 384, 530, 378, 477, 443, 506, 366, 26], "total": 4621, "isTopResearch": false, "rank": 73, "sp500_rank": 63}, "ai_publications": {"counts": [18, 9, 13, 6, 12, 16, 35, 33, 44, 12, 1], "total": 199, "isTopResearch": false, "rank": 80, "sp500_rank": 63}, "ai_publications_growth": {"counts": [], "total": -15.036075036075038, "isTopResearch": false, "rank": 1291, "sp500_rank": 332}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [50, 64, 76, 68, 110, 109, 159, 237, 348, 342, 25], "total": 1588, "isTopResearch": false, "rank": 157, "sp500_rank": 91}, "cv_pubs": {"counts": [0, 0, 2, 0, 3, 3, 8, 13, 5, 5, 0], "total": 39, "isTopResearch": true, "rank": 96, "sp500_rank": 64}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 1, 2, 3, 4, 1, 0], "total": 11, "isTopResearch": true, "rank": 87, "sp500_rank": 59}, "robotics_pubs": {"counts": [3, 1, 4, 0, 0, 1, 6, 3, 2, 0, 0], "total": 20, "isTopResearch": true, "rank": 77, "sp500_rank": 59}, "citations_per_article": {"counts": [2.7777777777777777, 7.111111111111111, 5.846153846153846, 11.333333333333334, 9.166666666666666, 6.8125, 4.542857142857143, 7.181818181818182, 7.909090909090909, 28.5, 25.0], "total": 7.9798994974874375, "isTopResearch": false, "rank": 610, "sp500_rank": 230}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 0, 0, 0], "total": 4, "table": null, "rank": 565, "sp500_rank": 235}, "ai_patents_growth": {"counts": [], "total": -66.66666666666667, "table": null, "rank": 1550, "sp500_rank": 456}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 30, 10, 0, 0, 0], "total": 40, "table": null, "rank": 565, "sp500_rank": 235}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "sp500_rank": 92}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 97, "sp500_rank": 78}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "sp500_rank": 152}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239, "sp500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 209, "sp500_rank": 132}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 134, "rank": 782, "sp500_rank": 297}, "ai_jobs": {"counts": null, "total": 6, "rank": 970, "sp500_rank": 324}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 441, "country": "United States", "website": "http://www.extrahop.com", "crunchbase": {"text": "3f5bdbbb-5b6d-e770-9e82-53d7ca2de228", "url": "https://www.crunchbase.com/organization/extrahop-networks"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/extrahop-networks"], "stage": "Growth", "name": "ExtraHop", "patent_name": "extrahop", "continent": "North America", "local_logo": "extrahop.png", "aliases": "Extrahop Networks; Extrahop Networks, Inc", "permid_links": [{"text": 4297907539, "url": "https://permid.org/1-4297907539"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "ExtraHop helps organizations to stop advanced threats with security that can\u2019t be undermined, outsmarted, or compromised.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 2, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 1, 5, 0, 0, 0, 0, 0], "total": 7, "table": null, "rank": 464}, "ai_patents_growth": {"counts": [], "total": 150.0, "table": null, "rank": 69}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 10, 50, 0, 0, 0, 0, 0], "total": 70, "table": null, "rank": 464}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 3, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 363}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 1, 0, 1, 5, 0, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 194}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 133, "rank": 785}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "ExtraHop Networks is an enterprise cyber analytics company headquartered in Seattle, Washington. ExtraHop helps organizations understand and secure their environments by analyzing all network interactions in real time and leveraging machine learning to identify threats, deliver critical applications, and secure investments in the hybrid cloud.", "wikipedia_link": "https://en.wikipedia.org/wiki/ExtraHop_Networks", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 499, "country": "United Kingdom", "website": "https://www.ideagen.com", "crunchbase": {"text": "6b820500-f4c5-ac9e-36fe-d08c52f66494", "url": "https://www.crunchbase.com/organization/ideagen"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ideagen-plc"], "stage": "Mature", "name": "Ideagen", "patent_name": "ideagen", "continent": "Europe", "local_logo": "ideagen.png", "aliases": "Datum International; Ideagen PLC", "permid_links": [{"text": 4297600524, "url": "https://permid.org/1-4297600524"}], "parent_info": "Hg Pooled Management (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MUN:5IG", "url": "https://www.google.com/finance/quote/5ig:mun"}, {"text": "LSE:IDEA", "url": "https://www.google.com/finance/quote/idea:lse"}, {"text": "FWB:5IG", "url": "https://www.google.com/finance/quote/5ig:fwb"}], "crunchbase_description": "Ideagen is a provider of compliance-based information management software.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 132, "rank": 786}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We provide software and services to organisations operating within highly regulated industries such as aviation, financial services, life science, healthcare and manufacturing.", "company_site_link": "https://www.ideagen.com/company", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2185, "country": "United States", "website": "https://www.nucor.com/", "crunchbase": {"text": " 8a7c04f7-64a3-5aec-fe64-e4a36974f0db", "url": " https://www.crunchbase.com/organization/nucor-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nucor-corporation"], "stage": "Mature", "name": "Nucor", "patent_name": "Nucor", "continent": "North America", "local_logo": null, "aliases": "Nucor; Nucor Corporation", "permid_links": [{"text": 4295904636, "url": "https://permid.org/1-4295904636"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NUE", "url": "https://www.google.com/finance/quote/NUE:NYSE"}], "market_full": [{"text": "BUE:NUE3", "url": "https://www.google.com/finance/quote/BUE:NUE3"}, {"text": "NYSE:NUE", "url": "https://www.google.com/finance/quote/NUE:NYSE"}, {"text": "DEU:NUE", "url": "https://www.google.com/finance/quote/DEU:NUE"}, {"text": "DUS:NUO", "url": "https://www.google.com/finance/quote/DUS:NUO"}, {"text": "MUN:NUO", "url": "https://www.google.com/finance/quote/MUN:NUO"}, {"text": "FRA:NUO", "url": "https://www.google.com/finance/quote/FRA:NUO"}, {"text": "SAO:N1UE34", "url": "https://www.google.com/finance/quote/N1UE34:SAO"}, {"text": "BRN:NUO", "url": "https://www.google.com/finance/quote/BRN:NUO"}, {"text": "BER:NUO", "url": "https://www.google.com/finance/quote/BER:NUO"}, {"text": "NYQ:NUE", "url": "https://www.google.com/finance/quote/NUE:NYQ"}, {"text": "STU:NUO", "url": "https://www.google.com/finance/quote/NUO:STU"}, {"text": "LSE:0K9L", "url": "https://www.google.com/finance/quote/0K9L:LSE"}, {"text": "MCX:NUE-RM", "url": "https://www.google.com/finance/quote/MCX:NUE-RM"}, {"text": "ASE:NUE", "url": "https://www.google.com/finance/quote/ASE:NUE"}, {"text": "MEX:NUE*", "url": "https://www.google.com/finance/quote/MEX:NUE*"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 0, 1, 2, 0, 2, 0, 1, 0, 2, 0], "total": 10, "isTopResearch": false, "rank": 942, "fortune500_rank": 327}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 131, "rank": 787, "fortune500_rank": 402}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094, "fortune500_rank": 452}}, "sector": "Basic Materials", "business_sector": "Mineral Resources"}, {"cset_id": 2785, "country": "Norway", "website": "http://www.kongsberg.com/", "crunchbase": {"text": "60e17ea3-12ad-b887-d989-8099236dd629", "url": "https://www.crunchbase.com/organization/kongsberg-gruppen"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kongsberg"], "stage": "Mature", "name": "Kongsberg Gruppen ASA", "patent_name": "kongsberg gruppen asa", "continent": "Europe", "local_logo": "kongsberg_gruppen_asa.png", "aliases": "Kongsberg; Kongsberg Gruppen", "permid_links": [{"text": 4295885408, "url": "https://permid.org/1-4295885408"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MUN:KOZ", "url": "https://www.google.com/finance/quote/koz:mun"}, {"text": "LSE:0F08", "url": "https://www.google.com/finance/quote/0f08:lse"}, {"text": "STO:KOGO", "url": "https://www.google.com/finance/quote/kogo:sto"}, {"text": "DEU:KOZ", "url": "https://www.google.com/finance/quote/deu:koz"}, {"text": "FRA:KOZ", "url": "https://www.google.com/finance/quote/fra:koz"}, {"text": "STU:KOZ", "url": "https://www.google.com/finance/quote/koz:stu"}, {"text": "EBT:KOGO", "url": "https://www.google.com/finance/quote/ebt:kogo"}, {"text": "PKL:NSKFF", "url": "https://www.google.com/finance/quote/nskff:pkl"}], "crunchbase_description": "Kongsberg Gruppen is a technology corporation that delivers advanced and reliable solutions.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Probabilistic logic", "field_count": 2}, {"field_name": "Synthetic aperture radar", "field_count": 2}, {"field_name": "Stereo camera", "field_count": 1}, {"field_name": "Problem domain", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Regression analysis", "field_count": 1}, {"field_name": "Navigation system", "field_count": 1}], "clusters": [{"cluster_id": 5011, "cluster_count": 2}, {"cluster_id": 59129, "cluster_count": 2}, {"cluster_id": 43099, "cluster_count": 1}, {"cluster_id": 43219, "cluster_count": 1}, {"cluster_id": 15847, "cluster_count": 1}, {"cluster_id": 2372, "cluster_count": 1}, {"cluster_id": 7026, "cluster_count": 1}, {"cluster_id": 20578, "cluster_count": 1}, {"cluster_id": 37315, "cluster_count": 1}, {"cluster_id": 61008, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 2785, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 27, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 599, "referenced_count": 1}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 5}, {"referent": "classification", "task_count": 4}, {"referent": "target_recognition", "task_count": 3}, {"referent": "autonomous_navigation", "task_count": 2}, {"referent": "auv", "task_count": 2}, {"referent": "ship_detection", "task_count": 2}, {"referent": "community_detection", "task_count": 2}, {"referent": "video_surveillance", "task_count": 2}, {"referent": "position_estimation", "task_count": 2}, {"referent": "environmental_sound_classification", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 3}, {"referent": "mad_learning", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "feedforward_network", "method_count": 1}, {"referent": "pelu", "method_count": 1}, {"referent": "ger", "method_count": 1}, {"referent": "audio", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "estimation_statistics", "method_count": 1}, {"referent": "pafs", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [16, 16, 15, 8, 21, 20, 20, 19, 19, 17, 0], "total": 171, "isTopResearch": false, "rank": 428}, "ai_publications": {"counts": [2, 0, 2, 1, 2, 1, 1, 3, 2, 3, 0], "total": 17, "isTopResearch": false, "rank": 330}, "ai_publications_growth": {"counts": [], "total": 72.22222222222221, "isTopResearch": false, "rank": 41}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [3, 13, 11, 10, 14, 26, 27, 35, 43, 65, 2], "total": 249, "isTopResearch": false, "rank": 359}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0], "total": 3, "isTopResearch": true, "rank": 344}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [1, 0, 1, 1, 1, 1, 0, 0, 0, 2, 0], "total": 7, "isTopResearch": true, "rank": 142}, "citations_per_article": {"counts": [1.5, 0, 5.5, 10.0, 7.0, 26.0, 27.0, 11.666666666666666, 21.5, 21.666666666666668, 0], "total": 14.647058823529411, "isTopResearch": false, "rank": 413}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 131, "rank": 787}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Kongsberg Gruppen is an international technology group that supplies high-technology systems and solutions to customers in the merchant marine, defence, aerospace, offshore oil and gas industries, and renewable and utilities industries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Kongsberg_Gruppen", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 733, "country": "United States", "website": "http://www.turnitin.com/", "crunchbase": {"text": "2510f953-5ccf-b4ba-8676-38388e60becb", "url": "https://www.crunchbase.com/organization/turnitin"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/turnitin"], "stage": "Unknown", "name": "Turnitin", "patent_name": "turnitin", "continent": "North America", "local_logo": "turnitin.png", "aliases": "Turnitin Llc", "permid_links": [{"text": 4296954233, "url": "https://permid.org/1-4296954233"}], "parent_info": "Advance (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Academic integrity starts here. ", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Orientation (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 19453, "cluster_count": 1}, {"cluster_id": 68352, "cluster_count": 1}, {"cluster_id": 5527, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 7}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 319, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}], "tasks": [{"referent": "automated_essay_scoring", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "question_answering", "task_count": 1}, {"referent": "sequence_to_sequence_speech_recognition", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}, {"referent": "handwriting_recognition", "task_count": 1}, {"referent": "graph_learning", "task_count": 1}], "methods": [{"referent": "appo", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 3, 3, 0, 1, 1, 3, 0, 0], "total": 11, "isTopResearch": false, "rank": 924}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 3, 8, 12, 4, 14, 1], "total": 42, "isTopResearch": false, "rank": 607}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 12.0, 4.0, 0, 0], "total": 14.0, "isTopResearch": false, "rank": 423}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 130, "rank": 789}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Turnitin is an Internet-based plagiarism detection service run by the US company Turnitin, LLC, a subsidiary of Advance Publications.", "wikipedia_link": "https://en.wikipedia.org/wiki/Turnitin", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 194, "country": "United States", "website": "http://www.pathai.com", "crunchbase": {"text": "e9a85db4-6738-c081-a639-6996590fb36e", "url": "https://www.crunchbase.com/organization/pathai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pathai"], "stage": "Growth", "name": "PathAI", "patent_name": "pathai", "continent": "North America", "local_logo": "pathai.png", "aliases": "Pathai Inc; Pathai, Inc", "permid_links": [{"text": 5055425471, "url": "https://permid.org/1-5055425471"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "PathAI is developing technology that assists pathologists in making rapid and accurate diagnoses for every patient, every time.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Interpretability", "field_count": 2}, {"field_name": "Digital pathology", "field_count": 1}], "clusters": [{"cluster_id": 1683, "cluster_count": 3}, {"cluster_id": 55101, "cluster_count": 2}, {"cluster_id": 38327, "cluster_count": 1}, {"cluster_id": 15939, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 1395, "referenced_count": 3}, {"ref_CSET_id": 3116, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 201, "referenced_count": 2}, {"ref_CSET_id": 487, "referenced_count": 2}, {"ref_CSET_id": 1570, "referenced_count": 2}, {"ref_CSET_id": 191, "referenced_count": 2}, {"ref_CSET_id": 663, "referenced_count": 2}], "tasks": [{"referent": "disease_detection", "task_count": 2}, {"referent": "whole_slide_images", "task_count": 2}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "image_analysis", "task_count": 2}, {"referent": "classification", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "single_cell_modeling", "task_count": 1}, {"referent": "interpretability_techniques_for_deep_learning", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}, {"referent": "cancer_detection", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 1}, {"referent": "mim", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "som", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 3, 4, 5, 15, 24, 15, 0], "total": 66, "isTopResearch": false, "rank": 574}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 3, 1, 0], "total": 7, "isTopResearch": false, "rank": 481}, "ai_publications_growth": {"counts": [], "total": -8.333333333333336, "isTopResearch": false, "rank": 1254}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 1, 3, 42, 109, 2], "total": 158, "isTopResearch": false, "rank": 432}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0], "total": 4, "isTopResearch": true, "rank": 313}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 1.0, 0, 1.5, 14.0, 109.0, 0], "total": 22.571428571428573, "isTopResearch": false, "rank": 272}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 20, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 129, "rank": 790}, "ai_jobs": {"counts": null, "total": 38, "rank": 538}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2326, "country": "United States", "website": "http://www.fmc.com/", "crunchbase": {"text": "52e7e4e0-7743-a62b-0c64-aff1ef17ee71", "url": "https://www.crunchbase.com/organization/fmc-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fmc-corporation"], "stage": "Mature", "name": "FMC Corporation", "patent_name": "fmc corporation", "continent": "North America", "local_logo": "fmc_corporation.png", "aliases": "FMC Corp; Fmc; Food Machinery Corporation", "permid_links": [{"text": 4295903957, "url": "https://permid.org/1-4295903957"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:FMC", "url": "https://www.google.com/finance/quote/fmc:nyse"}], "market_full": [{"text": "NYSE:FMC", "url": "https://www.google.com/finance/quote/fmc:nyse"}, {"text": "ASE:FMC", "url": "https://www.google.com/finance/quote/ase:fmc"}, {"text": "DUS:FMQ", "url": "https://www.google.com/finance/quote/dus:fmq"}, {"text": "SAO:F1MC34", "url": "https://www.google.com/finance/quote/f1mc34:sao"}, {"text": "NYQ:FMC", "url": "https://www.google.com/finance/quote/fmc:nyq"}, {"text": "LSE:0IK3", "url": "https://www.google.com/finance/quote/0ik3:lse"}, {"text": "BRN:FMQ", "url": "https://www.google.com/finance/quote/brn:fmq"}, {"text": "MOEX:FMC-RM", "url": "https://www.google.com/finance/quote/fmc-rm:moex"}, {"text": "BER:FMQ", "url": "https://www.google.com/finance/quote/ber:fmq"}, {"text": "DEU:FMC", "url": "https://www.google.com/finance/quote/deu:fmc"}, {"text": "MUN:FMQ", "url": "https://www.google.com/finance/quote/fmq:mun"}, {"text": "FRA:FMQ", "url": "https://www.google.com/finance/quote/fmq:fra"}, {"text": "STU:FMQ", "url": "https://www.google.com/finance/quote/fmq:stu"}], "crunchbase_description": "FMC Corporation is an US-based chemical manufacturing company producing solutions for the agricultural, textile, and healthcare industries.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [11, 17, 15, 16, 12, 36, 29, 25, 17, 10, 0], "total": 188, "isTopResearch": false, "rank": 416, "fortune500_rank": 159}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": null, "rank": 606, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 30, 0, 0, 0], "total": 30, "table": null, "rank": 606, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": "industry", "rank": 29, "fortune500_rank": 8}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 129, "rank": 790, "fortune500_rank": 403}, "ai_jobs": {"counts": null, "total": 31, "rank": 589, "fortune500_rank": 305}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "FMC Corporation (Food Machinery and Chemical Corporation) is an American chemical manufacturing company headquartered in Philadelphia, Pennsylvania, which originated as an insecticide producer and later diversified into other industries. In 1941 at the beginning of WWII, the company received a contract to design and build amphibious tracked landing vehicles for the United States Department of War, and afterwards the company continued to diversify its products. FMC employs 7,000 people worldwide, and had gross revenues of US$2.8 billion in 2017.", "wikipedia_link": "https://en.wikipedia.org/wiki/FMC_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2353, "country": "United States", "website": "https://www.hess.com/", "crunchbase": {"text": "36009b33-cd34-1206-ade5-d46b1a5d24cf", "url": "https://www.crunchbase.com/organization/hess-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hess-corporation"], "stage": "Mature", "name": "Hess Corporation", "patent_name": "hess corporation", "continent": "North America", "local_logo": "hess_corporation.png", "aliases": "Hess; Hess Corp", "permid_links": [{"text": 4295903355, "url": "https://permid.org/1-4295903355"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HES", "url": "https://www.google.com/finance/quote/hes:nyse"}], "market_full": [{"text": "MOEX:HES-RM", "url": "https://www.google.com/finance/quote/hes-rm:moex"}, {"text": "FRA:AHC", "url": "https://www.google.com/finance/quote/ahc:fra"}, {"text": "NYQ:HES", "url": "https://www.google.com/finance/quote/hes:nyq"}, {"text": "DEU:HES", "url": "https://www.google.com/finance/quote/deu:hes"}, {"text": "GER:AHCX", "url": "https://www.google.com/finance/quote/ahcx:ger"}, {"text": "NYSE:HES", "url": "https://www.google.com/finance/quote/hes:nyse"}, {"text": "BER:AHC", "url": "https://www.google.com/finance/quote/ahc:ber"}, {"text": "STU:AHC", "url": "https://www.google.com/finance/quote/ahc:stu"}, {"text": "DUS:AHC", "url": "https://www.google.com/finance/quote/ahc:dus"}, {"text": "SAO:H1ES34", "url": "https://www.google.com/finance/quote/h1es34:sao"}, {"text": "LSE:0J50", "url": "https://www.google.com/finance/quote/0j50:lse"}, {"text": "ASE:HES", "url": "https://www.google.com/finance/quote/ase:hes"}, {"text": "MUN:AHC", "url": "https://www.google.com/finance/quote/ahc:mun"}, {"text": "BRN:AHC", "url": "https://www.google.com/finance/quote/ahc:brn"}], "crunchbase_description": "Hess Corporation is an oil and gas exploration and drilling company.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Uncertainty quantification", "field_count": 1}, {"field_name": "Probabilistic logic", "field_count": 1}], "clusters": [{"cluster_id": 7763, "cluster_count": 2}, {"cluster_id": 54676, "cluster_count": 1}, {"cluster_id": 9045, "cluster_count": 1}, {"cluster_id": 86672, "cluster_count": 1}, {"cluster_id": 72399, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2344, "referenced_count": 1}, {"ref_CSET_id": 2353, "referenced_count": 1}, {"ref_CSET_id": 1828, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "system_identification", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "crop_classification", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}, {"referent": "jsoniq_query_execution", "task_count": 1}, {"referent": "automl", "task_count": 1}, {"referent": "matrix_completion", "task_count": 1}, {"referent": "probabilistic_deep_learning", "task_count": 1}, {"referent": "speech_production", "task_count": 1}], "methods": [{"referent": "hopfield_layer", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "output_functions", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "fractalnet", "method_count": 1}, {"referent": "automl", "method_count": 1}, {"referent": "non_local_operation", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [65, 100, 53, 68, 52, 41, 41, 42, 26, 23, 1], "total": 512, "isTopResearch": false, "rank": 275, "fortune500_rank": 106}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [4, 2, 6, 8, 6, 4, 10, 7, 9, 5, 1], "total": 62, "isTopResearch": false, "rank": 559, "fortune500_rank": 152}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 5.0, 0], "total": 62.0, "isTopResearch": false, "rank": 70, "fortune500_rank": 15}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 129, "rank": 790, "fortune500_rank": 403}, "ai_jobs": {"counts": null, "total": 14, "rank": 775, "fortune500_rank": 384}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "Hess Corporation (formerly Amerada Hess Corporation) is an American global independent energy company involved in the exploration and production of crude oil and natural gas. It was formed by the merger of Hess Oil and Chemical and Amerada Petroleum in 1968. Leon Hess served as CEO from the early 1960s through 1995, after which his son John B Hess succeeded him as chairman and CEO.", "wikipedia_link": "https://en.wikipedia.org/wiki/Hess_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2826, "country": "United States", "website": "https://www.woodward.com/home", "crunchbase": {"text": "f232381d-9f6d-0d2d-3a44-7b646e756855", "url": "https://www.crunchbase.com/organization/woodward"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/woodwardinc"], "stage": "Mature", "name": "Woodward Inc", "patent_name": "woodward inc", "continent": "North America", "local_logo": "woodward_inc.png", "aliases": "Woodward; Woodward, Inc", "permid_links": [{"text": 4295908500, "url": "https://permid.org/1-4295908500"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:WWD", "url": "https://www.google.com/finance/quote/nasdaq:wwd"}], "market_full": [{"text": "NASDAQ:WWD", "url": "https://www.google.com/finance/quote/nasdaq:wwd"}], "crunchbase_description": "Woodward is an independent designer, manufacturer, and service provider of control solutions for the aerospace and industrial markets.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Kalman filter", "field_count": 1}, {"field_name": "Dimensionality reduction", "field_count": 1}, {"field_name": "Pixel", "field_count": 1}], "clusters": [{"cluster_id": 37595, "cluster_count": 1}, {"cluster_id": 28968, "cluster_count": 1}, {"cluster_id": 3797, "cluster_count": 1}, {"cluster_id": 1098, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 820, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}], "tasks": [{"referent": "rul", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "camera_shot_segmentation", "task_count": 1}, {"referent": "dynamic_link_prediction", "task_count": 1}], "methods": [{"referent": "dimensionality_reduction", "method_count": 1}, {"referent": "gaussian_process", "method_count": 1}, {"referent": "use", "method_count": 1}, {"referent": "bpnet", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [13, 12, 15, 18, 7, 6, 8, 16, 14, 4, 0], "total": 113, "isTopResearch": false, "rank": 496, "fortune500_rank": 184}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "fortune500_rank": 166}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "fortune500_rank": 419}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [2, 2, 3, 1, 0, 5, 1, 4, 6, 1, 0], "total": 25, "isTopResearch": false, "rank": 662, "fortune500_rank": 181}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "fortune500_rank": 106}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 3.0, 0, 0, 0, 0, 4.0, 6.0, 0, 0], "total": 8.333333333333334, "isTopResearch": false, "rank": 590, "fortune500_rank": 169}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 129, "rank": 790, "fortune500_rank": 403}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231, "fortune500_rank": 474}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Woodward, Inc. an American designer, manufacturer, and service provider of control systems and control system components (e.g. fuel pumps, engine controls, actuators, air valves, fuel nozzles, and electronics) for aircraftengines, industrial engines and turbines, power generation and mobile industrial equipment.", "wikipedia_link": "https://en.wikipedia.org/wiki/Woodward,_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2418, "country": "United States", "website": "https://www.molsoncoors.com/", "crunchbase": {"text": "b47c57dc-6907-5c72-bcc7-6a93b32ac058", "url": "https://www.crunchbase.com/organization/molson-coors"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/molson-coors"], "stage": "Mature", "name": "Molson Coors Brewing Company", "patent_name": "molson coors brewing company", "continent": "North America", "local_logo": "molson_coors_brewing_company.png", "aliases": "Molson Coors; Molson Coors Beverage Co", "permid_links": [{"text": 4295903805, "url": "https://permid.org/1-4295903805"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TAP.A", "url": "https://www.google.com/finance/quote/nyse:tap.a"}, {"text": "NYSE:TAP", "url": "https://www.google.com/finance/quote/nyse:tap"}], "market_full": [{"text": "ASE:TAP.A", "url": "https://www.google.com/finance/quote/ase:tap.a"}, {"text": "DEU:NY70", "url": "https://www.google.com/finance/quote/deu:ny70"}, {"text": "NYSE:TAP.A", "url": "https://www.google.com/finance/quote/nyse:tap.a"}, {"text": "NYQ:TAP.A", "url": "https://www.google.com/finance/quote/nyq:tap.a"}, {"text": "NYQ:TAP", "url": "https://www.google.com/finance/quote/nyq:tap"}, {"text": "ASE:TAP", "url": "https://www.google.com/finance/quote/ase:tap"}, {"text": "FRA:NY7", "url": "https://www.google.com/finance/quote/fra:ny7"}, {"text": "LSE:0K2K", "url": "https://www.google.com/finance/quote/0k2k:lse"}, {"text": "NYSE:TAP", "url": "https://www.google.com/finance/quote/nyse:tap"}, {"text": "MEX:TAP1*", "url": "https://www.google.com/finance/quote/mex:tap1*"}, {"text": "DUS:NY7", "url": "https://www.google.com/finance/quote/dus:ny7"}, {"text": "GER:NY7X", "url": "https://www.google.com/finance/quote/ger:ny7x"}, {"text": "HAN:NY7", "url": "https://www.google.com/finance/quote/han:ny7"}, {"text": "DEU:NY7", "url": "https://www.google.com/finance/quote/deu:ny7"}, {"text": "FRA:NY70", "url": "https://www.google.com/finance/quote/fra:ny70"}, {"text": "MUN:NY7", "url": "https://www.google.com/finance/quote/mun:ny7"}, {"text": "STU:NY7", "url": "https://www.google.com/finance/quote/ny7:stu"}, {"text": "BER:NY7", "url": "https://www.google.com/finance/quote/ber:ny7"}, {"text": "MCX:TAP-RM", "url": "https://www.google.com/finance/quote/mcx:tap-rm"}, {"text": "BRN:NY7", "url": "https://www.google.com/finance/quote/brn:ny7"}, {"text": "SAO:M1CB34", "url": "https://www.google.com/finance/quote/m1cb34:sao"}], "crunchbase_description": "Molson Coors is a beer company and distributor that brews the world's favorite beer brands.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 28724, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "subjectivity_analysis", "task_count": 1}, {"referent": "bayesian_optimisation", "task_count": 1}, {"referent": "speaker_separation", "task_count": 1}, {"referent": "speech_production", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 1, 1, 4, 0, 1, 0, 0], "total": 8, "isTopResearch": false, "rank": 980, "fortune500_rank": 333}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 881, "fortune500_rank": 245}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "fortune500_rank": 217}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 128, "rank": 794, "fortune500_rank": 406}, "ai_jobs": {"counts": null, "total": 37, "rank": 544, "fortune500_rank": 280}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages", "wikipedia_description": "The Molson Coors Beverage Company, commonly known as Molson Coors, is a multinational drink and brewing company headquartered in Chicago in the United States.", "wikipedia_link": "https://en.wikipedia.org/wiki/Molson_Coors_Beverage_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2350, "country": "United States", "website": "http://www.hpinc.com/", "crunchbase": {"text": "bf8ae5a5-790a-1068-26ea-1171955565de", "url": "https://www.crunchbase.com/organization/helmerich-payne"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/helmerich-&-payne"], "stage": "Mature", "name": "Helmerich & Payne", "patent_name": "helmerich & payne", "continent": "North America", "local_logo": "helmerich_&_payne.png", "aliases": "H&P; Helmerich & Payne, Inc; Helmerich And Payne Inc; Hpinc", "permid_links": [{"text": 4295903159, "url": "https://permid.org/1-4295903159"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HP", "url": "https://www.google.com/finance/quote/hp:nyse"}], "market_full": [{"text": "NYSE:HP", "url": "https://www.google.com/finance/quote/hp:nyse"}, {"text": "MUN:HPC", "url": "https://www.google.com/finance/quote/hpc:mun"}, {"text": "ASE:HP", "url": "https://www.google.com/finance/quote/ase:hp"}, {"text": "BRN:HPC", "url": "https://www.google.com/finance/quote/brn:hpc"}, {"text": "BER:HPC", "url": "https://www.google.com/finance/quote/ber:hpc"}, {"text": "DEU:HP", "url": "https://www.google.com/finance/quote/deu:hp"}, {"text": "LSE:0J4G", "url": "https://www.google.com/finance/quote/0j4g:lse"}, {"text": "STU:HPC", "url": "https://www.google.com/finance/quote/hpc:stu"}, {"text": "NYQ:HP", "url": "https://www.google.com/finance/quote/hp:nyq"}, {"text": "DUS:HPC", "url": "https://www.google.com/finance/quote/dus:hpc"}, {"text": "FRA:HPC", "url": "https://www.google.com/finance/quote/fra:hpc"}], "crunchbase_description": "Helmerich & Payne, Inc. is a contract drilling company which engaged primarily in the drilling of oil and gas wells for exploration.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 45800, "cluster_count": 2}, {"cluster_id": 42621, "cluster_count": 1}, {"cluster_id": 16620, "cluster_count": 1}, {"cluster_id": 86493, "cluster_count": 1}, {"cluster_id": 214, "cluster_count": 1}, {"cluster_id": 62226, "cluster_count": 1}, {"cluster_id": 69594, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 676, "referenced_count": 2}, {"ref_CSET_id": 2344, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "automl", "task_count": 2}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "action_localization", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "steering_control", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "active_learning", "task_count": 1}, {"referent": "continuous_object_recognition", "task_count": 1}], "methods": [{"referent": "atss", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "random_erasing", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "dnas", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 1, 1, 0, 0, 3, 9, 7, 8, 0], "total": 30, "isTopResearch": false, "rank": 713, "fortune500_rank": 255}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 2, 2, 3, 0], "total": 8, "isTopResearch": false, "rank": 455, "fortune500_rank": 128}, "ai_publications_growth": {"counts": [], "total": 25.0, "isTopResearch": false, "rank": 101, "fortune500_rank": 31}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 2, 2, 1, 3, 2, 0], "total": 10, "isTopResearch": false, "rank": 760, "fortune500_rank": 204}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463, "fortune500_rank": 124}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 1, 1, 0], "total": 3, "isTopResearch": true, "rank": 214, "fortune500_rank": 57}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0, 0, 0.5, 1.5, 0.6666666666666666, 0], "total": 1.25, "isTopResearch": false, "rank": 869, "fortune500_rank": 236}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 128, "rank": 794, "fortune500_rank": 406}, "ai_jobs": {"counts": null, "total": 19, "rank": 706, "fortune500_rank": 356}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "Helmerich & Payne, Inc. is an American petroleum contract drilling company engaged in oil and gas well drilling and related services for exploration and production companies headquartered in Tulsa, Oklahoma, with operations throughout the world. Their FlexRigs, introduced in 1998, have been used extensively in drilling unconventional shale formations, such as the Bakken formation in North Dakota and the Permian Basin and Eagle Ford formation in Texas. H&P is the largest on-shore driller in the United States of America with over 20% of the American land drilling market share and over 40% of the super-spec American land drilling market share.", "wikipedia_link": "https://en.wikipedia.org/wiki/Helmerich_%26_Payne", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2310, "country": "United States", "website": "http://www.evergyinc.com", "crunchbase": {"text": "e8efa424-e46f-485e-92d1-3b0fafd24c4b", "url": "crunchbase.com/organization/evergy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/evergyco"], "stage": "Mature", "name": "Evergy", "patent_name": "evergy", "continent": "North America", "local_logo": "evergy.png", "aliases": "Evergy Inc; Evergy, Inc", "permid_links": [{"text": 5057833759, "url": "https://permid.org/1-5057833759"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EVRG", "url": "https://www.google.com/finance/quote/evrg:nyse"}], "market_full": [{"text": "FRA:3E7", "url": "https://www.google.com/finance/quote/3e7:fra"}, {"text": "NYSE:EVRG", "url": "https://www.google.com/finance/quote/evrg:nyse"}, {"text": "ASE:EVRG", "url": "https://www.google.com/finance/quote/ase:evrg"}, {"text": "SAO:E1VR34", "url": "https://www.google.com/finance/quote/e1vr34:sao"}, {"text": "NYQ:EVRG", "url": "https://www.google.com/finance/quote/evrg:nyq"}, {"text": "DEU:3E7", "url": "https://www.google.com/finance/quote/3e7:deu"}, {"text": "STU:3E7", "url": "https://www.google.com/finance/quote/3e7:stu"}, {"text": "MOEX:EVRG-RM", "url": "https://www.google.com/finance/quote/evrg-rm:moex"}, {"text": "BER:3E7", "url": "https://www.google.com/finance/quote/3e7:ber"}], "crunchbase_description": "Evergy is an energy company that provides the best possible energy service to its customers and communities.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 128, "rank": 794, "fortune500_rank": 406}, "ai_jobs": {"counts": null, "total": 11, "rank": 829, "fortune500_rank": 406}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Evergy is an American investor-owned utility (IOU) with publicly traded stock that has its headquarters in Topeka, Kansas, and in Kansas City, Missouri. The company was formed from a merger of Westar Energy of Topeka and Great Plains Energy of Kansas City, Missouri, parent company of Kansas City Power & Light. Evergy is the largest electric company in Kansas, serving more than 1,000,000 residential, commercial and industrial customers in the eastern half of the state. Evergy has a generating capacity of 16,000 megawatt electricity from its over 40 power plants in Kansas and Missouri. Evergy service territory covers 28,130 square miles (72,900 km2) in east Kansas and west Missouri. Evergy owns more than 13,700 miles (22,000 km) of transmission lines and about 52,000 miles of distribution lines.", "wikipedia_link": "https://en.wikipedia.org/wiki/Evergy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 92, "country": "United States", "website": "http://www.fullstory.com", "crunchbase": {"text": "cb4fe666-2935-a7bf-4b87-b562bc8776a6", "url": "https://www.crunchbase.com/organization/fullstory"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fullstory"], "stage": "Mature", "name": "FullStory", "patent_name": "fullstory", "continent": "North America", "local_logo": "fullstory.png", "aliases": "Fullstory Inc; Fullstory, Inc", "permid_links": [{"text": 5043333491, "url": "https://permid.org/1-5043333491"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "FullStory develops a digital experience intelligence platform designed to capture customer experience data.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 128, "rank": 794}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 249, "country": "United States", "website": "https://www.blaize.com/", "crunchbase": {"text": "ca89018f-a31d-03d5-bbb2-47d816714092", "url": "https://www.crunchbase.com/organization/thinci"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/blaize-ai"], "stage": "Mature", "name": "Blaize", "patent_name": "blaize", "continent": "North America", "local_logo": "blaize.png", "aliases": "Blaize Inc; Blaize, Inc; Thinci; Thinci Inc; Thinci, Inc", "permid_links": [{"text": 5038354793, "url": "https://permid.org/1-5038354793"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Blaize is an AI computing platforms company that develops products for the automotive, smart vision, and enterprise computing markets.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": 200.0, "table": null, "rank": 39}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 30, 0, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 128, "rank": 794}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2076, "country": "United Kingdom", "website": "https://www.prudentialplc.com/", "crunchbase": {"text": " 6688d945-642b-7a3e-31e2-b0de7d9d269b ", "url": " https://www.crunchbase.com/organization/prudential-plc "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/prudentialplc"], "stage": "Mature", "name": "Prudential", "patent_name": "Prudential", "continent": "Europe", "local_logo": null, "aliases": "Prudential; Prudential Plc", "permid_links": [{"text": 8589934227, "url": "https://permid.org/1-8589934227"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PUK", "url": "https://www.google.com/finance/quote/NYSE:PUK"}, {"text": "HKG:2378", "url": "https://www.google.com/finance/quote/2378:HKG"}], "market_full": [{"text": "BER:PRU", "url": "https://www.google.com/finance/quote/BER:PRU"}, {"text": "DEU:PRU2", "url": "https://www.google.com/finance/quote/DEU:PRU2"}, {"text": "NYSE:PUK", "url": "https://www.google.com/finance/quote/NYSE:PUK"}, {"text": "DEU:PRU", "url": "https://www.google.com/finance/quote/DEU:PRU"}, {"text": "DUS:PRU", "url": "https://www.google.com/finance/quote/DUS:PRU"}, {"text": "LSE:PRU", "url": "https://www.google.com/finance/quote/LSE:PRU"}, {"text": "FRA:PRU", "url": "https://www.google.com/finance/quote/FRA:PRU"}, {"text": "PKC:PUKPF", "url": "https://www.google.com/finance/quote/PKC:PUKPF"}, {"text": "MUN:PRU2", "url": "https://www.google.com/finance/quote/MUN:PRU2"}, {"text": "ASE:PUK", "url": "https://www.google.com/finance/quote/ASE:PUK"}, {"text": "STU:PRU", "url": "https://www.google.com/finance/quote/PRU:STU"}, {"text": "BRN:PRU", "url": "https://www.google.com/finance/quote/BRN:PRU"}, {"text": "MUN:PRU", "url": "https://www.google.com/finance/quote/MUN:PRU"}, {"text": "SAO:P1UK34", "url": "https://www.google.com/finance/quote/P1UK34:SAO"}, {"text": "SES:K6S", "url": "https://www.google.com/finance/quote/K6S:SES"}, {"text": "MEX:PUKN", "url": "https://www.google.com/finance/quote/MEX:PUKN"}, {"text": "HAN:PRU", "url": "https://www.google.com/finance/quote/HAN:PRU"}, {"text": "NYQ:PUK", "url": "https://www.google.com/finance/quote/NYQ:PUK"}, {"text": "HAM:PRU", "url": "https://www.google.com/finance/quote/HAM:PRU"}, {"text": "GER:PRUX", "url": "https://www.google.com/finance/quote/GER:PRUX"}, {"text": "HKG:2378", "url": "https://www.google.com/finance/quote/2378:HKG"}, {"text": "FRA:PRU2", "url": "https://www.google.com/finance/quote/FRA:PRU2"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "sp500_rank": 446}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 127, "rank": 799, "sp500_rank": 299}, "ai_jobs": {"counts": null, "total": 19, "rank": 706, "sp500_rank": 278}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2242, "country": "United States", "website": "https://www.campbellsoupcompany.com/", "crunchbase": {"text": "35525906-6f2b-dd26-9550-02c250626f9e", "url": "https://www.crunchbase.com/organization/campbell-soup-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/campbell-soup-company"], "stage": "Mature", "name": "Campbell Soup", "patent_name": "campbell soup", "continent": "North America", "local_logo": "campbell_soup.png", "aliases": "Campbell; Campbell Soup Co; Campbell Soup Company; Campbell's", "permid_links": [{"text": 4295903649, "url": "https://permid.org/1-4295903649"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CPB", "url": "https://www.google.com/finance/quote/cpb:nyse"}], "market_full": [{"text": "MCX:CPB", "url": "https://www.google.com/finance/quote/cpb:mcx"}, {"text": "LSE:0HST", "url": "https://www.google.com/finance/quote/0hst:lse"}, {"text": "DUS:CSC", "url": "https://www.google.com/finance/quote/csc:dus"}, {"text": "STU:CSC", "url": "https://www.google.com/finance/quote/csc:stu"}, {"text": "BRN:CSC", "url": "https://www.google.com/finance/quote/brn:csc"}, {"text": "DEU:CPB", "url": "https://www.google.com/finance/quote/cpb:deu"}, {"text": "NYSE:CPB", "url": "https://www.google.com/finance/quote/cpb:nyse"}, {"text": "NYQ:CPB", "url": "https://www.google.com/finance/quote/cpb:nyq"}, {"text": "HAM:CSC", "url": "https://www.google.com/finance/quote/csc:ham"}, {"text": "ASE:CPB", "url": "https://www.google.com/finance/quote/ase:cpb"}, {"text": "MEX:CPB", "url": "https://www.google.com/finance/quote/cpb:mex"}, {"text": "FRA:CSC", "url": "https://www.google.com/finance/quote/csc:fra"}, {"text": "SAO:C1PB34", "url": "https://www.google.com/finance/quote/c1pb34:sao"}, {"text": "HAN:CSC", "url": "https://www.google.com/finance/quote/csc:han"}, {"text": "GER:CSCX", "url": "https://www.google.com/finance/quote/cscx:ger"}, {"text": "MUN:CSC", "url": "https://www.google.com/finance/quote/csc:mun"}], "crunchbase_description": "Campbell Soup Company (Campbell) together with its subsidiaries, is a manufacturer and marketer of branded convenience food products", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 2, 15, 4, 5, 3, 3, 4, 3, 0, 1], "total": 41, "isTopResearch": false, "rank": 653, "fortune500_rank": 241}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 126, "rank": 800, "fortune500_rank": 409}, "ai_jobs": {"counts": null, "total": 19, "rank": 706, "fortune500_rank": 356}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Campbell Soup Company, doing business as Campbell's, is an American processed food and snack company. The company is most closely associated with its flagship canned soup products; however, it has through mergers and acquisitions, grown to become one of the largest processed food companies in the U.S., with a wide variety of products under its flagship Campbell's brand as well as other brands like Pepperidge Farm, Snyder's of Hanover, V8, and Swanson. Under its brands, Campbell's produces soups and other canned meals, baked goods, beverages, and snacks. It is headquartered in Camden, New Jersey.", "wikipedia_link": "https://en.wikipedia.org/wiki/Campbell_Soup_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1398, "country": "United States", "website": "https://www.abnormalsecurity.com", "crunchbase": {"text": "ea5170c0-5c33-40cb-8a18-7dd42d8efcd6", "url": "https://www.crunchbase.com/organization/abnormal-security"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/abnormalsecurity"], "stage": "Growth", "name": "Abnormal Security", "patent_name": "abnormal security", "continent": "North America", "local_logo": "abnormal_security.png", "aliases": "Abnormal Security Corp; Abnormal Security Corporation", "permid_links": [{"text": 5071549238, "url": "https://permid.org/1-5071549238"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Abnormal Security is an email security company that protects enterprises and organizations from targeted email attacks.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 40, 0, 10, 0, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 225}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 125, "rank": 801}, "ai_jobs": {"counts": null, "total": 27, "rank": 627}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Abnormal Security completes your Office 365 deployment by using AI to compute a deep understanding of the people in your enterprise. Abnormal\u2019s anomalous behavior detection is the most effective way to detect account compromise and stop socially engineered email attacks such as BEC.", "company_site_link": "https://www.abnormalsecurity.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 708, "country": "United States", "website": "https://www.str.us", "crunchbase": {"text": "963bb46d-5120-422c-9a19-b48739fef84a", "url": "https://www.crunchbase.com/organization/systems-technology-research"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/str-us"], "stage": "Unknown", "name": "Systems & Technology Research LLC", "patent_name": "systems & technology research llc", "continent": "North America", "local_logo": "systems_&_technology_research_llc.png", "aliases": "Systems & Technology Research; Systems And Technology Research", "permid_links": [{"text": 5036712749, "url": "https://permid.org/1-5036712749"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Systems & Technology Research is a defense & space company providing systems analysis and software engineering services.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Biometrics", "field_count": 1}, {"field_name": "Face (geometry)", "field_count": 1}, {"field_name": "Tracking (particle physics)", "field_count": 1}, {"field_name": "Pose", "field_count": 1}, {"field_name": "Sensor fusion", "field_count": 1}, {"field_name": "Inertial measurement unit", "field_count": 1}, {"field_name": "Precision and recall", "field_count": 1}, {"field_name": "Discriminative model", "field_count": 1}], "clusters": [{"cluster_id": 5011, "cluster_count": 4}, {"cluster_id": 5109, "cluster_count": 2}, {"cluster_id": 16633, "cluster_count": 2}, {"cluster_id": 31395, "cluster_count": 1}, {"cluster_id": 32211, "cluster_count": 1}, {"cluster_id": 34467, "cluster_count": 1}, {"cluster_id": 6975, "cluster_count": 1}, {"cluster_id": 2819, "cluster_count": 1}, {"cluster_id": 49745, "cluster_count": 1}, {"cluster_id": 2480, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 16}, {"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 9}, {"ref_CSET_id": 2601, "referenced_count": 7}, {"ref_CSET_id": 708, "referenced_count": 5}, {"ref_CSET_id": 209, "referenced_count": 3}, {"ref_CSET_id": 792, "referenced_count": 3}, {"ref_CSET_id": 223, "referenced_count": 3}, {"ref_CSET_id": 6, "referenced_count": 3}, {"ref_CSET_id": 815, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "face_recognition", "task_count": 4}, {"referent": "image_alignment", "task_count": 2}, {"referent": "video_surveillance", "task_count": 2}, {"referent": "computer_vision", "task_count": 2}, {"referent": "target_recognition", "task_count": 2}, {"referent": "information_extraction", "task_count": 2}, {"referent": "environmental_sound_classification", "task_count": 1}, {"referent": "6d_pose_estimation", "task_count": 1}, {"referent": "unmanned_aerial_vehicles", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "image_to_image_translation", "method_count": 1}, {"referent": "balanced_l1_loss", "method_count": 1}, {"referent": "triplet_loss", "method_count": 1}, {"referent": "siamese_network", "method_count": 1}, {"referent": "sig", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "3dis", "method_count": 1}, {"referent": "edgeboxes", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 8, 4, 7, 10, 16, 15, 14, 8, 5, 0], "total": 89, "isTopResearch": false, "rank": 527}, "ai_publications": {"counts": [0, 4, 3, 2, 5, 4, 0, 3, 1, 1, 0], "total": 23, "isTopResearch": false, "rank": 280}, "ai_publications_growth": {"counts": [], "total": -33.333333333333336, "isTopResearch": false, "rank": 1404}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 12, 16, 33, 50, 74, 109, 90, 104, 61, 2], "total": 551, "isTopResearch": false, "rank": 260}, "cv_pubs": {"counts": [0, 3, 0, 1, 1, 2, 0, 2, 1, 1, 0], "total": 11, "isTopResearch": true, "rank": 196}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 3.0, 5.333333333333333, 16.5, 10.0, 18.5, 0, 30.0, 104.0, 61.0, 0], "total": 23.956521739130434, "isTopResearch": false, "rank": 257}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 125, "rank": 801}, "ai_jobs": {"counts": null, "total": 23, "rank": 656}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We deliver the challenges, mentoring, and collaborators to let you build something of lasting impact", "company_site_link": "https://www.str.us", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2504, "country": "United States", "website": "https://www.tapestry.com/", "crunchbase": {"text": "26331dac-19d2-4300-8e4e-766a6f14aa5d", "url": "https://www.crunchbase.com/organization/tapestry-aa5d"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tapestryinc"], "stage": "Mature", "name": "Tapestry, Inc.", "patent_name": "tapestry, inc.", "continent": "North America", "local_logo": "tapestry,_inc.png", "aliases": "Coach, Inc; Tapestry; Tapestry Inc", "permid_links": [{"text": 4295901506, "url": "https://permid.org/1-4295901506"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TPR", "url": "https://www.google.com/finance/quote/nyse:tpr"}], "market_full": [{"text": "MUN:COY", "url": "https://www.google.com/finance/quote/coy:mun"}, {"text": "SAO:TPRY34", "url": "https://www.google.com/finance/quote/sao:tpry34"}, {"text": "GER:COYX", "url": "https://www.google.com/finance/quote/coyx:ger"}, {"text": "DUS:COY", "url": "https://www.google.com/finance/quote/coy:dus"}, {"text": "BRN:COY", "url": "https://www.google.com/finance/quote/brn:coy"}, {"text": "LSE:0LD5", "url": "https://www.google.com/finance/quote/0ld5:lse"}, {"text": "MCX:TPR-RM", "url": "https://www.google.com/finance/quote/mcx:tpr-rm"}, {"text": "ASE:TPR", "url": "https://www.google.com/finance/quote/ase:tpr"}, {"text": "NYSE:TPR", "url": "https://www.google.com/finance/quote/nyse:tpr"}, {"text": "DEU:COAH", "url": "https://www.google.com/finance/quote/coah:deu"}, {"text": "NYQ:TPR", "url": "https://www.google.com/finance/quote/nyq:tpr"}, {"text": "STU:COY", "url": "https://www.google.com/finance/quote/coy:stu"}, {"text": "FRA:COY", "url": "https://www.google.com/finance/quote/coy:fra"}, {"text": "BER:COY", "url": "https://www.google.com/finance/quote/ber:coy"}, {"text": "MEX:TPR*", "url": "https://www.google.com/finance/quote/mex:tpr*"}], "crunchbase_description": "Tapestry is a global house of brands that embraces the exploration of individuality.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 125, "rank": 801, "fortune500_rank": 410}, "ai_jobs": {"counts": null, "total": 23, "rank": 656, "fortune500_rank": 333}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "Tapestry, Inc. is an American multinational luxury fashion holding company. It is based in New York City and is the parent company of three major brands: Coach New York, Kate Spade New York and Stuart Weitzman. Originally named Coach, Inc., the business changed its name to Tapestry on October 31, 2017.", "wikipedia_link": "https://en.wikipedia.org/wiki/Tapestry,_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2274, "country": "United States", "website": "https://www.coty.com/", "crunchbase": {"text": "ae47a27d-bcab-9141-a9ca-0778bd202c1b", "url": "https://www.crunchbase.com/organization/coty"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/coty"], "stage": "Mature", "name": "Coty, Inc", "patent_name": "coty, inc", "continent": "North America", "local_logo": "coty,_inc.png", "aliases": "Coty; Coty, Inc; Cotytech, Inc", "permid_links": [{"text": 5000068201, "url": "https://permid.org/1-5000068201"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:COTY", "url": "https://www.google.com/finance/quote/coty:nyse"}], "market_full": [{"text": "MOEX:COTY-RM", "url": "https://www.google.com/finance/quote/coty-rm:moex"}, {"text": "STU:CO3A", "url": "https://www.google.com/finance/quote/co3a:stu"}, {"text": "DUS:CO3A", "url": "https://www.google.com/finance/quote/co3a:dus"}, {"text": "LSE:0I4A", "url": "https://www.google.com/finance/quote/0i4a:lse"}, {"text": "BER:CO3A", "url": "https://www.google.com/finance/quote/ber:co3a"}, {"text": "FRA:CO3A", "url": "https://www.google.com/finance/quote/co3a:fra"}, {"text": "NYQ:COTY", "url": "https://www.google.com/finance/quote/coty:nyq"}, {"text": "BRN:CO3A", "url": "https://www.google.com/finance/quote/brn:co3a"}, {"text": "ASE:COTY", "url": "https://www.google.com/finance/quote/ase:coty"}, {"text": "GER:CO3X.A", "url": "https://www.google.com/finance/quote/co3x.a:ger"}, {"text": "NYSE:COTY", "url": "https://www.google.com/finance/quote/coty:nyse"}, {"text": "MUN:CO3A", "url": "https://www.google.com/finance/quote/co3a:mun"}, {"text": "DEU:CO3A", "url": "https://www.google.com/finance/quote/co3a:deu"}, {"text": "SAO:COTY34", "url": "https://www.google.com/finance/quote/coty34:sao"}], "crunchbase_description": "Coty Inc is a New York based beauty company with portfolios in fragrance, color cosmetics and skin care.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 6, 3, 0, 0, 1, 1, 0], "total": 12, "isTopResearch": false, "rank": 907, "fortune500_rank": 317}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 125, "rank": 801, "fortune500_rank": 410}, "ai_jobs": {"counts": null, "total": 15, "rank": 754, "fortune500_rank": 376}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services", "wikipedia_description": "Coty Inc. is an American multinational beauty company founded in 1904 by Fran\u00e7ois Coty. With its subsidiaries, it develops, manufactures, markets, and distributes fragrances, cosmetics, skin care, nail care, and both professional and retail hair care products. Coty owns around 77 brands as of 2018.", "wikipedia_link": "https://en.wikipedia.org/wiki/Coty_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1784, "country": "Japan", "website": "https://www.mitsubishielectric.com/", "crunchbase": {"text": " 2e1e8791-e661-a34d-9a78-bcabfdd1825f ", "url": " https://www.crunchbase.com/organization/mitsubishi-electric "}, "child_crunchbase": [{"text": "aa592d29-374e-6467-25c2-60a57efd855b", "url": "https://www.crunchbase.com/organization/mitsubishi-electric-research-laboratories"}], "linkedin": ["https://www.linkedin.com/company/mitsubishielectric", "https://www.linkedin.com/company/merl"], "stage": "Mature", "name": "Mitsubishi Electric", "patent_name": "Mitsubishi Electric", "continent": "Asia", "local_logo": null, "aliases": "Mitsubishi Electric; Mitsubishi Electric Corporation; \u4e09\u83f1\u5546\u4e8b; \u4e09\u83f1\u96fb\u6a5f", "permid_links": [{"text": 4295877319, "url": "https://permid.org/1-4295877319"}, {"text": 4297372521, "url": "https://permid.org/1-4297372521"}], "parent_info": null, "agg_child_info": "Mitsubishi Electric Research Laboratories", "unagg_child_info": null, "market_filt": [{"text": "TYO:6503", "url": "https://www.google.com/finance/quote/6503:TYO"}], "market_full": [{"text": "BER:MIE1", "url": "https://www.google.com/finance/quote/BER:MIE1"}, {"text": "TYO:6503", "url": "https://www.google.com/finance/quote/6503:TYO"}, {"text": "MUN:MIE1", "url": "https://www.google.com/finance/quote/MIE1:MUN"}, {"text": "FRA:MIE1", "url": "https://www.google.com/finance/quote/FRA:MIE1"}, {"text": "STU:MIE1", "url": "https://www.google.com/finance/quote/MIE1:STU"}, {"text": "DUS:MIE1", "url": "https://www.google.com/finance/quote/DUS:MIE1"}, {"text": "LSE:MEL", "url": "https://www.google.com/finance/quote/LSE:MEL"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 28}, {"field_name": "Reinforcement learning", "field_count": 25}, {"field_name": "Feature (computer vision)", "field_count": 23}, {"field_name": "Robot", "field_count": 21}, {"field_name": "Pose", "field_count": 20}, {"field_name": "Artificial neural network", "field_count": 17}, {"field_name": "Word error rate", "field_count": 15}, {"field_name": "Cluster analysis", "field_count": 15}, {"field_name": "Language model", "field_count": 14}, {"field_name": "Source separation", "field_count": 13}], "clusters": [{"cluster_id": 3291, "cluster_count": 59}, {"cluster_id": 1422, "cluster_count": 44}, {"cluster_id": 5142, "cluster_count": 20}, {"cluster_id": 2410, "cluster_count": 14}, {"cluster_id": 3240, "cluster_count": 11}, {"cluster_id": 17758, "cluster_count": 11}, {"cluster_id": 14477, "cluster_count": 11}, {"cluster_id": 2214, "cluster_count": 10}, {"cluster_id": 4473, "cluster_count": 9}, {"cluster_id": 3742, "cluster_count": 8}], "company_references": [{"ref_CSET_id": 1784, "referenced_count": 1266}, {"ref_CSET_id": 786, "referenced_count": 1201}, {"ref_CSET_id": 101, "referenced_count": 1105}, {"ref_CSET_id": 163, "referenced_count": 786}, {"ref_CSET_id": 87, "referenced_count": 318}, {"ref_CSET_id": 3131, "referenced_count": 262}, {"ref_CSET_id": 115, "referenced_count": 197}, {"ref_CSET_id": 6, "referenced_count": 108}, {"ref_CSET_id": 23, "referenced_count": 74}, {"ref_CSET_id": 127, "referenced_count": 63}], "tasks": [{"referent": "classification", "task_count": 81}, {"referent": "speech_recognition", "task_count": 69}, {"referent": "robots", "task_count": 47}, {"referent": "autonomous_vehicles", "task_count": 43}, {"referent": "autonomous_driving", "task_count": 40}, {"referent": "image_processing", "task_count": 39}, {"referent": "speaker_separation", "task_count": 33}, {"referent": "end_to_end_speech_recognition", "task_count": 32}, {"referent": "computer_vision", "task_count": 27}, {"referent": "image_restoration", "task_count": 26}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 98}, {"referent": "vqa_models", "method_count": 55}, {"referent": "q_learning", "method_count": 48}, {"referent": "3d_representations", "method_count": 46}, {"referent": "optimization", "method_count": 39}, {"referent": "deep_belief_network", "method_count": 38}, {"referent": "symbolic_deep_learning", "method_count": 34}, {"referent": "double_q_learning", "method_count": 31}, {"referent": "convolutional_neural_networks", "method_count": 30}, {"referent": "griffin_lim_algorithm", "method_count": 27}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [567, 625, 620, 693, 772, 785, 843, 838, 614, 516, 12], "total": 6885, "isTopResearch": false, "rank": 51, "sp500_rank": 46}, "ai_publications": {"counts": [58, 50, 61, 77, 98, 97, 129, 133, 106, 41, 1], "total": 851, "isTopResearch": false, "rank": 29, "sp500_rank": 23}, "ai_publications_growth": {"counts": [], "total": -26.17357713429398, "isTopResearch": false, "rank": 1374, "sp500_rank": 373}, "ai_pubs_top_conf": {"counts": [7, 3, 7, 4, 11, 13, 8, 13, 4, 5, 0], "total": 75, "isTopResearch": false, "rank": 33, "sp500_rank": 19}, "citation_counts": {"counts": [567, 771, 956, 1307, 1737, 2335, 3321, 4154, 4858, 3235, 117], "total": 23358, "isTopResearch": false, "rank": 30, "sp500_rank": 20}, "cv_pubs": {"counts": [26, 18, 24, 24, 27, 21, 29, 34, 29, 9, 1], "total": 242, "isTopResearch": true, "rank": 32, "sp500_rank": 23}, "nlp_pubs": {"counts": [3, 6, 8, 11, 17, 17, 14, 10, 5, 2, 0], "total": 93, "isTopResearch": true, "rank": 22, "sp500_rank": 16}, "robotics_pubs": {"counts": [9, 7, 7, 18, 22, 21, 33, 33, 17, 11, 0], "total": 178, "isTopResearch": true, "rank": 13, "sp500_rank": 11}, "citations_per_article": {"counts": [9.775862068965518, 15.42, 15.672131147540984, 16.974025974025974, 17.724489795918366, 24.072164948453608, 25.74418604651163, 31.23308270676692, 45.83018867924528, 78.90243902439025, 117.0], "total": 27.44770857814336, "isTopResearch": false, "rank": 212, "sp500_rank": 56}}, "patents": {"ai_patents": {"counts": [9, 18, 18, 51, 76, 99, 156, 122, 43, 3, 0], "total": 595, "table": null, "rank": 49, "sp500_rank": 40}, "ai_patents_growth": {"counts": [], "total": 22.01468122520754, "table": null, "rank": 298, "sp500_rank": 139}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [90, 180, 180, 510, 760, 990, 1560, 1220, 430, 30, 0], "total": 5950, "table": null, "rank": 49, "sp500_rank": 40}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 1, 2, 1, 9, 8, 2, 2, 0, 0], "total": 26, "table": null, "rank": 23, "sp500_rank": 18}, "Life_Sciences": {"counts": [0, 0, 0, 2, 2, 4, 5, 1, 0, 0, 0], "total": 14, "table": null, "rank": 64, "sp500_rank": 43}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 3, 5, 3, 1, 3, 1, 0, 0], "total": 17, "table": null, "rank": 63, "sp500_rank": 47}, "Transportation": {"counts": [3, 3, 2, 13, 14, 14, 15, 12, 0, 0, 0], "total": 76, "table": "industry", "rank": 32, "sp500_rank": 26}, "Industrial_and_Manufacturing": {"counts": [0, 1, 1, 3, 6, 13, 34, 17, 6, 0, 0], "total": 81, "table": "industry", "rank": 11, "sp500_rank": 9}, "Education": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 50, "sp500_rank": 36}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [2, 7, 4, 7, 24, 20, 26, 22, 9, 0, 0], "total": 121, "table": "industry", "rank": 65, "sp500_rank": 47}, "Banking_and_Finance": {"counts": [0, 1, 0, 0, 0, 2, 3, 2, 0, 0, 0], "total": 8, "table": null, "rank": 84, "sp500_rank": 62}, "Telecommunications": {"counts": [1, 0, 1, 3, 12, 14, 18, 9, 4, 0, 0], "total": 62, "table": "industry", "rank": 67, "sp500_rank": 56}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 55, "sp500_rank": 41}, "Business": {"counts": [1, 2, 1, 2, 5, 7, 8, 6, 0, 0, 0], "total": 32, "table": null, "rank": 76, "sp500_rank": 55}, "Energy_Management": {"counts": [2, 3, 1, 3, 4, 14, 18, 7, 3, 0, 0], "total": 55, "table": "industry", "rank": 13, "sp500_rank": 13}, "Entertainment": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22}, "Language_Processing": {"counts": [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 75, "sp500_rank": 50}, "Speech_Processing": {"counts": [1, 2, 5, 6, 6, 6, 4, 5, 1, 0, 0], "total": 36, "table": "application", "rank": 30, "sp500_rank": 22}, "Knowledge_Representation": {"counts": [1, 0, 1, 2, 1, 7, 3, 2, 1, 0, 0], "total": 18, "table": null, "rank": 56, "sp500_rank": 41}, "Planning_and_Scheduling": {"counts": [0, 1, 0, 2, 4, 6, 6, 5, 0, 0, 0], "total": 24, "table": "application", "rank": 73, "sp500_rank": 57}, "Control": {"counts": [1, 6, 7, 18, 27, 35, 51, 31, 11, 0, 0], "total": 187, "table": "application", "rank": 21, "sp500_rank": 16}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [2, 4, 6, 18, 26, 25, 28, 20, 5, 0, 0], "total": 134, "table": "application", "rank": 57, "sp500_rank": 44}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 2, 2, 4, 10, 2, 1, 0, 0], "total": 22, "table": null, "rank": 61, "sp500_rank": 47}, "Measuring_and_Testing": {"counts": [2, 2, 2, 11, 11, 16, 17, 14, 4, 0, 0], "total": 79, "table": "application", "rank": 32, "sp500_rank": 24}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 125, "rank": 801, "sp500_rank": 300}, "ai_jobs": {"counts": null, "total": 9, "rank": 880, "sp500_rank": 304}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Consumer Goods Conglomerates"}, {"cset_id": 2537, "country": "United States", "website": "https://www.wecenergygroup.com/", "crunchbase": {"text": "ad1e8dee-00d8-dcdd-8cc3-068ba20041b1", "url": "https://www.crunchbase.com/organization/wec-energy-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/wec-energy-group"], "stage": "Mature", "name": "WEC Energy Group", "patent_name": "wec energy group", "continent": "North America", "local_logo": "wec_energy_group.png", "aliases": "Wec Energy Group Inc", "permid_links": [{"text": 4295905346, "url": "https://permid.org/1-4295905346"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:WEC", "url": "https://www.google.com/finance/quote/nyse:wec"}], "market_full": [{"text": "NYQ:WEC", "url": "https://www.google.com/finance/quote/nyq:wec"}, {"text": "ASE:WEC", "url": "https://www.google.com/finance/quote/ase:wec"}, {"text": "NYSE:WEC", "url": "https://www.google.com/finance/quote/nyse:wec"}, {"text": "SAO:W1EC34", "url": "https://www.google.com/finance/quote/sao:w1ec34"}, {"text": "LSE:0LSL", "url": "https://www.google.com/finance/quote/0lsl:lse"}, {"text": "MCX:WEC-RM", "url": "https://www.google.com/finance/quote/mcx:wec-rm"}, {"text": "BER:WIC", "url": "https://www.google.com/finance/quote/ber:wic"}, {"text": "MUN:WIC", "url": "https://www.google.com/finance/quote/mun:wic"}, {"text": "FRA:WIC", "url": "https://www.google.com/finance/quote/fra:wic"}, {"text": "STU:WIC", "url": "https://www.google.com/finance/quote/stu:wic"}, {"text": "DUS:WIC", "url": "https://www.google.com/finance/quote/dus:wic"}, {"text": "DEU:WICG", "url": "https://www.google.com/finance/quote/deu:wicg"}], "crunchbase_description": "WEC Energy Group is one of the nation\u2019s largest electric and natural gas delivery companies.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 125, "rank": 801, "fortune500_rank": 410}, "ai_jobs": {"counts": null, "total": 7, "rank": 944, "fortune500_rank": 427}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "WEC Energy Group Inc., based in Milwaukee, Wisconsin, provides electricity and natural gas to 4.4 million customers across four states. The company operates through its brands \u2013 We Energies (Wisconsin Electric Power and Wisconsin Gas), Wisconsin Public Service, Peoples Gas, North Shore Gas, Michigan Gas Utilities, Minnesota Energy Resources and Upper Michigan Energy Resources.", "wikipedia_link": "https://en.wikipedia.org/wiki/WEC_Energy_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2148, "country": "Taiwan", "website": "https://www.cathaylife.com.tw/", "crunchbase": {"text": " 329edf08-cf3b-42e5-6d78-2f50e1dbafbe ", "url": " https://www.crunchbase.com/organization/cathay-life-insurance "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cathay-life-insurance"], "stage": "Unknown", "name": "Cathay Life Insurance", "patent_name": "Cathay Life Insurance", "continent": "Asia", "local_logo": null, "aliases": "Cathay Life Insurance; Cathay Life Insurance Company, Ltd; \u56fd\u6cf0\u4eba\u5bff\u4fdd\u9669\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295891047, "url": "https://permid.org/1-4295891047"}], "parent_info": "Cathay United Bank", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 122, "rank": 807, "sp500_rank": 301}, "ai_jobs": {"counts": null, "total": 27, "rank": 627, "sp500_rank": 262}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2260, "country": "United States", "website": "https://www.citizensbank.com/", "crunchbase": {"text": "91ec350a-f995-54c7-6fc5-53cd63cc3635", "url": "https://www.crunchbase.com/organization/citizens-bank"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/rbs-citizens-financial-group"], "stage": "Mature", "name": "Citizens Financial Group", "patent_name": "citizens financial group", "continent": "North America", "local_logo": "citizens_financial_group.png", "aliases": "Cfg; Citizens; Citizens Bank; Citizens Bank, N.A; Citizens Financial; Citizens Financial Group Inc; Citizens Financial Group, Inc", "permid_links": [{"text": 4296419629, "url": "https://permid.org/1-4296419629"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CFG", "url": "https://www.google.com/finance/quote/cfg:nyse"}, {"text": "NYSE:CFG.PRE", "url": "https://www.google.com/finance/quote/cfg.pre:nyse"}, {"text": "NYSE:CFG.PRD", "url": "https://www.google.com/finance/quote/cfg.prd:nyse"}], "market_full": [{"text": "ASE:CFG.PRD", "url": "https://www.google.com/finance/quote/ase:cfg.prd"}, {"text": "NYSE:CFG", "url": "https://www.google.com/finance/quote/cfg:nyse"}, {"text": "LSE:0HYP", "url": "https://www.google.com/finance/quote/0hyp:lse"}, {"text": "ASE:CFG", "url": "https://www.google.com/finance/quote/ase:cfg"}, {"text": "BRN:1C5", "url": "https://www.google.com/finance/quote/1c5:brn"}, {"text": "NYQ:CFG", "url": "https://www.google.com/finance/quote/cfg:nyq"}, {"text": "NYSE:CFG.PRE", "url": "https://www.google.com/finance/quote/cfg.pre:nyse"}, {"text": "NYSE:CFG.PRD", "url": "https://www.google.com/finance/quote/cfg.prd:nyse"}, {"text": "NYQ:CFG.PRD", "url": "https://www.google.com/finance/quote/cfg.prd:nyq"}, {"text": "NYQ:CFG.PRE", "url": "https://www.google.com/finance/quote/cfg.pre:nyq"}, {"text": "ASE:CFG.PRE", "url": "https://www.google.com/finance/quote/ase:cfg.pre"}, {"text": "BER:1C5", "url": "https://www.google.com/finance/quote/1c5:ber"}, {"text": "DEU:1C5", "url": "https://www.google.com/finance/quote/1c5:deu"}, {"text": "DUS:1C5", "url": "https://www.google.com/finance/quote/1c5:dus"}, {"text": "MEX:CFG*", "url": "https://www.google.com/finance/quote/cfg*:mex"}, {"text": "HAN:1C5", "url": "https://www.google.com/finance/quote/1c5:han"}, {"text": "FRA:1C5", "url": "https://www.google.com/finance/quote/1c5:fra"}, {"text": "SAO:C1FG34", "url": "https://www.google.com/finance/quote/c1fg34:sao"}, {"text": "MCX:CFG-RM", "url": "https://www.google.com/finance/quote/cfg-rm:mcx"}], "crunchbase_description": "Citizens Bank is the largest financial services firm that specializes in commercial banking, mortgages, credit cards, and mobile banking.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 2, 0, 2, 1, 0, 1, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030, "fortune500_rank": 349}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 67}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 122, "rank": 807, "fortune500_rank": 413}, "ai_jobs": {"counts": null, "total": 23, "rank": 656, "fortune500_rank": 333}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Citizens Financial Group, Inc. is an American bank headquartered in Providence, Rhode Island, which operates in the states of Connecticut, Delaware, Maine, Massachusetts, Michigan, New Hampshire, New Jersey, New York, Ohio, Pennsylvania, and Vermont.", "wikipedia_link": "https://en.wikipedia.org/wiki/Citizens_Financial_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 607, "country": "United States", "website": "https://www.adtech.yahooinc.com/", "crunchbase": {"text": "4a4329d4-758b-de0e-96ee-c744cc7850eb", "url": "https://www.crunchbase.com/organization/oath-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/oathco"], "stage": "Unknown", "name": "Oath", "patent_name": "oath", "continent": "North America", "local_logo": null, "aliases": "Oath (Americas) Inc; Verizon Media; Yahoo", "permid_links": [{"text": 4296599973, "url": "https://permid.org/1-4296599973"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Data stream mining", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Categorical variable", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}], "clusters": [{"cluster_id": 10485, "cluster_count": 2}, {"cluster_id": 17316, "cluster_count": 1}, {"cluster_id": 214, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 11}, {"ref_CSET_id": 101, "referenced_count": 10}, {"ref_CSET_id": 792, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 112, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 550, "referenced_count": 1}], "tasks": [{"referent": "ctr", "task_count": 2}, {"referent": "click_through_rate_prediction", "task_count": 2}, {"referent": "advertising", "task_count": 2}, {"referent": "computer_vision", "task_count": 1}, {"referent": "cbc_test", "task_count": 1}, {"referent": "domain_labelling", "task_count": 1}, {"referent": "image_classification_tasks", "task_count": 1}, {"referent": "image_recognition", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "system_identification", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "deep_voice_3", "method_count": 1}, {"referent": "image_representations", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 3, 9, 4, 0, 0, 1, 0], "total": 17, "isTopResearch": false, "rank": 839}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 0, 0, 0, 2, 9, 24, 39, 64, 26, 1], "total": 165, "isTopResearch": false, "rank": 421}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 2.0, 9.0, 12.0, 0, 0, 0, 0], "total": 41.25, "isTopResearch": false, "rank": 123}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 122, "rank": 807}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services"}, {"cset_id": 1820, "country": "China", "website": "http://www.10086.cn", "crunchbase": {"text": null, "url": null}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/china-mobile-international-limited"], "stage": "Mature", "name": "China Mobile Communications", "patent_name": "China Mobile Communications", "continent": "Asia", "local_logo": null, "aliases": "China Mobile Communications; China Mobile Communications Group Co., Ltd; \u4e2d\u56fd\u79fb\u52a8; \u4e2d\u56fd\u79fb\u52a8\u901a\u4fe1\u96c6\u56e2\u516c\u53f8", "permid_links": [{"text": 5000023626, "url": "https://permid.org/1-5000023626"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:941", "url": "https://www.google.com/finance/quote/941:HKG"}, {"text": "NYSE:CHL", "url": "https://www.google.com/finance/quote/CHL:NYSE"}], "market_full": [{"text": "MUN:CTM", "url": "https://www.google.com/finance/quote/CTM:MUN"}, {"text": "SHH:600941", "url": "https://www.google.com/finance/quote/600941:SHH"}, {"text": "FRA:CTM", "url": "https://www.google.com/finance/quote/CTM:FRA"}, {"text": "MEX:941N", "url": "https://www.google.com/finance/quote/941N:MEX"}, {"text": "MEX:CHLN", "url": "https://www.google.com/finance/quote/CHLN:MEX"}, {"text": "HAM:CTM", "url": "https://www.google.com/finance/quote/CTM:HAM"}, {"text": "DUS:CTM", "url": "https://www.google.com/finance/quote/CTM:DUS"}, {"text": "HKG:941", "url": "https://www.google.com/finance/quote/941:HKG"}, {"text": "HAN:CTM", "url": "https://www.google.com/finance/quote/CTM:HAN"}, {"text": "DEU:0941", "url": "https://www.google.com/finance/quote/0941:DEU"}, {"text": "SWX:CHT", "url": "https://www.google.com/finance/quote/CHT:SWX"}, {"text": "NYSE:CHL", "url": "https://www.google.com/finance/quote/CHL:NYSE"}, {"text": "STU:CTM", "url": "https://www.google.com/finance/quote/CTM:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 14}, {"field_name": "Deep learning", "field_count": 10}, {"field_name": "Artificial neural network", "field_count": 8}, {"field_name": "Cluster analysis", "field_count": 7}, {"field_name": "Convolutional neural network", "field_count": 7}, {"field_name": "Reinforcement learning", "field_count": 7}, {"field_name": "Support vector machine", "field_count": 4}, {"field_name": "Feature extraction", "field_count": 4}, {"field_name": "Segmentation", "field_count": 4}, {"field_name": "Intrusion detection system", "field_count": 3}], "clusters": [{"cluster_id": 7227, "cluster_count": 7}, {"cluster_id": 1027, "cluster_count": 5}, {"cluster_id": 55813, "cluster_count": 5}, {"cluster_id": 10473, "cluster_count": 4}, {"cluster_id": 214, "cluster_count": 4}, {"cluster_id": 884, "cluster_count": 4}, {"cluster_id": 15731, "cluster_count": 4}, {"cluster_id": 39447, "cluster_count": 3}, {"cluster_id": 8457, "cluster_count": 3}, {"cluster_id": 1436, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 223}, {"ref_CSET_id": 163, "referenced_count": 177}, {"ref_CSET_id": 87, "referenced_count": 87}, {"ref_CSET_id": 115, "referenced_count": 35}, {"ref_CSET_id": 112, "referenced_count": 30}, {"ref_CSET_id": 245, "referenced_count": 30}, {"ref_CSET_id": 21, "referenced_count": 21}, {"ref_CSET_id": 1820, "referenced_count": 17}, {"ref_CSET_id": 23, "referenced_count": 17}, {"ref_CSET_id": 37, "referenced_count": 15}], "tasks": [{"referent": "classification", "task_count": 59}, {"referent": "system_identification", "task_count": 15}, {"referent": "network_pruning", "task_count": 15}, {"referent": "feature_selection", "task_count": 13}, {"referent": "disease_detection", "task_count": 12}, {"referent": "image_recognition", "task_count": 11}, {"referent": "activity_detection", "task_count": 10}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 9}, {"referent": "traffic_prediction", "task_count": 9}, {"referent": "image_processing", "task_count": 9}], "methods": [{"referent": "double_q_learning", "method_count": 25}, {"referent": "convolutional_neural_networks", "method_count": 24}, {"referent": "recurrent_neural_networks", "method_count": 21}, {"referent": "q_learning", "method_count": 16}, {"referent": "1d_cnn", "method_count": 16}, {"referent": "symbolic_deep_learning", "method_count": 16}, {"referent": "deep_belief_network", "method_count": 16}, {"referent": "griffin_lim_algorithm", "method_count": 15}, {"referent": "meta_learning_algorithms", "method_count": 14}, {"referent": "3d_representations", "method_count": 13}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [140, 238, 217, 184, 225, 201, 237, 285, 379, 300, 6], "total": 2412, "isTopResearch": false, "rank": 114, "sp500_rank": 90}, "ai_publications": {"counts": [5, 12, 18, 19, 20, 29, 44, 53, 58, 34, 0], "total": 292, "isTopResearch": false, "rank": 61, "sp500_rank": 50}, "ai_publications_growth": {"counts": [], "total": -3.8302675420437304, "isTopResearch": false, "rank": 1228, "sp500_rank": 297}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 2, 2, 0], "total": 6, "isTopResearch": false, "rank": 140, "sp500_rank": 69}, "citation_counts": {"counts": [13, 20, 27, 51, 82, 136, 266, 428, 562, 561, 16], "total": 2162, "isTopResearch": false, "rank": 127, "sp500_rank": 79}, "cv_pubs": {"counts": [3, 2, 5, 8, 10, 4, 13, 21, 21, 9, 0], "total": 96, "isTopResearch": true, "rank": 56, "sp500_rank": 41}, "nlp_pubs": {"counts": [0, 1, 0, 3, 1, 3, 8, 3, 6, 4, 0], "total": 29, "isTopResearch": true, "rank": 57, "sp500_rank": 41}, "robotics_pubs": {"counts": [0, 0, 0, 1, 1, 1, 3, 1, 3, 0, 0], "total": 10, "isTopResearch": true, "rank": 114, "sp500_rank": 82}, "citations_per_article": {"counts": [2.6, 1.6666666666666667, 1.5, 2.6842105263157894, 4.1, 4.689655172413793, 6.045454545454546, 8.075471698113208, 9.689655172413794, 16.5, 0], "total": 7.404109589041096, "isTopResearch": false, "rank": 629, "sp500_rank": 246}}, "patents": {"ai_patents": {"counts": [10, 5, 8, 19, 56, 106, 177, 275, 158, 31, 0], "total": 845, "table": null, "rank": 34, "sp500_rank": 27}, "ai_patents_growth": {"counts": [], "total": 70.54469266653469, "table": null, "rank": 158, "sp500_rank": 75}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [100, 50, 80, 190, 560, 1060, 1770, 2750, 1580, 310, 0], "total": 8450, "table": null, "rank": 34, "sp500_rank": 27}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 5, 1, 0, 0], "total": 7, "table": null, "rank": 64, "sp500_rank": 54}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 2, 3, 5, 2, 0, 0], "total": 13, "table": "industry", "rank": 70, "sp500_rank": 47}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 2, 1, 5, 9, 6, 1, 0], "total": 25, "table": "industry", "rank": 47, "sp500_rank": 36}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 180, "sp500_rank": 119}, "Industrial_and_Manufacturing": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 38, "sp500_rank": 31}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 1, 0, 3, 1, 0, 0, 0], "total": 5, "table": null, "rank": 15, "sp500_rank": 12}, "Personal_Devices_and_Computing": {"counts": [1, 0, 2, 4, 14, 12, 47, 78, 42, 7, 0], "total": 207, "table": "industry", "rank": 38, "sp500_rank": 31}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 3, 0, 0], "total": 5, "table": null, "rank": 103, "sp500_rank": 71}, "Telecommunications": {"counts": [2, 1, 4, 5, 17, 42, 56, 78, 33, 5, 0], "total": 243, "table": "industry", "rank": 18, "sp500_rank": 15}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 2, 0, 0], "total": 5, "table": null, "rank": 37, "sp500_rank": 25}, "Business": {"counts": [2, 0, 0, 2, 14, 12, 14, 31, 13, 1, 0], "total": 89, "table": "industry", "rank": 32, "sp500_rank": 27}, "Energy_Management": {"counts": [0, 0, 0, 1, 1, 0, 2, 3, 3, 0, 0], "total": 10, "table": null, "rank": 48, "sp500_rank": 45}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "table": null, "rank": 37, "sp500_rank": 23}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "sp500_rank": 67}, "Speech_Processing": {"counts": [0, 0, 0, 3, 3, 5, 5, 7, 5, 1, 0], "total": 29, "table": "application", "rank": 38, "sp500_rank": 29}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 1, 1, 5, 0, 0, 0], "total": 8, "table": null, "rank": 88, "sp500_rank": 59}, "Planning_and_Scheduling": {"counts": [2, 0, 0, 2, 8, 7, 9, 20, 9, 0, 0], "total": 57, "table": "application", "rank": 32, "sp500_rank": 29}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 1, 2, 0, 0, 0], "total": 4, "table": null, "rank": 190, "sp500_rank": 120}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 4, 13, 25, 62, 109, 58, 13, 0], "total": 284, "table": "application", "rank": 35, "sp500_rank": 26}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 3, 7, 5, 8, 3, 0], "total": 27, "table": "application", "rank": 52, "sp500_rank": 41}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 1, 5, 2, 0, 0], "total": 9, "table": "application", "rank": 128, "sp500_rank": 100}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 122, "rank": 807, "sp500_rank": 301}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "sp500_rank": 328}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2205, "country": "United States", "website": "https://www.alliantenergy.com/", "crunchbase": {"text": "6e1637a9-e242-e815-0eac-528ff2390546", "url": "https://www.crunchbase.com/organization/alliant-energy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/alliant-energy"], "stage": "Mature", "name": "Alliant Energy Corp", "patent_name": "alliant energy corp", "continent": "North America", "local_logo": "alliant_energy_corp.png", "aliases": "Alliant Energy; Alliant Energy Corporation", "permid_links": [{"text": 4295911995, "url": "https://permid.org/1-4295911995"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:LNT", "url": "https://www.google.com/finance/quote/lnt:nasdaq"}], "market_full": [{"text": "NYQ:BFH", "url": "https://www.google.com/finance/quote/BFH:nyq"}, {"text": "NASDAQ:LNT", "url": "https://www.google.com/finance/quote/lnt:nasdaq"}, {"text": "LSE:0HCT", "url": "https://www.google.com/finance/quote/0hct:lse"}, {"text": "BRN:AY1", "url": "https://www.google.com/finance/quote/ay1:brn"}, {"text": "DEU:LNT", "url": "https://www.google.com/finance/quote/deu:lnt"}, {"text": "MCX:LNT-RM", "url": "https://www.google.com/finance/quote/lnt-rm:mcx"}, {"text": "STU:AY1", "url": "https://www.google.com/finance/quote/ay1:stu"}, {"text": "FRA:AY1", "url": "https://www.google.com/finance/quote/ay1:fra"}, {"text": "SAO:A1EN34", "url": "https://www.google.com/finance/quote/a1en34:sao"}], "crunchbase_description": "Alliant Energy Corporation (Alliant Energy) operates as a regulated investor-owned public utility holding company", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 2, 1, 5, 15, 2, 1, 0, 1, 0, 0], "total": 27, "isTopResearch": false, "rank": 736, "fortune500_rank": 261}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 121, "rank": 811, "fortune500_rank": 414}, "ai_jobs": {"counts": null, "total": 17, "rank": 728, "fortune500_rank": 367}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Alliant Energy Corporation is a public utility holding company that incorporated in Madison, Wisconsin in 1981.", "wikipedia_link": "https://en.wikipedia.org/wiki/Alliant_Energy", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 79, "country": "United States", "website": "https://www.dominodatalab.com/", "crunchbase": {"text": "bbaea48d-1f4f-98c2-9afe-f12646196361", "url": "https://www.crunchbase.com/organization/domino-data-lab"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/domino-data-lab"], "stage": "Mature", "name": "Domino Data Lab", "patent_name": "domino data lab", "continent": "North America", "local_logo": "domino_data_lab.png", "aliases": "Domino Data Lab Inc; Domino Data Lab, Inc", "permid_links": [{"text": 5045853866, "url": "https://permid.org/1-5045853866"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Domino Data Lab provides a platform that utilizes data science and AI for collaboration, model deployment, and centralizing infrastructure.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 2, 0, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 10, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 121, "rank": 811}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Domino is the enterprise data science management platform trusted by over 20% of the Fortune 100. Our products enable thousands of data scientists to develop better medicines, grow more productive crops, adapt risk models to major economic shifts, build better cars, improve customer support, or simply recommend the best purchase to make at the right time.", "company_site_link": "https://www.dominodatalab.com/company/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 213, "country": "United States", "website": "http://www.rev.com/", "crunchbase": {"text": "c502ee44-b02b-1ce3-8ea8-aa914a355804", "url": "https://www.crunchbase.com/organization/rev"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/rev-com"], "stage": "Mature", "name": "Rev.com", "patent_name": "rev.com", "continent": "North America", "local_logo": "revcom.png", "aliases": "Rev.Com Inc; Rev.Com, Inc; Rev.com Inc", "permid_links": [{"text": 5039106255, "url": "https://permid.org/1-5039106255"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Rev\u2019s speech-to-text services are powered by artificial intelligence and perfected by a community of skilled freelancers.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Word error rate", "field_count": 1}], "clusters": [{"cluster_id": 1422, "cluster_count": 2}, {"cluster_id": 63240, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 786, "referenced_count": 4}, {"ref_CSET_id": 1784, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 3131, "referenced_count": 3}, {"ref_CSET_id": 637, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 2}], "tasks": [{"referent": "curriculum_learning", "task_count": 1}, {"referent": "audio_signal_recognition", "task_count": 1}, {"referent": "low_resource_named_entity_recognition", "task_count": 1}, {"referent": "speech_recognition", "task_count": 1}, {"referent": "accented_speech_recognition", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "named_entity_recognition", "task_count": 1}, {"referent": "identity_recognition", "task_count": 1}, {"referent": "image_comprehension", "task_count": 1}], "methods": [{"referent": "q_learning", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 2, 3, 0], "total": 6, "isTopResearch": false, "rank": 1030}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0], "total": 5, "isTopResearch": false, "rank": 820}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2.0, 0.5, 0], "total": 1.25, "isTopResearch": false, "rank": 869}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 121, "rank": 811}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Rev is an American speech-to-text company that provides closed captioning, subtitles, and transcription services. The company, based in San Francisco and Austin, was founded in 2010 and raised million in funding. Its 50,000 independent contract workers transcribe audio for a per-minute rate. The service is used by major companies including Amazon and Microsoft. PC Magazine named the service an \"Editor's Choice\" in 2018, and ranked it as the best transcription service in 2019.", "wikipedia_link": "https://en.wikipedia.org/wiki/Rev_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 319, "country": "United States", "website": "http://allenai.org/", "crunchbase": {"text": "8db5f902-fd0e-a7fb-8338-fb2435e71571", "url": "https://www.crunchbase.com/organization/allen-institute-for-artificial-intelligence"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/allen-ai"], "stage": "Unknown", "name": "Allen Institute For Artificial Intelligence", "patent_name": "allen institute for artificial intelligence", "continent": "North America", "local_logo": null, "aliases": "Ai2", "permid_links": [{"text": 5053005487, "url": "https://permid.org/1-5053005487"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Question answering", "field_count": 32}, {"field_name": "Language model", "field_count": 12}, {"field_name": "Inference", "field_count": 11}, {"field_name": "Natural language", "field_count": 9}, {"field_name": "Automatic summarization", "field_count": 9}, {"field_name": "Commonsense reasoning", "field_count": 8}, {"field_name": "Parsing", "field_count": 6}, {"field_name": "Knowledge base", "field_count": 5}, {"field_name": "Task (computing)", "field_count": 5}, {"field_name": "Sentence", "field_count": 4}], "clusters": [{"cluster_id": 1193, "cluster_count": 82}, {"cluster_id": 16940, "cluster_count": 10}, {"cluster_id": 16537, "cluster_count": 9}, {"cluster_id": 14887, "cluster_count": 8}, {"cluster_id": 19423, "cluster_count": 5}, {"cluster_id": 46362, "cluster_count": 5}, {"cluster_id": 9819, "cluster_count": 4}, {"cluster_id": 4310, "cluster_count": 4}, {"cluster_id": 35771, "cluster_count": 4}, {"cluster_id": 14740, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1048}, {"ref_CSET_id": 163, "referenced_count": 546}, {"ref_CSET_id": 87, "referenced_count": 477}, {"ref_CSET_id": 319, "referenced_count": 416}, {"ref_CSET_id": 115, "referenced_count": 176}, {"ref_CSET_id": 6, "referenced_count": 55}, {"ref_CSET_id": 23, "referenced_count": 48}, {"ref_CSET_id": 245, "referenced_count": 41}, {"ref_CSET_id": 37, "referenced_count": 33}, {"ref_CSET_id": 127, "referenced_count": 29}], "tasks": [{"referent": "question_answering", "task_count": 38}, {"referent": "classification", "task_count": 25}, {"referent": "reasoning", "task_count": 23}, {"referent": "classification_tasks", "task_count": 19}, {"referent": "action_understanding", "task_count": 13}, {"referent": "inference_attack", "task_count": 11}, {"referent": "natural_language_processing", "task_count": 11}, {"referent": "natural_language_understanding", "task_count": 11}, {"referent": "reading_comprehension", "task_count": 10}, {"referent": "retrieval", "task_count": 10}], "methods": [{"referent": "language_models", "method_count": 33}, {"referent": "3d_representations", "method_count": 32}, {"referent": "vqa_models", "method_count": 24}, {"referent": "recurrent_neural_networks", "method_count": 18}, {"referent": "q_learning", "method_count": 15}, {"referent": "bert", "method_count": 13}, {"referent": "causal_inference", "method_count": 10}, {"referent": "transformers", "method_count": 9}, {"referent": "neural_architecture_search", "method_count": 8}, {"referent": "topic_embeddings", "method_count": 8}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [3, 2, 14, 26, 24, 26, 53, 89, 71, 36, 0], "total": 344, "isTopResearch": false, "rank": 337}, "ai_publications": {"counts": [3, 1, 11, 23, 19, 21, 48, 74, 55, 6, 0], "total": 261, "isTopResearch": false, "rank": 67}, "ai_publications_growth": {"counts": [], "total": -20.1999726999727, "isTopResearch": false, "rank": 1327}, "ai_pubs_top_conf": {"counts": [0, 1, 5, 13, 10, 18, 26, 53, 22, 1, 0], "total": 149, "isTopResearch": false, "rank": 22}, "citation_counts": {"counts": [2, 10, 50, 145, 272, 573, 1305, 2876, 4174, 1889, 48], "total": 11344, "isTopResearch": false, "rank": 47}, "cv_pubs": {"counts": [0, 0, 4, 7, 8, 6, 2, 10, 9, 3, 0], "total": 49, "isTopResearch": true, "rank": 84}, "nlp_pubs": {"counts": [1, 1, 5, 8, 9, 11, 41, 57, 41, 1, 0], "total": 175, "isTopResearch": true, "rank": 15}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0.6666666666666666, 10.0, 4.545454545454546, 6.304347826086956, 14.31578947368421, 27.285714285714285, 27.1875, 38.86486486486486, 75.89090909090909, 314.8333333333333, 0], "total": 43.46360153256705, "isTopResearch": false, "rank": 114}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 2, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 20, 0, 0, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 120, "rank": 814}, "ai_jobs": {"counts": null, "total": 31, "rank": 589}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "The Allen Institute for AI (abbreviated AI2) is a research institute founded by late Microsoft co-founder Paul Allen. The institute seeks to achieve scientific breakthroughs by constructing AI systems with reasoning, learning, and reading capabilities. Oren Etzioni was appointed by Paul Allen in September 2013 to direct the research at the institute.", "wikipedia_link": "https://en.wikipedia.org/wiki/Special:Search?search=allen+institute+for+artificial+intelligence", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2410, "country": "United States", "website": "https://www.mccormick.com/", "crunchbase": {"text": "0e95b508-2d52-158e-b2aa-0e0e65000571", "url": "https://www.crunchbase.com/organization/mccormick-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mccormick"], "stage": "Mature", "name": "McCormick & Co.", "patent_name": "mccormick & co.", "continent": "North America", "local_logo": "mccormick_&_co.png", "aliases": "McCormick; Mccormick & Company; Mccormick & Company Inc; Mccormick & Company, Inc", "permid_links": [{"text": 4295904494, "url": "https://permid.org/1-4295904494"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MKC", "url": "https://www.google.com/finance/quote/mkc:nyse"}], "market_full": [{"text": "MUN:MCX", "url": "https://www.google.com/finance/quote/mcx:mun"}, {"text": "DEU:MCCRN", "url": "https://www.google.com/finance/quote/deu:mccrn"}, {"text": "DUS:MCX", "url": "https://www.google.com/finance/quote/dus:mcx"}, {"text": "LSE:0JZS", "url": "https://www.google.com/finance/quote/0jzs:lse"}, {"text": "SAO:M1KC34", "url": "https://www.google.com/finance/quote/m1kc34:sao"}, {"text": "NYQ:MKC", "url": "https://www.google.com/finance/quote/mkc:nyq"}, {"text": "VIE:MKC", "url": "https://www.google.com/finance/quote/mkc:vie"}, {"text": "MEX:MKC", "url": "https://www.google.com/finance/quote/mex:mkc"}, {"text": "BER:MCX", "url": "https://www.google.com/finance/quote/ber:mcx"}, {"text": "NYSE:MKC", "url": "https://www.google.com/finance/quote/mkc:nyse"}, {"text": "HAN:MCX", "url": "https://www.google.com/finance/quote/han:mcx"}, {"text": "BRN:MCX", "url": "https://www.google.com/finance/quote/brn:mcx"}, {"text": "MOEX:MKC-RM", "url": "https://www.google.com/finance/quote/mkc-rm:moex"}, {"text": "STU:MCX", "url": "https://www.google.com/finance/quote/mcx:stu"}, {"text": "FRA:MCX", "url": "https://www.google.com/finance/quote/fra:mcx"}, {"text": "ASE:MKC", "url": "https://www.google.com/finance/quote/ase:mkc"}], "crunchbase_description": "McCormick manufactures, markets and distributes spices, seasoning mixes, condiments & other flavorful products to the entire food industry.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 51512, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "classification", "task_count": 1}], "methods": [{"referent": "non_parametric_classification", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [7, 5, 1, 3, 1, 3, 6, 0, 1, 5, 0], "total": 32, "isTopResearch": false, "rank": 700, "fortune500_rank": 251}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 10, 5, 1], "total": 19, "isTopResearch": false, "rank": 690, "fortune500_rank": 188}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 19.0, "isTopResearch": false, "rank": 327, "fortune500_rank": 104}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 120, "rank": 814, "fortune500_rank": 415}, "ai_jobs": {"counts": null, "total": 15, "rank": 754, "fortune500_rank": 376}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "McCormick & Company is an American multinational food company that manufactures, markets, and distributes spices, seasoning mixes, condiments, and other flavoring products to retail outlets, food manufacturers, and foodservice businesses.", "wikipedia_link": "https://en.wikipedia.org/wiki/McCormick_%26_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 230, "country": "United States", "website": "http://www.signifyd.com", "crunchbase": {"text": "ccfeff67-b2c7-b0c3-650f-3f243e118e7d", "url": "https://www.crunchbase.com/organization/signifyd"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/signifyd"], "stage": "Mature", "name": "Signifyd", "patent_name": "signifyd", "continent": "North America", "local_logo": "signifyd.png", "aliases": "Signifyd Inc; Signifyd, Inc", "permid_links": [{"text": 5037998912, "url": "https://permid.org/1-5037998912"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Signifyd is a provider of an enterprise-grade fraud technology solution for e-commerce stores.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 119, "rank": 816}, "ai_jobs": {"counts": null, "total": 29, "rank": 607}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 161, "country": "China", "website": "https://www.megvii.com/", "crunchbase": {"text": "34253c5f-828c-5020-726d-20fc32cd14c8", "url": "https://www.crunchbase.com/organization/megvii-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/megvii\u65f7\u89c6"], "stage": "Mature", "name": "Megvii", "patent_name": "megvii", "continent": "Asia", "local_logo": "megvii.png", "aliases": "Megvii Inc; Megvii Technology; Megvii Technology Limited; \u5317\u4eac\u65f7\u89c6\u79d1\u6280\u6709\u9650\u516c\u53f8; \u65f7\u89c6; \u65f7\u89c6\u79d1\u6280", "permid_links": [{"text": 5044023186, "url": "https://permid.org/1-5044023186"}], "parent_info": null, "agg_child_info": "Megvii (Face++) Research US", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Megvii builds AI Engine, a core fundamental technology powering various AI application.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 22}, {"field_name": "Segmentation", "field_count": 15}, {"field_name": "Convolutional neural network", "field_count": 14}, {"field_name": "Pose", "field_count": 12}, {"field_name": "Feature learning", "field_count": 10}, {"field_name": "Deep learning", "field_count": 9}, {"field_name": "Point cloud", "field_count": 6}, {"field_name": "Artificial neural network", "field_count": 6}, {"field_name": "Discriminative model", "field_count": 6}, {"field_name": "Object (computer science)", "field_count": 5}], "clusters": [{"cluster_id": 214, "cluster_count": 20}, {"cluster_id": 855, "cluster_count": 19}, {"cluster_id": 2505, "cluster_count": 16}, {"cluster_id": 3886, "cluster_count": 11}, {"cluster_id": 1436, "cluster_count": 8}, {"cluster_id": 6975, "cluster_count": 8}, {"cluster_id": 5070, "cluster_count": 8}, {"cluster_id": 4634, "cluster_count": 6}, {"cluster_id": 14903, "cluster_count": 6}, {"cluster_id": 1338, "cluster_count": 6}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 991}, {"ref_CSET_id": 101, "referenced_count": 983}, {"ref_CSET_id": 87, "referenced_count": 651}, {"ref_CSET_id": 161, "referenced_count": 346}, {"ref_CSET_id": 223, "referenced_count": 236}, {"ref_CSET_id": 245, "referenced_count": 183}, {"ref_CSET_id": 6, "referenced_count": 179}, {"ref_CSET_id": 184, "referenced_count": 135}, {"ref_CSET_id": 112, "referenced_count": 130}, {"ref_CSET_id": 37, "referenced_count": 112}], "tasks": [{"referent": "classification", "task_count": 48}, {"referent": "object_detection", "task_count": 27}, {"referent": "semantic_segmentation", "task_count": 21}, {"referent": "computer_vision", "task_count": 17}, {"referent": "scene_text_detection", "task_count": 17}, {"referent": "image_recognition", "task_count": 16}, {"referent": "action_localization", "task_count": 16}, {"referent": "segmentation", "task_count": 15}, {"referent": "classification_tasks", "task_count": 11}, {"referent": "representation_learning", "task_count": 10}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 32}, {"referent": "3d_representations", "method_count": 27}, {"referent": "hit_detector", "method_count": 17}, {"referent": "recurrent_neural_networks", "method_count": 15}, {"referent": "dueling_network", "method_count": 14}, {"referent": "q_learning", "method_count": 12}, {"referent": "double_q_learning", "method_count": 12}, {"referent": "1d_cnn", "method_count": 11}, {"referent": "symbolic_deep_learning", "method_count": 11}, {"referent": "global_convolutional_network", "method_count": 11}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 2, 3, 17, 41, 47, 71, 69, 64, 0], "total": 315, "isTopResearch": false, "rank": 349}, "ai_publications": {"counts": [0, 1, 2, 3, 17, 39, 45, 69, 67, 42, 0], "total": 285, "isTopResearch": false, "rank": 62}, "ai_publications_growth": {"counts": [], "total": 4.373783257624919, "isTopResearch": false, "rank": 182}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 1, 10, 20, 32, 44, 33, 26, 0], "total": 167, "isTopResearch": false, "rank": 20}, "citation_counts": {"counts": [0, 2, 9, 35, 164, 936, 3043, 5495, 7906, 6858, 225], "total": 24673, "isTopResearch": false, "rank": 28}, "cv_pubs": {"counts": [0, 1, 2, 3, 14, 37, 42, 63, 63, 40, 0], "total": 265, "isTopResearch": true, "rank": 30}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0], "total": 5, "isTopResearch": true, "rank": 171}, "citations_per_article": {"counts": [0, 2.0, 4.5, 11.666666666666666, 9.647058823529411, 24.0, 67.62222222222222, 79.6376811594203, 118.0, 163.28571428571428, 0], "total": 86.57192982456141, "isTopResearch": false, "rank": 45}}, "patents": {"ai_patents": {"counts": [0, 13, 7, 36, 59, 106, 134, 142, 63, 21, 0], "total": 581, "table": null, "rank": 50}, "ai_patents_growth": {"counts": [], "total": 37.34875351416884, "table": null, "rank": 252}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 130, 70, 360, 590, 1060, 1340, 1420, 630, 210, 0], "total": 5810, "table": null, "rank": 50}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 4, 1, 10, 10, 5, 5, 3, 0], "total": 38, "table": "industry", "rank": 136}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 2, 1, 3, 4, 9, 1, 1, 0], "total": 21, "table": "industry", "rank": 132}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 4, 0, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 213}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 6, 3, 24, 33, 57, 80, 97, 47, 15, 0], "total": 362, "table": "application", "rank": 25}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 4, 5, 0, 0, 0], "total": 9, "table": "application", "rank": 128}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 118, "rank": 817}, "ai_jobs": {"counts": null, "total": 19, "rank": 706}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Megvii (Chinese: \u65f7\u89c6; pinyin: Ku\u00e0ngsh\u00ec) is a Chinese technology company that designs image recognition and deep-learning software. Based in Beijing, the company develops artificial intelligence (AI) technology for businesses and for the public sector. In 2019, the company was valued at US$4 billion. Megvii is the largest provider of third-party authentication software in the world, and its product, Face++, is the world's largest open-source computer vision platform.", "wikipedia_link": "https://en.wikipedia.org/wiki/Megvii", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 270, "country": "United States", "website": "https://www.uptake.com/", "crunchbase": {"text": "e13f1a7d-5ce7-896f-f23b-3e828884f522", "url": "https://www.crunchbase.com/organization/uptake-3"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/uptake"], "stage": "Mature", "name": "Uptake", "patent_name": "uptake", "continent": "North America", "local_logo": "uptake.png", "aliases": "Uptake Technologies; Uptake Technologies Inc", "permid_links": [{"text": 5046911229, "url": "https://permid.org/1-5046911229"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Uptake Technologies designs and develops enterprise software.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 1149, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 410, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "distributed_voting", "task_count": 1}], "methods": [{"referent": "feature_upsampling", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}, {"referent": "hyperparameter_search", "method_count": 1}, {"referent": "q_learning_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 1, 5, 5, 2, 3, 0], "total": 17, "isTopResearch": false, "rank": 700}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 1.0, 0, 0, 0, 0, 0, 0], "total": 17.0, "isTopResearch": false, "rank": 364}}, "patents": {"ai_patents": {"counts": [0, 1, 6, 5, 3, 3, 2, 1, 0, 0, 0], "total": 21, "table": null, "rank": 316}, "ai_patents_growth": {"counts": [], "total": -27.777777777777782, "table": null, "rank": 1479}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 60, 50, 30, 30, 20, 10, 0, 0, 0], "total": 210, "table": null, "rank": 316}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 125}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 131}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 1, 5, 4, 2, 2, 1, 0, 0, 0, 0], "total": 15, "table": "industry", "rank": 218}, "Banking_and_Finance": {"counts": [0, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 141}, "Telecommunications": {"counts": [0, 1, 1, 0, 0, 2, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 249}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 1, 4, 3, 2, 1, 1, 1, 0, 0, 0], "total": 13, "table": "industry", "rank": 137}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 1, 3, 2, 0, 0, 1, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 102}, "Planning_and_Scheduling": {"counts": [0, 1, 4, 3, 2, 1, 1, 1, 0, 0, 0], "total": 13, "table": "application", "rank": 111}, "Control": {"counts": [0, 1, 5, 1, 0, 2, 0, 1, 0, 0, 0], "total": 10, "table": "application", "rank": 137}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 223}, "Measuring_and_Testing": {"counts": [0, 1, 1, 3, 0, 0, 0, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 170}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 118, "rank": 817}, "ai_jobs": {"counts": null, "total": 18, "rank": 716}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Uptake is an industrial artificial intelligence (AI) software company. Built around a foundation of data science and machine learning, Uptake\u2019s core products include an Asset Performance Management application and a fully managed platform.", "wikipedia_link": "https://en.wikipedia.org/wiki/Uptake_(business)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2932, "country": "United States", "website": "https://credence-llc.com/", "crunchbase": {"text": "b38c57b8-28b7-410b-b6a0-89ffdc16693a", "url": "https://www.crunchbase.com/organization/credence-management-solutions-llc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/credence-management-solutions-llc"], "stage": "Unknown", "name": "Credence Management Solutions Llc", "patent_name": "credence management solutions llc", "continent": "North America", "local_logo": "credence_management_solutions_llc.png", "aliases": "Credence; Credence Management Solutions; Credence Management Solutions, Llc", "permid_links": [{"text": 5020627327, "url": "https://permid.org/1-5020627327"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Credence Management Solutions is a management consulting company that offers Management Consulting, Engineering, and IT services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 118, "rank": 817}, "ai_jobs": {"counts": null, "total": 13, "rank": 790}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Credence Management Solutions is honored to support mission-critical programs for the US Government. Each day our team solves complex, Agency-wide IT challenges, including DevSecOps and Artificial Intelligence efforts; combats tomorrow\u2019s health issues; engineers innovative warfighting systems; trains fighter pilots; strategizes policies and Enterprise-wide challenges; and works to protect our country\u2019s systems from cyber attacks.", "company_site_link": "https://credence-llc.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3026, "country": "United States", "website": "https://coleengineering.com/", "crunchbase": {"text": "e646d980-20d1-479b-955c-8bb385018667", "url": "https://www.crunchbase.com/organization/cole-engineering-services"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cole-engineering-services-inc"], "stage": "Unknown", "name": "Cole Engineering Services Inc", "patent_name": "cole engineering services inc", "continent": "North America", "local_logo": "cole_engineering_services_inc.png", "aliases": "Cole Engineering Services; Cole Engineering Services, Inc", "permid_links": [{"text": 5039147510, "url": "https://permid.org/1-5039147510"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Cole Engineering Services is a full spectrum training and analysis developer, integrator and services provider.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 57620, "cluster_count": 1}, {"cluster_id": 69151, "cluster_count": 1}, {"cluster_id": 6798, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 3026, "referenced_count": 1}, {"ref_CSET_id": 553, "referenced_count": 1}], "tasks": [{"referent": "environmental_sound_classification", "task_count": 1}, {"referent": "motion_capture", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 1, 1, 0, 1, 0, 1, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 2, 2, 0, 1, 1, 0], "total": 7, "isTopResearch": false, "rank": 794}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 2.0, 0, 0, 0, 1.0, 0], "total": 2.3333333333333335, "isTopResearch": false, "rank": 817}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 118, "rank": 817}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 751, "country": "United States", "website": "http://videoamp.com", "crunchbase": {"text": "28ce82f3-c1fc-973d-dbee-7fe242773b9e", "url": "https://www.crunchbase.com/organization/videoamp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/videoamp"], "stage": "Mature", "name": "VideoAmp", "patent_name": "videoamp", "continent": "North America", "local_logo": "videoamp.png", "aliases": "Videoamp Inc; Videoamp, Inc", "permid_links": [{"text": 5044173626, "url": "https://permid.org/1-5044173626"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "VideoAmp is a software and data company that provides measurement and optimization tools for the advertising ecosystem.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Active learning (machine learning)", "field_count": 1}], "clusters": [{"cluster_id": 6635, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "image_processing", "task_count": 1}, {"referent": "active_learning", "task_count": 1}], "methods": [{"referent": "video_sampling", "method_count": 1}, {"referent": "triplet_entropy_loss", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 1, 1, 0], "total": 5, "isTopResearch": false, "rank": 820}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0, 0, 0, 0, 0, 0], "total": 5.0, "isTopResearch": false, "rank": 713}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 115, "rank": 821}, "ai_jobs": {"counts": null, "total": 48, "rank": 490}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our software transforms how advertising is valued, transacted and measured across all channels and devices, enabling agencies, advertisers and media owners to leverage smarter, data-driven solutions.", "company_site_link": "http://videoamp.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 110, "country": "China", "website": "https://www.horizon.ai/", "crunchbase": {"text": "e56017e2-7692-6514-8f0d-f98189ab253d", "url": "https://www.crunchbase.com/organization/horizon-robotics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/horizonrobotics"], "stage": "Mature", "name": "Horizon Robotics", "patent_name": "horizon robotics", "continent": "Asia", "local_logo": "horizon_robotics.png", "aliases": "Beijing Horizon Robotics Technology Development Co Ltd; Dipingxian; Horizon Robotics, Inc; \u5317\u4eac\u5730\u5e73\u7ebf\u4fe1\u606f\u6280\u672f\u6709\u9650\u516c\u53f8; \u5730\u5e73\u7ebf", "permid_links": [{"text": 5068316151, "url": "https://permid.org/1-5068316151"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Horizon Robotics provides energy-efficient computing solutions for smart vehicles.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 16}, {"field_name": "Segmentation", "field_count": 8}, {"field_name": "Reinforcement learning", "field_count": 7}, {"field_name": "Convolutional neural network", "field_count": 5}, {"field_name": "Robustness (computer science)", "field_count": 3}, {"field_name": "Convolution", "field_count": 3}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Face (geometry)", "field_count": 2}, {"field_name": "Natural language", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}], "clusters": [{"cluster_id": 1436, "cluster_count": 8}, {"cluster_id": 2505, "cluster_count": 8}, {"cluster_id": 981, "cluster_count": 6}, {"cluster_id": 214, "cluster_count": 4}, {"cluster_id": 3886, "cluster_count": 4}, {"cluster_id": 1123, "cluster_count": 3}, {"cluster_id": 70527, "cluster_count": 3}, {"cluster_id": 1609, "cluster_count": 3}, {"cluster_id": 183, "cluster_count": 3}, {"cluster_id": 22315, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 467}, {"ref_CSET_id": 163, "referenced_count": 376}, {"ref_CSET_id": 87, "referenced_count": 253}, {"ref_CSET_id": 223, "referenced_count": 127}, {"ref_CSET_id": 245, "referenced_count": 69}, {"ref_CSET_id": 110, "referenced_count": 61}, {"ref_CSET_id": 161, "referenced_count": 55}, {"ref_CSET_id": 6, "referenced_count": 49}, {"ref_CSET_id": 184, "referenced_count": 47}, {"ref_CSET_id": 37, "referenced_count": 46}], "tasks": [{"referent": "classification", "task_count": 27}, {"referent": "object_detection", "task_count": 10}, {"referent": "semantic_segmentation", "task_count": 10}, {"referent": "instance_segmentation", "task_count": 8}, {"referent": "personal_identification", "task_count": 6}, {"referent": "computer_vision", "task_count": 6}, {"referent": "image_processing", "task_count": 5}, {"referent": "segmentation", "task_count": 5}, {"referent": "image_recognition", "task_count": 5}, {"referent": "3d_instance_segmentation", "task_count": 4}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 11}, {"referent": "3d_representations", "method_count": 9}, {"referent": "dueling_network", "method_count": 9}, {"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "1d_cnn", "method_count": 8}, {"referent": "reinforcement_learning", "method_count": 7}, {"referent": "deep_belief_network", "method_count": 7}, {"referent": "q_learning", "method_count": 7}, {"referent": "double_q_learning", "method_count": 7}, {"referent": "vqa_models", "method_count": 6}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 2, 3, 16, 32, 25, 22, 15, 0], "total": 115, "isTopResearch": false, "rank": 489}, "ai_publications": {"counts": [0, 0, 0, 2, 3, 14, 31, 23, 20, 12, 0], "total": 105, "isTopResearch": false, "rank": 118}, "ai_publications_growth": {"counts": [], "total": -26.283309957924264, "isTopResearch": false, "rank": 1375}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 2, 9, 19, 5, 7, 5, 0], "total": 48, "isTopResearch": false, "rank": 44}, "citation_counts": {"counts": [0, 0, 2, 23, 86, 275, 842, 1763, 2723, 2108, 88], "total": 7910, "isTopResearch": false, "rank": 56}, "cv_pubs": {"counts": [0, 0, 0, 2, 3, 12, 30, 21, 17, 9, 0], "total": 94, "isTopResearch": true, "rank": 58}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 1, 1, 3, 1, 0], "total": 7, "isTopResearch": true, "rank": 142}, "citations_per_article": {"counts": [0, 0, 0, 11.5, 28.666666666666668, 19.642857142857142, 27.161290322580644, 76.65217391304348, 136.15, 175.66666666666666, 0], "total": 75.33333333333333, "isTopResearch": false, "rank": 56}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 6, 14, 22, 68, 25, 15, 10, 0], "total": 161, "table": null, "rank": 119}, "ai_patents_growth": {"counts": [], "total": 67.66615737203972, "table": null, "rank": 161}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 60, 140, 220, 680, 250, 150, 100, 0], "total": 1610, "table": null, "rank": 119}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 165}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 1, 10, 4, 7, 3, 4, 4, 0], "total": 34, "table": "industry", "rank": 143}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 172}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 277}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 1, 0, 1, 4, 5, 3, 0, 0], "total": 14, "table": "application", "rank": 69}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 2, 2, 10, 30, 14, 5, 6, 0], "total": 69, "table": "application", "rank": 89}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 115, "rank": 821}, "ai_jobs": {"counts": null, "total": 27, "rank": 627}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We exist as a company to change people life.\nTo harness the full potential of AI, we constantly push the boundaries of innovation in AI processors, AI algorithms, AI compute systems and AI toolchains.\nSmart Mobility will touch everyone and transform our life. For the better. Horizon Robotics helps to unleash the maximum value in AI to power the autonomous machines of tomorrow.", "company_site_link": "https://horizon.ai/company/company-profile/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1388, "country": "China", "website": "http://www.dahuasecurity.com/", "crunchbase": {"text": "3660580d-7307-62b6-1354-0b8ee9eded62", "url": "https://www.crunchbase.com/organization/dahua-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dahua-technology"], "stage": "Unknown", "name": "Dahua Technology", "patent_name": "dahua technology", "continent": "Asia", "local_logo": "dahua_technology.png", "aliases": "Dahua; \u5927\u534e\u6280\u672f; \u6d59\u6c5f\u5927\u534e\u4fe1\u606f\u6280\u672f\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5055468602, "url": "https://permid.org/1-5055468602"}, {"text": 4298008760, "url": "https://permid.org/1-4298008760"}], "parent_info": null, "agg_child_info": "Lecheng", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Dahua Technology is a world-leading video surveillance solution provider.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 11}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "Pose", "field_count": 2}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Hyperspectral imaging", "field_count": 1}, {"field_name": "Encoding (memory)", "field_count": 1}], "clusters": [{"cluster_id": 214, "cluster_count": 9}, {"cluster_id": 183, "cluster_count": 7}, {"cluster_id": 3326, "cluster_count": 2}, {"cluster_id": 2505, "cluster_count": 2}, {"cluster_id": 1436, "cluster_count": 2}, {"cluster_id": 60946, "cluster_count": 2}, {"cluster_id": 2149, "cluster_count": 1}, {"cluster_id": 14430, "cluster_count": 1}, {"cluster_id": 71620, "cluster_count": 1}, {"cluster_id": 635, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 110}, {"ref_CSET_id": 101, "referenced_count": 63}, {"ref_CSET_id": 87, "referenced_count": 59}, {"ref_CSET_id": 223, "referenced_count": 32}, {"ref_CSET_id": 161, "referenced_count": 14}, {"ref_CSET_id": 23, "referenced_count": 13}, {"ref_CSET_id": 6, "referenced_count": 11}, {"ref_CSET_id": 245, "referenced_count": 11}, {"ref_CSET_id": 37, "referenced_count": 9}, {"ref_CSET_id": 21, "referenced_count": 8}], "tasks": [{"referent": "classification", "task_count": 13}, {"referent": "feature_selection", "task_count": 6}, {"referent": "computer_vision", "task_count": 4}, {"referent": "object_detection", "task_count": 4}, {"referent": "segmentation", "task_count": 3}, {"referent": "robust_object_detection", "task_count": 3}, {"referent": "vehicle_detection", "task_count": 3}, {"referent": "video_surveillance", "task_count": 2}, {"referent": "visual_object_tracking", "task_count": 2}, {"referent": "load_forecasting", "task_count": 2}], "methods": [{"referent": "hit_detector", "method_count": 4}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "(2+1)d_convolution", "method_count": 4}, {"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "1d_cnn", "method_count": 3}, {"referent": "wfst", "method_count": 3}, {"referent": "bpnet", "method_count": 3}, {"referent": "dueling_network", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 3, 1, 1, 2, 13, 13, 20, 20, 17, 1], "total": 91, "isTopResearch": false, "rank": 524}, "ai_publications": {"counts": [0, 3, 1, 0, 0, 11, 9, 17, 9, 6, 0], "total": 56, "isTopResearch": false, "rank": 170}, "ai_publications_growth": {"counts": [], "total": 2.832244008714594, "isTopResearch": false, "rank": 187}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 157}, "citation_counts": {"counts": [0, 1, 6, 8, 7, 6, 15, 49, 168, 198, 17], "total": 475, "isTopResearch": false, "rank": 276}, "cv_pubs": {"counts": [0, 2, 0, 0, 0, 9, 7, 13, 7, 5, 0], "total": 43, "isTopResearch": true, "rank": 93}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0.3333333333333333, 6.0, 0, 0, 0.5454545454545454, 1.6666666666666667, 2.8823529411764706, 18.666666666666668, 33.0, 0], "total": 8.482142857142858, "isTopResearch": false, "rank": 585}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 4, 15, 20, 39, 203, 193, 61, 0], "total": 536, "table": null, "rank": 55}, "ai_patents_growth": {"counts": [], "total": 182.94871794871793, "table": null, "rank": 52}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 40, 150, 200, 390, 2030, 1930, 610, 0], "total": 5360, "table": null, "rank": 55}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": null, "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 5, 1, 0, 0], "total": 7, "table": "industry", "rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 3, 0], "total": 4, "table": null, "rank": 147}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 2, 1, 0], "total": 7, "table": "industry", "rank": 86}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 61}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 1, 6, 14, 18, 10, 0], "total": 50, "table": "industry", "rank": 119}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 2, 4, 10, 9, 0, 0], "total": 25, "table": "industry", "rank": 121}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 2, 0, 0], "total": 5, "table": "industry", "rank": 213}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 2, 1, 0], "total": 6, "table": "application", "rank": 105}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "table": null, "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 244}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 2, 8, 2, 1, 0], "total": 13, "table": "application", "rank": 122}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 1, 4, 13, 12, 28, 140, 141, 28, 0], "total": 367, "table": "application", "rank": 24}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0], "total": 4, "table": "application", "rank": 173}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 1, 2, 8, 0, 0, 0], "total": 12, "table": "application", "rank": 110}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 115, "rank": 821}, "ai_jobs": {"counts": null, "total": 12, "rank": 812}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Zhejiang Dahua Technology Co., Ltd. is a partially state-owned publicly traded company based in Binjiang District, Hangzhou, which sells video surveillance products and services. It was founded by Fu Liquan (\u5085\u5229\u6cc9).", "wikipedia_link": "https://en.wikipedia.org/wiki/Dahua_Technology", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 114, "country": "United States", "website": "http://www.hyperscience.com", "crunchbase": {"text": "a8cd1383-1221-ec09-11fb-82d8076f31d4", "url": "https://www.crunchbase.com/organization/hyperscience"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hyperscience"], "stage": "Mature", "name": "Hyperscience", "patent_name": "hyperscience", "continent": "North America", "local_logo": "hyperscience.png", "aliases": "Hyper Labs Inc; Hyper Labs, Inc", "permid_links": [{"text": 5046436809, "url": "https://permid.org/1-5046436809"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Hyperscience offers AI-based software to automate document processes and turn unstructured content into structured actionable data.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 114, "rank": 824}, "ai_jobs": {"counts": null, "total": 20, "rank": 692}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "The Hyperscience Platform enables Global 2000s and government agencies to automate data-centric, mission-critical processes.", "company_site_link": "http://www.hyperscience.com", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 283, "country": "China", "website": "http://www.yitutech.com/en/", "crunchbase": {"text": "f5704e49-76e9-80ac-ff64-4e7cd74f36b4", "url": "https://www.crunchbase.com/organization/yitu-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/yitutech"], "stage": "Mature", "name": "Yitu", "patent_name": "yitu", "continent": "Asia", "local_logo": "yitu.png", "aliases": "Shanghai Yitu Network Technology Co Ltd; Shanghai Yitu Network Technology Co., Ltd; Yitu Technology; \u4e0a\u6d77\u4f9d\u56fe\u7f51\u7edc\u79d1\u6280\u6709\u9650\u516c\u53f8; \u4f9d\u56fe", "permid_links": [{"text": 5055950854, "url": "https://permid.org/1-5055950854"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "YITU Technology integrates state-of-the-art AI technologies with industrial applications to build a safer, faster and healthier world.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature learning", "field_count": 6}, {"field_name": "Deep learning", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Morphing", "field_count": 2}, {"field_name": "Pose", "field_count": 2}, {"field_name": "Sparse approximation", "field_count": 2}, {"field_name": "Receiver operating characteristic", "field_count": 1}, {"field_name": "Data domain", "field_count": 1}], "clusters": [{"cluster_id": 3901, "cluster_count": 4}, {"cluster_id": 35771, "cluster_count": 4}, {"cluster_id": 981, "cluster_count": 4}, {"cluster_id": 214, "cluster_count": 4}, {"cluster_id": 13063, "cluster_count": 4}, {"cluster_id": 1338, "cluster_count": 3}, {"cluster_id": 5096, "cluster_count": 3}, {"cluster_id": 9704, "cluster_count": 2}, {"cluster_id": 16537, "cluster_count": 2}, {"cluster_id": 6975, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 187}, {"ref_CSET_id": 163, "referenced_count": 163}, {"ref_CSET_id": 87, "referenced_count": 140}, {"ref_CSET_id": 6, "referenced_count": 39}, {"ref_CSET_id": 283, "referenced_count": 38}, {"ref_CSET_id": 112, "referenced_count": 38}, {"ref_CSET_id": 223, "referenced_count": 26}, {"ref_CSET_id": 245, "referenced_count": 25}, {"ref_CSET_id": 115, "referenced_count": 23}, {"ref_CSET_id": 37, "referenced_count": 21}], "tasks": [{"referent": "classification", "task_count": 7}, {"referent": "classification_tasks", "task_count": 6}, {"referent": "representation_learning", "task_count": 4}, {"referent": "segmentation", "task_count": 4}, {"referent": "face_recognition", "task_count": 4}, {"referent": "disease_detection", "task_count": 4}, {"referent": "skills_assessment", "task_count": 3}, {"referent": "domain_adaptation", "task_count": 3}, {"referent": "object_detection", "task_count": 3}, {"referent": "computer_vision", "task_count": 3}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 9}, {"referent": "3d_representations", "method_count": 9}, {"referent": "q_learning", "method_count": 6}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "1d_cnn", "method_count": 5}, {"referent": "(2+1)d_convolution", "method_count": 5}, {"referent": "cdcc_net", "method_count": 5}, {"referent": "discriminators", "method_count": 5}, {"referent": "vqa_models", "method_count": 5}, {"referent": "representation_learning", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 3, 6, 25, 63, 37, 1, 0], "total": 136, "isTopResearch": false, "rank": 469}, "ai_publications": {"counts": [0, 0, 1, 0, 2, 2, 19, 23, 22, 0, 0], "total": 69, "isTopResearch": false, "rank": 151}, "ai_publications_growth": {"counts": [], "total": -27.765064836003052, "isTopResearch": false, "rank": 1378}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 1, 5, 3, 5, 0, 0], "total": 15, "isTopResearch": false, "rank": 95}, "citation_counts": {"counts": [0, 0, 0, 4, 15, 23, 177, 468, 1056, 925, 53], "total": 2721, "isTopResearch": false, "rank": 110}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 15, 18, 16, 0, 0], "total": 50, "isTopResearch": true, "rank": 83}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 7.5, 11.5, 9.31578947368421, 20.347826086956523, 48.0, 0, 0], "total": 39.43478260869565, "isTopResearch": false, "rank": 132}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 3, 34, 31, 74, 10, 1, 0], "total": 153, "table": null, "rank": 121}, "ai_patents_growth": {"counts": [], "total": 387.7398271136412, "table": null, "rank": 17}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 30, 340, 310, 740, 100, 10, 0], "total": 1530, "table": null, "rank": 121}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 9, 2, 16, 2, 0, 0], "total": 30, "table": "industry", "rank": 34}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 1, 1, 12, 1, 0, 0], "total": 16, "table": "industry", "rank": 209}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 252}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 6, 12, 0, 0, 0], "total": 19, "table": "application", "rank": 53}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 244}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 20, 16, 40, 6, 0, 0], "total": 83, "table": "application", "rank": 79}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 114, "rank": 824}, "ai_jobs": {"counts": null, "total": 17, "rank": 728}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "YITU Healthcare cooperates with hundreds of top medical institutions nationwide to use AI applications to improve their capabilities in providing medical services and to provide scientific evidence for early screening, diagnosis and treatment against high-risk cancers, scientific research and national public health decision, and to contribute to Plan of Healthy China 2030. YITU's \u201cAI Map of Cancer Screening\u201d for high-risk cancers can reduce the doctors\u2019 workload, eliminate misdiagnosis and missed diagnosis, provide strong technical support for large-scale early screening of diseases, and drive cancer screening in China towards the \"AI+\" age.", "company_site_link": "https://www.yitutech.com/en", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3087, "country": "United States", "website": "https://www.catalent.com/", "crunchbase": {"text": " ba5f3cb8-55ff-901a-103f-7f8820d00652", "url": " https://www.crunchbase.com/organization/catalent-pharma-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/catalent-pharma-solutions"], "stage": "Mature", "name": "Catalent", "patent_name": "Catalent", "continent": "North America", "local_logo": null, "aliases": "Catalent; Catalent Pharma Solutions; Catalent Pharma Solutions, Inc", "permid_links": [{"text": 5000053849, "url": "https://permid.org/1-5000053849"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CTLT", "url": "https://www.google.com/finance/quote/CTLT:NYSE"}], "market_full": [{"text": "MEX:CTLT*", "url": "https://www.google.com/finance/quote/CTLT*:MEX"}, {"text": "MCX:CTLT-RM", "url": "https://www.google.com/finance/quote/CTLT-RM:MCX"}, {"text": "BRN:0C8", "url": "https://www.google.com/finance/quote/0C8:BRN"}, {"text": "ASE:CTLT", "url": "https://www.google.com/finance/quote/ASE:CTLT"}, {"text": "STU:0C8", "url": "https://www.google.com/finance/quote/0C8:STU"}, {"text": "DEU:0C8", "url": "https://www.google.com/finance/quote/0C8:DEU"}, {"text": "FRA:0C8", "url": "https://www.google.com/finance/quote/0C8:FRA"}, {"text": "NYSE:CTLT", "url": "https://www.google.com/finance/quote/CTLT:NYSE"}, {"text": "MUN:0C8", "url": "https://www.google.com/finance/quote/0C8:MUN"}, {"text": "BER:0C8", "url": "https://www.google.com/finance/quote/0C8:BER"}, {"text": "NYQ:CTLT", "url": "https://www.google.com/finance/quote/CTLT:NYQ"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 1, 2, 3, 2, 0, 0, 4, 2, 0], "total": 15, "isTopResearch": false, "rank": 859, "fortune500_rank": 305}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 114, "rank": 824, "fortune500_rank": 416}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "fortune500_rank": 409}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research"}, {"cset_id": 1789, "country": "China", "website": "http://www.sinopecgroup.com/", "crunchbase": {"text": " 01960307-bf1f-a830-d6b3-0db3a07f9d42 ", "url": " https://www.crunchbase.com/organization/sinopec-group "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sinopec"], "stage": "Mature", "name": "Sinopec Group", "patent_name": "Sinopec Group", "continent": "Asia", "local_logo": null, "aliases": "Sinopec Group; \u4e2d\u56fd\u77f3\u6cb9\u5316\u5de5\u96c6\u56e2; \u4e2d\u56fd\u77f3\u6cb9\u5316\u5de5\u96c6\u56e2\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4298436836, "url": "https://permid.org/1-4298436836"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:2386", "url": "https://www.google.com/finance/quote/2386:HKG"}], "market_full": [{"text": "DEU:1NS", "url": "https://www.google.com/finance/quote/1NS:DEU"}, {"text": "STU:1NS", "url": "https://www.google.com/finance/quote/1NS:STU"}, {"text": "PKC:SNPRY", "url": "https://www.google.com/finance/quote/PKC:SNPRY"}, {"text": "HKG:2386", "url": "https://www.google.com/finance/quote/2386:HKG"}, {"text": "MUN:1NS", "url": "https://www.google.com/finance/quote/1NS:MUN"}, {"text": "FRA:1NS", "url": "https://www.google.com/finance/quote/1NS:FRA"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 14}, {"field_name": "Convolutional neural network", "field_count": 12}, {"field_name": "Artificial neural network", "field_count": 11}, {"field_name": "Support vector machine", "field_count": 9}, {"field_name": "Fuzzy logic", "field_count": 5}, {"field_name": "Cluster analysis", "field_count": 4}, {"field_name": "Particle swarm optimization", "field_count": 4}, {"field_name": "Ant colony optimization algorithms", "field_count": 4}, {"field_name": "Wavelet", "field_count": 4}, {"field_name": "Principal component analysis", "field_count": 4}], "clusters": [{"cluster_id": 25755, "cluster_count": 15}, {"cluster_id": 7515, "cluster_count": 11}, {"cluster_id": 109, "cluster_count": 9}, {"cluster_id": 5990, "cluster_count": 8}, {"cluster_id": 61516, "cluster_count": 5}, {"cluster_id": 54676, "cluster_count": 5}, {"cluster_id": 22609, "cluster_count": 4}, {"cluster_id": 51708, "cluster_count": 3}, {"cluster_id": 1922, "cluster_count": 3}, {"cluster_id": 6105, "cluster_count": 3}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 80}, {"ref_CSET_id": 163, "referenced_count": 58}, {"ref_CSET_id": 1789, "referenced_count": 44}, {"ref_CSET_id": 87, "referenced_count": 32}, {"ref_CSET_id": 1495, "referenced_count": 19}, {"ref_CSET_id": 1790, "referenced_count": 16}, {"ref_CSET_id": 676, "referenced_count": 9}, {"ref_CSET_id": 682, "referenced_count": 8}, {"ref_CSET_id": 115, "referenced_count": 6}, {"ref_CSET_id": 223, "referenced_count": 6}], "tasks": [{"referent": "classification", "task_count": 50}, {"referent": "fault_detection", "task_count": 25}, {"referent": "developmental_learning", "task_count": 17}, {"referent": "seismic_analysis", "task_count": 12}, {"referent": "feature_selection", "task_count": 11}, {"referent": "image_processing", "task_count": 11}, {"referent": "speech_production", "task_count": 10}, {"referent": "system_identification", "task_count": 9}, {"referent": "disease_detection", "task_count": 8}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 8}], "methods": [{"referent": "double_q_learning", "method_count": 49}, {"referent": "convolutional_neural_networks", "method_count": 28}, {"referent": "griffin_lim_algorithm", "method_count": 25}, {"referent": "optimization", "method_count": 20}, {"referent": "recurrent_neural_networks", "method_count": 19}, {"referent": "mad_learning", "method_count": 18}, {"referent": "1d_cnn", "method_count": 17}, {"referent": "symbolic_deep_learning", "method_count": 13}, {"referent": "deep_belief_network", "method_count": 12}, {"referent": "metrix", "method_count": 12}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1904, 1853, 1601, 1301, 1378, 1458, 1693, 1818, 2108, 1830, 115], "total": 17059, "isTopResearch": false, "rank": 23, "sp500_rank": 21}, "ai_publications": {"counts": [18, 20, 18, 7, 5, 21, 26, 39, 48, 35, 0], "total": 237, "isTopResearch": false, "rank": 71, "sp500_rank": 56}, "ai_publications_growth": {"counts": [], "total": 15.331196581196584, "isTopResearch": false, "rank": 135, "sp500_rank": 70}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [55, 63, 68, 98, 98, 141, 223, 371, 663, 646, 46], "total": 2472, "isTopResearch": false, "rank": 115, "sp500_rank": 73}, "cv_pubs": {"counts": [6, 0, 1, 0, 0, 4, 5, 4, 8, 3, 0], "total": 31, "isTopResearch": true, "rank": 110, "sp500_rank": 73}, "nlp_pubs": {"counts": [0, 0, 1, 0, 0, 0, 1, 2, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 161, "sp500_rank": 94}, "robotics_pubs": {"counts": [3, 2, 2, 1, 0, 2, 0, 1, 1, 0, 0], "total": 12, "isTopResearch": true, "rank": 102, "sp500_rank": 75}, "citations_per_article": {"counts": [3.0555555555555554, 3.15, 3.7777777777777777, 14.0, 19.6, 6.714285714285714, 8.576923076923077, 9.512820512820513, 13.8125, 18.457142857142856, 0], "total": 10.430379746835444, "isTopResearch": false, "rank": 525, "sp500_rank": 195}}, "patents": {"ai_patents": {"counts": [14, 18, 35, 12, 23, 43, 49, 105, 51, 6, 0], "total": 356, "table": null, "rank": 69, "sp500_rank": 54}, "ai_patents_growth": {"counts": [], "total": 71.73190813231258, "table": null, "rank": 157, "sp500_rank": 74}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [140, 180, 350, 120, 230, 430, 490, 1050, 510, 60, 0], "total": 3560, "table": null, "rank": 69, "sp500_rank": 54}, "Physical_Sciences_and_Engineering": {"counts": [2, 2, 0, 2, 1, 1, 9, 10, 10, 0, 0], "total": 37, "table": "industry", "rank": 14, "sp500_rank": 12}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 5, 1, 1, 0], "total": 8, "table": null, "rank": 95, "sp500_rank": 62}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 3, 1, 1, 1, 0, 0], "total": 6, "table": null, "rank": 121, "sp500_rank": 83}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [0, 0, 3, 0, 1, 0, 1, 3, 6, 0, 0], "total": 14, "table": "industry", "rank": 57, "sp500_rank": 42}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [1, 0, 0, 1, 0, 4, 7, 9, 2, 0, 0], "total": 24, "table": "industry", "rank": 6, "sp500_rank": 6}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 1, 11, 1, 6, 7, 2, 32, 14, 2, 0], "total": 77, "table": "industry", "rank": 89, "sp500_rank": 65}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 3, 0, 0], "total": 6, "table": null, "rank": 204, "sp500_rank": 111}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [1, 0, 1, 2, 3, 9, 8, 17, 4, 0, 0], "total": 45, "table": "industry", "rank": 58, "sp500_rank": 45}, "Energy_Management": {"counts": [0, 0, 0, 0, 2, 4, 3, 1, 2, 0, 0], "total": 12, "table": null, "rank": 43, "sp500_rank": 40}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 191, "sp500_rank": 101}, "Planning_and_Scheduling": {"counts": [1, 0, 1, 2, 3, 8, 8, 17, 4, 0, 0], "total": 44, "table": "application", "rank": 43, "sp500_rank": 37}, "Control": {"counts": [0, 1, 0, 0, 1, 2, 1, 2, 0, 0, 0], "total": 7, "table": "application", "rank": 159, "sp500_rank": 108}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 1, 1, 2, 12, 14, 13, 16, 1, 0], "total": 60, "table": "application", "rank": 101, "sp500_rank": 68}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 17, 12, 1, 0], "total": 30, "table": "application", "rank": 46, "sp500_rank": 39}, "Measuring_and_Testing": {"counts": [0, 0, 1, 5, 6, 14, 18, 17, 7, 0, 0], "total": 68, "table": "application", "rank": 36, "sp500_rank": 27}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 114, "rank": 824, "sp500_rank": 303}, "ai_jobs": {"counts": null, "total": 7, "rank": 944, "sp500_rank": 319}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 1827, "country": "South Korea", "website": "https://www.sk.co.kr", "crunchbase": {"text": " 6fd54eb0-f5b7-4ceb-b213-b4069ef72f5e", "url": " https://www.crunchbase.com/organization/sk-holdings-2f5e"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sk"], "stage": "Mature", "name": "Sk Holdings", "patent_name": "SK Holdings", "continent": "Asia", "local_logo": null, "aliases": "SK Holdings; Sk Corp; Sk Inc; Sk\uadf8\ub8f9", "permid_links": [{"text": 5000049504, "url": "https://permid.org/1-5000049504"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:7735", "url": "https://www.google.com/finance/quote/7735:TYO"}], "market_full": [{"text": "DEU:7735", "url": "https://www.google.com/finance/quote/7735:DEU"}, {"text": "FRA:DAO", "url": "https://www.google.com/finance/quote/DAO:FRA"}, {"text": "TYO:7735", "url": "https://www.google.com/finance/quote/7735:TYO"}, {"text": "BER:DAO", "url": "https://www.google.com/finance/quote/BER:DAO"}, {"text": "PKL:DINRF", "url": "https://www.google.com/finance/quote/DINRF:PKL"}, {"text": "STU:DAO", "url": "https://www.google.com/finance/quote/DAO:STU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 6}, {"field_name": "Machine translation", "field_count": 5}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Language model", "field_count": 3}, {"field_name": "Feature extraction", "field_count": 3}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Stepwise regression", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Robot", "field_count": 2}], "clusters": [{"cluster_id": 1621, "cluster_count": 5}, {"cluster_id": 36706, "cluster_count": 5}, {"cluster_id": 214, "cluster_count": 4}, {"cluster_id": 1149, "cluster_count": 3}, {"cluster_id": 4473, "cluster_count": 3}, {"cluster_id": 655, "cluster_count": 3}, {"cluster_id": 1422, "cluster_count": 3}, {"cluster_id": 13727, "cluster_count": 2}, {"cluster_id": 2846, "cluster_count": 2}, {"cluster_id": 6871, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 224}, {"ref_CSET_id": 163, "referenced_count": 129}, {"ref_CSET_id": 87, "referenced_count": 101}, {"ref_CSET_id": 115, "referenced_count": 30}, {"ref_CSET_id": 23, "referenced_count": 27}, {"ref_CSET_id": 671, "referenced_count": 16}, {"ref_CSET_id": 127, "referenced_count": 15}, {"ref_CSET_id": 805, "referenced_count": 12}, {"ref_CSET_id": 1827, "referenced_count": 12}, {"ref_CSET_id": 184, "referenced_count": 12}], "tasks": [{"referent": "classification", "task_count": 15}, {"referent": "object_detection", "task_count": 9}, {"referent": "system_identification", "task_count": 5}, {"referent": "real_time_object_detection", "task_count": 5}, {"referent": "classification_tasks", "task_count": 4}, {"referent": "machine_translation", "task_count": 4}, {"referent": "speech_recognition", "task_count": 4}, {"referent": "image_processing", "task_count": 4}, {"referent": "defect_detection", "task_count": 4}, {"referent": "semantic_segmentation", "task_count": 3}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 16}, {"referent": "convolutional_neural_networks", "method_count": 11}, {"referent": "double_q_learning", "method_count": 9}, {"referent": "vqa_models", "method_count": 7}, {"referent": "1d_cnn", "method_count": 7}, {"referent": "symbolic_deep_learning", "method_count": 6}, {"referent": "3d_representations", "method_count": 6}, {"referent": "griffin_lim_algorithm", "method_count": 5}, {"referent": "auto_classifier", "method_count": 5}, {"referent": "feature_extractors", "method_count": 5}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [164, 188, 197, 208, 185, 190, 176, 216, 197, 151, 2], "total": 1874, "isTopResearch": false, "rank": 130, "sp500_rank": 102}, "ai_publications": {"counts": [2, 6, 10, 8, 10, 13, 16, 26, 25, 9, 0], "total": 125, "isTopResearch": false, "rank": 109, "sp500_rank": 79}, "ai_publications_growth": {"counts": [], "total": -1.7820512820512822, "isTopResearch": false, "rank": 1217, "sp500_rank": 289}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 2, 2, 4, 3, 1, 0, 0], "total": 12, "isTopResearch": false, "rank": 104, "sp500_rank": 53}, "citation_counts": {"counts": [9, 24, 53, 75, 111, 156, 249, 404, 570, 554, 21], "total": 2226, "isTopResearch": false, "rank": 125, "sp500_rank": 78}, "cv_pubs": {"counts": [1, 5, 7, 4, 4, 4, 8, 6, 7, 2, 0], "total": 48, "isTopResearch": true, "rank": 87, "sp500_rank": 58}, "nlp_pubs": {"counts": [0, 0, 0, 0, 4, 5, 2, 2, 5, 0, 0], "total": 18, "isTopResearch": true, "rank": 68, "sp500_rank": 48}, "robotics_pubs": {"counts": [1, 0, 0, 1, 1, 0, 2, 0, 2, 1, 0], "total": 8, "isTopResearch": true, "rank": 135, "sp500_rank": 95}, "citations_per_article": {"counts": [4.5, 4.0, 5.3, 9.375, 11.1, 12.0, 15.5625, 15.538461538461538, 22.8, 61.55555555555556, 0], "total": 17.808, "isTopResearch": false, "rank": 352, "sp500_rank": 113}}, "patents": {"ai_patents": {"counts": [1, 2, 30, 20, 40, 42, 97, 92, 24, 0, 0], "total": 348, "table": null, "rank": 70, "sp500_rank": 55}, "ai_patents_growth": {"counts": [], "total": 43.59924725904108, "table": null, "rank": 233, "sp500_rank": 105}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [10, 20, 300, 200, 400, 420, 970, 920, 240, 0, 0], "total": 3480, "table": null, "rank": 70, "sp500_rank": 55}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 3, 1, 5, 2, 0, 0], "total": 12, "table": "industry", "rank": 44, "sp500_rank": 37}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": null, "rank": 158, "sp500_rank": 91}, "Security__eg_cybersecurity": {"counts": [0, 1, 1, 0, 1, 0, 1, 2, 0, 0, 0], "total": 6, "table": null, "rank": 121, "sp500_rank": 83}, "Transportation": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 159, "sp500_rank": 107}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": null, "rank": 131, "sp500_rank": 89}, "Education": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60, "sp500_rank": 43}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 1, 2, 6, 16, 15, 55, 40, 13, 0, 0], "total": 148, "table": "industry", "rank": 52, "sp500_rank": 41}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 1, 0, 3, 10, 10, 16, 22, 3, 0, 0], "total": 65, "table": "industry", "rank": 65, "sp500_rank": 54}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 3, 2, 4, 3, 2, 0, 0], "total": 14, "table": "industry", "rank": 131, "sp500_rank": 92}, "Energy_Management": {"counts": [1, 0, 0, 0, 0, 3, 1, 0, 2, 0, 0], "total": 7, "table": null, "rank": 62, "sp500_rank": 58}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0], "total": 7, "table": null, "rank": 21, "sp500_rank": 14}, "Nanotechnology": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 10, "sp500_rank": 9}, "Semiconductors": {"counts": [0, 0, 5, 2, 5, 1, 1, 2, 2, 0, 0], "total": 18, "table": "industry", "rank": 11, "sp500_rank": 7}, "Language_Processing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122, "sp500_rank": 67}, "Speech_Processing": {"counts": [0, 0, 0, 3, 3, 3, 8, 2, 0, 0, 0], "total": 19, "table": "application", "rank": 53, "sp500_rank": 40}, "Knowledge_Representation": {"counts": [0, 0, 1, 0, 0, 0, 1, 1, 1, 0, 0], "total": 4, "table": "application", "rank": 137, "sp500_rank": 79}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": null, "rank": 244, "sp500_rank": 152}, "Control": {"counts": [1, 0, 0, 3, 0, 6, 17, 10, 4, 0, 0], "total": 41, "table": "application", "rank": 62, "sp500_rank": 48}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 2, 4, 8, 9, 23, 28, 8, 0, 0], "total": 82, "table": "application", "rank": 80, "sp500_rank": 55}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": null, "rank": 191, "sp500_rank": 121}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 2, 3, 0, 5, 2, 0, 0], "total": 13, "table": "application", "rank": 104, "sp500_rank": 80}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 114, "rank": 824, "sp500_rank": 303}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "sp500_rank": 328}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 416, "country": "United States", "website": "http://www.demandbase.com", "crunchbase": {"text": "bd22ad58-0fa7-3d1d-3077-a01da5bd6a84", "url": "https://www.crunchbase.com/organization/demandbase"}, "child_crunchbase": [{"text": "22fde857-7cde-85dd-60b0-448e7d717a14", "url": "https://www.crunchbase.com/organization/spiderbook"}], "linkedin": ["https://www.linkedin.com/company/demandbase", "https://www.linkedin.com/company/spiderbook"], "stage": "Mature", "name": "Demandbase", "patent_name": "demandbase", "continent": "North America", "local_logo": "demandbase.png", "aliases": "Demandbase - The Leader In Account-Based Marketing; Demandbase Inc; Demandbase Ltd; Demandbase, Inc", "permid_links": [{"text": 4297752897, "url": "https://permid.org/1-4297752897"}, {"text": 5050989751, "url": "https://permid.org/1-5050989751"}], "parent_info": null, "agg_child_info": "Spiderbook", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Demandbase is an account-based marketing, sales intelligence, and data company.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Taxonomy (general)", "field_count": 1}], "clusters": [{"cluster_id": 9371, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 787, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "entity_disambiguation", "task_count": 1}], "methods": [{"referent": "ensemble_clustering", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0], "total": 4, "isTopResearch": false, "rank": 833}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 113, "rank": 829}, "ai_jobs": {"counts": null, "total": 28, "rank": 616}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Demandbase is a targeting and personalization platform for business-to-business (B2B) companies. Marketers can target online ads to companies that fit pre-determined criteria based on attributes and metrics like industry, revenue, customer status, or products purchased. The platform provides services such as managed analytics consulting, target account marketing, and Facebook ad targeting. The company\u2019s patented technology can identify businesses visiting websites through the use of their network IP address, without the use of cookies and in real-time.\nHeadquartered in San Francisco, Demandbase was founded in 2006 by CEO Chris Golec.", "wikipedia_link": "https://en.wikipedia.org/wiki/Demandbase", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2461, "country": "United States", "website": "https://www.pplweb.com/", "crunchbase": {"text": "e7d48747-e528-42a1-94d6-3f4c1e7d586a", "url": "https://www.crunchbase.com/organization/ppl-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ppl-corporation"], "stage": "Mature", "name": "PPL Corp.", "patent_name": "ppl corp.", "continent": "North America", "local_logo": "ppl_corp.png", "aliases": "PPL Corporation; Pennsylvania Power & Ligh; Pp&L; Ppl", "permid_links": [{"text": 4295912225, "url": "https://permid.org/1-4295912225"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PPL", "url": "https://www.google.com/finance/quote/nyse:ppl"}], "market_full": [{"text": "STU:PP9", "url": "https://www.google.com/finance/quote/pp9:stu"}, {"text": "NYSE:PPL", "url": "https://www.google.com/finance/quote/nyse:ppl"}, {"text": "GER:PP9X", "url": "https://www.google.com/finance/quote/ger:pp9x"}, {"text": "MUN:PP9", "url": "https://www.google.com/finance/quote/mun:pp9"}, {"text": "DUS:PP9", "url": "https://www.google.com/finance/quote/dus:pp9"}, {"text": "DEU:PPL", "url": "https://www.google.com/finance/quote/deu:ppl"}, {"text": "ASE:PPL", "url": "https://www.google.com/finance/quote/ase:ppl"}, {"text": "BER:PP9", "url": "https://www.google.com/finance/quote/ber:pp9"}, {"text": "FRA:PP9", "url": "https://www.google.com/finance/quote/fra:pp9"}, {"text": "LSE:0KEJ", "url": "https://www.google.com/finance/quote/0kej:lse"}, {"text": "BRN:PP9", "url": "https://www.google.com/finance/quote/brn:pp9"}, {"text": "NYQ:PPL", "url": "https://www.google.com/finance/quote/nyq:ppl"}, {"text": "MCX:PPL-RM", "url": "https://www.google.com/finance/quote/mcx:ppl-rm"}, {"text": "SAO:P1PL34", "url": "https://www.google.com/finance/quote/p1pl34:sao"}], "crunchbase_description": "PPL Corporation delivers on its promises to customers, investors, employees and the communities we serve.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 113, "rank": 829, "fortune500_rank": 417}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "fortune500_rank": 409}}, "sector": "Utilities", "business_sector": "Utilities", "wikipedia_description": "PPL Corporation is an energy company headquartered in Allentown, Pennsylvania, United States. It currently controls about 8,000 megawatts of regulated electric generating capacity in Kentucky and delivers electricity to more than 10 million customers in Pennsylvania, Kentucky, and the United Kingdom. PPL is the parent to seven regulated utility companies in the U.S. and U.K., and it also provides natural gas delivery service to 329,000 customers in Kentucky. PPL Electric Utilities (formerly known as PP&L and Pennsylvania Power and Light) is PPL Corporation's primary subsidiary.", "wikipedia_link": "https://en.wikipedia.org/wiki/PPL_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 285, "country": "China", "website": "https://www.yuanfudao.com/", "crunchbase": {"text": "febc1e50-5700-62bf-c6d7-c57eda5d3881", "url": "https://www.crunchbase.com/organization/yuanfudao"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/\u733f\u8f85\u5bfc"], "stage": "Mature", "name": "Yuanfudao", "patent_name": "yuanfudao", "continent": "Asia", "local_logo": "yuanfudao.png", "aliases": "Beijing Yuanli Education Technology Co Ltd; Zhenguanyu Tech, Inc; \u733f\u8f85\u5bfc", "permid_links": [{"text": 5048229469, "url": "https://permid.org/1-5048229469"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Yuanfudao provides live courses and tutoring through an online platform.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 111, "rank": 831}, "ai_jobs": {"counts": null, "total": 13, "rank": 790}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "\u516c\u53f8\u59cb\u7ec8\u81f4\u529b\u4e8e\u8fd0\u7528\u79d1\u6280\u624b\u6bb5\u63d0\u5347\u5b66\u4e60\u4f53\u9a8c\u3001\u6fc0\u53d1\u5b66\u4e60\u5174\u8da3\uff0c\u57f9\u517b\u79d1\u5b66\u7684\u5b66\u4e60\u4e60\u60ef\uff0c\u8ba9\u4e2d\u56fd\u5b66\u751f\u66f4\u4fbf\u6377\u5730\u83b7\u53d6\u4f18\u8d28\u7684\u6559\u80b2\u8d44\u6e90\u3002", "company_site_link": "https://www.yuanfudao.com", "description_retrieval_date": "2021-03-16", "company_site_description_translation": "The company has always been committed to using scientific and technological means to enhance the learning experience, stimulate learning interest, cultivate scientific learning habits, and allow Chinese students to obtain high-quality educational resources more conveniently."}, {"cset_id": 1816, "country": "China", "website": "https://www.chinalife.com.cn/", "crunchbase": {"text": " c301ed04-45c4-d20f-0f05-6ea8d1f6cd94", "url": " https://www.crunchbase.com/organization/china-life-insurance"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/china-life-insurance-co-ltd"], "stage": "Mature", "name": "China Life Insurance", "patent_name": "China Life Insurance", "continent": "Asia", "local_logo": null, "aliases": "China Life Insurance; China Life Insurance Company Limited; \u4e2d\u56fd\u4eba\u5bff; \u4e2d\u56fd\u4eba\u5bff\u4fdd\u9669", "permid_links": [{"text": 4295864767, "url": "https://permid.org/1-4295864767"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:2628", "url": "https://www.google.com/finance/quote/2628:HKG"}, {"text": "NYSE:LFC", "url": "https://www.google.com/finance/quote/LFC:NYSE"}], "market_full": [{"text": "SHH:601628", "url": "https://www.google.com/finance/quote/601628:SHH"}, {"text": "LSE:0A2E", "url": "https://www.google.com/finance/quote/0A2E:LSE"}, {"text": "ASE:LFC", "url": "https://www.google.com/finance/quote/ASE:LFC"}, {"text": "HAN:CHL", "url": "https://www.google.com/finance/quote/CHL:HAN"}, {"text": "PKC:CILJF", "url": "https://www.google.com/finance/quote/CILJF:PKC"}, {"text": "BER:CLF", "url": "https://www.google.com/finance/quote/BER:CLF"}, {"text": "NYQ:LFC", "url": "https://www.google.com/finance/quote/LFC:NYQ"}, {"text": "MUN:CHL", "url": "https://www.google.com/finance/quote/CHL:MUN"}, {"text": "FRA:CHL", "url": "https://www.google.com/finance/quote/CHL:FRA"}, {"text": "MUN:CLF", "url": "https://www.google.com/finance/quote/CLF:MUN"}, {"text": "SAO:L1FC34", "url": "https://www.google.com/finance/quote/L1FC34:SAO"}, {"text": "STU:CLF", "url": "https://www.google.com/finance/quote/CLF:STU"}, {"text": "HKG.HS:2628", "url": "https://www.google.com/finance/quote/2628:HKG.HS"}, {"text": "HKG.HZ:2628", "url": "https://www.google.com/finance/quote/2628:HKG.HZ"}, {"text": "HKG:2628", "url": "https://www.google.com/finance/quote/2628:HKG"}, {"text": "DEU:CLF", "url": "https://www.google.com/finance/quote/CLF:DEU"}, {"text": "STU:CHL", "url": "https://www.google.com/finance/quote/CHL:STU"}, {"text": "NYSE:LFC", "url": "https://www.google.com/finance/quote/LFC:NYSE"}, {"text": "BER:CHL", "url": "https://www.google.com/finance/quote/BER:CHL"}, {"text": "DUS:CHL", "url": "https://www.google.com/finance/quote/CHL:DUS"}, {"text": "FRA:CLF", "url": "https://www.google.com/finance/quote/CLF:FRA"}, {"text": "DEU:2628", "url": "https://www.google.com/finance/quote/2628:DEU"}, {"text": "MEX:LFCN", "url": "https://www.google.com/finance/quote/LFCN:MEX"}, {"text": "VIE:CNLI", "url": "https://www.google.com/finance/quote/CNLI:VIE"}, {"text": "BUE:LFC3", "url": "https://www.google.com/finance/quote/BUE:LFC3"}, {"text": "DUS:CLF", "url": "https://www.google.com/finance/quote/CLF:DUS"}, {"text": "HAM:CHL", "url": "https://www.google.com/finance/quote/CHL:HAM"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Fuzzy logic", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 11760, "cluster_count": 1}, {"cluster_id": 228, "cluster_count": 1}, {"cluster_id": 79159, "cluster_count": 1}, {"cluster_id": 1634, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 949, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 383, "referenced_count": 1}, {"ref_CSET_id": 1413, "referenced_count": 1}, {"ref_CSET_id": 201, "referenced_count": 1}], "tasks": [{"referent": "developmental_learning", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "reasoning", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "facial_expression_recognition", "task_count": 1}, {"referent": "facial_expression_analysis", "task_count": 1}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "anchor_supervision", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [25, 8, 5, 3, 8, 6, 1, 1, 7, 4, 0], "total": 68, "isTopResearch": false, "rank": 570, "sp500_rank": 314}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "sp500_rank": 285}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 2, 0, 1, 2, 0, 1, 0, 1, 5, 0], "total": 12, "isTopResearch": false, "rank": 740, "sp500_rank": 305}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 1.0, 0, 1.0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735, "sp500_rank": 295}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 1, 14, 0, 4, 0], "total": 20, "table": null, "rank": 323, "sp500_rank": 165}, "ai_patents_growth": {"counts": [], "total": 650.0, "table": null, "rank": 7, "sp500_rank": 2}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 10, 140, 0, 40, 0], "total": 200, "table": null, "rank": 323, "sp500_rank": 165}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 0], "total": 8, "table": "industry", "rank": 273, "sp500_rank": 145}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 8, 0, 3, 0], "total": 11, "table": "industry", "rank": 73, "sp500_rank": 57}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 6, 0, 4, 0], "total": 10, "table": "industry", "rank": 149, "sp500_rank": 101}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 6, 0, 2, 0], "total": 8, "table": "application", "rank": 143, "sp500_rank": 100}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 6, 0, 2, 0], "total": 9, "table": "application", "rank": 259, "sp500_rank": 139}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 111, "rank": 831, "sp500_rank": 305}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "sp500_rank": 297}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 93, "country": "United States", "website": "http://www.fundbox.com/", "crunchbase": {"text": "a9042057-9dda-5582-a6dc-19550c40c07e", "url": "https://www.crunchbase.com/organization/fundbox"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fundbox"], "stage": "Mature", "name": "Fundbox", "patent_name": "fundbox", "continent": "North America", "local_logo": "fundbox.png", "aliases": "Fundbox Ltd; Fundbox, Inc", "permid_links": [{"text": 5049103272, "url": "https://permid.org/1-5049103272"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Fundbox is an AI-powered financial platform for small businesses.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 110, "rank": 833}, "ai_jobs": {"counts": null, "total": 16, "rank": 738}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Fundbox is a financial services platform based in San Francisco that offers credit and payment solutions to small businesses. Founded in 2013, the company uses big data analytics, engineering, and predictive modeling to help optimize cash flow for small businesses. The organization has received funding from venture capital firms such as General Catalyst Partners, Khosla Ventures, MUFG, Bezos Expeditions, and Allianz. As of 2019, the company had raised a total of $433.5 million in funding from at least 14 investors.", "wikipedia_link": "https://en.wikipedia.org/wiki/Fundbox", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2135, "country": "Japan", "website": "https://www.subaru.co.jp/", "crunchbase": {"text": " 467763bb-864f-b23d-932b-d6f87535dec7", "url": " https://www.crunchbase.com/organization/fuji-heavy-industries"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/subaru-of-america"], "stage": "Mature", "name": "Subaru", "patent_name": "Subaru", "continent": "Asia", "local_logo": null, "aliases": "Fuji Heavy Industries; Subaru; Subaru Corporation", "permid_links": [{"text": 4295877398, "url": "https://permid.org/1-4295877398"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:7270", "url": "https://www.google.com/finance/quote/7270:TYO"}], "market_full": [{"text": "MEX:7270N", "url": "https://www.google.com/finance/quote/7270N:MEX"}, {"text": "FRA:FUH0", "url": "https://www.google.com/finance/quote/FRA:FUH0"}, {"text": "MUN:FUH0", "url": "https://www.google.com/finance/quote/FUH0:MUN"}, {"text": "DEU:FUH0", "url": "https://www.google.com/finance/quote/DEU:FUH0"}, {"text": "TYO:7270", "url": "https://www.google.com/finance/quote/7270:TYO"}, {"text": "MUN:FUH", "url": "https://www.google.com/finance/quote/FUH:MUN"}, {"text": "PKL:FUJHF", "url": "https://www.google.com/finance/quote/FUJHF:PKL"}, {"text": "FRA:FUH", "url": "https://www.google.com/finance/quote/FRA:FUH"}, {"text": "STU:FUH", "url": "https://www.google.com/finance/quote/FUH:STU"}, {"text": "PNK:FUJHY", "url": "https://www.google.com/finance/quote/FUJHY:PNK"}, {"text": "DEU:7270", "url": "https://www.google.com/finance/quote/7270:DEU"}, {"text": "DUS:FUH", "url": "https://www.google.com/finance/quote/DUS:FUH"}, {"text": "BER:FUH", "url": "https://www.google.com/finance/quote/BER:FUH"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 4}, {"field_name": "Driving simulator", "field_count": 2}, {"field_name": "Motion analysis", "field_count": 1}, {"field_name": "Autonomous system (mathematics)", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Stereo camera", "field_count": 1}, {"field_name": "Haptic technology", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 11690, "cluster_count": 2}, {"cluster_id": 21489, "cluster_count": 1}, {"cluster_id": 20545, "cluster_count": 1}, {"cluster_id": 14335, "cluster_count": 1}, {"cluster_id": 16876, "cluster_count": 1}, {"cluster_id": 3817, "cluster_count": 1}, {"cluster_id": 27564, "cluster_count": 1}, {"cluster_id": 66396, "cluster_count": 1}, {"cluster_id": 10023, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2135, "referenced_count": 2}, {"ref_CSET_id": 800, "referenced_count": 2}, {"ref_CSET_id": 783, "referenced_count": 1}, {"ref_CSET_id": 1986, "referenced_count": 1}, {"ref_CSET_id": 795, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "autonomous_driving", "task_count": 7}, {"referent": "robots", "task_count": 3}, {"referent": "classification", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "industrial_robots", "task_count": 1}, {"referent": "future_prediction", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "service_robots", "task_count": 1}, {"referent": "mobile_robot", "task_count": 1}, {"referent": "vessel_segmentation", "task_count": 1}], "methods": [{"referent": "glow", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "automl", "method_count": 1}, {"referent": "fourier_related_transforms", "method_count": 1}, {"referent": "crf", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [17, 27, 12, 13, 14, 20, 17, 12, 15, 8, 0], "total": 155, "isTopResearch": false, "rank": 450, "sp500_rank": 268}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 2, 2, 2, 3, 1, 0], "total": 11, "isTopResearch": false, "rank": 397, "sp500_rank": 211}, "ai_publications_growth": {"counts": [], "total": -5.555555555555557, "isTopResearch": false, "rank": 1235, "sp500_rank": 298}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [5, 6, 6, 7, 10, 11, 7, 10, 7, 13, 0], "total": 82, "isTopResearch": false, "rank": 533, "sp500_rank": 232}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114}, "citations_per_article": {"counts": [0, 0, 6.0, 0, 0, 5.5, 3.5, 5.0, 2.3333333333333335, 13.0, 0], "total": 7.454545454545454, "isTopResearch": false, "rank": 628, "sp500_rank": 245}}, "patents": {"ai_patents": {"counts": [0, 5, 1, 4, 2, 14, 7, 3, 2, 0, 0], "total": 38, "table": null, "rank": 245, "sp500_rank": 140}, "ai_patents_growth": {"counts": [], "total": 164.28571428571428, "table": null, "rank": 62, "sp500_rank": 27}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 50, 10, 40, 20, 140, 70, 30, 20, 0, 0], "total": 380, "table": null, "rank": 245, "sp500_rank": 140}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 4, 1, 4, 2, 11, 6, 2, 0, 0, 0], "total": 30, "table": "industry", "rank": 60, "sp500_rank": 47}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "sp500_rank": 183}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 141, "sp500_rank": 91}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 3, 2, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 204, "sp500_rank": 111}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 1, 1, 1, 0, 0], "total": 5, "table": "industry", "rank": 213, "sp500_rank": 136}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 1, 0, 0], "total": 4, "table": "application", "rank": 198, "sp500_rank": 131}, "Control": {"counts": [0, 4, 1, 4, 2, 11, 7, 1, 0, 0, 0], "total": 30, "table": "application", "rank": 71, "sp500_rank": 52}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 1, 2, 2, 0, 0, 0], "total": 6, "table": "application", "rank": 300, "sp500_rank": 151}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 1, 1, 0, 2, 1, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 170, "sp500_rank": 121}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 110, "rank": 833, "sp500_rank": 306}, "ai_jobs": {"counts": null, "total": 9, "rank": 880, "sp500_rank": 304}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 355, "country": "United States", "website": "https://www.bidgely.com", "crunchbase": {"text": "04f0e4e0-8f6f-ca03-09ec-e945ad7179fe", "url": "https://www.crunchbase.com/organization/bidgely"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bidgely"], "stage": "Growth", "name": "Bidgely", "patent_name": "bidgely", "continent": "North America", "local_logo": "bidgely.png", "aliases": "Bidgely Inc; Bidgely, Inc", "permid_links": [{"text": 5045040524, "url": "https://permid.org/1-5045040524"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Bidgely leverages the power of AI to optimize utility customer engagement and is the choice of leading utilities", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 51093, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 785, "referenced_count": 1}], "tasks": [], "methods": [{"referent": "loss_functions", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 3, 4, 1, 1, 0], "total": 10, "isTopResearch": false, "rank": 760}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10.0, "isTopResearch": false, "rank": 535}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [20, 0, 0, 20, 0, 10, 0, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [2, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 86}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 109, "rank": 835}, "ai_jobs": {"counts": null, "total": 40, "rank": 527}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We empower customers with our energy insights, rooted in deep understanding of what customers want from their utility.", "company_site_link": "https://www.bidgely.com/solutions/customer-experience/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1616, "country": "United States", "website": "https://www.nuna.com/", "crunchbase": {"text": "58328b4a-b255-1d5d-a6a5-8643de0dc37e", "url": "https://www.crunchbase.com/organization/nuna-health"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nuna-inc"], "stage": "Growth", "name": "Nuna Inc.", "patent_name": "nuna inc.", "continent": "North America", "local_logo": "nuna_inc.png", "aliases": "Nuna Inc; Nuna, Inc", "permid_links": [{"text": 5053437153, "url": "https://permid.org/1-5053437153"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Nuna works with government, employers, and plans to improve how people use healthcare through data.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 109, "rank": 835}, "ai_jobs": {"counts": null, "total": 29, "rank": 607}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "To make healthcare more accessible, affordable, and sustainable for everyone, Nuna partners with industry changemakers to reduce data fragmentation and align incentives around value-based care.", "company_site_link": "https://www.nuna.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2893, "country": "United States", "website": "https://www.chenega.com/", "crunchbase": {"text": "7f394ca1-0125-4aae-aeec-ec87287b3b7b", "url": "https://www.crunchbase.com/organization/chenega-corp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/chenega-corporation"], "stage": "Unknown", "name": "Chenega Corp", "patent_name": "chenega corp", "continent": "North America", "local_logo": "chenega_corp.png", "aliases": "Chenaga Profess & Tech Serv; Chenega; Chenega Corp; Chenega Corporation; Chenega Federal Systems; Chenega Federal Systems LLC; Chenega Government Consulting; Chenega Govt Consulting; Chenega Govt Consulting Llc; Chenega Professional & Technical Services; Chenega Technical Innovations; Chenega Time Solutions", "permid_links": [{"text": 4296571544, "url": "https://permid.org/1-4296571544"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Chenega provides government and commercial contract services. ", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 1, 1, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 109, "rank": 835}, "ai_jobs": {"counts": null, "total": 12, "rank": 812}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Chenega has the dual mission of succeeding in business to assist its shareholders, descendants, and family pursuant to the Alaska Native Claims Settlement Act of 1971. Chenega is an Alaska Native corporation established members in their journey to economic and social self-\ndetermination and self-sufficiency; and to create and support comprehensive cultural, societal and community activities. Some photos provided courtesy of Polling Trust.", "company_site_link": "https://www.chenega.com", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2943, "country": "United States", "website": "https://www.fti-net.com/", "crunchbase": {"text": "1656a544-40f2-4b9c-9b7b-6150a9d8fc54", "url": "https://www.crunchbase.com/organization/frontier-technology-fc54"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/frontier-technology"], "stage": "Unknown", "name": "Frontier Technology Inc", "patent_name": "frontier technology inc", "continent": "North America", "local_logo": "frontier_technology_inc.png", "aliases": "Frontier Technology Inc; Frontier Technology Incorporation", "permid_links": [{"text": 5001138703, "url": "https://permid.org/1-5001138703"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Frontier Technology designs and delivers IT solutions.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Pattern recognition (psychology)", "field_count": 1}], "clusters": [{"cluster_id": 34390, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "object_detection", "task_count": 1}, {"referent": "target_recognition", "task_count": 1}, {"referent": "hyperspectral", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}], "methods": [{"referent": "adaptive_nms", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "sdne", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "lama", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 901}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 109, "rank": 835}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "For over 30 years, FTI has been in the business of helping the Department of Defense (DoD) and other government agencies implement informed and wise decisions to solve difficult problems. In that time, FTI has developed numerous Decision Analysis Technologies to support our customers and their missions at all scopes and classifications. We have focused our technologies on customer challenges by providing decision analysis, support services, and agile Sole Source contracting solutions.", "company_site_link": "https://www.fti-net.com/capabilities/", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 1934, "country": "France", "website": "https://www.vinci.com/", "crunchbase": {"text": " 9eb7fbd4-c883-0375-775a-c82d82aa580e ", "url": "https://www.crunchbase.com/organization/vinci"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vinci"], "stage": "Mature", "name": "Vinci", "patent_name": "Vinci", "continent": "Europe", "local_logo": null, "aliases": "Vinci; Vinci Sa", "permid_links": [{"text": 4295867538, "url": "https://permid.org/1-4295867538"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "BER:SQU", "url": "https://www.google.com/finance/quote/BER:SQU"}, {"text": "VIE:DG", "url": "https://www.google.com/finance/quote/DG:VIE"}, {"text": "DEU:SGEF", "url": "https://www.google.com/finance/quote/DEU:SGEF"}, {"text": "MUN:SQU", "url": "https://www.google.com/finance/quote/MUN:SQU"}, {"text": "DUS:SQU", "url": "https://www.google.com/finance/quote/DUS:SQU"}, {"text": "GER:SQUX", "url": "https://www.google.com/finance/quote/GER:SQUX"}, {"text": "STU:SQU", "url": "https://www.google.com/finance/quote/SQU:STU"}, {"text": "MIL:DG", "url": "https://www.google.com/finance/quote/DG:MIL"}, {"text": "LSE:0NQM", "url": "https://www.google.com/finance/quote/0NQM:LSE"}, {"text": "EBT:DGP", "url": "https://www.google.com/finance/quote/DGp:EBT"}, {"text": "HAM:SQU", "url": "https://www.google.com/finance/quote/HAM:SQU"}, {"text": "HAN:SQU", "url": "https://www.google.com/finance/quote/HAN:SQU"}, {"text": "FRA:SQUA", "url": "https://www.google.com/finance/quote/FRA:SQUA"}, {"text": "PAR:DG", "url": "https://www.google.com/finance/quote/DG:PAR"}, {"text": "DEU:SQUA", "url": "https://www.google.com/finance/quote/DEU:SQUA"}, {"text": "STU:SQUA", "url": "https://www.google.com/finance/quote/SQUA:STU"}, {"text": "BER:SQUA", "url": "https://www.google.com/finance/quote/BER:SQUA"}, {"text": "FRA:SQU", "url": "https://www.google.com/finance/quote/FRA:SQU"}, {"text": "MEX:DGN", "url": "https://www.google.com/finance/quote/DGN:MEX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Cluster analysis", "field_count": 7}, {"field_name": "Skyline", "field_count": 4}, {"field_name": "Convolutional neural network", "field_count": 4}, {"field_name": "Robot", "field_count": 4}, {"field_name": "Feature (computer vision)", "field_count": 3}, {"field_name": "Noun", "field_count": 3}, {"field_name": "Annotation", "field_count": 3}, {"field_name": "Segmentation", "field_count": 3}, {"field_name": "Feature selection", "field_count": 3}, {"field_name": "Syntax", "field_count": 2}], "clusters": [{"cluster_id": 8437, "cluster_count": 4}, {"cluster_id": 2479, "cluster_count": 4}, {"cluster_id": 21509, "cluster_count": 3}, {"cluster_id": 74987, "cluster_count": 3}, {"cluster_id": 45678, "cluster_count": 3}, {"cluster_id": 39046, "cluster_count": 2}, {"cluster_id": 6107, "cluster_count": 2}, {"cluster_id": 2949, "cluster_count": 2}, {"cluster_id": 2304, "cluster_count": 2}, {"cluster_id": 65916, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 52}, {"ref_CSET_id": 1934, "referenced_count": 42}, {"ref_CSET_id": 163, "referenced_count": 29}, {"ref_CSET_id": 87, "referenced_count": 21}, {"ref_CSET_id": 115, "referenced_count": 11}, {"ref_CSET_id": 112, "referenced_count": 6}, {"ref_CSET_id": 127, "referenced_count": 5}, {"ref_CSET_id": 57, "referenced_count": 4}, {"ref_CSET_id": 787, "referenced_count": 4}, {"ref_CSET_id": 2079, "referenced_count": 4}], "tasks": [{"referent": "classification", "task_count": 27}, {"referent": "image_processing", "task_count": 12}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 11}, {"referent": "robots", "task_count": 7}, {"referent": "language_identification", "task_count": 6}, {"referent": "computer_vision", "task_count": 6}, {"referent": "image_annotation", "task_count": 5}, {"referent": "segmentation", "task_count": 5}, {"referent": "decision_making", "task_count": 5}, {"referent": "vehicle_detection", "task_count": 5}], "methods": [{"referent": "double_q_learning", "method_count": 14}, {"referent": "vqa_models", "method_count": 13}, {"referent": "3d_representations", "method_count": 8}, {"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "meta_learning_algorithms", "method_count": 8}, {"referent": "convolutional_neural_networks", "method_count": 7}, {"referent": "griffin_lim_algorithm", "method_count": 6}, {"referent": "clustering", "method_count": 6}, {"referent": "optimization", "method_count": 5}, {"referent": "auto_classifier", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [726, 632, 735, 931, 751, 716, 800, 691, 576, 288, 11], "total": 6857, "isTopResearch": false, "rank": 52, "sp500_rank": 47}, "ai_publications": {"counts": [13, 14, 20, 27, 22, 21, 24, 20, 30, 14, 1], "total": 206, "isTopResearch": false, "rank": 78, "sp500_rank": 61}, "ai_publications_growth": {"counts": [], "total": -6.666666666666669, "isTopResearch": false, "rank": 1244, "sp500_rank": 303}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99}, "citation_counts": {"counts": [81, 120, 126, 120, 158, 190, 255, 279, 325, 308, 10], "total": 1972, "isTopResearch": false, "rank": 138, "sp500_rank": 84}, "cv_pubs": {"counts": [7, 3, 2, 4, 7, 5, 12, 3, 5, 4, 1], "total": 53, "isTopResearch": true, "rank": 79, "sp500_rank": 56}, "nlp_pubs": {"counts": [1, 5, 8, 10, 5, 9, 4, 6, 4, 4, 0], "total": 56, "isTopResearch": true, "rank": 45, "sp500_rank": 33}, "robotics_pubs": {"counts": [0, 2, 2, 2, 3, 1, 3, 5, 6, 1, 0], "total": 25, "isTopResearch": true, "rank": 70, "sp500_rank": 54}, "citations_per_article": {"counts": [6.230769230769231, 8.571428571428571, 6.3, 4.444444444444445, 7.181818181818182, 9.047619047619047, 10.625, 13.95, 10.833333333333334, 22.0, 10.0], "total": 9.572815533980583, "isTopResearch": false, "rank": 556, "sp500_rank": 208}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 108, "rank": 839, "sp500_rank": 307}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "sp500_rank": 297}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 2819, "country": "United States", "website": "http://www.teledyne.com/", "crunchbase": {"text": "f4a46ffb-d12f-e62c-6832-a8c67e87607b", "url": "https://www.crunchbase.com/organization/teledyne-technologies"}, "child_crunchbase": [{"text": "e37c6388-712c-2beb-e41f-905e02966dd4", "url": "https://www.crunchbase.com/organization/flir-systems"}], "linkedin": ["https://www.linkedin.com/company/teledyne-technologies-incorporated"], "stage": "Mature", "name": "Teledyne Technologies", "patent_name": "teledyne technologies", "continent": "North America", "local_logo": "teledyne_technologies.png", "aliases": "Allegheny Ludlum Corp; Teledyne; Teledyne Technologies; Teledyne Technologies Incorporated", "permid_links": [{"text": 4295908600, "url": "https://permid.org/1-4295908600"}, {"text": 4295912294, "url": "https://permid.org/1-4295912294"}], "parent_info": null, "agg_child_info": "Flir Systems", "unagg_child_info": null, "market_filt": [{"text": "NYSE:TDY", "url": "https://www.google.com/finance/quote/nyse:tdy"}], "market_full": [{"text": "BRN:TYZ", "url": "https://www.google.com/finance/quote/brn:tyz"}, {"text": "STU:TYZ", "url": "https://www.google.com/finance/quote/stu:tyz"}, {"text": "DUS:TYZ", "url": "https://www.google.com/finance/quote/dus:tyz"}, {"text": "MCX:TDY-RM", "url": "https://www.google.com/finance/quote/mcx:tdy-rm"}, {"text": "NYSE:TDY", "url": "https://www.google.com/finance/quote/nyse:tdy"}, {"text": "NYQ:TDY", "url": "https://www.google.com/finance/quote/nyq:tdy"}, {"text": "FRA:TYZ", "url": "https://www.google.com/finance/quote/fra:tyz"}, {"text": "MEX:TDY", "url": "https://www.google.com/finance/quote/mex:tdy"}, {"text": "MUN:TYZ", "url": "https://www.google.com/finance/quote/mun:tyz"}, {"text": "DEU:TDY", "url": "https://www.google.com/finance/quote/deu:tdy"}], "crunchbase_description": "Teledyne Technologies provides electronic components, instruments, and communications products in the U.S., Europe, Japan, and Canada.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Hyperspectral imaging", "field_count": 1}, {"field_name": "Augmented reality", "field_count": 1}, {"field_name": "Semantic data model", "field_count": 1}, {"field_name": "Sensor fusion", "field_count": 1}, {"field_name": "Motion estimation", "field_count": 1}, {"field_name": "Identification (information)", "field_count": 1}, {"field_name": "Camera resectioning", "field_count": 1}], "clusters": [{"cluster_id": 42657, "cluster_count": 3}, {"cluster_id": 177, "cluster_count": 2}, {"cluster_id": 1911, "cluster_count": 2}, {"cluster_id": 1621, "cluster_count": 1}, {"cluster_id": 65, "cluster_count": 1}, {"cluster_id": 19594, "cluster_count": 1}, {"cluster_id": 16101, "cluster_count": 1}, {"cluster_id": 16793, "cluster_count": 1}, {"cluster_id": 7266, "cluster_count": 1}, {"cluster_id": 494, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 127, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 2819, "referenced_count": 2}, {"ref_CSET_id": 785, "referenced_count": 1}, {"ref_CSET_id": 2050, "referenced_count": 1}, {"ref_CSET_id": 1438, "referenced_count": 1}, {"ref_CSET_id": 789, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 6}, {"referent": "autonomous_driving", "task_count": 4}, {"referent": "tensor_networks", "task_count": 3}, {"referent": "video_surveillance", "task_count": 3}, {"referent": "autonomous_vehicles", "task_count": 3}, {"referent": "video_synchronization", "task_count": 2}, {"referent": "information_retrieval", "task_count": 2}, {"referent": "image_restoration", "task_count": 2}, {"referent": "object_detection", "task_count": 2}, {"referent": "action_localization", "task_count": 2}], "methods": [{"referent": "generalized_linear_models", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "3d_reconstruction", "method_count": 2}, {"referent": "hit_detector", "method_count": 1}, {"referent": "non_local_block", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "hoc", "method_count": 1}, {"referent": "discriminators", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "pose_estimation_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [65, 60, 42, 52, 59, 41, 49, 30, 28, 30, 0], "total": 456, "isTopResearch": false, "rank": 289, "fortune500_rank": 114}, "ai_publications": {"counts": [4, 1, 2, 4, 1, 2, 2, 1, 1, 1, 0], "total": 19, "isTopResearch": false, "rank": 311, "fortune500_rank": 95}, "ai_publications_growth": {"counts": [], "total": -16.666666666666668, "isTopResearch": false, "rank": 1303, "fortune500_rank": 380}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [8, 8, 8, 14, 24, 21, 31, 45, 39, 27, 0], "total": 225, "isTopResearch": false, "rank": 374, "fortune500_rank": 112}, "cv_pubs": {"counts": [3, 0, 0, 1, 0, 2, 1, 1, 1, 0, 0], "total": 9, "isTopResearch": true, "rank": 217, "fortune500_rank": 62}, "nlp_pubs": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "fortune500_rank": 61}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0], "total": 3, "isTopResearch": true, "rank": 214, "fortune500_rank": 57}, "citations_per_article": {"counts": [2.0, 8.0, 4.0, 3.5, 24.0, 10.5, 15.5, 45.0, 39.0, 27.0, 0], "total": 11.842105263157896, "isTopResearch": false, "rank": 479, "fortune500_rank": 142}}, "patents": {"ai_patents": {"counts": [0, 2, 0, 4, 1, 4, 3, 12, 1, 0, 0], "total": 27, "table": null, "rank": 283, "fortune500_rank": 98}, "ai_patents_growth": {"counts": [], "total": 191.66666666666666, "table": null, "rank": 46, "fortune500_rank": 8}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 20, 0, 40, 10, 40, 30, 120, 10, 0, 0], "total": 270, "table": null, "rank": 283, "fortune500_rank": 98}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 1, 0, 0, 0, 3, 1, 0, 0], "total": 5, "table": "industry", "rank": 122, "fortune500_rank": 52}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "fortune500_rank": 87}, "Transportation": {"counts": [0, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0], "total": 6, "table": "industry", "rank": 123, "fortune500_rank": 37}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "fortune500_rank": 134}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 1, 0, 2, 1, 3, 0, 5, 0, 0, 0], "total": 12, "table": "industry", "rank": 160, "fortune500_rank": 61}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 2, 0, 2, 0, 0, 0, 2, 0, 0, 0], "total": 6, "table": "application", "rank": 166, "fortune500_rank": 57}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 2, 0, 3, 3, 7, 0, 0, 0], "total": 15, "table": "application", "rank": 213, "fortune500_rank": 62}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 1, 0, 3, 1, 0, 0], "total": 6, "table": "application", "rank": 147, "fortune500_rank": 61}, "Measuring_and_Testing": {"counts": [0, 1, 0, 0, 1, 1, 0, 4, 0, 0, 0], "total": 7, "table": "application", "rank": 147, "fortune500_rank": 45}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 108, "rank": 839, "fortune500_rank": 418}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "fortune500_rank": 437}}, "sector": "Technology", "business_sector": "Technology Equipment"}, {"cset_id": 1956, "country": "China", "website": "http://www.cmbc.com.cn/", "crunchbase": {"text": " 94aeb9cd-3824-8fd8-5474-66bbb3881f27 ", "url": "https://www.crunchbase.com/organization/china-minsheng-bank"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/china-minsheng-banking-corp-ltd"], "stage": "Mature", "name": "China Minsheng Banking", "patent_name": "China Minsheng Banking", "continent": "Asia", "local_logo": null, "aliases": "China Minsheng Bank Corp., Ltd; China Minsheng Banking; \u4e2d\u56fd\u6c11\u751f\u94f6\u884c\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295864351, "url": "https://permid.org/1-4295864351"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:1988", "url": "https://www.google.com/finance/quote/1988:HKG"}], "market_full": [{"text": "SHH:600016", "url": "https://www.google.com/finance/quote/600016:SHH"}, {"text": "MUN:GHFH", "url": "https://www.google.com/finance/quote/GHFH:MUN"}, {"text": "BER:GHFH", "url": "https://www.google.com/finance/quote/BER:GHFH"}, {"text": "HKG:1988", "url": "https://www.google.com/finance/quote/1988:HKG"}, {"text": "FRA:GHFH", "url": "https://www.google.com/finance/quote/FRA:GHFH"}, {"text": "PKC:CGMBF", "url": "https://www.google.com/finance/quote/CGMBF:PKC"}, {"text": "DUS:GHFH", "url": "https://www.google.com/finance/quote/DUS:GHFH"}, {"text": "PKC:CMAKY", "url": "https://www.google.com/finance/quote/CMAKY:PKC"}, {"text": "STU:GHFH", "url": "https://www.google.com/finance/quote/GHFH:STU"}, {"text": "DEU:1988", "url": "https://www.google.com/finance/quote/1988:DEU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Association rule learning", "field_count": 3}, {"field_name": "Big data", "field_count": 1}, {"field_name": "Precision and recall", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}], "clusters": [{"cluster_id": 27853, "cluster_count": 2}, {"cluster_id": 14652, "cluster_count": 1}, {"cluster_id": 92932, "cluster_count": 1}, {"cluster_id": 38150, "cluster_count": 1}, {"cluster_id": 27202, "cluster_count": 1}, {"cluster_id": 43022, "cluster_count": 1}, {"cluster_id": 1241, "cluster_count": 1}, {"cluster_id": 93230, "cluster_count": 1}, {"cluster_id": 83651, "cluster_count": 1}, {"cluster_id": 26, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1956, "referenced_count": 2}, {"ref_CSET_id": 789, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "customer_segmentation", "task_count": 2}, {"referent": "recommendation", "task_count": 2}, {"referent": "system_identification", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "data_mining", "task_count": 2}, {"referent": "decision_making", "task_count": 1}, {"referent": "advertising", "task_count": 1}, {"referent": "behavioral_malware_classification", "task_count": 1}, {"referent": "environmental_sound_classification", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 4}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "3d_representations", "method_count": 1}, {"referent": "softpool", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "feature_upsampling", "method_count": 1}, {"referent": "dimfuse", "method_count": 1}, {"referent": "appo", "method_count": 1}, {"referent": "subword_segmentation", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [13, 3, 6, 9, 1, 1, 3, 1, 2, 1, 0], "total": 40, "isTopResearch": false, "rank": 658, "sp500_rank": 344}, "ai_publications": {"counts": [4, 0, 2, 0, 0, 1, 0, 0, 0, 0, 0], "total": 7, "isTopResearch": false, "rank": 481, "sp500_rank": 243}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [1, 3, 12, 8, 3, 2, 12, 4, 1, 1, 0], "total": 47, "isTopResearch": false, "rank": 591, "sp500_rank": 256}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0.25, 0, 6.0, 0, 0, 2.0, 0, 0, 0, 0, 0], "total": 6.714285714285714, "isTopResearch": false, "rank": 655, "sp500_rank": 260}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 0, 0, 0, 0, 10, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 107, "rank": 841, "sp500_rank": 308}, "ai_jobs": {"counts": null, "total": 27, "rank": 627, "sp500_rank": 262}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 181, "country": "United States", "website": "https://noodle.ai/", "crunchbase": {"text": "7c264451-6919-bb17-0849-c82841ca7ca9", "url": "https://www.crunchbase.com/organization/noodle-analytics-inc-noodle-ai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/noodle-ai"], "stage": "Growth", "name": "Noodle.ai", "patent_name": "noodle.ai", "continent": "North America", "local_logo": "noodleai.png", "aliases": "Noodle Analytics, Inc; Noodleai", "permid_links": [{"text": 5067194317, "url": "https://permid.org/1-5067194317"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Noodle.ai offers pioneering business solutions in Enterprise Artificial Intelligence.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 3797, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 785, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 1}, {"referent": "portfolio_optimization", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "stochastic_gradient_variational_bayes", "method_count": 1}, {"referent": "rms_pooling", "method_count": 1}, {"referent": "awd_lstm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 5, 6, 10, 4, 0, 0], "total": 25, "isTopResearch": false, "rank": 662}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 10.0, 0, 0, 0], "total": 25.0, "isTopResearch": false, "rank": 239}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 106, "rank": 842}, "ai_jobs": {"counts": null, "total": 59, "rank": 446}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our intention is simple: Flow Operations to create a world without waste.", "company_site_link": "https://noodle.ai/about", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 107, "country": "United States", "website": "http://www.myhippo.com/", "crunchbase": {"text": "3d9d8382-6e43-51f3-4d05-6fee5900d77a", "url": "https://www.crunchbase.com/organization/hippo-insurance"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hippo-insurance"], "stage": "Mature", "name": "Hippo Insurance", "patent_name": "hippo insurance", "continent": "North America", "local_logo": "hippo_insurance.png", "aliases": "Hippo Analytics Inc; Hippo Enterprises Inc; Hippo Insurance Services", "permid_links": [{"text": 5057830121, "url": "https://permid.org/1-5057830121"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Hippo Insurance is an InsurTech company that uses technology to help homeowners maintain their properties.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [6, 0, 0, 2, 2, 4, 2, 3, 6, 7, 0], "total": 32, "isTopResearch": false, "rank": 700}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 0.0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 1, 0, 0, 1, 2, 0, 0], "total": 6, "table": null, "rank": 487}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 10, 0, 0, 10, 20, 0, 0], "total": 60, "table": null, "rank": 487}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "table": "industry", "rank": 158}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 60}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 106, "rank": 842}, "ai_jobs": {"counts": null, "total": 18, "rank": 716}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Hippo is an American property insurance company based in Palo Alto, California. Hippo offers homeowner's insurance that covers the homes and possessions of the insurance holder as well as liability from accidents happening in the insured property. They use AI and big data to aggregate and analyze property information. The company sells insurance policies directly to customers and through independent insurance brokers.", "wikipedia_link": "https://en.wikipedia.org/wiki/Hippo_(company)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2314, "country": "United States", "website": "https://www.extraspace.com/", "crunchbase": {"text": "598b582e-d5a3-33be-32e0-f12024c0ef64", "url": "https://www.crunchbase.com/organization/extra-space-storage"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/extraspace"], "stage": "Mature", "name": "Extra Space Storage", "patent_name": "extra space storage", "continent": "North America", "local_logo": "extra_space_storage.png", "aliases": "Extra Space Storage Inc", "permid_links": [{"text": 4295902564, "url": "https://permid.org/1-4295902564"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EXR", "url": "https://www.google.com/finance/quote/exr:nyse"}], "market_full": [{"text": "BMV:EXR", "url": "https://www.google.com/finance/quote/bmv:exr"}, {"text": "LSE:0IJV", "url": "https://www.google.com/finance/quote/0ijv:lse"}, {"text": "FWB:FG8", "url": "https://www.google.com/finance/quote/fg8:fwb"}, {"text": "MUN:FG8", "url": "https://www.google.com/finance/quote/fg8:mun"}, {"text": "NYSE:EXR", "url": "https://www.google.com/finance/quote/exr:nyse"}], "crunchbase_description": "Extra Space Storage offers climate-controlled, self storage units located all over the U.S.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 105, "rank": 844, "fortune500_rank": 419}, "ai_jobs": {"counts": null, "total": 13, "rank": 790, "fortune500_rank": 393}}, "sector": "Real Estate", "business_sector": "Real Estate", "wikipedia_description": "Extra Space Storage is a real estate investment trust headquartered in Cottonwood Heights, Utah that invests in self storage units. As of December 31, 2019, the company owned and/or operated 1,817 locations in 40 states, Washington, D.C. and Puerto Rico, comprising approximately 140 million square feet of net rentable space in 1.3 million storage units. It is the 2nd largest owner of self storage units in the United States and the largest self storage property manager.\nThe company has solar installations at many of its properties and was listed on the \"Top 25 Corporate Users by Number of Solar Installations\" by the Solar Energy Industries Association.", "wikipedia_link": "https://en.wikipedia.org/wiki/Extra_Space_Storage", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 29, "country": "United States", "website": "http://www.appzen.com/", "crunchbase": {"text": "71ca766e-842d-bd2c-8628-474b0125702a", "url": "https://www.crunchbase.com/organization/appzen"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/appzen"], "stage": "Growth", "name": "AppZen", "patent_name": "appzen", "continent": "North America", "local_logo": "appzen.png", "aliases": "App Zen; Appzen Inc; Appzen, Inc", "permid_links": [{"text": 5050987689, "url": "https://permid.org/1-5050987689"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "AppZen is an artificial intelligence platform for modern finance teams.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 5273, "cluster_count": 1}, {"cluster_id": 61746, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 1797, "referenced_count": 2}, {"ref_CSET_id": 803, "referenced_count": 1}], "tasks": [{"referent": "image_processing", "task_count": 2}, {"referent": "classification", "task_count": 1}, {"referent": "ocr", "task_count": 1}, {"referent": "optical_character_recognition", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}], "methods": [{"referent": "gaussian_process", "method_count": 1}, {"referent": "appo", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "isTopResearch": false, "rank": 881}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0.0, 0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [20, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 104, "rank": 845}, "ai_jobs": {"counts": null, "total": 45, "rank": 500}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "AppZen overhauls the way finance teams work, automating spend approvals and providing insights that help you reduce spend, comply with policy, and streamline process.", "company_site_link": "http://www.appzen.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 147, "country": "United States", "website": "http://www.leantaas.com/", "crunchbase": {"text": "0be2ac16-9598-6a43-1a61-e91b75c9c30f", "url": "https://www.crunchbase.com/organization/leantaas"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/leantaas"], "stage": "Mature", "name": "Leantaas", "patent_name": "leantaas", "continent": "North America", "local_logo": "leantaas.png", "aliases": "Leantaas Inc; Leantaas, Inc", "permid_links": [{"text": 5000743655, "url": "https://permid.org/1-5000743655"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "LeanTaaS is a software company that uses advanced data science to significantly improve the operational performance of hospitals and clinics", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 1, 0, 1, 1, 1, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 104, "rank": 845}, "ai_jobs": {"counts": null, "total": 23, "rank": 656}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "The Leading AI-Driven Digital Transformation Platform for Healthcare", "company_site_link": "https://leantaas.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2764, "country": "United States", "website": "https://www.crowley.com/", "crunchbase": {"text": "ba3b8b59-c2c0-6c37-372b-33f82be396fa", "url": "https://www.crunchbase.com/organization/crowley-maritime"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/crowley"], "stage": "Unknown", "name": "Crowley Maritime Corp", "patent_name": "crowley maritime corp", "continent": "North America", "local_logo": "crowley_maritime_corp.png", "aliases": "2020 Crowley Maritime Corporation; Crowley; Crowley Maritime; Crowley Maritime Corporation", "permid_links": [{"text": 4295904276, "url": "https://permid.org/1-4295904276"}], "parent_info": "Crowley Holdings Inc.", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Crowley Maritime operates marine solutions, transportation and logistics company providing services in domestic and international markets.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 104, "rank": 845}, "ai_jobs": {"counts": null, "total": 14, "rank": 775}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "Crowley Maritime Corporation, is based in Jacksonville, Florida. Founded in 1892, Crowley is primarily a family- and employee-owned vessel management, owner, and supply chain logistics services company, providing services globally. As of July 2016, Crowley was ranked as the 13th largest private company in Florida, employing approximately 5,300 people worldwide with revenues of $2.2 billion. It provides its services using a fleet of more than 300 vessels, consisting of RO-RO vessels, LO-LO vessels, tankers, Articulated Tug-Barges (ATBs), tugs and barges. Crowley's land-based facilities and equipment include terminals, warehouses, tank farms, and specialized vehicles.", "wikipedia_link": "https://en.wikipedia.org/wiki/Crowley_Maritime", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2259, "country": "United States", "website": "https://www.cintas.com/", "crunchbase": {"text": "ef40ce71-e023-3365-2b89-f2658478f23b", "url": "https://www.crunchbase.com/organization/cintas"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cintas"], "stage": "Mature", "name": "Cintas Corporation", "patent_name": "cintas corporation", "continent": "North America", "local_logo": "cintas_corporation.png", "aliases": "Cintas; Cintas Corp", "permid_links": [{"text": 4295905955, "url": "https://permid.org/1-4295905955"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CTAS", "url": "https://www.google.com/finance/quote/ctas:nasdaq"}], "market_full": [{"text": "MUN:CIT", "url": "https://www.google.com/finance/quote/cit:mun"}, {"text": "SAO:C1TA34", "url": "https://www.google.com/finance/quote/c1ta34:sao"}, {"text": "MEX:CTAS*", "url": "https://www.google.com/finance/quote/ctas*:mex"}, {"text": "FRA:CIT", "url": "https://www.google.com/finance/quote/cit:fra"}, {"text": "DUS:CIT", "url": "https://www.google.com/finance/quote/cit:dus"}, {"text": "LSE:0HYJ", "url": "https://www.google.com/finance/quote/0hyj:lse"}, {"text": "GER:CITX", "url": "https://www.google.com/finance/quote/citx:ger"}, {"text": "NASDAQ:CTAS", "url": "https://www.google.com/finance/quote/ctas:nasdaq"}, {"text": "STU:CIT", "url": "https://www.google.com/finance/quote/cit:stu"}, {"text": "BER:CIT", "url": "https://www.google.com/finance/quote/ber:cit"}, {"text": "MCX:CTAS-RM", "url": "https://www.google.com/finance/quote/ctas-rm:mcx"}, {"text": "VIE:CTAS", "url": "https://www.google.com/finance/quote/ctas:vie"}, {"text": "DEU:CTAS", "url": "https://www.google.com/finance/quote/ctas:deu"}, {"text": "BRN:CIT", "url": "https://www.google.com/finance/quote/brn:cit"}], "crunchbase_description": "Headquartered in Cincinnati, OH, Cintas Corporation provides highly specialized services to businesses of all types throughout North", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 1, 2, 1, 0, 0, 1, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030, "fortune500_rank": 349}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 103, "rank": 848, "fortune500_rank": 420}, "ai_jobs": {"counts": null, "total": 13, "rank": 790, "fortune500_rank": 393}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Cintas Corporation is an American company with headquarters in Cincinnati, Ohio, that provides specialized services to businesses, primarily in North America. The firm designs, manufactures and implements corporate identity uniform programs and provides entrance mats, restroom cleaning and supplies, tile and carpet cleaning, promotional products, first aid, safety, and fire protection products and services. Cintas is a publicly held company traded on the Nasdaq Global Select Market under the symbol CTAS and is a component of the Standard & Poor's 500 Index.", "wikipedia_link": "https://en.wikipedia.org/wiki/Cintas", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 47, "country": "United States", "website": "http://www.braincorp.com/", "crunchbase": {"text": "565df325-f4d9-a6be-db6d-3396d8395b45", "url": "https://www.crunchbase.com/organization/brain-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/brain-corporation"], "stage": "Mature", "name": "Brain Corp.", "patent_name": "brain corp.", "continent": "North America", "local_logo": "brain_corp.png", "aliases": "Brain Corp; Brain Corporation", "permid_links": [{"text": 5037249458, "url": "https://permid.org/1-5037249458"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Brain Corp develops core technology for the robotics industry.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Uncertainty quantification", "field_count": 1}], "clusters": [{"cluster_id": 2410, "cluster_count": 1}, {"cluster_id": 14335, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "robots", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}, {"referent": "robot_navigation", "task_count": 1}, {"referent": "uncertainty_estimation", "task_count": 1}], "methods": [{"referent": "mckernel", "method_count": 1}, {"referent": "gaussian_process", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 1, 1, 0], "total": 5, "isTopResearch": false, "rank": 820}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 2.5, "isTopResearch": false, "rank": 809}}, "patents": {"ai_patents": {"counts": [24, 12, 1, 4, 1, 2, 3, 3, 0, 0, 0], "total": 50, "table": null, "rank": 219}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [240, 120, 10, 40, 10, 20, 30, 30, 0, 0, 0], "total": 500, "table": null, "rank": 219}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [3, 6, 0, 3, 1, 2, 1, 0, 0, 0, 0], "total": 16, "table": "industry", "rank": 80}, "Industrial_and_Manufacturing": {"counts": [16, 11, 1, 3, 0, 1, 1, 2, 0, 0, 0], "total": 35, "table": "industry", "rank": 20}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 61}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 277}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 45}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [12, 8, 1, 3, 1, 2, 2, 2, 0, 0, 0], "total": 31, "table": "application", "rank": 69}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [8, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 15, "table": "application", "rank": 3}, "Computer_Vision": {"counts": [3, 2, 0, 1, 0, 0, 2, 2, 0, 0, 0], "total": 10, "table": "application", "rank": 241}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 1, 0, 1, 1, 1, 1, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 170}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 103, "rank": 848}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1752, "country": "United States", "website": "http://www.modernatx.com", "crunchbase": {"text": "416361c1-aa7c-8fce-1ab1-5d03b0f433bc", "url": "https://www.crunchbase.com/organization/moderna-therapeutics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/modernatx"], "stage": "Mature", "name": "Moderna Therapeutics", "patent_name": "Moderna Therapeutics", "continent": "North America", "local_logo": "moderna_therapeutics.png", "aliases": "Moderna; Moderna Therapeutics; Moderna, Inc", "permid_links": [{"text": 5066596648, "url": "https://permid.org/1-5066596648"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:MRNA", "url": "https://www.google.com/finance/quote/MRNA:NASDAQ"}], "market_full": [{"text": "DEU:0QF", "url": "https://www.google.com/finance/quote/0QF:DEU"}, {"text": "SAO:M1RN34", "url": "https://www.google.com/finance/quote/M1RN34:SAO"}, {"text": "LSE:0A45", "url": "https://www.google.com/finance/quote/0A45:LSE"}, {"text": "FRA:0QF", "url": "https://www.google.com/finance/quote/0QF:FRA"}, {"text": "MCX:MRNA-RM", "url": "https://www.google.com/finance/quote/MCX:MRNA-RM"}, {"text": "BRN:0QF", "url": "https://www.google.com/finance/quote/0QF:BRN"}, {"text": "BER:0QF", "url": "https://www.google.com/finance/quote/0QF:BER"}, {"text": "GER:0QFX", "url": "https://www.google.com/finance/quote/0QFX:GER"}, {"text": "STU:0QF", "url": "https://www.google.com/finance/quote/0QF:STU"}, {"text": "NASDAQ:MRNA", "url": "https://www.google.com/finance/quote/MRNA:NASDAQ"}, {"text": "DUS:0QF", "url": "https://www.google.com/finance/quote/0QF:DUS"}, {"text": "MEX:MRNA", "url": "https://www.google.com/finance/quote/MEX:MRNA"}, {"text": "MUN:0QF", "url": "https://www.google.com/finance/quote/0QF:MUN"}, {"text": "HAM:0QF", "url": "https://www.google.com/finance/quote/0QF:HAM"}, {"text": "VIE:MRNA", "url": "https://www.google.com/finance/quote/MRNA:VIE"}], "crunchbase_description": "Moderna Therapeutics is a biotechnology company that specializes in drug discovery and drug development based on messenger RNA.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 2, 4, 4, 26, 22, 42, 47, 92, 136, 0], "total": 376, "isTopResearch": false, "rank": 324}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 102, "rank": 850}, "ai_jobs": {"counts": null, "total": 35, "rank": 560}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research"}, {"cset_id": 158, "country": "United States", "website": "http://www.matterport.com/", "crunchbase": {"text": "aa3dcd48-4a3a-8654-4098-6adb927fd863", "url": "https://www.crunchbase.com/organization/matterport"}, "child_crunchbase": [{"text": "aafaa39b-d0c4-ef81-c574-f503c831eb53", "url": "https://www.crunchbase.com/organization/arraiy"}], "linkedin": ["https://www.linkedin.com/company/arraiy", "https://www.linkedin.com/company/matterport"], "stage": "Mature", "name": "Matterport", "patent_name": "matterport", "continent": "North America", "local_logo": "matterport.png", "aliases": "Matterport Inc; Matterport, Inc", "permid_links": [{"text": 5053127002, "url": "https://permid.org/1-5053127002"}, {"text": 5037937992, "url": "https://permid.org/1-5037937992"}], "parent_info": null, "agg_child_info": "Arraiy", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Matterport is a developer of a 3D media platform used to establish 3D and virtual reality models.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Camera resectioning", "field_count": 1}], "clusters": [{"cluster_id": 33578, "cluster_count": 1}, {"cluster_id": 23828, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 112, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 787, "referenced_count": 1}, {"ref_CSET_id": 1950, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 790, "referenced_count": 1}], "tasks": [{"referent": "3d_reconstruction", "task_count": 1}, {"referent": "structured_prediction", "task_count": 1}, {"referent": "influence_approximation", "task_count": 1}, {"referent": "underwater_3d_scene_reconstruction", "task_count": 1}, {"referent": "camera_auto_calibration", "task_count": 1}, {"referent": "edge_detection", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}], "methods": [{"referent": "3d_reconstruction", "method_count": 1}, {"referent": "general", "method_count": 1}, {"referent": "gaussian_process", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "differentiable_nas", "method_count": 1}, {"referent": "proposal_filtering", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 2, 2, 0, 1, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 1, 4, 37, 43, 43, 0], "total": 129, "isTopResearch": false, "rank": 465}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0, 4.0, 0, 0, 0, 0], "total": 64.5, "isTopResearch": false, "rank": 66}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 2, 7, 0, 0, 0, 0], "total": 10, "table": null, "rank": 413}, "ai_patents_growth": {"counts": [], "total": 83.33333333333333, "table": null, "rank": 136}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 20, 70, 0, 0, 0, 0], "total": 100, "table": null, "rank": 413}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 2, 7, 0, 0, 0, 0], "total": 10, "table": "application", "rank": 241}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 102, "rank": 850}, "ai_jobs": {"counts": null, "total": 12, "rank": 812}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 170, "country": "China", "website": "https://www.momenta.ai/", "crunchbase": {"text": "c6812288-5cff-5e50-4279-74ca23060f6c", "url": "https://www.crunchbase.com/organization/momenta-ai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/momenta.ai"], "stage": "Growth", "name": "Momenta", "patent_name": "momenta", "continent": "Asia", "local_logo": "momenta.png", "aliases": "Beijing Chusudu Technology Co Ltd; Beijing Chusudu Technology Company Limited; Chusudu; Momenta Technology; Momenta.Ai; \u521d\u901f\u5ea6; \u5317\u4eac\u521d\u901f\u5ea6\u79d1\u6280\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5052523126, "url": "https://permid.org/1-5052523126"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Momenta is a developer of autonomous driving technology designed to improve efficiency.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 4}, {"field_name": "Inertial measurement unit", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Chinese characters", "field_count": 1}, {"field_name": "RGB color model", "field_count": 1}, {"field_name": "Point cloud", "field_count": 1}, {"field_name": "Bounding overwatch", "field_count": 1}, {"field_name": "Feature vector", "field_count": 1}, {"field_name": "Line segment", "field_count": 1}, {"field_name": "Topic model", "field_count": 1}], "clusters": [{"cluster_id": 214, "cluster_count": 3}, {"cluster_id": 14862, "cluster_count": 2}, {"cluster_id": 14335, "cluster_count": 2}, {"cluster_id": 23307, "cluster_count": 1}, {"cluster_id": 81237, "cluster_count": 1}, {"cluster_id": 916, "cluster_count": 1}, {"cluster_id": 1193, "cluster_count": 1}, {"cluster_id": 72553, "cluster_count": 1}, {"cluster_id": 50916, "cluster_count": 1}, {"cluster_id": 855, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 97}, {"ref_CSET_id": 163, "referenced_count": 57}, {"ref_CSET_id": 87, "referenced_count": 56}, {"ref_CSET_id": 223, "referenced_count": 15}, {"ref_CSET_id": 161, "referenced_count": 13}, {"ref_CSET_id": 245, "referenced_count": 10}, {"ref_CSET_id": 23, "referenced_count": 8}, {"ref_CSET_id": 115, "referenced_count": 8}, {"ref_CSET_id": 37, "referenced_count": 7}, {"ref_CSET_id": 6, "referenced_count": 7}], "tasks": [{"referent": "feature_selection", "task_count": 4}, {"referent": "inference_attack", "task_count": 3}, {"referent": "classification", "task_count": 3}, {"referent": "autonomous_driving", "task_count": 3}, {"referent": "computer_vision", "task_count": 2}, {"referent": "object_detection", "task_count": 2}, {"referent": "variational_inference", "task_count": 1}, {"referent": "topic_detection", "task_count": 1}, {"referent": "representation_learning", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 6}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "1d_cnn", "method_count": 3}, {"referent": "vqa_models", "method_count": 2}, {"referent": "impala", "method_count": 2}, {"referent": "localization_models", "method_count": 2}, {"referent": "wgan_gp", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "attention_mechanisms", "method_count": 1}, {"referent": "moco", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [4, 8, 25, 15, 14, 14, 19, 16, 13, 6, 0], "total": 134, "isTopResearch": false, "rank": 472}, "ai_publications": {"counts": [0, 0, 0, 0, 2, 2, 7, 6, 6, 3, 0], "total": 26, "isTopResearch": false, "rank": 266}, "ai_publications_growth": {"counts": [], "total": -21.42857142857143, "isTopResearch": false, "rank": 1339}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 2, 1, 2, 1, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 140}, "citation_counts": {"counts": [0, 1, 1, 1, 45, 486, 2061, 4277, 6630, 6112, 259], "total": 19873, "isTopResearch": false, "rank": 33}, "cv_pubs": {"counts": [0, 0, 0, 0, 2, 2, 6, 3, 2, 0, 0], "total": 15, "isTopResearch": true, "rank": 163}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 0], "total": 4, "isTopResearch": true, "rank": 187}, "citations_per_article": {"counts": [0, 0, 0, 0, 22.5, 243.0, 294.42857142857144, 712.8333333333334, 1105.0, 2037.3333333333333, 0], "total": 764.3461538461538, "isTopResearch": false, "rank": 2}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 24, 14, 7, 3, 3, 0], "total": 52, "table": null, "rank": 216}, "ai_patents_growth": {"counts": [], "total": 736.1111111111112, "table": null, "rank": 5}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 240, 140, 70, 30, 30, 0], "total": 520, "table": null, "rank": 216}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 6, 2, 0, 1, 2, 0], "total": 11, "table": "industry", "rank": 97}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 3, 2, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 166}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 9, 7, 4, 2, 1, 0], "total": 24, "table": "application", "rank": 171}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 189}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 101, "rank": 852}, "ai_jobs": {"counts": null, "total": 13, "rank": 790}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Momenta is an autonomous driving company from China and aims to build the \u2018Brains\u2019 for autonomous vehicles.", "wikipedia_link": "https://en.wikipedia.org/wiki/Momenta", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1397, "country": "United Kingdom", "website": "https://tractable.ai", "crunchbase": {"text": "0a28cbdd-5740-4708-0038-77448b74fdf4", "url": "https://www.crunchbase.com/organization/tractable"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tractable"], "stage": "Mature", "name": "Tractable", "patent_name": "tractable", "continent": "Europe", "local_logo": "tractable.png", "aliases": "Tractable Ltd", "permid_links": [{"text": 5073063616, "url": "https://permid.org/1-5073063616"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Tractable is a software company that develops artificial intelligence for accident and disaster recovery.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 26998, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 2}], "tasks": [{"referent": "code_summarization", "task_count": 1}, {"referent": "image_comprehension", "task_count": 1}, {"referent": "summarization", "task_count": 1}], "methods": [{"referent": "automl", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 2, 1, 5, 8, 4, 5, 12, 5, 0], "total": 42, "isTopResearch": false, "rank": 607}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 42.0, "isTopResearch": false, "rank": 120}}, "patents": {"ai_patents": {"counts": [0, 0, 2, 0, 0, 0, 0, 3, 0, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 20, 0, 0, 0, 0, 30, 0, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": "industry", "rank": 141}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": "industry", "rank": 252}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": "application", "rank": 214}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 1, 0, 0, 0, 0, 3, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 100, "rank": 853}, "ai_jobs": {"counts": null, "total": 36, "rank": 551}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our AI assesses damage and estimates repair costs in real time. So claims can be settled faster, and livelihoods restored.", "company_site_link": "https://tractable.ai", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1810, "country": "Russian Federation", "website": "http://gazprom.com/", "crunchbase": {"text": " ba2dfa91-ce6d-2347-3b74-4ffdffa1b7ee", "url": " https://www.crunchbase.com/organization/gazprom"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/gazprom"], "stage": "Mature", "name": "Gazprom", "patent_name": "Gazprom", "continent": "Europe", "local_logo": null, "aliases": "Gazprom; Gazprom, Pao; Pjsc Gazprom; \u0413\u0430\u0437\u043f\u0440\u043e\u043c", "permid_links": [{"text": 4295887074, "url": "https://permid.org/1-4295887074"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PKC:OGZRY", "url": "https://www.google.com/finance/quote/OGZRY:PKC"}, {"text": "VIE:OGZD", "url": "https://www.google.com/finance/quote/OGZD:VIE"}, {"text": "MEX:OGZDN", "url": "https://www.google.com/finance/quote/MEX:OGZDN"}, {"text": "BUE:OGZD3", "url": "https://www.google.com/finance/quote/BUE:OGZD3"}, {"text": "SES:AAI", "url": "https://www.google.com/finance/quote/AAI:SES"}, {"text": "MCX:GAZP", "url": "https://www.google.com/finance/quote/GAZP:MCX"}, {"text": "LSE:OGZD", "url": "https://www.google.com/finance/quote/LSE:OGZD"}, {"text": "LSE:81JK", "url": "https://www.google.com/finance/quote/81JK:LSE"}, {"text": "PKC:OGZPY", "url": "https://www.google.com/finance/quote/OGZPY:PKC"}, {"text": "MCX:OGZD", "url": "https://www.google.com/finance/quote/MCX:OGZD"}, {"text": "BRN:GAZ", "url": "https://www.google.com/finance/quote/BRN:GAZ"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Mixture model", "field_count": 1}, {"field_name": "Topic model", "field_count": 1}, {"field_name": "Intelligent decision support system", "field_count": 1}, {"field_name": "Filter (signal processing)", "field_count": 1}, {"field_name": "Robotic arm", "field_count": 1}], "clusters": [{"cluster_id": 57944, "cluster_count": 2}, {"cluster_id": 7515, "cluster_count": 2}, {"cluster_id": 2190, "cluster_count": 2}, {"cluster_id": 3886, "cluster_count": 1}, {"cluster_id": 28517, "cluster_count": 1}, {"cluster_id": 3327, "cluster_count": 1}, {"cluster_id": 12122, "cluster_count": 1}, {"cluster_id": 6581, "cluster_count": 1}, {"cluster_id": 4573, "cluster_count": 1}, {"cluster_id": 25755, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 29}, {"ref_CSET_id": 115, "referenced_count": 10}, {"ref_CSET_id": 163, "referenced_count": 7}, {"ref_CSET_id": 1810, "referenced_count": 5}, {"ref_CSET_id": 1797, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 1977, "referenced_count": 2}, {"ref_CSET_id": 1835, "referenced_count": 2}, {"ref_CSET_id": 785, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}], "tasks": [{"referent": "seismic_analysis", "task_count": 4}, {"referent": "classification", "task_count": 3}, {"referent": "point_processes", "task_count": 3}, {"referent": "motion_planning", "task_count": 3}, {"referent": "anomaly_detection", "task_count": 3}, {"referent": "image_analysis", "task_count": 2}, {"referent": "image_restoration", "task_count": 2}, {"referent": "motion_synthesis", "task_count": 2}, {"referent": "portfolio_optimization", "task_count": 2}, {"referent": "speech_production", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "mad_learning", "method_count": 6}, {"referent": "convolutional_neural_networks", "method_count": 4}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "griffin_lim_algorithm", "method_count": 3}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "generative_adversarial_networks", "method_count": 2}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "mixture_of_logistic_distributions", "method_count": 2}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [87, 110, 164, 214, 183, 240, 282, 245, 277, 157, 0], "total": 1959, "isTopResearch": false, "rank": 126, "sp500_rank": 98}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 2, 8, 9, 10, 4, 0], "total": 34, "isTopResearch": false, "rank": 221, "sp500_rank": 136}, "ai_publications_growth": {"counts": [], "total": -12.129629629629628, "isTopResearch": false, "rank": 1281, "sp500_rank": 325}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 16, 50, 79, 80, 5], "total": 231, "isTopResearch": false, "rank": 371, "sp500_rank": 171}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0], "total": 3, "isTopResearch": true, "rank": 214, "sp500_rank": 131}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0.5, 2.0, 5.555555555555555, 7.9, 20.0, 0], "total": 6.794117647058823, "isTopResearch": false, "rank": 651, "sp500_rank": 258}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 100, "rank": 853, "sp500_rank": 309}, "ai_jobs": {"counts": null, "total": 8, "rank": 908, "sp500_rank": 311}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 275, "country": "China", "website": "https://www.vipkid.com.cn", "crunchbase": {"text": "33339272-fa6c-e7cb-bc7c-a9de3f42cedc", "url": "https://www.crunchbase.com/organization/vipkid"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vipkid"], "stage": "Mature", "name": "Vipkid", "patent_name": "vipkid", "continent": "Asia", "local_logo": "vipkid.png", "aliases": "Vipkid Hk Ltd; \u5317\u4eac\u5927\u7c73\u79d1\u6280\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5066541765, "url": "https://permid.org/1-5066541765"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "VIPKid connects teachers in North America with children around the world for real-time English immersion learning online", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 901}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1.0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 6, 22, 16, 0, 0], "total": 45, "table": null, "rank": 227}, "ai_patents_growth": {"counts": [], "total": 83.33333333333334, "table": null, "rank": 135}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 60, 220, 160, 0, 0], "total": 450, "table": null, "rank": 227}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 1, 0, 2, 3, 3, 0, 0], "total": 9, "table": "industry", "rank": 13}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 1, 3, 5, 0, 0], "total": 10, "table": "industry", "rank": 261}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 3, 0, 0], "total": 5, "table": "industry", "rank": 225}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 3, 0, 0], "total": 6, "table": "industry", "rank": 196}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 9, 4, 0, 0], "total": 15, "table": "application", "rank": 66}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 2, 0, 0], "total": 4, "table": "application", "rank": 198}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 13, 10, 0, 0], "total": 25, "table": "application", "rank": 168}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 99, "rank": 855}, "ai_jobs": {"counts": null, "total": 15, "rank": 754}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "VIPKid, also known as VIPKID, is an online teaching and education company.", "wikipedia_link": "https://en.wikipedia.org/wiki/VIPKid", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 111, "country": "United States", "website": "http://www.hover.to", "crunchbase": {"text": "76db4367-1c56-dea7-a3ed-d56e0343fa50", "url": "https://www.crunchbase.com/organization/hover-3d"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hover-inc-"], "stage": "Mature", "name": "Hover", "patent_name": "hover", "continent": "North America", "local_logo": "hover.png", "aliases": "Hover App; Hover Inc; Hover Software", "permid_links": [{"text": 5039192040, "url": "https://permid.org/1-5039192040"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "HOVER is a 3D data and technology company for home improvement and property insurance professionals.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 1, 0, 2, 2, 0, 0, 0], "total": 6, "table": null, "rank": 487}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 10, 0, 20, 20, 0, 0, 0], "total": 60, "table": null, "rank": 487}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 1, 0, 0, 1, 0, 2, 2, 0, 0, 0], "total": 6, "table": "application", "rank": 300}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 99, "rank": 855}, "ai_jobs": {"counts": null, "total": 12, "rank": 812}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Measure, design, and estimate your exterior home improvement projects in one place.", "company_site_link": "https://hover.to/product/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 740, "country": "Canada", "website": "https://toronto.ubisoft.com/", "crunchbase": {"text": "f24857b3-5910-4cec-b4b8-c58413ed6862", "url": "https://www.crunchbase.com/organization/ubisoft-toronto"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ubisoft-toronto"], "stage": "Unknown", "name": "Ubisoft Toronto", "patent_name": "ubisoft toronto", "continent": "North America", "local_logo": "ubisoft_toronto.png", "aliases": "Ubisoft; Ubisoft Entertainment; Ubisoft Toronto Inc", "permid_links": [{"text": 5036795982, "url": "https://permid.org/1-5036795982"}], "parent_info": "Ubisoft", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Ubisoft Toronto is a growing and diverse team on a collective mission to create what\u2019s next in AAA open world games.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Virtual reality", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Transfer of learning", "field_count": 1}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Face (geometry)", "field_count": 1}, {"field_name": "Sentence", "field_count": 1}, {"field_name": "Rendering (computer graphics)", "field_count": 1}], "clusters": [{"cluster_id": 5345, "cluster_count": 5}, {"cluster_id": 1298, "cluster_count": 3}, {"cluster_id": 37465, "cluster_count": 2}, {"cluster_id": 8163, "cluster_count": 2}, {"cluster_id": 2473, "cluster_count": 2}, {"cluster_id": 6016, "cluster_count": 2}, {"cluster_id": 8069, "cluster_count": 2}, {"cluster_id": 12752, "cluster_count": 2}, {"cluster_id": 44324, "cluster_count": 2}, {"cluster_id": 1609, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 73}, {"ref_CSET_id": 163, "referenced_count": 34}, {"ref_CSET_id": 740, "referenced_count": 21}, {"ref_CSET_id": 87, "referenced_count": 19}, {"ref_CSET_id": 6, "referenced_count": 18}, {"ref_CSET_id": 184, "referenced_count": 14}, {"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 1797, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 3}, {"ref_CSET_id": 375, "referenced_count": 3}], "tasks": [{"referent": "video_games", "task_count": 6}, {"referent": "patch_matching", "task_count": 3}, {"referent": "character_recognition", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "denoising", "task_count": 2}, {"referent": "action_generation", "task_count": 2}, {"referent": "snes_games", "task_count": 2}, {"referent": "texture_synthesis", "task_count": 1}, {"referent": "text_generation", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}], "methods": [{"referent": "reinforcement_learning", "method_count": 5}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "mad_learning", "method_count": 4}, {"referent": "meta_learning_algorithms", "method_count": 3}, {"referent": "generative_models", "method_count": 3}, {"referent": "metrix", "method_count": 3}, {"referent": "vqa_models", "method_count": 2}, {"referent": "topic_embeddings", "method_count": 2}, {"referent": "shap", "method_count": 2}, {"referent": "distributions", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [5, 4, 8, 10, 9, 64, 14, 15, 17, 15, 0], "total": 161, "isTopResearch": false, "rank": 443}, "ai_publications": {"counts": [1, 0, 0, 2, 3, 6, 3, 9, 10, 6, 0], "total": 40, "isTopResearch": false, "rank": 207}, "ai_publications_growth": {"counts": [], "total": 57.03703703703704, "isTopResearch": false, "rank": 59}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [4, 3, 8, 7, 13, 19, 54, 77, 161, 126, 3], "total": 475, "isTopResearch": false, "rank": 276}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 4, 1, 4, 4, 2, 0], "total": 16, "isTopResearch": true, "rank": 158}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [4.0, 0, 0, 3.5, 4.333333333333333, 3.1666666666666665, 18.0, 8.555555555555555, 16.1, 21.0, 0], "total": 11.875, "isTopResearch": false, "rank": 478}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 99, "rank": 855}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Ubisoft Toronto Inc. is a Canadian video game developer and a studio of Ubisoft based in Toronto. The studio was established under Jade Raymondin September 2010. Games developed by Ubisoft Toronto include Tom Clancy's Splinter Cell: Blacklist, Far Cry 5, Starlink: Battle for Atlas, and Watch Dogs Legion.", "wikipedia_link": "https://en.wikipedia.org/wiki/Ubisoft_Toronto", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 315, "country": "United States", "website": "http://www.aktana.com", "crunchbase": {"text": "3cc9b886-c798-6910-2ce2-54564bbf6616", "url": "https://www.crunchbase.com/organization/aktana"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aktana"], "stage": "Mature", "name": "Aktana", "patent_name": "aktana", "continent": "North America", "local_logo": "aktana.png", "aliases": "Aktana, Inc; Incentalign Inc", "permid_links": [{"text": 5037631802, "url": "https://permid.org/1-5037631802"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Aktana delivers data-fueled insights and suggestions to life science sales reps, driving better decision-making and improved results.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 40, 0, 0, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 4, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 233}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 98, "rank": 858}, "ai_jobs": {"counts": null, "total": 23, "rank": 656}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Using embedded artificial intelligence refined by real\u2011time human insight, Aktana gives life sciences sales and marketing teams the information they need to improve the customer experience.", "company_site_link": "http://www.aktana.com", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 276, "country": "United States", "website": "https://www.viz.ai/", "crunchbase": {"text": "e2ce98c2-b0c7-3472-dcfa-0c19b75fdb35", "url": "https://www.crunchbase.com/organization/viz"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/viz.ai"], "stage": "Mature", "name": "Viz.ai", "patent_name": "viz.ai", "continent": "North America", "local_logo": "vizai.png", "aliases": "Viz; Viz.Ai Inc; Vizai Inc", "permid_links": [{"text": 5052136552, "url": "https://permid.org/1-5052136552"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Viz is a medical imaging company that helps optimize emergency treatment using deep learning technology.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 9, 1, 0], "total": 13, "isTopResearch": false, "rank": 888}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0.0, 0.0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 0, 2, 1, 0, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 0, 20, 10, 0, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 2, 0, 2, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 122}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 0, 2, 1, 0, 0, 0], "total": 5, "table": "application", "rank": 318}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 2, 0, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 98, "rank": 858}, "ai_jobs": {"counts": null, "total": 15, "rank": 754}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Viz.ai\u2019s mission is to fundamentally improve how healthcare is delivered in the world, through intelligent software that promises to reduce time to treatment, improve access to care and speed the diffusion of medical innovation", "company_site_link": "https://www.viz.ai/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 229, "country": "United States", "website": "http://sift.com", "crunchbase": {"text": "35d16eac-0ba4-0ff4-aacb-d932721550c1", "url": "https://www.crunchbase.com/organization/sift-science"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/getsift"], "stage": "Mature", "name": "Sift", "patent_name": "sift", "continent": "North America", "local_logo": "sift.png", "aliases": "Sift Inc; Sift Science; Sift Science, Inc", "permid_links": [{"text": 5044191921, "url": "https://permid.org/1-5044191921"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Sift applies insights from a global network of data to detect fraud and increase positive user experience.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Class (philosophy)", "field_count": 2}, {"field_name": "Probabilistic logic", "field_count": 2}, {"field_name": "Transparency (graphic)", "field_count": 2}, {"field_name": "Explanation-based learning", "field_count": 1}, {"field_name": "Qualitative reasoning", "field_count": 1}, {"field_name": "Activity recognition", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}, {"field_name": "Semantics", "field_count": 1}, {"field_name": "Value of information", "field_count": 1}], "clusters": [{"cluster_id": 3683, "cluster_count": 12}, {"cluster_id": 698, "cluster_count": 10}, {"cluster_id": 36329, "cluster_count": 4}, {"cluster_id": 55452, "cluster_count": 2}, {"cluster_id": 12143, "cluster_count": 2}, {"cluster_id": 23594, "cluster_count": 2}, {"cluster_id": 50521, "cluster_count": 1}, {"cluster_id": 21435, "cluster_count": 1}, {"cluster_id": 1790, "cluster_count": 1}, {"cluster_id": 14703, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 229, "referenced_count": 21}, {"ref_CSET_id": 101, "referenced_count": 10}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 784, "referenced_count": 1}, {"ref_CSET_id": 236, "referenced_count": 1}, {"ref_CSET_id": 2822, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "motion_planning", "task_count": 7}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 6}, {"referent": "reasoning", "task_count": 5}, {"referent": "human_interaction_recognition", "task_count": 5}, {"referent": "automl", "task_count": 5}, {"referent": "robots", "task_count": 5}, {"referent": "3d_plane_detection", "task_count": 4}, {"referent": "snes_games", "task_count": 3}, {"referent": "recommendation_systems", "task_count": 3}], "methods": [{"referent": "vqa_models", "method_count": 5}, {"referent": "q_learning", "method_count": 4}, {"referent": "3d_representations", "method_count": 3}, {"referent": "reinforcement_learning", "method_count": 2}, {"referent": "efficient_planning", "method_count": 2}, {"referent": "metrix", "method_count": 2}, {"referent": "ggs_nns", "method_count": 2}, {"referent": "heuristic_search_algorithms", "method_count": 2}, {"referent": "automl", "method_count": 2}, {"referent": "neural_architecture_search", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [18, 10, 11, 12, 6, 7, 8, 13, 8, 14, 0], "total": 107, "isTopResearch": false, "rank": 505}, "ai_publications": {"counts": [6, 6, 5, 6, 1, 4, 4, 5, 4, 3, 0], "total": 44, "isTopResearch": false, "rank": 193}, "ai_publications_growth": {"counts": [], "total": -6.666666666666667, "isTopResearch": false, "rank": 1243}, "ai_pubs_top_conf": {"counts": [0, 0, 3, 1, 0, 0, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 169}, "citation_counts": {"counts": [12, 16, 22, 52, 44, 35, 39, 62, 51, 46, 5], "total": 384, "isTopResearch": false, "rank": 301}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [4, 1, 1, 0, 0, 0, 1, 2, 1, 1, 0], "total": 11, "isTopResearch": true, "rank": 106}, "citations_per_article": {"counts": [2.0, 2.6666666666666665, 4.4, 8.666666666666666, 44.0, 8.75, 9.75, 12.4, 12.75, 15.333333333333334, 0], "total": 8.727272727272727, "isTopResearch": false, "rank": 582}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 1, 8, 6, 5, 0, 0], "total": 22, "table": null, "rank": 307}, "ai_patents_growth": {"counts": [], "total": 208.33333333333334, "table": null, "rank": 37}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 10, 80, 60, 50, 0, 0], "total": 220, "table": null, "rank": 307}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 2, 0, 0, 3, 2, 0, 0], "total": 7, "table": "industry", "rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 2, 1, 3, 6, 3, 0, 0], "total": 15, "table": "industry", "rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 141}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 1, 6, 3, 3, 0, 0], "total": 14, "table": "industry", "rank": 147}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0], "total": 4, "table": "industry", "rank": 233}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 2, 0, 0], "total": 5, "table": "application", "rank": 126}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0], "total": 3, "table": "application", "rank": 214}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 97, "rank": 860}, "ai_jobs": {"counts": null, "total": 16, "rank": 738}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2827, "country": "United States", "website": "https://www.ironbow.com/", "crunchbase": {"text": "fa3fa882-fba7-fecd-0053-fa087c548fdb", "url": "https://www.crunchbase.com/organization/iron-bow"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/iron-bow-technologies"], "stage": "Unknown", "name": "Iron Bow Technologies LLC", "patent_name": "iron bow technologies llc", "continent": "North America", "local_logo": "iron_bow_technologies_llc.png", "aliases": "Iron Bow; Iron Bow Technologies", "permid_links": [{"text": 5001316514, "url": "https://permid.org/1-5001316514"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Iron Bow Technologies is a proven leader in providing intelligent, full-lifecycle technology solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 97, "rank": 860}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Iron Bow transforms technology investments into business capabilities. Our strength lies in the depth of our experience and key partnerships with leading manufacturers and disruptive technology partners. We are flexible in the deployment of technology using the right combination of on-prem, cloud and as-a-service. Our team is laser focused on your business and mission, designing a solution that will make the difference in your day-to-day work.", "company_site_link": "https://www.ironbow.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 136, "country": "United States", "website": "https://khealth.ai/", "crunchbase": {"text": "929af8f8-261d-83dc-2800-8edc4d4fb77e", "url": "https://www.crunchbase.com/organization/kang-health"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/khealthinc"], "stage": "Mature", "name": "K Health", "patent_name": "k health", "continent": "North America", "local_logo": "k_health.png", "aliases": "K Health, Inc; Kang Health", "permid_links": [{"text": 5052526320, "url": "https://permid.org/1-5052526320"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "K Health is a data-driven digital primary care system that uses AI to deliver personalized primary care.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 48330, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [{"referent": "dimensionality_reduction", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0], "total": 4, "isTopResearch": false, "rank": 833}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1.0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 96, "rank": 862}, "ai_jobs": {"counts": null, "total": 26, "rank": 639}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We take your privacy seriously, encrypting all records of your symptoms and care. K Health complies with both HIPAA + GDPR, the world\u2019s leading standards for information security and privacy. We use anonymized data to continue to make our platform more accurate, but we will never share your personal health information. In fact, we are one of the few health companies out there that do not even require your email to get free answers.", "company_site_link": "https://khealth.com/about/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2444, "country": "United States", "website": "https://www.odfl.com/", "crunchbase": {"text": "4ccd4b24-8fa2-0814-e3b5-16b6409cd57a", "url": "https://www.crunchbase.com/organization/old-dominion-freight-line"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/old-dominion-freight-line"], "stage": "Mature", "name": "Old Dominion Freight Line", "patent_name": "old dominion freight line", "continent": "North America", "local_logo": "old_dominion_freight_line.png", "aliases": "Odfl; Old Dominion Freight Line, Inc; Old Dominion Freight Line, Inc. (Nasdaq: Odfl)", "permid_links": [{"text": 4295907460, "url": "https://permid.org/1-4295907460"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ODFL", "url": "https://www.google.com/finance/quote/nasdaq:odfl"}], "market_full": [{"text": "MUN:ODF", "url": "https://www.google.com/finance/quote/mun:odf"}, {"text": "NASDAQ:ODFL", "url": "https://www.google.com/finance/quote/nasdaq:odfl"}, {"text": "STU:ODF", "url": "https://www.google.com/finance/quote/odf:stu"}, {"text": "BER:ODF", "url": "https://www.google.com/finance/quote/ber:odf"}, {"text": "MEX:ODFL*", "url": "https://www.google.com/finance/quote/mex:odfl*"}, {"text": "HAN:ODF", "url": "https://www.google.com/finance/quote/han:odf"}, {"text": "LSE:017P", "url": "https://www.google.com/finance/quote/017p:lse"}, {"text": "MCX:ODFL-RM", "url": "https://www.google.com/finance/quote/mcx:odfl-rm"}, {"text": "SAO:O1DF34", "url": "https://www.google.com/finance/quote/o1df34:sao"}, {"text": "DEU:ODFL", "url": "https://www.google.com/finance/quote/deu:odfl"}, {"text": "FRA:ODF", "url": "https://www.google.com/finance/quote/fra:odf"}], "crunchbase_description": "ODFL is a leading, less-than-truckload, union-free company providing premium service to all its customers.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 96, "rank": 862, "fortune500_rank": 421}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "fortune500_rank": 437}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": "Old Dominion Freight Line, Inc. is an American less than truckload shipping (LTL) company. It offers regional, inter-regional and national LTL service. In addition to its core LTL services, the company offers logistics services including ground and air expedited transportation, supply chain consulting, transportation management, truckload brokerage, container delivery and warehousing, as well as household moving services. It contracts with freight forwarding services worldwide.", "wikipedia_link": "https://en.wikipedia.org/wiki/Old_Dominion_Freight_Line", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2119, "country": "Turkey", "website": "https://www.koc.com.tr/", "crunchbase": {"text": " b1c550e8-d05d-0d23-c25a-252d68cdffea ", "url": "https://www.crunchbase.com/organization/koc-holding"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/koc-holding"], "stage": "Mature", "name": "Ko\u00e7 Holding", "patent_name": "Ko\u00e7 Holding", "continent": "Asia", "local_logo": null, "aliases": "Koc Holding; Ko\u00e7 Holding", "permid_links": [{"text": 4295893642, "url": "https://permid.org/1-4295893642"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "STU:KRKA", "url": "https://www.google.com/finance/quote/KRKA:STU"}, {"text": "FRA:KRKA", "url": "https://www.google.com/finance/quote/FRA:KRKA"}, {"text": "DEU:KRKA", "url": "https://www.google.com/finance/quote/DEU:KRKA"}, {"text": "BER:KRKA", "url": "https://www.google.com/finance/quote/BER:KRKA"}, {"text": "MUN:KRKA", "url": "https://www.google.com/finance/quote/KRKA:MUN"}, {"text": "IST:KCHOL", "url": "https://www.google.com/finance/quote/IST:KCHOL"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Gesture", "field_count": 18}, {"field_name": "Robot", "field_count": 14}, {"field_name": "Deep learning", "field_count": 14}, {"field_name": "Support vector machine", "field_count": 13}, {"field_name": "Segmentation", "field_count": 10}, {"field_name": "Language model", "field_count": 9}, {"field_name": "Machine translation", "field_count": 8}, {"field_name": "Voxel", "field_count": 8}, {"field_name": "Convolutional neural network", "field_count": 7}, {"field_name": "Artificial neural network", "field_count": 7}], "clusters": [{"cluster_id": 8784, "cluster_count": 17}, {"cluster_id": 24441, "cluster_count": 16}, {"cluster_id": 14277, "cluster_count": 14}, {"cluster_id": 791, "cluster_count": 13}, {"cluster_id": 20756, "cluster_count": 11}, {"cluster_id": 11822, "cluster_count": 9}, {"cluster_id": 44122, "cluster_count": 8}, {"cluster_id": 47174, "cluster_count": 8}, {"cluster_id": 11510, "cluster_count": 8}, {"cluster_id": 1149, "cluster_count": 7}], "company_references": [{"ref_CSET_id": 2119, "referenced_count": 410}, {"ref_CSET_id": 101, "referenced_count": 376}, {"ref_CSET_id": 163, "referenced_count": 232}, {"ref_CSET_id": 87, "referenced_count": 135}, {"ref_CSET_id": 115, "referenced_count": 51}, {"ref_CSET_id": 6, "referenced_count": 42}, {"ref_CSET_id": 127, "referenced_count": 33}, {"ref_CSET_id": 184, "referenced_count": 28}, {"ref_CSET_id": 23, "referenced_count": 26}, {"ref_CSET_id": 223, "referenced_count": 26}], "tasks": [{"referent": "classification", "task_count": 68}, {"referent": "robots", "task_count": 28}, {"referent": "human_robot_interaction", "task_count": 17}, {"referent": "image_processing", "task_count": 16}, {"referent": "classification_tasks", "task_count": 15}, {"referent": "sketch_recognition", "task_count": 14}, {"referent": "segmentation", "task_count": 14}, {"referent": "image_analysis", "task_count": 13}, {"referent": "emotion_recognition", "task_count": 10}, {"referent": "language_identification", "task_count": 9}], "methods": [{"referent": "vqa_models", "method_count": 31}, {"referent": "auto_classifier", "method_count": 28}, {"referent": "3d_representations", "method_count": 28}, {"referent": "recurrent_neural_networks", "method_count": 27}, {"referent": "convolutional_neural_networks", "method_count": 24}, {"referent": "meta_learning_algorithms", "method_count": 22}, {"referent": "symbolic_deep_learning", "method_count": 21}, {"referent": "double_q_learning", "method_count": 20}, {"referent": "q_learning", "method_count": 19}, {"referent": "mad_learning", "method_count": 18}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [549, 667, 883, 971, 1038, 1224, 1374, 1701, 1868, 1797, 30], "total": 12102, "isTopResearch": false, "rank": 31, "sp500_rank": 28}, "ai_publications": {"counts": [35, 29, 27, 35, 36, 40, 44, 77, 99, 50, 0], "total": 472, "isTopResearch": false, "rank": 41, "sp500_rank": 31}, "ai_publications_growth": {"counts": [], "total": 18.025493025493024, "isTopResearch": false, "rank": 121, "sp500_rank": 62}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 2, 3, 3, 3, 5, 2, 2, 0], "total": 21, "isTopResearch": false, "rank": 76, "sp500_rank": 40}, "citation_counts": {"counts": [151, 226, 299, 332, 418, 608, 865, 1238, 1759, 1669, 79], "total": 7644, "isTopResearch": false, "rank": 59, "sp500_rank": 39}, "cv_pubs": {"counts": [6, 5, 7, 3, 11, 6, 9, 19, 35, 10, 0], "total": 111, "isTopResearch": true, "rank": 50, "sp500_rank": 36}, "nlp_pubs": {"counts": [3, 6, 1, 10, 3, 12, 8, 8, 17, 5, 0], "total": 73, "isTopResearch": true, "rank": 33, "sp500_rank": 24}, "robotics_pubs": {"counts": [3, 4, 3, 4, 6, 7, 14, 16, 13, 15, 0], "total": 85, "isTopResearch": true, "rank": 35, "sp500_rank": 33}, "citations_per_article": {"counts": [4.314285714285714, 7.793103448275862, 11.074074074074074, 9.485714285714286, 11.61111111111111, 15.2, 19.65909090909091, 16.07792207792208, 17.767676767676768, 33.38, 0], "total": 16.194915254237287, "isTopResearch": false, "rank": 383, "sp500_rank": 127}}, "patents": {"ai_patents": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "sp500_rank": 259}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 10, 10, 0, 0, 0, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "sp500_rank": 259}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 96, "rank": 862, "sp500_rank": 310}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094, "sp500_rank": 346}}, "sector": "Financials", "business_sector": "Investment Holding Companies"}, {"cset_id": 1444, "country": "United States", "website": "http://www.recursionpharma.com", "crunchbase": {"text": "0bc57a74-cd37-e643-9d5c-2b409f4a7e48", "url": "https://www.crunchbase.com/organization/recursion-pharmaceuticals"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/recursion-pharmaceuticals"], "stage": "Mature", "name": "Recursion Pharmaceuticals", "patent_name": "recursion pharmaceuticals", "continent": "North America", "local_logo": "recursion_pharmaceuticals.png", "aliases": "Recursion Pharmaceuticals Inc; Recursion Pharmaceuticals, Inc", "permid_links": [{"text": 5042238812, "url": "https://permid.org/1-5042238812"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Recursion Pharmaceuticals is a digital biology company, developing a drug discovery platform and pipeline with machine learning.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 66949, "cluster_count": 1}, {"cluster_id": 50231, "cluster_count": 1}, {"cluster_id": 14530, "cluster_count": 1}, {"cluster_id": 44612, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 43}, {"ref_CSET_id": 163, "referenced_count": 20}, {"ref_CSET_id": 87, "referenced_count": 15}, {"ref_CSET_id": 115, "referenced_count": 5}, {"ref_CSET_id": 790, "referenced_count": 3}, {"ref_CSET_id": 796, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 487, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 2}], "tasks": [{"referent": "making_hiring_decisions", "task_count": 1}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 1}, {"referent": "community_detection", "task_count": 1}, {"referent": "land_cover_mapping", "task_count": 1}, {"referent": "cancer_detection", "task_count": 1}, {"referent": "automl", "task_count": 1}, {"referent": "drug_discovery", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "generalized_linear_models", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "general", "method_count": 1}, {"referent": "distributions", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 3, 1, 3, 0, 4, 1, 6, 6, 11, 0], "total": 35, "isTopResearch": false, "rank": 686}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": 50.0, "isTopResearch": false, "rank": 63}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 105, 31, 0], "total": 146, "isTopResearch": false, "rank": 446}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 10.0, 35.0, 0, 0], "total": 36.5, "isTopResearch": false, "rank": 149}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 0, 1, 2, 1, 0, 0], "total": 6, "table": null, "rank": 487}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 0, 10, 20, 10, 0, 0], "total": 60, "table": null, "rank": 487}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 2, 0, 1, 0, 1, 0, 0], "total": 4, "table": "industry", "rank": 139}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 38}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 95, "rank": 865}, "ai_jobs": {"counts": null, "total": 39, "rank": 533}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We are Reengineering drug discovery by taking a target-agnostic approach that combines automation, machine learning and the world\u2019s largest biological image dataset with a highly cross-functional team to discover transformative new treatments.", "company_site_link": "http://www.recursionpharma.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 666, "country": "United States", "website": "https://russellinvestments.com/us/", "crunchbase": {"text": "44510683-7ad2-2bc5-46fd-63ed77eeefeb", "url": "https://www.crunchbase.com/organization/russell-investments"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/russell-investments"], "stage": "Unknown", "name": "Russell Investments", "patent_name": "russell investments", "continent": "North America", "local_logo": "russell_investments.png", "aliases": "Frank Russell Company; Russell Investments Ltd", "permid_links": [{"text": 5000075838, "url": "https://permid.org/1-5000075838"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Russell Investment Group a global leader in multi-manager investment services, provides investment products", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 1, 5, 4, 0, 1, 1, 1, 3, 0, 0], "total": 18, "isTopResearch": false, "rank": 825}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 95, "rank": 865}, "ai_jobs": {"counts": null, "total": 13, "rank": 790}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Russell Investments is an investment firm headquartered in Seattle, Washington.", "wikipedia_link": "https://en.wikipedia.org/wiki/Special:Search?search=russell+investments", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2781, "country": "United States", "website": "http://mbakerintl.com/", "crunchbase": {"text": "cb4c7a93-681c-1ef6-3d53-87f1246777d4", "url": "https://www.crunchbase.com/organization/integrated-mission-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/michael-baker-corporation"], "stage": "Unknown", "name": "Michael Baker International Llc", "patent_name": "michael baker international llc", "continent": "North America", "local_logo": "michael_baker_international_llc.png", "aliases": "Ims; Integrated Mission Solutions; Integrated Mission Solutions, Llc; Michael Baker; Michael Baker International", "permid_links": [{"text": 5040195193, "url": "https://permid.org/1-5040195193"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Michael Baker International is a Critical Service Provider company.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 8, 6, 4, 3, 9, 4, 9, 8, 0], "total": 52, "isTopResearch": false, "rank": 611}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 95, "rank": 865}, "ai_jobs": {"counts": null, "total": 12, "rank": 812}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Michael Baker International, a leading provider of engineering and consulting services, including design, planning, architectural, environmental, construction and program management, has been solving some of the world\u2019s most complex infrastructure challenges for more than 80 years with a legacy of expertise, experience, innovation and integrity.", "company_site_link": "https://mbakerintl.com/about", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 799, "country": "China", "website": "http://www.gwm-global.com", "crunchbase": {"text": "a4ed3c57-1a31-f836-d46a-a56c76ede1e7", "url": "https://www.crunchbase.com/organization/great-wall-motors"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/great-wall-motor-co-ltd-", "https://www.linkedin.com/company/american-haval-motor-technology"], "stage": "Mature", "name": "Great Wall Motor Company", "patent_name": "great wall motor company", "continent": "Asia", "local_logo": "great_wall_motor_company.png", "aliases": "\u957f\u57ce\u6c7d\u8f66; \u957f\u57ce\u6c7d\u8f66\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295864422, "url": "https://permid.org/1-4295864422"}], "parent_info": "Baoding Great Wall Holding Group Company Limited", "agg_child_info": "American Haval Motor Technology Llc", "unagg_child_info": null, "market_filt": [{"text": "SSE:601633", "url": "https://www.google.com/finance/quote/601633:sse"}, {"text": "HKG:2333", "url": "https://www.google.com/finance/quote/2333:hkg"}], "market_full": [{"text": "SSE:601633", "url": "https://www.google.com/finance/quote/601633:sse"}, {"text": "OTC:GWLLF", "url": "https://www.google.com/finance/quote/gwllf:otc"}, {"text": "HKG:2333", "url": "https://www.google.com/finance/quote/2333:hkg"}], "crunchbase_description": "Great Wall Motors is China\u2019s SUV and pickup manufacturer.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Expert system", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Navigation system", "field_count": 1}, {"field_name": "Kalman filter", "field_count": 1}, {"field_name": "Spatial intelligence", "field_count": 1}, {"field_name": "Object (computer science)", "field_count": 1}, {"field_name": "Sensor array", "field_count": 1}, {"field_name": "Particle swarm optimization", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 2410, "cluster_count": 2}, {"cluster_id": 27542, "cluster_count": 1}, {"cluster_id": 84555, "cluster_count": 1}, {"cluster_id": 15259, "cluster_count": 1}, {"cluster_id": 21551, "cluster_count": 1}, {"cluster_id": 26558, "cluster_count": 1}, {"cluster_id": 887, "cluster_count": 1}, {"cluster_id": 2710, "cluster_count": 1}, {"cluster_id": 37180, "cluster_count": 1}, {"cluster_id": 24868, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 1037, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 820, "referenced_count": 1}, {"ref_CSET_id": 219, "referenced_count": 1}], "tasks": [{"referent": "robots", "task_count": 5}, {"referent": "autonomous_driving", "task_count": 4}, {"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "motion_planning", "task_count": 2}, {"referent": "steering_control", "task_count": 2}, {"referent": "video_surveillance", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "vehicle_detection", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "acoustic_modelling", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "optimization", "method_count": 2}, {"referent": "adamw", "method_count": 2}, {"referent": "value_function_estimation", "method_count": 1}, {"referent": "dino", "method_count": 1}, {"referent": "procan", "method_count": 1}, {"referent": "hopfield_layer", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "lambda_layer", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [228, 308, 517, 542, 287, 265, 198, 131, 100, 14, 0], "total": 2590, "isTopResearch": false, "rank": 106}, "ai_publications": {"counts": [2, 2, 5, 2, 1, 4, 2, 3, 2, 2, 0], "total": 25, "isTopResearch": false, "rank": 270}, "ai_publications_growth": {"counts": [], "total": 5.5555555555555545, "isTopResearch": false, "rank": 173}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [4, 3, 5, 11, 9, 13, 29, 41, 24, 7, 0], "total": 146, "isTopResearch": false, "rank": 446}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 344}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [2, 1, 2, 1, 0, 3, 2, 0, 0, 1, 0], "total": 12, "isTopResearch": true, "rank": 102}, "citations_per_article": {"counts": [2.0, 1.5, 1.0, 5.5, 9.0, 3.25, 14.5, 13.666666666666666, 12.0, 3.5, 0], "total": 5.84, "isTopResearch": false, "rank": 690}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 7, 4, 1, 3, 8, 0], "total": 24, "table": null, "rank": 295}, "ai_patents_growth": {"counts": [], "total": -58.92857142857143, "table": null, "rank": 1544}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 70, 40, 10, 30, 80, 0], "total": 240, "table": null, "rank": 295}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 7, 3, 1, 0, 1, 0], "total": 12, "table": "industry", "rank": 91}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 2, 0, 0], "total": 5, "table": "industry", "rank": 336}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 7, 2, 0, 0, 0, 0], "total": 9, "table": "application", "rank": 144}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 2, 2, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 189}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 95, "rank": 865}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts", "wikipedia_description": "Great Wall Motors Company Limited is a Chinese automobile manufacturer headquartered in Baoding, Hebei. The company is named after the Great Wall of China and was formed in 1984. It is China's largest sport utility vehicle (SUV) and pick-up truck producer. It sells passenger cars and trucks under the Great Wall brand and SUVs under the Haval and WEY brands.", "wikipedia_link": "https://en.wikipedia.org/wiki/Great_Wall_Motors", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2449, "country": "United States", "website": "https://www.packagingcorp.com/", "crunchbase": {"text": "b208f6f5-13c9-9839-f628-43c701e3dbed", "url": "https://www.crunchbase.com/organization/packaging-corp-of-america"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pca"], "stage": "Mature", "name": "Packaging Corporation of America", "patent_name": "packaging corporation of america", "continent": "North America", "local_logo": "packaging_corporation_of_america.png", "aliases": "Packaging Corp of America; Packaging Corporation Of America (Pca); Pca; Tenneco Packaging", "permid_links": [{"text": 4295912229, "url": "https://permid.org/1-4295912229"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PKG", "url": "https://www.google.com/finance/quote/nyse:pkg"}], "market_full": [{"text": "SAO:P1KG34", "url": "https://www.google.com/finance/quote/p1kg34:sao"}, {"text": "DEU:PKG", "url": "https://www.google.com/finance/quote/deu:pkg"}, {"text": "STU:PKA", "url": "https://www.google.com/finance/quote/pka:stu"}, {"text": "FRA:PKA", "url": "https://www.google.com/finance/quote/fra:pka"}, {"text": "MCX:PKG-RM", "url": "https://www.google.com/finance/quote/mcx:pkg-rm"}, {"text": "ASE:PKG", "url": "https://www.google.com/finance/quote/ase:pkg"}, {"text": "BRN:PKA", "url": "https://www.google.com/finance/quote/brn:pka"}, {"text": "NYSE:PKG", "url": "https://www.google.com/finance/quote/nyse:pkg"}, {"text": "DUS:PKA", "url": "https://www.google.com/finance/quote/dus:pka"}, {"text": "LSE:0KEZ", "url": "https://www.google.com/finance/quote/0kez:lse"}, {"text": "NYQ:PKG", "url": "https://www.google.com/finance/quote/nyq:pkg"}, {"text": "HAN:PKA", "url": "https://www.google.com/finance/quote/han:pka"}, {"text": "MUN:PKA", "url": "https://www.google.com/finance/quote/mun:pka"}], "crunchbase_description": "Packaging Corporation of America (PCA) is the fourth largest producer of containerboard and corrugated packaging products in the United", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 95, "rank": 865, "fortune500_rank": 422}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "fortune500_rank": 447}}, "sector": "Basic Materials", "business_sector": "Applied Resources", "wikipedia_description": "Packaging Corporation of America is an American manufacturing company based in Lake Forest, Illinois. The company has about 15,500 employees, with operations primarily in the United States. The CEO is Mark W. Kowlzan.", "wikipedia_link": "https://en.wikipedia.org/wiki/Packaging_Corporation_of_America", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 41, "country": "United States", "website": "https://www.bigpanda.io/", "crunchbase": {"text": "fcaafc8a-234a-fb3b-374b-dac0eefcf3ea", "url": "https://www.crunchbase.com/organization/bigpanda"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bigpanda"], "stage": "Mature", "name": "BigPanda", "patent_name": "bigpanda", "continent": "North America", "local_logo": "bigpanda.png", "aliases": "Bigpanda Inc; Bigpanda, Inc", "permid_links": [{"text": 5044030022, "url": "https://permid.org/1-5044030022"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "BigPanda offers a platform that helps IT Ops, NOC, and DevOps teams detect, investigate, and resolve IT incidents faster and more easily.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 94, "rank": 870}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "BigPanda is a private software company headquartered in Mountain View, California. It develops artificial intelligence software that detects and analyzes problems in IT systems. As of 2019, BigPanda has raised $120 million in venture capital funding.", "wikipedia_link": "https://en.wikipedia.org/wiki/BigPanda", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1749, "country": "United States", "website": "http://www.operasolutions.com", "crunchbase": {"text": "79e0d8e2-b826-25ca-9ba6-b79336e20722", "url": "https://www.crunchbase.com/organization/opera-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/operasolutions"], "stage": "Mature", "name": "Opera Solutions", "patent_name": "opera solutions", "continent": "North America", "local_logo": "opera_solutions.png", "aliases": null, "permid_links": [{"text": 5035955417, "url": "https://permid.org/1-5035955417"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Opera Solutions provides advanced analytics software solutions that help organizations extract actionable insights from Big Data at scale.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Mutual information", "field_count": 1}, {"field_name": "Sparse approximation", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 1989, "cluster_count": 1}, {"cluster_id": 65, "cluster_count": 1}, {"cluster_id": 86026, "cluster_count": 1}, {"cluster_id": 22024, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}], "tasks": [{"referent": "deep_attention", "task_count": 1}, {"referent": "denoising", "task_count": 1}, {"referent": "target_recognition", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}, {"referent": "node_classification", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "pooling_operations", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "(2+1)d_convolution", "method_count": 1}, {"referent": "momentum_rules", "method_count": 1}, {"referent": "gts", "method_count": 1}, {"referent": "value_function_estimation", "method_count": 1}, {"referent": "albert", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 1, 2, 0, 0, 2, 0, 1, 0, 2, 0], "total": 10, "isTopResearch": false, "rank": 942}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [10, 15, 12, 13, 12, 13, 14, 8, 9, 5, 0], "total": 111, "isTopResearch": false, "rank": 487}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 12.0, 0, 0, 13.0, 0, 0, 0, 0, 0], "total": 55.5, "isTopResearch": false, "rank": 83}}, "patents": {"ai_patents": {"counts": [3, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 6, "table": null, "rank": 487}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [30, 0, 0, 0, 0, 0, 0, 20, 10, 0, 0], "total": 60, "table": null, "rank": 487}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 93, "rank": 871}, "ai_jobs": {"counts": null, "total": 65, "rank": 426}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "At the heart of ElectrifAi\u2019s mission is a commitment to making Ai and machine learning more understandable, practical, and profitable for businesses and industries across the globe. Through it all, we remain honest and open with our customers by following one guiding principle: to always do the right thing.", "company_site_link": "https://electrifai.net/about", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3127, "country": "China", "website": "https://www.longfor.com/", "crunchbase": {"text": " 53eb5adb-6933-4637-b4f8-5b6f3a4bc2ea ", "url": " https://www.crunchbase.com/organization/longfor-group "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/longfor-properties"], "stage": "Mature", "name": "Longfor Group Holdings", "patent_name": "Longfor Group Holdings", "continent": "Asia", "local_logo": null, "aliases": "Longfor Group Holdings; Longfor Group Holdings Limited; \u9f99\u6e56\u96c6\u56e2\u63a7\u80a1\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5000484091, "url": "https://permid.org/1-5000484091"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:960", "url": "https://www.google.com/finance/quote/960:HKG"}], "market_full": [{"text": "FRA:RLF", "url": "https://www.google.com/finance/quote/FRA:RLF"}, {"text": "HKG:960", "url": "https://www.google.com/finance/quote/960:HKG"}, {"text": "PKC:LGFRY", "url": "https://www.google.com/finance/quote/LGFRY:PKC"}, {"text": "STU:RLF", "url": "https://www.google.com/finance/quote/RLF:STU"}, {"text": "BER:RLF", "url": "https://www.google.com/finance/quote/BER:RLF"}, {"text": "MUN:RLF", "url": "https://www.google.com/finance/quote/MUN:RLF"}, {"text": "DUS:RLF", "url": "https://www.google.com/finance/quote/DUS:RLF"}, {"text": "PKC:LNGPF", "url": "https://www.google.com/finance/quote/LNGPF:PKC"}, {"text": "DEU:0960", "url": "https://www.google.com/finance/quote/0960:DEU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1], "total": 3, "isTopResearch": false, "rank": 1148, "sp500_rank": 428}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 93, "rank": 871, "sp500_rank": 311}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "sp500_rank": 297}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2394, "country": "United States", "website": "http://www.leggett.com/", "crunchbase": {"text": "03ec496c-62fa-ac72-e723-7b5611fc26a9", "url": "https://www.crunchbase.com/organization/leggett-platt"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/leggett-&-platt"], "stage": "Mature", "name": "Leggett & Platt", "patent_name": "leggett & platt", "continent": "North America", "local_logo": "leggett_&_platt.png", "aliases": "Leggett; Leggett & Platt Inc; Leggett & Platt Incorporated; Leggett & Platt, Inc; Leggett & Platt\u00ae", "permid_links": [{"text": 4295904407, "url": "https://permid.org/1-4295904407"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LEG", "url": "https://www.google.com/finance/quote/leg:nyse"}], "market_full": [{"text": "DEU:LEG", "url": "https://www.google.com/finance/quote/deu:leg"}, {"text": "LSE:0JTT", "url": "https://www.google.com/finance/quote/0jtt:lse"}, {"text": "ASE:LEG", "url": "https://www.google.com/finance/quote/ase:leg"}, {"text": "STU:LP1", "url": "https://www.google.com/finance/quote/lp1:stu"}, {"text": "NYQ:LEG", "url": "https://www.google.com/finance/quote/leg:nyq"}, {"text": "MOEX:LEG-RM", "url": "https://www.google.com/finance/quote/leg-rm:moex"}, {"text": "DUS:LP1", "url": "https://www.google.com/finance/quote/dus:lp1"}, {"text": "SAO:L1EG34", "url": "https://www.google.com/finance/quote/l1eg34:sao"}, {"text": "MUN:LP1", "url": "https://www.google.com/finance/quote/lp1:mun"}, {"text": "NYSE:LEG", "url": "https://www.google.com/finance/quote/leg:nyse"}, {"text": "BER:LP1", "url": "https://www.google.com/finance/quote/ber:lp1"}, {"text": "FRA:LP1", "url": "https://www.google.com/finance/quote/fra:lp1"}, {"text": "BRN:LP1", "url": "https://www.google.com/finance/quote/brn:lp1"}], "crunchbase_description": "Leggett & Plat, which pioneered sleep technology when it introduced its bedspring more than 125 years ago.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 93, "rank": 871, "fortune500_rank": 423}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "fortune500_rank": 447}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "Leggett & Platt (L&P), based in Carthage, Missouri, is a diversified manufacturer (and member of the S&P 500 Index) that designs and produces various engineered components and products that can be found in most[citation needed] homes and automobiles. The firm was founded in 1883, and consists of 15 business units, 23,000 employee-partners, and 145 manufacturing facilities located in 18 countries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Leggett_%26_Platt", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2373, "country": "United States", "website": "https://www.ipgphotonics.com/", "crunchbase": {"text": "39dc0706-fd9d-1b40-bbb5-7b3791180576", "url": "https://www.crunchbase.com/organization/ipg-photonics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ipg-photonics"], "stage": "Mature", "name": "IPG Photonics Corp.", "patent_name": "ipg photonics corp.", "continent": "North America", "local_logo": "ipg_photonics_corp.png", "aliases": "Ipg Photonics; Ipg Photonics Corporation", "permid_links": [{"text": 4295900349, "url": "https://permid.org/1-4295900349"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:IPGP", "url": "https://www.google.com/finance/quote/ipgp:nasdaq"}], "market_full": [{"text": "NASDAQ:IPGP", "url": "https://www.google.com/finance/quote/ipgp:nasdaq"}, {"text": "MEX:IPGP", "url": "https://www.google.com/finance/quote/ipgp:mex"}, {"text": "BER:IPF", "url": "https://www.google.com/finance/quote/ber:ipf"}, {"text": "DEU:IPGP", "url": "https://www.google.com/finance/quote/deu:ipgp"}, {"text": "MCX:IPGP-RM", "url": "https://www.google.com/finance/quote/ipgp-rm:mcx"}, {"text": "FRA:IPF", "url": "https://www.google.com/finance/quote/fra:ipf"}, {"text": "DUS:IPF", "url": "https://www.google.com/finance/quote/dus:ipf"}, {"text": "STU:IPF", "url": "https://www.google.com/finance/quote/ipf:stu"}, {"text": "MUN:IPF", "url": "https://www.google.com/finance/quote/ipf:mun"}], "crunchbase_description": "IPG Photonics develops and manufactures fiber lasers and amplifiers for diverse applications in numerous markets.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 14592, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "language_identification", "task_count": 1}], "methods": [{"referent": "generalized_additive_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [14, 16, 16, 22, 17, 26, 24, 7, 21, 3, 0], "total": 166, "isTopResearch": false, "rank": 433, "fortune500_rank": 168}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [3, 3, 3, 5, 1, 1, 1, 2, 1, 1, 0], "total": 21, "isTopResearch": false, "rank": 679, "fortune500_rank": 186}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "fortune500_rank": 73}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [3.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 21.0, "isTopResearch": false, "rank": 294, "fortune500_rank": 96}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 92, "rank": 874, "fortune500_rank": 424}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349, "fortune500_rank": 485}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "IPG Photonics is a manufacturer of fiber lasers. IPG Photonics developed and commercialized optical fiber lasers, which are used in a variety of applications including materials processing, medical applications and telecommunications. IPG has manufacturing facilities in the United States, Germany, Russia and Italy.\nIPG was founded in 1990 by Valentin P. Gapontsev, IPG's Chairman and Chief Executive Officer, and Igor Samartsev, IPG's Chief Technology Officer.", "wikipedia_link": "https://en.wikipedia.org/wiki/IPG_Photonics", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2458, "country": "United States", "website": "http://www.pxd.com/", "crunchbase": {"text": "05c0222b-68d4-44f9-7ac5-913efc219721", "url": "https://www.crunchbase.com/organization/pioneer-natural-resources"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pioneer-natural-resources-company"], "stage": "Mature", "name": "Pioneer Natural Resources", "patent_name": "pioneer natural resources", "continent": "North America", "local_logo": "pioneer_natural_resources.png", "aliases": "Pioneer Natural Resources Co; Pioneer Natural Resources Company", "permid_links": [{"text": 5000007778, "url": "https://permid.org/1-5000007778"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PXD", "url": "https://www.google.com/finance/quote/nyse:pxd"}], "market_full": [{"text": "DEU:PXD", "url": "https://www.google.com/finance/quote/deu:pxd"}, {"text": "SAO:P1IO34", "url": "https://www.google.com/finance/quote/p1io34:sao"}, {"text": "MUN:PNK", "url": "https://www.google.com/finance/quote/mun:pnk"}, {"text": "ASE:PXD", "url": "https://www.google.com/finance/quote/ase:pxd"}, {"text": "BER:PNK", "url": "https://www.google.com/finance/quote/ber:pnk"}, {"text": "MEX:PXD", "url": "https://www.google.com/finance/quote/mex:pxd"}, {"text": "MCX:PXD-RM", "url": "https://www.google.com/finance/quote/mcx:pxd-rm"}, {"text": "BRN:PNK", "url": "https://www.google.com/finance/quote/brn:pnk"}, {"text": "STU:PNK", "url": "https://www.google.com/finance/quote/pnk:stu"}, {"text": "NYQ:PXD", "url": "https://www.google.com/finance/quote/nyq:pxd"}, {"text": "FRA:PNK", "url": "https://www.google.com/finance/quote/fra:pnk"}, {"text": "LSE:0KIX", "url": "https://www.google.com/finance/quote/0kix:lse"}, {"text": "NYSE:PXD", "url": "https://www.google.com/finance/quote/nyse:pxd"}, {"text": "DUS:PNK", "url": "https://www.google.com/finance/quote/dus:pnk"}], "crunchbase_description": "Pioneer Natural Resources Co. is an Irving, Texas-based, large, independent oil and gas company.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Uncertainty quantification", "field_count": 1}], "clusters": [{"cluster_id": 9045, "cluster_count": 3}, {"cluster_id": 32866, "cluster_count": 1}, {"cluster_id": 51708, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 366, "referenced_count": 4}, {"ref_CSET_id": 2458, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 676, "referenced_count": 2}, {"ref_CSET_id": 1495, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "facies_classification", "task_count": 3}, {"referent": "spelling_correction", "task_count": 2}, {"referent": "speech_production", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "seismic_analysis", "task_count": 2}, {"referent": "motion_planning", "task_count": 1}, {"referent": "uncertainty_estimation", "task_count": 1}, {"referent": "mas", "task_count": 1}, {"referent": "community_detection", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}], "methods": [{"referent": "twin_networks", "method_count": 2}, {"referent": "shap", "method_count": 2}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "linear_regression", "method_count": 1}, {"referent": "gradient_clipping", "method_count": 1}, {"referent": "gaussian_process", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "dac", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [29, 12, 18, 8, 9, 3, 20, 12, 9, 4, 0], "total": 124, "isTopResearch": false, "rank": 478, "fortune500_rank": 178}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 0, 1, 0], "total": 5, "isTopResearch": false, "rank": 540, "fortune500_rank": 145}, "ai_publications_growth": {"counts": [], "total": 50.0, "isTopResearch": false, "rank": 63, "fortune500_rank": 19}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 6, 6, 11, 0], "total": 23, "isTopResearch": false, "rank": 670, "fortune500_rank": 184}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 2.0, 0, 11.0, 0], "total": 4.6, "isTopResearch": false, "rank": 727, "fortune500_rank": 204}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "fortune500_rank": 66}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "fortune500_rank": 85}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 91, "rank": 875, "fortune500_rank": 425}, "ai_jobs": {"counts": null, "total": 19, "rank": 706, "fortune500_rank": 356}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "Pioneer Natural Resources Company is an American energy company engaged in hydrocarbon exploration in the Cline Shale, which is part of the Spraberry Trend of the Permian Basin, where the company is the largest acreage holder. The company is organized in Delaware and headquartered in Irving, Texas.\nThe company is ranked 333rd on the Fortune 500.", "wikipedia_link": "https://en.wikipedia.org/wiki/Pioneer_Natural_Resources", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2357, "country": "United States", "website": "https://www.hormelfoods.com/", "crunchbase": {"text": "6f332455-c348-2d07-26d1-48f405ec9179", "url": "https://www.crunchbase.com/organization/hormel-foods"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hormel-foods"], "stage": "Mature", "name": "Hormel Foods Corp.", "patent_name": "hormel foods corp.", "continent": "North America", "local_logo": "hormel_foods_corp.png", "aliases": "Hormel Foods; Hormel Foods Corporation", "permid_links": [{"text": 4295904183, "url": "https://permid.org/1-4295904183"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HRL", "url": "https://www.google.com/finance/quote/hrl:nyse"}], "market_full": [{"text": "GER:HO7X", "url": "https://www.google.com/finance/quote/ger:ho7x"}, {"text": "DUS:HO7", "url": "https://www.google.com/finance/quote/dus:ho7"}, {"text": "BER:HO7", "url": "https://www.google.com/finance/quote/ber:ho7"}, {"text": "STU:HO7", "url": "https://www.google.com/finance/quote/ho7:stu"}, {"text": "NYSE:HRL", "url": "https://www.google.com/finance/quote/hrl:nyse"}, {"text": "BRN:HO7", "url": "https://www.google.com/finance/quote/brn:ho7"}, {"text": "VIE:HRL", "url": "https://www.google.com/finance/quote/hrl:vie"}, {"text": "ASE:HRL", "url": "https://www.google.com/finance/quote/ase:hrl"}, {"text": "MUN:HO7", "url": "https://www.google.com/finance/quote/ho7:mun"}, {"text": "SAO:H1RL34", "url": "https://www.google.com/finance/quote/h1rl34:sao"}, {"text": "MOEX:HRL-RM", "url": "https://www.google.com/finance/quote/hrl-rm:moex"}, {"text": "DEU:HRL", "url": "https://www.google.com/finance/quote/deu:hrl"}, {"text": "FRA:HO7", "url": "https://www.google.com/finance/quote/fra:ho7"}, {"text": "LSE:0J5Z", "url": "https://www.google.com/finance/quote/0j5z:lse"}, {"text": "NYQ:HRL", "url": "https://www.google.com/finance/quote/hrl:nyq"}], "crunchbase_description": "Hormel Foods is a Fortune 500, multinational manufacturer and marketer of consumer-branded food and meat products.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 2, 0, 1, 6, 0, 0, 2, 1, 1, 0], "total": 18, "isTopResearch": false, "rank": 825, "fortune500_rank": 292}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 91, "rank": 875, "fortune500_rank": 425}, "ai_jobs": {"counts": null, "total": 15, "rank": 754, "fortune500_rank": 376}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages", "wikipedia_description": "Hormel Foods Corporation is an American company founded in 1891 in Austin, Minnesota, by George A. Hormel as George A. Hormel & Company. Originally focusing on the packaging and selling of ham, Spam, sausage and other pork, chicken, beef and lamb products to consumers; by the 1980s, Hormel began offering a wider range of packaged and refrigerated foods. The company changed its name to Hormel Foods in 1993. Hormel serves 80 countries with brands such as Applegate, Columbus Craft Meats, Dinty Moore, Jennie-O, and Skippy.", "wikipedia_link": "https://en.wikipedia.org/wiki/Hormel", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2507, "country": "United States", "website": "https://www.teleflex.com/", "crunchbase": {"text": "87c58be5-6cef-2a48-fd5a-9a448fe209d3", "url": "https://www.crunchbase.com/organization/teleflex"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/teleflex"], "stage": "Mature", "name": "Teleflex", "patent_name": "teleflex", "continent": "North America", "local_logo": "teleflex.png", "aliases": "Teleflex Inc; Teleflex Incorporated", "permid_links": [{"text": 4295905048, "url": "https://permid.org/1-4295905048"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:TFX", "url": "https://www.google.com/finance/quote/nyse:tfx"}], "market_full": [{"text": "NYSE:TFX", "url": "https://www.google.com/finance/quote/nyse:tfx"}, {"text": "SAO:T1FX34", "url": "https://www.google.com/finance/quote/sao:t1fx34"}, {"text": "STU:TBH", "url": "https://www.google.com/finance/quote/stu:tbh"}, {"text": "ASE:TFX", "url": "https://www.google.com/finance/quote/ase:tfx"}, {"text": "NYQ:TFX", "url": "https://www.google.com/finance/quote/nyq:tfx"}, {"text": "MUN:TBH", "url": "https://www.google.com/finance/quote/mun:tbh"}, {"text": "GER:TBHX", "url": "https://www.google.com/finance/quote/ger:tbhx"}, {"text": "DEU:TFX", "url": "https://www.google.com/finance/quote/deu:tfx"}, {"text": "MCX:TFX-RM", "url": "https://www.google.com/finance/quote/mcx:tfx-rm"}, {"text": "BRN:TBH", "url": "https://www.google.com/finance/quote/brn:tbh"}, {"text": "HAN:TBH", "url": "https://www.google.com/finance/quote/han:tbh"}, {"text": "FRA:TBH", "url": "https://www.google.com/finance/quote/fra:tbh"}], "crunchbase_description": "Teleflex is a diversified global company, distinguished by a significant presence in healthcare, with niche businesses.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 1, 8, 5, 9, 5, 3, 6, 6, 1, 0], "total": 47, "isTopResearch": false, "rank": 625, "fortune500_rank": 232}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 91, "rank": 875, "fortune500_rank": 425}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "fortune500_rank": 409}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Teleflex Incorporated, headquartered in Wayne, Pennsylvania, is an American provider of specialty medical devices for a range of procedures in critical care and surgery. Teleflex has annual revenues of $2.4 billion, operations in 40 countries, and more than 12,000 employees. By 2011, the company had substantially realigned to focus on its current business as a medical-device manufacturer, having undergone several years of active acquisitions and divestitures. Teleflex has been associated with Irish corporate tax avoidance tools. Teleflex's current chief executive officer (CEO) is Liam J. Kelly, who took over from Benson F. Smith at the start of 2018; Kelly is also the company's president and former chief operating officer.", "wikipedia_link": "https://en.wikipedia.org/wiki/Teleflex", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2289, "country": "United States", "website": "https://www.dollartree.com/", "crunchbase": {"text": "7d62e0c9-cf67-c9f3-1a0f-ae7ed07551dd", "url": "https://www.crunchbase.com/organization/dollar-tree-stores-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dollar-tree-stores"], "stage": "Mature", "name": "Dollar Tree", "patent_name": "dollar tree", "continent": "North America", "local_logo": "dollar_tree.png", "aliases": "Dollar Tree Inc; Dollar Tree, Inc", "permid_links": [{"text": 4295906195, "url": "https://permid.org/1-4295906195"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:DLTR", "url": "https://www.google.com/finance/quote/dltr:nasdaq"}], "market_full": [{"text": "NASDAQ:DLTR", "url": "https://www.google.com/finance/quote/dltr:nasdaq"}, {"text": "MEX:DLTR*", "url": "https://www.google.com/finance/quote/dltr*:mex"}, {"text": "BRN:DT3", "url": "https://www.google.com/finance/quote/brn:dt3"}, {"text": "BER:DT3", "url": "https://www.google.com/finance/quote/ber:dt3"}, {"text": "GER:DT3X", "url": "https://www.google.com/finance/quote/dt3x:ger"}, {"text": "SAO:DLTR34", "url": "https://www.google.com/finance/quote/dltr34:sao"}, {"text": "LSE:0IC8", "url": "https://www.google.com/finance/quote/0ic8:lse"}, {"text": "MOEX:DLTR-RM", "url": "https://www.google.com/finance/quote/dltr-rm:moex"}, {"text": "STU:DT3", "url": "https://www.google.com/finance/quote/dt3:stu"}, {"text": "DEU:DLTR", "url": "https://www.google.com/finance/quote/deu:dltr"}, {"text": "MUN:DT3", "url": "https://www.google.com/finance/quote/dt3:mun"}, {"text": "DUS:DT3", "url": "https://www.google.com/finance/quote/dt3:dus"}, {"text": "FRA:DT3", "url": "https://www.google.com/finance/quote/dt3:fra"}, {"text": "VIE:DLTR", "url": "https://www.google.com/finance/quote/dltr:vie"}], "crunchbase_description": "Dollar Tree is a national company with thousands of stores.", "groups": {"sp500": true, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 90, "rank": 878, "sp500_rank": 312, "fortune500_rank": 428}, "ai_jobs": {"counts": null, "total": 12, "rank": 812, "sp500_rank": 290, "fortune500_rank": 400}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers", "wikipedia_description": "Dollar Tree, Inc., formerly known as Only $1.00, is an American chain of discount variety stores that sells items for $1 or less. Headquartered in Chesapeake, Virginia, it is a Fortune 500 company and operates 15,115 stores throughout the 48 contiguous U.S. states and Canada. Its stores are supported by a nationwide logistics network of twenty four distribution centers. The company operates one-dollar stores under the names of Dollar Tree and Dollar Bills. The company also operates a multi-price-point variety chain under the Family Dollar banner.", "wikipedia_link": "https://en.wikipedia.org/wiki/Dollar_Tree", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2930, "country": "United States", "website": "https://www.appliedres.com/", "crunchbase": {"text": "bf0da52a-eaf1-4edd-82b2-105d54a25894", "url": "https://www.crunchbase.com/organization/applied-research-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/applied-research-solutions"], "stage": "Unknown", "name": "Applied Research Solutions Inc", "patent_name": "applied research solutions inc", "continent": "North America", "local_logo": "applied_research_solutions_inc.png", "aliases": "Applied Research Solutions", "permid_links": [{"text": 5052139707, "url": "https://permid.org/1-5052139707"}], "parent_info": "Riverside Research", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "ARS is a growing small business company that serving the department of defense and intelligence community.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Semantic reasoner", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 33354, "cluster_count": 1}, {"cluster_id": 11984, "cluster_count": 1}, {"cluster_id": 68907, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "collaborative_filtering", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "unmanned_aerial_vehicles", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}], "methods": [{"referent": "harm_net", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 2, 3, 1, 7, 3, 4, 3, 3, 0], "total": 26, "isTopResearch": false, "rank": 744}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 1, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 2, 0], "total": 5, "isTopResearch": false, "rank": 820}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 0, 0.0, 2.0, 0], "total": 1.6666666666666667, "isTopResearch": false, "rank": 851}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 90, "rank": 878}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "ARS is a growing small business serving the Department of Defense and Intelligence Community. \nWe specialize in providing fully-cleared professionals and subject matter experts to solve our customers\u2019 most significant challenges.", "company_site_link": "https://www.appliedres.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1837, "country": "Russian Federation", "website": "https://www.rosneft.com/", "crunchbase": {"text": " 2ba982c6-7a7c-1c28-c394-251d932d3db8", "url": " https://www.crunchbase.com/organization/rosneft"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/rosneft"], "stage": "Mature", "name": "Rosneft Oil", "patent_name": "Rosneft Oil", "continent": "Europe", "local_logo": null, "aliases": "Rosneft; Rosneft Oil", "permid_links": [{"text": 4295887083, "url": "https://permid.org/1-4295887083"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:40XT", "url": "https://www.google.com/finance/quote/40XT:LSE"}, {"text": "MCX:ROSN", "url": "https://www.google.com/finance/quote/MCX:ROSN"}, {"text": "LSE:ROSN", "url": "https://www.google.com/finance/quote/LSE:ROSN"}, {"text": "BER:OJS1", "url": "https://www.google.com/finance/quote/BER:OJS1"}, {"text": "VIE:ROSN", "url": "https://www.google.com/finance/quote/ROSN:VIE"}, {"text": "BRN:OJS1", "url": "https://www.google.com/finance/quote/BRN:OJS1"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Big data", "field_count": 1}], "clusters": [{"cluster_id": 50739, "cluster_count": 1}, {"cluster_id": 22609, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "image_analysis", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "efficient_exploration", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "matrix_completion", "task_count": 1}, {"referent": "speech_production", "task_count": 1}], "methods": [{"referent": "alphazero", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [14, 14, 25, 39, 29, 37, 76, 76, 64, 17, 0], "total": 391, "isTopResearch": false, "rank": 317, "sp500_rank": 208}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "sp500_rank": 285}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 2, 1, 0], "total": 6, "isTopResearch": false, "rank": 805, "sp500_rank": 329}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 0, 0, 0, 1.0, 2.0, 0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "sp500_rank": 327}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 90, "rank": 878, "sp500_rank": 312}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "sp500_rank": 335}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 3028, "country": "United States", "website": "https://bwfed.com/", "crunchbase": {"text": "224e72d5-314e-41c7-88bb-4d92f0c428f3", "url": "https://www.crunchbase.com/organization/bluewater-federal-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bluewater-federal-solutions"], "stage": "Unknown", "name": "BlueWater Federal Solutions Inc", "patent_name": "bluewater federal solutions inc", "continent": "North America", "local_logo": "bluewater_federal_solutions_inc.png", "aliases": "Bluewater; Bluewater Federal; Bluewater Federal Solutions; Bluewater Federal Solutions, Inc", "permid_links": [{"text": 5044284199, "url": "https://permid.org/1-5044284199"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "BlueWater Federal Solutions is an information technology company offering IT portfolio management services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 90, "rank": 878}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "BlueWater serves the DoD, DHS, and other agencies to deliver mission-essential systems and services. By integrating and managing high-performance teams, we execute complex solutions that achieve the mission-critical goals of our customers. As examples, we design and manage delivery of the complete Military Health System web and mobile footprint to provide outreach and healthcare services to over 9,000,000 active military, veterans and families; we deliver Joint Operations Center, C2 and Coalition Interoperability, Counter UAS and Air & Missile Defense expertise to the DoD in defense of our Country; and we stood up and now operate the infrastructure for DHS\u2019 cybersecurity watch floor.", "company_site_link": "https://bwfed.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2359, "country": "United States", "website": "https://www.howmet.com/", "crunchbase": {"text": "fb5e3b57-adf0-d33d-33a8-7242df94078a", "url": "https://www.crunchbase.com/organization/alcoa-howmet"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/howmet-aerospace"], "stage": "Mature", "name": "Howmet Aerospace", "patent_name": "howmet aerospace", "continent": "North America", "local_logo": null, "aliases": "Howmet Aerospace Inc; Howmet Corp", "permid_links": [{"text": 5001815447, "url": "https://permid.org/1-5001815447"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:HWM", "url": "https://www.google.com/finance/quote/hwm:nyse"}], "market_full": [{"text": "ASE:HWM", "url": "https://www.google.com/finance/quote/ase:hwm"}, {"text": "NYQ:HWM", "url": "https://www.google.com/finance/quote/hwm:nyq"}, {"text": "NYSE:HWM", "url": "https://www.google.com/finance/quote/hwm:nyse"}, {"text": "DUS:48Z", "url": "https://www.google.com/finance/quote/48z:dus"}, {"text": "SGO:HWM", "url": "https://www.google.com/finance/quote/hwm:sgo"}, {"text": "DEU:48Z", "url": "https://www.google.com/finance/quote/48z:deu"}, {"text": "FRA:48Z", "url": "https://www.google.com/finance/quote/48z:fra"}, {"text": "VIE:HWM", "url": "https://www.google.com/finance/quote/hwm:vie"}, {"text": "BER:48Z", "url": "https://www.google.com/finance/quote/48z:ber"}, {"text": "MEX:HWM*", "url": "https://www.google.com/finance/quote/hwm*:mex"}, {"text": "MOEX:HWM-RM", "url": "https://www.google.com/finance/quote/hwm-rm:moex"}, {"text": "LSE:0TCU", "url": "https://www.google.com/finance/quote/0tcu:lse"}, {"text": "GER:48ZX", "url": "https://www.google.com/finance/quote/48zx:ger"}, {"text": "MUN:48Z", "url": "https://www.google.com/finance/quote/48z:mun"}, {"text": "STU:48Z", "url": "https://www.google.com/finance/quote/48z:stu"}, {"text": "SAO:ARNC34", "url": "https://www.google.com/finance/quote/arnc34:sao"}, {"text": "BUE:HWM3", "url": "https://www.google.com/finance/quote/bue:hwm3"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 5, 3, 7, 3, 1, 0], "total": 20, "isTopResearch": false, "rank": 809, "fortune500_rank": 286}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 89, "rank": 882, "fortune500_rank": 429}, "ai_jobs": {"counts": null, "total": 8, "rank": 908, "fortune500_rank": 424}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Howmet Aerospace Inc., (formerly Arconic Inc.) is an American aerospace company based in Pittsburgh, Pennsylvania. The company manufactures components for jet engines, fasteners and titanium structures for aerospace applications, and forged aluminum wheels for heavy trucks.", "wikipedia_link": "https://en.wikipedia.org/wiki/Howmet_Aerospace", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2312, "country": "Bermuda", "website": "https://www.everestre.com/", "crunchbase": {"text": "037c8908-f000-4cf7-b7d3-2868db6a1703", "url": "https://www.crunchbase.com/organization/everest-reinsurance-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/everest-reinsurance"], "stage": "Mature", "name": "Everest Re Group Ltd.", "patent_name": "everest re group ltd.", "continent": "North America", "local_logo": "everest_re_group_ltd.png", "aliases": "Everest Re Group; Everest Reinsurance; Everest Reinsurance Company", "permid_links": [{"text": 4295911983, "url": "https://permid.org/1-4295911983"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:RE", "url": "https://www.google.com/finance/quote/nyse:re"}], "market_full": [{"text": "MEX:REN", "url": "https://www.google.com/finance/quote/mex:ren"}, {"text": "NYSE:RE", "url": "https://www.google.com/finance/quote/nyse:re"}, {"text": "SAO:E1VE34", "url": "https://www.google.com/finance/quote/e1ve34:sao"}, {"text": "LSE:0U96", "url": "https://www.google.com/finance/quote/0u96:lse"}, {"text": "DUS:ERE", "url": "https://www.google.com/finance/quote/dus:ere"}, {"text": "ASE:RE", "url": "https://www.google.com/finance/quote/ase:re"}, {"text": "FRA:ERE", "url": "https://www.google.com/finance/quote/ere:fra"}, {"text": "NYQ:RE", "url": "https://www.google.com/finance/quote/nyq:re"}, {"text": "DEU:RE", "url": "https://www.google.com/finance/quote/deu:re"}], "crunchbase_description": "Everest is a world leader in property and casualty reinsurance and insurance, offering innovative products.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 89, "rank": 882, "fortune500_rank": 429}, "ai_jobs": {"counts": null, "total": 8, "rank": 908, "fortune500_rank": 424}}, "sector": "Financials", "business_sector": "Insurance", "wikipedia_description": "Everest Re Group is a reinsurance company based in Hamilton, Bermuda.", "wikipedia_link": "https://en.wikipedia.org/wiki/Everest_Re", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2098, "country": "Ireland", "website": "https://www.crh.com/", "crunchbase": {"text": " 461bd6a8-3fef-a14c-ec85-f659510b9a2a ", "url": " https://www.crunchbase.com/organization/crh "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/crh"], "stage": "Mature", "name": "Crh", "patent_name": "CRH", "continent": "Europe", "local_logo": null, "aliases": "CRH; Crh Plc", "permid_links": [{"text": 4295874867, "url": "https://permid.org/1-4295874867"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CRH", "url": "https://www.google.com/finance/quote/CRH:NYSE"}], "market_full": [{"text": "ISE:DD8A", "url": "https://www.google.com/finance/quote/DD8A:ISE"}, {"text": "DEU:XCRA", "url": "https://www.google.com/finance/quote/DEU:XCRA"}, {"text": "MEX:CRHN", "url": "https://www.google.com/finance/quote/CRHN:MEX"}, {"text": "LSE:0A2D", "url": "https://www.google.com/finance/quote/0A2D:LSE"}, {"text": "BER:CRG", "url": "https://www.google.com/finance/quote/BER:CRG"}, {"text": "GER:CRGX", "url": "https://www.google.com/finance/quote/CRGX:GER"}, {"text": "ISE:DD8B", "url": "https://www.google.com/finance/quote/DD8B:ISE"}, {"text": "LSE:0I4D", "url": "https://www.google.com/finance/quote/0I4D:LSE"}, {"text": "EBT:CRHI", "url": "https://www.google.com/finance/quote/CRHI:EBT"}, {"text": "PKC:CRHCF", "url": "https://www.google.com/finance/quote/CRHCF:PKC"}, {"text": "STU:XCRA", "url": "https://www.google.com/finance/quote/STU:XCRA"}, {"text": "MUN:CRG", "url": "https://www.google.com/finance/quote/CRG:MUN"}, {"text": "HAN:CRG", "url": "https://www.google.com/finance/quote/CRG:HAN"}, {"text": "DUS:CRG", "url": "https://www.google.com/finance/quote/CRG:DUS"}, {"text": "STU:CRG", "url": "https://www.google.com/finance/quote/CRG:STU"}, {"text": "NYSE:CRH", "url": "https://www.google.com/finance/quote/CRH:NYSE"}, {"text": "ISE:CRG", "url": "https://www.google.com/finance/quote/CRG:ISE"}, {"text": "LSE:97GM", "url": "https://www.google.com/finance/quote/97GM:LSE"}, {"text": "FRA:CRG", "url": "https://www.google.com/finance/quote/CRG:FRA"}, {"text": "FRA:XCRA", "url": "https://www.google.com/finance/quote/FRA:XCRA"}, {"text": "LSE:CRH", "url": "https://www.google.com/finance/quote/CRH:LSE"}, {"text": "NYQ:CRH", "url": "https://www.google.com/finance/quote/CRH:NYQ"}, {"text": "DEU:CRH", "url": "https://www.google.com/finance/quote/CRH:DEU"}, {"text": "HAM:CRG", "url": "https://www.google.com/finance/quote/CRG:HAM"}, {"text": "BRN:XCRA", "url": "https://www.google.com/finance/quote/BRN:XCRA"}, {"text": "SAO:CRHP34", "url": "https://www.google.com/finance/quote/CRHP34:SAO"}, {"text": "ASE:CRH", "url": "https://www.google.com/finance/quote/ASE:CRH"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 89, "rank": 882, "sp500_rank": 314}, "ai_jobs": {"counts": null, "total": 8, "rank": 908, "sp500_rank": 311}}, "sector": "Basic Materials", "business_sector": "Mineral Resources"}, {"cset_id": 2902, "country": "United States", "website": "www.odysseyconsult.com/n", "crunchbase": {"text": "f2c060e0-8503-4cba-8f19-72568bf62079", "url": "https://www.crunchbase.com/organization/odyssey-systems"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/odysseyconsult"], "stage": "Unknown", "name": "Odyssey Systems Consulting Group Ltd", "patent_name": "odyssey systems consulting group ltd", "continent": "North America", "local_logo": "odyssey_systems_consulting_group_ltd.png", "aliases": "Odyssey; Odyssey Systems; Odyssey Systems Consulting Group, Ltd", "permid_links": [{"text": 4297565982, "url": "https://permid.org/1-4297565982"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Odyssey Systems is a consultancy that offers acquisition, project management, medical research, technical support and training.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 616, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 201, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 2366, "referenced_count": 1}, {"ref_CSET_id": 789, "referenced_count": 1}], "tasks": [{"referent": "3d_medical_imaging_segmentation", "task_count": 1}], "methods": [{"referent": "ae", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 833}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 1.0, 0, 0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 88, "rank": 885}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Odyssey Systems\u2019 portfolio of successful projects demonstrates our ability to efficiently plan, staff, and manage efforts of all scopes and sizes. Our employees provide tailored functional expertise in technology, engineering, and management principles. We offer vast experience in acquisition strategy development and document generation; source selection support; cost, schedule, and performance management; systems engineering and analysis; risk management; cost/benefit and earned value analysis; computer-based training development; communication planning and operations; and lifecycle sustainment and product support. Odyssey also offers research and acquisition support services to the DoD medical domain, leading DoD medical mission support through several prime services contracts.", "company_site_link": "https://www.odysseyconsult.com/about-odyssey-systems/", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 439, "country": "United States", "website": "http://www.exiger.com", "crunchbase": {"text": "3e02f9ed-a492-a830-59b9-66cb75af772a", "url": "https://www.crunchbase.com/organization/exiger"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/exiger"], "stage": "Growth", "name": "Exiger", "patent_name": "exiger", "continent": "North America", "local_logo": "exiger.png", "aliases": "Exiger LLC", "permid_links": [{"text": 5044174528, "url": "https://permid.org/1-5044174528"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Exiger is revolutionizing third-party and supply chain management through its software and tech-enabled solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 87, "rank": 886}, "ai_jobs": {"counts": null, "total": 17, "rank": 728}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Launched in 2013, Exiger is transforming the fight against fraud and financial crime. Our combination of award-winning, purpose-built technology and practical expertise is helping companies manage the demands of today\u2019s increasingly complex regulatory and risk environment.", "company_site_link": "https://www.exiger.com/about/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 277, "country": "China", "website": "https://www.webank.com/en/", "crunchbase": {"text": "670b5cd6-18fa-e8dd-f455-42729732402f", "url": "https://www.crunchbase.com/organization/webank"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/webank\u5fae\u4f17\u94f6\u884c"], "stage": "Mature", "name": "WeBank", "patent_name": "webank", "continent": "Asia", "local_logo": "webank.png", "aliases": "Webank Co., Ltd; Weizhong Yinhang; \u5fae\u4f17\u94f6\u884c; \u6df1\u5733\u524d\u6d77\u5fae\u4f17\u94f6\u884c\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5044200042, "url": "https://permid.org/1-5044200042"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "WeBank is a private commercial bank with an online focus that utilizes facial recognition security software.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Language model", "field_count": 4}, {"field_name": "Transfer of learning", "field_count": 4}, {"field_name": "Topic model", "field_count": 3}, {"field_name": "Question answering", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Network model", "field_count": 1}, {"field_name": "Discriminative model", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Quantization (signal processing)", "field_count": 1}, {"field_name": "Speech processing", "field_count": 1}], "clusters": [{"cluster_id": 1149, "cluster_count": 24}, {"cluster_id": 86975, "cluster_count": 4}, {"cluster_id": 5364, "cluster_count": 2}, {"cluster_id": 148, "cluster_count": 2}, {"cluster_id": 1989, "cluster_count": 2}, {"cluster_id": 1422, "cluster_count": 2}, {"cluster_id": 916, "cluster_count": 2}, {"cluster_id": 36831, "cluster_count": 2}, {"cluster_id": 85841, "cluster_count": 2}, {"cluster_id": 58382, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 193}, {"ref_CSET_id": 163, "referenced_count": 120}, {"ref_CSET_id": 277, "referenced_count": 64}, {"ref_CSET_id": 115, "referenced_count": 58}, {"ref_CSET_id": 87, "referenced_count": 39}, {"ref_CSET_id": 245, "referenced_count": 22}, {"ref_CSET_id": 184, "referenced_count": 12}, {"ref_CSET_id": 37, "referenced_count": 11}, {"ref_CSET_id": 3131, "referenced_count": 10}, {"ref_CSET_id": 21, "referenced_count": 9}], "tasks": [{"referent": "federated_learning", "task_count": 15}, {"referent": "speech_recognition", "task_count": 7}, {"referent": "privacy_preserving_deep_learning", "task_count": 6}, {"referent": "collaborative_filtering", "task_count": 5}, {"referent": "recommendation_systems", "task_count": 5}, {"referent": "classification_tasks", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "classification", "task_count": 5}, {"referent": "computer_vision", "task_count": 4}, {"referent": "image_recognition", "task_count": 3}], "methods": [{"referent": "vqa_models", "method_count": 12}, {"referent": "recurrent_neural_networks", "method_count": 11}, {"referent": "3d_representations", "method_count": 7}, {"referent": "meta_learning_algorithms", "method_count": 5}, {"referent": "q_learning", "method_count": 5}, {"referent": "deep_belief_network", "method_count": 4}, {"referent": "ggs_nns", "method_count": 4}, {"referent": "double_q_learning", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 4, 3, 31, 71, 46, 36, 0], "total": 192, "isTopResearch": false, "rank": 414}, "ai_publications": {"counts": [0, 0, 0, 1, 1, 2, 20, 40, 23, 10, 0], "total": 97, "isTopResearch": false, "rank": 121}, "ai_publications_growth": {"counts": [], "total": 0.3260869565217395, "isTopResearch": false, "rank": 197}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 9, 9, 3, 3, 0], "total": 25, "isTopResearch": false, "rank": 71}, "citation_counts": {"counts": [0, 0, 0, 0, 8, 28, 110, 439, 828, 779, 38], "total": 2230, "isTopResearch": false, "rank": 124}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 5, 5, 3, 1, 0], "total": 14, "isTopResearch": true, "rank": 171}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 1, 6, 7, 2, 0], "total": 17, "isTopResearch": true, "rank": 71}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 8.0, 14.0, 5.5, 10.975, 36.0, 77.9, 0], "total": 22.989690721649485, "isTopResearch": false, "rank": 268}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 3, 20, 97, 291, 118, 16, 0], "total": 545, "table": null, "rank": 54}, "ai_patents_growth": {"counts": [], "total": 383.88888888888886, "table": null, "rank": 18}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 30, 200, 970, 2910, 1180, 160, 0], "total": 5450, "table": null, "rank": 54}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 8, 2, 0, 0], "total": 11, "table": null, "rank": 78}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 5, 8, 52, 15, 2, 0], "total": 82, "table": "industry", "rank": 16}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 2, 4, 0, 0, 0], "total": 6, "table": null, "rank": 19}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], "total": 4, "table": null, "rank": 20}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 2, 12, 23, 113, 46, 6, 0], "total": 202, "table": "industry", "rank": 41}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 2, 15, 46, 13, 2, 0], "total": 79, "table": "industry", "rank": 16}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 8, 19, 3, 1, 0], "total": 32, "table": "industry", "rank": 103}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 0, 0, 0, 1, 5, 21, 50, 10, 1, 0], "total": 88, "table": "industry", "rank": 33}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 2, 2, 0], "total": 8, "table": "application", "rank": 90}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "total": 4, "table": null, "rank": 137}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 3, 13, 24, 7, 1, 0], "total": 49, "table": "application", "rank": 35}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 4, 22, 111, 44, 5, 0], "total": 186, "table": "application", "rank": 45}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 6, 7, 0, 0], "total": 13, "table": "application", "rank": 96}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 1, 0, 0], "total": 5, "table": "application", "rank": 170}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 87, "rank": 886}, "ai_jobs": {"counts": null, "total": 16, "rank": 738}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "WeBank (Chinese: \u5fae\u4f17\u94f6\u884c) is a private Chinese neobank, founded by Tencent, Baiyeyuan, Liye Group, and other companies. Tencent is the single largest shareholder, with an estimated 30 percent ownership share. WeBank's estimated valuation is approximately US$21 billion. Its CEO and Chairman is David Ku.", "wikipedia_link": "https://en.wikipedia.org/wiki/WeBank_(China)", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1823, "country": "China", "website": "https://www.cnooc.com.cn/", "crunchbase": {"text": " 51ed895d-b4eb-62e0-6d5f-4a16cd6ea324", "url": "https://www.crunchbase.com/organization/cnooc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cnooc-international"], "stage": "Unknown", "name": "China National Offshore Oil", "patent_name": "China National Offshore Oil", "continent": "Asia", "local_logo": null, "aliases": "China National Offshore Oil; China National Offshore Oil Corporation; Cnooc; \u4e2d\u56fd\u6d77\u6d0b\u77f3\u6cb9\u96c6\u56e2\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5000062533, "url": "https://permid.org/1-5000062533"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 4}, {"field_name": "Cluster analysis", "field_count": 3}, {"field_name": "Wavelet", "field_count": 3}, {"field_name": "Ensemble learning", "field_count": 2}, {"field_name": "Filter (signal processing)", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Intrusion detection system", "field_count": 2}, {"field_name": "Independent component analysis", "field_count": 1}], "clusters": [{"cluster_id": 7515, "cluster_count": 7}, {"cluster_id": 13207, "cluster_count": 3}, {"cluster_id": 25755, "cluster_count": 3}, {"cluster_id": 9145, "cluster_count": 3}, {"cluster_id": 37564, "cluster_count": 2}, {"cluster_id": 26697, "cluster_count": 2}, {"cluster_id": 17325, "cluster_count": 2}, {"cluster_id": 54676, "cluster_count": 2}, {"cluster_id": 49423, "cluster_count": 2}, {"cluster_id": 14379, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 32}, {"ref_CSET_id": 163, "referenced_count": 19}, {"ref_CSET_id": 87, "referenced_count": 10}, {"ref_CSET_id": 676, "referenced_count": 7}, {"ref_CSET_id": 1823, "referenced_count": 7}, {"ref_CSET_id": 1495, "referenced_count": 6}, {"ref_CSET_id": 1789, "referenced_count": 5}, {"ref_CSET_id": 1790, "referenced_count": 4}, {"ref_CSET_id": 682, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 4}], "tasks": [{"referent": "classification", "task_count": 11}, {"referent": "seismic_analysis", "task_count": 7}, {"referent": "portfolio_optimization", "task_count": 6}, {"referent": "steering_control", "task_count": 5}, {"referent": "developmental_learning", "task_count": 4}, {"referent": "fault_detection", "task_count": 4}, {"referent": "clustering", "task_count": 3}, {"referent": "real_time_object_detection", "task_count": 3}, {"referent": "image_processing", "task_count": 3}, {"referent": "gan_inversion", "task_count": 3}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 13}, {"referent": "double_q_learning", "method_count": 11}, {"referent": "symbolic_deep_learning", "method_count": 8}, {"referent": "cgnn", "method_count": 8}, {"referent": "griffin_lim_algorithm", "method_count": 7}, {"referent": "convolutional_neural_networks", "method_count": 6}, {"referent": "vqa_models", "method_count": 6}, {"referent": "optimization", "method_count": 5}, {"referent": "1d_cnn", "method_count": 4}, {"referent": "cdcc_net", "method_count": 4}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [960, 1039, 1056, 912, 899, 920, 1029, 1066, 1178, 649, 24], "total": 9732, "isTopResearch": false, "rank": 37, "sp500_rank": 33}, "ai_publications": {"counts": [7, 8, 8, 5, 5, 8, 10, 2, 24, 14, 0], "total": 91, "isTopResearch": false, "rank": 129, "sp500_rank": 88}, "ai_publications_growth": {"counts": [], "total": 326.11111111111114, "isTopResearch": false, "rank": 2, "sp500_rank": 1}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [11, 16, 24, 26, 33, 50, 66, 82, 104, 152, 12], "total": 576, "isTopResearch": false, "rank": 251, "sp500_rank": 134}, "cv_pubs": {"counts": [0, 0, 2, 0, 0, 1, 1, 0, 3, 3, 0], "total": 10, "isTopResearch": true, "rank": 202, "sp500_rank": 115}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [1, 1, 1, 0, 0, 2, 0, 0, 0, 1, 0], "total": 6, "isTopResearch": true, "rank": 156, "sp500_rank": 101}, "citations_per_article": {"counts": [1.5714285714285714, 2.0, 3.0, 5.2, 6.6, 6.25, 6.6, 41.0, 4.333333333333333, 10.857142857142858, 0], "total": 6.329670329670329, "isTopResearch": false, "rank": 671, "sp500_rank": 266}}, "patents": {"ai_patents": {"counts": [3, 3, 3, 3, 5, 9, 10, 31, 41, 22, 0], "total": 130, "table": null, "rank": 139, "sp500_rank": 90}, "ai_patents_growth": {"counts": [], "total": 100.37037037037037, "table": null, "rank": 115, "sp500_rank": 56}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [30, 30, 30, 30, 50, 90, 100, 310, 410, 220, 0], "total": 1300, "table": null, "rank": 139, "sp500_rank": 90}, "Physical_Sciences_and_Engineering": {"counts": [0, 2, 1, 0, 0, 5, 3, 7, 10, 1, 0], "total": 29, "table": "industry", "rank": 21, "sp500_rank": 16}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 1, 1, 1, 2, 2, 9, 3, 0], "total": 19, "table": "industry", "rank": 10, "sp500_rank": 9}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 1, 2, 2, 1, 8, 24, 4, 0], "total": 43, "table": "industry", "rank": 130, "sp500_rank": 80}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 2, 4, 8, 5, 0], "total": 21, "table": "industry", "rank": 99, "sp500_rank": 70}, "Energy_Management": {"counts": [1, 0, 0, 0, 0, 1, 0, 0, 4, 3, 0], "total": 9, "table": "industry", "rank": 53, "sp500_rank": 50}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": "application", "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 2, 2, 4, 8, 5, 0], "total": 21, "table": "application", "rank": 78, "sp500_rank": 58}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [1, 0, 0, 1, 0, 0, 1, 10, 12, 2, 0], "total": 27, "table": "application", "rank": 160, "sp500_rank": 96}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 5, 14, 1, 0], "total": 20, "table": "application", "rank": 65, "sp500_rank": 51}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 2, 2, 5, 13, 6, 3, 0], "total": 32, "table": "application", "rank": 59, "sp500_rank": 45}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 87, "rank": 886, "sp500_rank": 315}, "ai_jobs": {"counts": null, "total": 13, "rank": 790, "sp500_rank": 288}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 2445, "country": "United States", "website": "http://www.omnicomgroup.com/", "crunchbase": {"text": "0fe46467-2c30-bbdc-683e-54d3add6603e", "url": "https://www.crunchbase.com/organization/omnicom-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/omnicom"], "stage": "Mature", "name": "Omnicom Group", "patent_name": "omnicom group", "continent": "North America", "local_logo": "omnicom_group.png", "aliases": "Omnicom; Omnicom Group (Nyse: Omc); Omnicom Group Inc; Omnicom Group Inc. (Nyse: Omc)", "permid_links": [{"text": 4295904652, "url": "https://permid.org/1-4295904652"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:OMC", "url": "https://www.google.com/finance/quote/nyse:omc"}], "market_full": [{"text": "NYQ:OMC", "url": "https://www.google.com/finance/quote/nyq:omc"}, {"text": "MUN:OCN", "url": "https://www.google.com/finance/quote/mun:ocn"}, {"text": "ASE:OMC", "url": "https://www.google.com/finance/quote/ase:omc"}, {"text": "LSE:0KBK", "url": "https://www.google.com/finance/quote/0kbk:lse"}, {"text": "BER:OCN", "url": "https://www.google.com/finance/quote/ber:ocn"}, {"text": "SAO:O1MC34", "url": "https://www.google.com/finance/quote/o1mc34:sao"}, {"text": "MCX:OMC-RM", "url": "https://www.google.com/finance/quote/mcx:omc-rm"}, {"text": "DEU:OMC", "url": "https://www.google.com/finance/quote/deu:omc"}, {"text": "STU:OCN", "url": "https://www.google.com/finance/quote/ocn:stu"}, {"text": "DUS:OCN", "url": "https://www.google.com/finance/quote/dus:ocn"}, {"text": "FRA:OCN", "url": "https://www.google.com/finance/quote/fra:ocn"}, {"text": "NYSE:OMC", "url": "https://www.google.com/finance/quote/nyse:omc"}, {"text": "BRN:OCN", "url": "https://www.google.com/finance/quote/brn:ocn"}, {"text": "GER:OCNX", "url": "https://www.google.com/finance/quote/ger:ocnx"}], "crunchbase_description": "Omnicom Group provides advertising and marketing communications services for their clients.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 87, "rank": 886, "fortune500_rank": 431}, "ai_jobs": {"counts": null, "total": 9, "rank": 880, "fortune500_rank": 420}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Omnicom Group Inc. is an American global media, marketing and corporate communications holding company, headquartered in New York City.", "wikipedia_link": "https://en.wikipedia.org/wiki/Omnicom_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1615, "country": "United States", "website": "http://pindrop.com", "crunchbase": {"text": "c8499925-287c-ff4c-296e-d2c4726de808", "url": "https://www.crunchbase.com/organization/pindrop-security"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pindrop"], "stage": "Mature", "name": "Pindrop", "patent_name": "pindrop", "continent": "North America", "local_logo": "pindrop.png", "aliases": "Pindrop Security", "permid_links": [{"text": 5037430444, "url": "https://permid.org/1-5037430444"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Pindrop uses AI-based IVR authentication and anti-fraud solutions to increase efficiency in call centers and stop fraudulent transactions.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Speaker recognition", "field_count": 2}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "NIST", "field_count": 1}, {"field_name": "Speech processing", "field_count": 1}, {"field_name": "Vocal tract", "field_count": 1}], "clusters": [{"cluster_id": 37500, "cluster_count": 3}, {"cluster_id": 21538, "cluster_count": 2}, {"cluster_id": 222, "cluster_count": 1}, {"cluster_id": 12235, "cluster_count": 1}, {"cluster_id": 2888, "cluster_count": 1}, {"cluster_id": 9233, "cluster_count": 1}, {"cluster_id": 8795, "cluster_count": 1}, {"cluster_id": 46697, "cluster_count": 1}, {"cluster_id": 10811, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 13}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 3131, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 112, "referenced_count": 2}, {"ref_CSET_id": 1615, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 27, "referenced_count": 1}, {"ref_CSET_id": 456, "referenced_count": 1}], "tasks": [{"referent": "speech_recognition", "task_count": 2}, {"referent": "speaker_verification", "task_count": 2}, {"referent": "activity_detection", "task_count": 2}, {"referent": "parameter_estimation", "task_count": 1}, {"referent": "svbrdf_estimation", "task_count": 1}, {"referent": "speech_dereverberation", "task_count": 1}, {"referent": "speaker_recognition", "task_count": 1}, {"referent": "voice_anti_spoofing", "task_count": 1}, {"referent": "binary_classification", "task_count": 1}, {"referent": "deception_detection", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 2}, {"referent": "mckernel", "method_count": 1}, {"referent": "value_function_estimation", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "nice", "method_count": 1}, {"referent": "cgnn", "method_count": 1}, {"referent": "sabn", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 2, 1, 3, 6, 5, 4, 1, 5, 4, 0], "total": 31, "isTopResearch": false, "rank": 710}, "ai_publications": {"counts": [0, 1, 0, 3, 1, 0, 3, 1, 3, 0, 0], "total": 12, "isTopResearch": false, "rank": 384}, "ai_publications_growth": {"counts": [], "total": 11.111111111111105, "isTopResearch": false, "rank": 153}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 2, 8, 46, 40, 50, 37, 28, 3], "total": 214, "isTopResearch": false, "rank": 384}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0.0, 0, 0.6666666666666666, 8.0, 0, 13.333333333333334, 50.0, 12.333333333333334, 0, 0], "total": 17.833333333333332, "isTopResearch": false, "rank": 351}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 10, 2, 2, 5, 10, 0, 0, 0], "total": 30, "table": null, "rank": 271}, "ai_patents_growth": {"counts": [], "total": 83.33333333333333, "table": null, "rank": 136}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 100, 20, 20, 50, 100, 0, 0, 0], "total": 300, "table": null, "rank": 271}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 2, 1, 0, 0, 3, 0, 0, 0], "total": 7, "table": "industry", "rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 3, 1, 0, 1, 3, 0, 0, 0], "total": 9, "table": "industry", "rank": 268}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 1, 3, 1, 1, 4, 3, 0, 0, 0], "total": 13, "table": "industry", "rank": 153}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 8, 2, 2, 4, 6, 0, 0, 0], "total": 22, "table": "application", "rank": 49}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 87, "rank": 886}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Pindrop Security is an American information security company that provides risk scoring for phone calls to detect fraud and authenticate callers. Pindrop Security technology analyzes 147 different features of a phone call that helps identify the uniqueness of a device and attaches it to a caller. In 2015, Pindrop screened more than 360 million calls", "wikipedia_link": "https://en.wikipedia.org/wiki/Pindrop_Security", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 3133, "country": "United States", "website": "https://www.pfgc.com/", "crunchbase": {"text": " 5595b382-6b01-d45d-2adb-4fc038576525 ", "url": " https://www.crunchbase.com/organization/performance-food-group "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/performancefoodgroup"], "stage": "Mature", "name": "Performance Food Group", "patent_name": "Performance Food Group", "continent": "North America", "local_logo": null, "aliases": "Performance Food Group; Performance Food Group Company", "permid_links": [{"text": 5043951479, "url": "https://permid.org/1-5043951479"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PFGC", "url": "https://www.google.com/finance/quote/NYSE:PFGC"}], "market_full": [{"text": "ASE:PFGC", "url": "https://www.google.com/finance/quote/ASE:PFGC"}, {"text": "MCX:PFGC-RM", "url": "https://www.google.com/finance/quote/MCX:PFGC-RM"}, {"text": "STU:P5F", "url": "https://www.google.com/finance/quote/P5F:STU"}, {"text": "NYQ:PFGC", "url": "https://www.google.com/finance/quote/NYQ:PFGC"}, {"text": "NYSE:PFGC", "url": "https://www.google.com/finance/quote/NYSE:PFGC"}, {"text": "DEU:P5F", "url": "https://www.google.com/finance/quote/DEU:P5F"}, {"text": "DUS:P5F", "url": "https://www.google.com/finance/quote/DUS:P5F"}, {"text": "FRA:P5F", "url": "https://www.google.com/finance/quote/FRA:P5F"}, {"text": "BRN:P5F", "url": "https://www.google.com/finance/quote/BRN:P5F"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148, "sp500_rank": 428}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 87, "rank": 886, "sp500_rank": 315}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "sp500_rank": 335}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 354, "country": "United Kingdom", "website": "http://benevolent.ai", "crunchbase": {"text": "b0ba271d-e91d-0800-65b9-216f98a7b0c7", "url": "https://www.crunchbase.com/organization/benevolent-ai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/benevolentai"], "stage": "Unknown", "name": "BenevolentAI", "patent_name": "benevolentai", "continent": "Europe", "local_logo": "benevolentai.png", "aliases": "Benevolentai Limited; Benevolentai Technology Ltd; Stratified Medical", "permid_links": [{"text": 5065327374, "url": "https://permid.org/1-5065327374"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "BenevolentAI is a leading, clinical-stage AI-enabled drug discovery company.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Language model", "field_count": 3}, {"field_name": "Deep learning", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Classifier (UML)", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Knowledge base", "field_count": 1}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Parsing", "field_count": 1}, {"field_name": "Big data", "field_count": 1}], "clusters": [{"cluster_id": 23169, "cluster_count": 5}, {"cluster_id": 11493, "cluster_count": 2}, {"cluster_id": 16472, "cluster_count": 2}, {"cluster_id": 11991, "cluster_count": 1}, {"cluster_id": 8473, "cluster_count": 1}, {"cluster_id": 1386, "cluster_count": 1}, {"cluster_id": 86119, "cluster_count": 1}, {"cluster_id": 58160, "cluster_count": 1}, {"cluster_id": 15018, "cluster_count": 1}, {"cluster_id": 17309, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 45}, {"ref_CSET_id": 163, "referenced_count": 12}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 341, "referenced_count": 7}, {"ref_CSET_id": 354, "referenced_count": 7}, {"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 789, "referenced_count": 4}, {"ref_CSET_id": 319, "referenced_count": 4}, {"ref_CSET_id": 1126, "referenced_count": 3}, {"ref_CSET_id": 787, "referenced_count": 3}], "tasks": [{"referent": "drug_discovery", "task_count": 8}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "natural_language_processing", "task_count": 2}, {"referent": "medical_relation_extraction", "task_count": 2}, {"referent": "image_interpretation", "task_count": 2}, {"referent": "commonsense_knowledge_base_construction", "task_count": 1}, {"referent": "summarization", "task_count": 1}, {"referent": "knowledge_base_completion", "task_count": 1}, {"referent": "knowledge_base", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 4}, {"referent": "language_models", "method_count": 3}, {"referent": "bp_transformer", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "bert", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "representation_learning", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "deepwalk", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 4, 6, 4, 9, 15, 21, 16, 13, 0], "total": 88, "isTopResearch": false, "rank": 531}, "ai_publications": {"counts": [0, 0, 1, 0, 2, 3, 3, 7, 3, 0, 0], "total": 19, "isTopResearch": false, "rank": 311}, "ai_publications_growth": {"counts": [], "total": -7.936507936507932, "isTopResearch": false, "rank": 1251}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 1, 5, 15, 95, 249, 376, 492, 408, 12], "total": 1653, "isTopResearch": false, "rank": 153}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 1, 0, 0, 0, 2, 2, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 141}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 1.0, 0, 7.5, 31.666666666666668, 83.0, 53.714285714285715, 164.0, 0, 0], "total": 87.0, "isTopResearch": false, "rank": 43}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 9, 4, 4, 3, 0, 0], "total": 20, "table": null, "rank": 323}, "ai_patents_growth": {"counts": [], "total": -27.77777777777778, "table": null, "rank": 1478}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 90, 40, 40, 30, 0, 0], "total": 200, "table": null, "rank": 323}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 7, 2, 3, 2, 0, 0], "total": 14, "table": "industry", "rank": 64}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 4, 2, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 305}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 4, 1, 3, 2, 0, 0], "total": 10, "table": "application", "rank": 72}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 86, "rank": 892}, "ai_jobs": {"counts": null, "total": 28, "rank": 616}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Built on powerful data foundations and state of the art technology, the Benevolent Platform\u00ae empowers scientists to decipher the vast and complex code underlying human biology and find new ways to treat disease. Our knowledge graph is therapeutic area agnostic and our data fabric enables powerful synergies across the entire drug discovery and development process.", "company_site_link": "https://www.benevolent.com/what-we-do", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1896, "country": "Japan", "website": "https://www.mitsui.com/", "crunchbase": {"text": " 01e6c0e2-7ade-7764-6c1a-868f39b88444", "url": "https://www.crunchbase.com/organization/mitsui"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mitsui-&-co--ltd-"], "stage": "Mature", "name": "Mitsui", "patent_name": "Mitsui", "continent": "Asia", "local_logo": null, "aliases": "Mitsui; Mitsui & Co., Ltd; \u4e09\u4e95\u7269\u7523", "permid_links": [{"text": 4295880574, "url": "https://permid.org/1-4295880574"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:8031", "url": "https://www.google.com/finance/quote/8031:TYO"}], "market_full": [{"text": "FRA:MTS1", "url": "https://www.google.com/finance/quote/FRA:MTS1"}, {"text": "DEU:8031", "url": "https://www.google.com/finance/quote/8031:DEU"}, {"text": "STU:MTS1", "url": "https://www.google.com/finance/quote/MTS1:STU"}, {"text": "MUN:MTS1", "url": "https://www.google.com/finance/quote/MTS1:MUN"}, {"text": "TYO:8031", "url": "https://www.google.com/finance/quote/8031:TYO"}, {"text": "PKC:MITSF", "url": "https://www.google.com/finance/quote/MITSF:PKC"}, {"text": "PKC:MITSY", "url": "https://www.google.com/finance/quote/MITSY:PKC"}, {"text": "DUS:MTS1", "url": "https://www.google.com/finance/quote/DUS:MTS1"}, {"text": "BER:MTS1", "url": "https://www.google.com/finance/quote/BER:MTS1"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 1}, {"field_name": "Particle swarm optimization", "field_count": 1}], "clusters": [{"cluster_id": 4968, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "seismic_analysis", "task_count": 1}], "methods": [{"referent": "variational_optimization", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "autoencoder", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "residual_srm", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [3, 2, 4, 3, 3, 3, 3, 0, 2, 1, 0], "total": 24, "isTopResearch": false, "rank": 767, "sp500_rank": 363}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 2, 0, 1, 4, 1, 0, 0, 2, 1, 0], "total": 11, "isTopResearch": false, "rank": 754, "sp500_rank": 311}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2.0, 0, 0], "total": 11.0, "isTopResearch": false, "rank": 504, "sp500_rank": 179}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 86, "rank": 892, "sp500_rank": 317}, "ai_jobs": {"counts": null, "total": 7, "rank": 944, "sp500_rank": 319}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 2238, "country": "United States", "website": "https://www.brown-forman.com/", "crunchbase": {"text": "be342f3e-4de6-bc42-f17c-dd03d90ef799", "url": "https://www.crunchbase.com/organization/brown-forman-corp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/brown-forman"], "stage": "Mature", "name": "Brown-Forman Corp.", "patent_name": "brown-forman corp.", "continent": "North America", "local_logo": "brown-forman_corp.png", "aliases": "Brown-Forman; Brown-Forman And Company; Brown-Forman Corp; Brown-Forman Corporation", "permid_links": [{"text": 4295905786, "url": "https://permid.org/1-4295905786"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BF.A", "url": "https://www.google.com/finance/quote/bf.a:nyse"}, {"text": "NYSE:BF.B", "url": "https://www.google.com/finance/quote/bf.b:nyse"}], "market_full": [{"text": "STU:BF5B", "url": "https://www.google.com/finance/quote/bf5b:stu"}, {"text": "MUN:BF5B", "url": "https://www.google.com/finance/quote/bf5b:mun"}, {"text": "DEU:BFB", "url": "https://www.google.com/finance/quote/bfb:deu"}, {"text": "MUN:BF5A", "url": "https://www.google.com/finance/quote/bf5a:mun"}, {"text": "NYSE:BF.A", "url": "https://www.google.com/finance/quote/bf.a:nyse"}, {"text": "BER:BF5B", "url": "https://www.google.com/finance/quote/ber:bf5b"}, {"text": "SAO:B1FC34", "url": "https://www.google.com/finance/quote/b1fc34:sao"}, {"text": "ASE:BF.B", "url": "https://www.google.com/finance/quote/ase:bf.b"}, {"text": "NYQ:BF.B", "url": "https://www.google.com/finance/quote/bf.b:nyq"}, {"text": "MUN:0SGN", "url": "https://www.google.com/finance/quote/0sgn:mun"}, {"text": "ASE:BF.A", "url": "https://www.google.com/finance/quote/ase:bf.a"}, {"text": "MCX:BFB-RM", "url": "https://www.google.com/finance/quote/bfb-rm:mcx"}, {"text": "DUS:BF5B", "url": "https://www.google.com/finance/quote/bf5b:dus"}, {"text": "NYQ:BF.A", "url": "https://www.google.com/finance/quote/bf.a:nyq"}, {"text": "FRA:BF5B", "url": "https://www.google.com/finance/quote/bf5b:fra"}, {"text": "DEU:BF5A", "url": "https://www.google.com/finance/quote/bf5a:deu"}, {"text": "FRA:BF5A", "url": "https://www.google.com/finance/quote/bf5a:fra"}, {"text": "MUN:0HQ3", "url": "https://www.google.com/finance/quote/0hq3:mun"}, {"text": "NYSE:BF.B", "url": "https://www.google.com/finance/quote/bf.b:nyse"}, {"text": "BRN:BF5B", "url": "https://www.google.com/finance/quote/bf5b:brn"}], "crunchbase_description": "Brown-Forman is one of the American-owned spirits and wine \u0003companies.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 3, 0, 0, 1, 0, 0, 1, 0, 1], "total": 7, "isTopResearch": false, "rank": 1006, "fortune500_rank": 339}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 85, "rank": 894, "fortune500_rank": 432}, "ai_jobs": {"counts": null, "total": 31, "rank": 589, "fortune500_rank": 305}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages", "wikipedia_description": "The Brown\u2013Forman Corporation is one of the largest American-owned companies in the spirits and wine business. Based in Louisville, Kentucky, it manufactures several well known brands throughout the world, including Jack Daniel's, Early Times, Old Forester, Woodford Reserve, GlenDronach, BenRiach, Glenglassaugh, Finlandia, Herradura, Korbel, and Chambord. Brown\u2013Forman formerly owned Southern Comfort and Tuaca before selling them off in 2016.", "wikipedia_link": "https://en.wikipedia.org/wiki/Brown\u2013Forman", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2901, "country": "United States", "website": "https://axientcorp.com/", "crunchbase": {"text": "c92b6030-8d2f-4bad-b5fa-47dfba5863f5", "url": "https://www.crunchbase.com/organization/quantitech"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/axientcorp"], "stage": "Unknown", "name": "Axient", "patent_name": "Axient", "continent": "North America", "local_logo": "axient.png", "aliases": "Axient; Millennium Engineering And Integration, Llc; Quantitech; Quantitech Llc", "permid_links": [{"text": 4297631626, "url": "https://permid.org/1-4297631626"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "QuantiTech is a provider of technical engineering and management support services for the federal government.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 3, 4, 2, 1, 5, 0, 0], "total": 15, "isTopResearch": false, "rank": 859}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 85, "rank": 894}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1402, "country": "United States", "website": "http://www.beyond.ai/", "crunchbase": {"text": "3af3f638-2a80-e072-add0-8396e130d842", "url": "https://www.crunchbase.com/organization/beyond-limits"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/beyond-ai"], "stage": "Growth", "name": "Beyond Limits", "patent_name": "beyond limits", "continent": "North America", "local_logo": "beyond_limits.png", "aliases": "Beyond Limits Inc", "permid_links": [{"text": 5056396903, "url": "https://permid.org/1-5056396903"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Beyond Limits is an industrial and enterprise-grade AI technology company that focuses on energy, utilities and healthcare.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Uncertainty quantification", "field_count": 1}], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1], "total": 2, "isTopResearch": false, "rank": 881}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0, 0], "total": 2.0, "isTopResearch": false, "rank": 823}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 83, "rank": 896}, "ai_jobs": {"counts": null, "total": 22, "rank": 667}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our mission is to create automated solutions with human-like powers of reasoning that amplify the talents and capabilities of people. We specialize in complex challenges in extreme environments. Human beings haven\u2019t done many things more difficult than landing spacecraft on a planet 150 million miles away. It takes extreme trust in the AI to drive autonomous decision-making beyond the reach of human experts. We recognize that many companies on earth have similar needs for mission-critical systems with acute situational awareness in real-time, predictive analytics, domain expertise at the edge, and instantaneous human-like reasoning to make informed decisions and take meaningful action. This is why Beyond Limits was created.", "company_site_link": "https://www.beyond.ai/about/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2246, "country": "United States", "website": "http://www.carnivalcorp.com", "crunchbase": {"text": "ce58a80c-9c4d-7ba8-95f8-614f1af02802", "url": "https://www.crunchbase.com/organization/carnival-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/carnival-corporation"], "stage": "Mature", "name": "Carnival Corp.", "patent_name": "carnival corp.", "continent": "North America", "local_logo": "carnival_corp.png", "aliases": "Carnival Corp; Carnival Corporation; Carnival Corporation & Plc", "permid_links": [{"text": 4295903693, "url": "https://permid.org/1-4295903693"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CCL", "url": "https://www.google.com/finance/quote/ccl:nyse"}, {"text": "NYSE:CUK", "url": "https://www.google.com/finance/quote/cuk:nyse"}], "market_full": [{"text": "BER:CVC1", "url": "https://www.google.com/finance/quote/ber:cvc1"}, {"text": "NYSE:CCL", "url": "https://www.google.com/finance/quote/ccl:nyse"}, {"text": "FRA:POH1", "url": "https://www.google.com/finance/quote/fra:poh1"}, {"text": "ASE:CUK", "url": "https://www.google.com/finance/quote/ase:cuk"}, {"text": "HAN:CVC1", "url": "https://www.google.com/finance/quote/cvc1:han"}, {"text": "BER:POH1", "url": "https://www.google.com/finance/quote/ber:poh1"}, {"text": "MEX:CUKN", "url": "https://www.google.com/finance/quote/cukn:mex"}, {"text": "BRN:POH3", "url": "https://www.google.com/finance/quote/brn:poh3"}, {"text": "BRN:POH1", "url": "https://www.google.com/finance/quote/brn:poh1"}, {"text": "STU:CVC1", "url": "https://www.google.com/finance/quote/cvc1:stu"}, {"text": "DEU:CCL", "url": "https://www.google.com/finance/quote/ccl:deu"}, {"text": "SAO:C1CL34", "url": "https://www.google.com/finance/quote/c1cl34:sao"}, {"text": "MUN:POH1", "url": "https://www.google.com/finance/quote/mun:poh1"}, {"text": "MEX:CCLN", "url": "https://www.google.com/finance/quote/ccln:mex"}, {"text": "NYQ:CUK", "url": "https://www.google.com/finance/quote/cuk:nyq"}, {"text": "STU:POH1", "url": "https://www.google.com/finance/quote/poh1:stu"}, {"text": "STU:POH3", "url": "https://www.google.com/finance/quote/poh3:stu"}, {"text": "BER:POH3", "url": "https://www.google.com/finance/quote/ber:poh3"}, {"text": "DEU:CCLC", "url": "https://www.google.com/finance/quote/cclc:deu"}, {"text": "NYQ:CCL", "url": "https://www.google.com/finance/quote/ccl:nyq"}, {"text": "LSE:CCL", "url": "https://www.google.com/finance/quote/ccl:lse"}, {"text": "DEU:POH3", "url": "https://www.google.com/finance/quote/deu:poh3"}, {"text": "FRA:POH3", "url": "https://www.google.com/finance/quote/fra:poh3"}, {"text": "GER:POHX.A", "url": "https://www.google.com/finance/quote/ger:pohx.a"}, {"text": "BRN:CVC1", "url": "https://www.google.com/finance/quote/brn:cvc1"}, {"text": "DUS:POH1", "url": "https://www.google.com/finance/quote/dus:poh1"}, {"text": "MUN:CVC1", "url": "https://www.google.com/finance/quote/cvc1:mun"}, {"text": "LSE:0EV1", "url": "https://www.google.com/finance/quote/0ev1:lse"}, {"text": "MEX:CCL1N", "url": "https://www.google.com/finance/quote/ccl1n:mex"}, {"text": "PKC:CUK", "url": "https://www.google.com/finance/quote/cuk:pkc"}, {"text": "DUS:CVC1", "url": "https://www.google.com/finance/quote/cvc1:dus"}, {"text": "FRA:CVC1", "url": "https://www.google.com/finance/quote/cvc1:fra"}, {"text": "DUS:POH3", "url": "https://www.google.com/finance/quote/dus:poh3"}, {"text": "MUN:POH3", "url": "https://www.google.com/finance/quote/mun:poh3"}, {"text": "NYSE:CUK", "url": "https://www.google.com/finance/quote/cuk:nyse"}, {"text": "ASE:CCL", "url": "https://www.google.com/finance/quote/ase:ccl"}, {"text": "HAM:CVC1", "url": "https://www.google.com/finance/quote/cvc1:ham"}], "crunchbase_description": "Carnival Corporation is a cruise company providing travelers with vacation experiences.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Rough set", "field_count": 1}], "clusters": [{"cluster_id": 3300, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 1}, {"referent": "anomaly_detection", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 3, 1, 1, 1, 0], "total": 7, "isTopResearch": false, "rank": 1006, "fortune500_rank": 339}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 5, 3, 0], "total": 9, "isTopResearch": false, "rank": 774, "fortune500_rank": 208}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 9.0, "isTopResearch": false, "rank": 573, "fortune500_rank": 166}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 83, "rank": 896, "fortune500_rank": 433}, "ai_jobs": {"counts": null, "total": 9, "rank": 880, "fortune500_rank": 420}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Carnival Corporation & plc is a British-American cruise operator, currently the world's largest travel leisure company, with a combined fleet of over 100 vessels across 10 cruise line brands. A dual-listed company, Carnival is composed of two companies, Panama-incorporated US-headquartered Carnival Corporation and UK-based Carnival plc, which function as one entity. Carnival Corporation is listed on the New York Stock Exchange and Carnival plc is listed on the London Stock Exchange. Carnival is listed in both the S&P 500 and FTSE 250 indices.", "wikipedia_link": "https://en.wikipedia.org/wiki/Carnival_Corporation_%26_plc", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2951, "country": "United States", "website": "https://amyx.com/", "crunchbase": {"text": "d440c69e-be9b-4bea-8805-9ab9dce69b5d", "url": "https://www.crunchbase.com/organization/amyx-9b5d"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/amyx-inc-"], "stage": "Unknown", "name": "Amyx Inc", "patent_name": "amyx inc", "continent": "North America", "local_logo": "amyx_inc.png", "aliases": "Amyx; Amyx, Inc", "permid_links": [{"text": 5000365842, "url": "https://permid.org/1-5000365842"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Amyx is a provider of management and technical solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 83, "rank": 896}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Amyx, Inc. is a financially strong ISO 9001-2015, ISO 27001-2013, ISO 14001-2015 certified and CMMI-SVC Level 3 appraised small business founded in 1999 and headquartered in Reston, Virginia. Amyx\u2019s services are listed below. These services, backed by proven solutions, are delivered by a workforce of exceptional professionals, many of whom possess over 25 years of experience. Amyx personnel have strong core values rooted in public service and hold an intense belief that service to the Government can make a difference.", "company_site_link": "https://amyx.com/about-us/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2466, "country": "United States", "website": "http://www.pultegroupinc.com/", "crunchbase": {"text": "ff5f4de6-4ac2-9dc1-3cb7-0878128f5541", "url": "https://www.crunchbase.com/organization/pulte-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pultegroup"], "stage": "Mature", "name": "PulteGroup", "patent_name": "pultegroup", "continent": "North America", "local_logo": "pultegroup.png", "aliases": "Pulte Group; Pultegroup, Inc", "permid_links": [{"text": 4295904781, "url": "https://permid.org/1-4295904781"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PHM", "url": "https://www.google.com/finance/quote/nyse:phm"}], "market_full": [{"text": "BER:PU7", "url": "https://www.google.com/finance/quote/ber:pu7"}, {"text": "STU:PU7", "url": "https://www.google.com/finance/quote/pu7:stu"}, {"text": "ASE:PHM", "url": "https://www.google.com/finance/quote/ase:phm"}, {"text": "DEU:PHM", "url": "https://www.google.com/finance/quote/deu:phm"}, {"text": "LSE:0KS6", "url": "https://www.google.com/finance/quote/0ks6:lse"}, {"text": "DUS:PU7", "url": "https://www.google.com/finance/quote/dus:pu7"}, {"text": "MEX:PHM*", "url": "https://www.google.com/finance/quote/mex:phm*"}, {"text": "FRA:PU7", "url": "https://www.google.com/finance/quote/fra:pu7"}, {"text": "NYSE:PHM", "url": "https://www.google.com/finance/quote/nyse:phm"}, {"text": "MCX:PHM-RM", "url": "https://www.google.com/finance/quote/mcx:phm-rm"}, {"text": "NYQ:PHM", "url": "https://www.google.com/finance/quote/nyq:phm"}, {"text": "BRN:PU7", "url": "https://www.google.com/finance/quote/brn:pu7"}, {"text": "SAO:P1HM34", "url": "https://www.google.com/finance/quote/p1hm34:sao"}, {"text": "MUN:PU7", "url": "https://www.google.com/finance/quote/mun:pu7"}], "crunchbase_description": "PulteGroup is a residential construction company that develops homes.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 83, "rank": 896, "fortune500_rank": 433}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094, "fortune500_rank": 452}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "PulteGroup, Inc. (previously known as Pulte Homes) is a home construction company based in Atlanta, Georgia, United States. The company is the 3rd largest home construction company in the United States based on the number of homes closed.", "wikipedia_link": "https://en.wikipedia.org/wiki/PulteGroup", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2463, "country": "United States", "website": "https://www.prologis.com/", "crunchbase": {"text": "b23df10e-b6ac-40b0-f37e-46a40ec301ed", "url": "https://www.crunchbase.com/organization/prologis"}, "child_crunchbase": [{"text": "a5cfa01b-8a3a-c87c-d39f-e85e103103b2", "url": "https://www.crunchbase.com/organization/duke-realty"}], "linkedin": ["https://www.linkedin.com/company/duke-realty-corporation", "https://www.linkedin.com/company/prologis"], "stage": "Mature", "name": "Prologis", "patent_name": "prologis", "continent": "North America", "local_logo": "prologis.png", "aliases": "Prologis Ventures; Prologis, Inc", "permid_links": [{"text": 4295903900, "url": "https://permid.org/1-4295903900"}, {"text": 4295903263, "url": "https://permid.org/1-4295903263"}], "parent_info": null, "agg_child_info": "Duke Realty Corp", "unagg_child_info": null, "market_filt": [{"text": "NYSE:PLD", "url": "https://www.google.com/finance/quote/nyse:pld"}], "market_full": [{"text": "FRA:POJN", "url": "https://www.google.com/finance/quote/fra:pojn"}, {"text": "MUN:POJN", "url": "https://www.google.com/finance/quote/mun:pojn"}, {"text": "NYSE:PLD", "url": "https://www.google.com/finance/quote/nyse:pld"}, {"text": "LSE:0KOD", "url": "https://www.google.com/finance/quote/0kod:lse"}, {"text": "STU:POJN", "url": "https://www.google.com/finance/quote/pojn:stu"}, {"text": "BRN:POJN", "url": "https://www.google.com/finance/quote/brn:pojn"}, {"text": "BER:POJN", "url": "https://www.google.com/finance/quote/ber:pojn"}, {"text": "DEU:POJN", "url": "https://www.google.com/finance/quote/deu:pojn"}, {"text": "MEX:PLD*", "url": "https://www.google.com/finance/quote/mex:pld*"}, {"text": "NYQ:PLD", "url": "https://www.google.com/finance/quote/nyq:pld"}, {"text": "ASE:PLD", "url": "https://www.google.com/finance/quote/ase:pld"}, {"text": "HAN:POJN", "url": "https://www.google.com/finance/quote/han:pojn"}, {"text": "SAO:P1LD34", "url": "https://www.google.com/finance/quote/p1ld34:sao"}, {"text": "VIE:PRLD", "url": "https://www.google.com/finance/quote/prld:vie"}, {"text": "DUS:POJN", "url": "https://www.google.com/finance/quote/dus:pojn"}], "crunchbase_description": "Prologis is an owner, operator, and developer of industrial real estate, logistics, and supply chain.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 82, "rank": 900, "fortune500_rank": 435}, "ai_jobs": {"counts": null, "total": 25, "rank": 646, "fortune500_rank": 327}}, "sector": "Real Estate", "business_sector": "Real Estate", "wikipedia_description": "Prologis, Inc. is a real estate investment trust headquartered in San Francisco, California that invests in logistics facilities, with a focus on the consumption side of the global supply chain. The company was formed through the merger of AMB Property Corporation and ProLogis in June 2011, which made Prologis the largest industrial real estate company in the world. As of December 31, 2019, the company owned 3,840 buildings comprising 814 million square feet in 19 countries in North America, Latin America, Europe, and Asia. According to The Economist, its business strategy is focused on warehouses that are located close to huge urban areas where land is scarce. It serves over 5,000 tenants. Prologis created a venture capital arm in 2016.\nSince 2016, the company has published white papers and its own market research, including the quarterly Industrial Business Indicator and the annual Prologis Logistics Rent Index.", "wikipedia_link": "https://en.wikipedia.org/wiki/Prologis", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2456, "country": "Ireland", "website": "https://www.perrigo.com/", "crunchbase": {"text": "12560415-33e1-9d4c-7314-f71db33b8e5b", "url": "https://www.crunchbase.com/organization/perrigo"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/perrigo"], "stage": "Mature", "name": "Perrigo", "patent_name": "perrigo", "continent": "Europe", "local_logo": "perrigo.png", "aliases": "Perrigo Company Plc", "permid_links": [{"text": 5040203322, "url": "https://permid.org/1-5040203322"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PRGO", "url": "https://www.google.com/finance/quote/nyse:prgo"}], "market_full": [{"text": "FRA:PIG", "url": "https://www.google.com/finance/quote/fra:pig"}, {"text": "MEX:PRGON", "url": "https://www.google.com/finance/quote/mex:prgon"}, {"text": "NYSE:PRGO", "url": "https://www.google.com/finance/quote/nyse:prgo"}, {"text": "NYQ:PRGO", "url": "https://www.google.com/finance/quote/nyq:prgo"}, {"text": "BER:PIG", "url": "https://www.google.com/finance/quote/ber:pig"}, {"text": "ASE:PRGO", "url": "https://www.google.com/finance/quote/ase:prgo"}, {"text": "BRN:PIG", "url": "https://www.google.com/finance/quote/brn:pig"}, {"text": "SAO:P1RG34", "url": "https://www.google.com/finance/quote/p1rg34:sao"}, {"text": "DUS:PIG", "url": "https://www.google.com/finance/quote/dus:pig"}, {"text": "MUN:PIG", "url": "https://www.google.com/finance/quote/mun:pig"}, {"text": "STU:PIG", "url": "https://www.google.com/finance/quote/pig:stu"}, {"text": "LSE:0Y5E", "url": "https://www.google.com/finance/quote/0y5e:lse"}, {"text": "DEU:PIGG", "url": "https://www.google.com/finance/quote/deu:pigg"}], "crunchbase_description": "Providing the world with quality, affordable healthcare products.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 63108, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "adl", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "alzheimer's_disease_diagnosis", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [48, 11, 12, 5, 6, 6, 11, 5, 3, 7, 0], "total": 114, "isTopResearch": false, "rank": 492, "fortune500_rank": 183}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [1, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 857, "fortune500_rank": 236}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 82, "rank": 900, "fortune500_rank": 435}, "ai_jobs": {"counts": null, "total": 9, "rank": 880, "fortune500_rank": 420}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Perrigo Company plc is an American Irish\u2013registered manufacturer of private label over-the-counter pharmaceuticals, and while 70% of Perrigo's net sales are from the U.S. healthcare system, Perrigo is legally headquartered in Ireland for tax purposes, which accounts for 0.60% of net sales. In 2013, Perrigo completed the 6th-largest U.S. corporate tax inversion in history when it reregistered its tax status to Ireland to avoid U.S. corporate taxes.\nPerrigo engages in the acquisition (for repricing), manufacture, and sale of consumer healthcare products, generic prescription drugs, and active pharmaceutical ingredients (APIs), primarily in the United States, from its base in Ireland. On 21 December 2018, Perrigo suffered its biggest one-day share price fall in its history after the Irish Revenue Commissioners issued a tax claim against Perrigo that equated to half of its market value.", "wikipedia_link": "https://en.wikipedia.org/wiki/Perrigo", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1979, "country": "Singapore", "website": "https://www.wilmar-international.com/", "crunchbase": {"text": " e8a8e7cc-3570-4818-fd6a-d41c5ddb09c1 ", "url": " https://www.crunchbase.com/organization/wilmar-international "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/wilmar-international"], "stage": "Mature", "name": "Wilmar International", "patent_name": "Wilmar International", "continent": "Asia", "local_logo": null, "aliases": "Wilmar; Wilmar International", "permid_links": [{"text": 4295887677, "url": "https://permid.org/1-4295887677"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "DEU:RTH", "url": "https://www.google.com/finance/quote/DEU:RTH"}, {"text": "BER:RTHA", "url": "https://www.google.com/finance/quote/BER:RTHA"}, {"text": "DUS:RTHA", "url": "https://www.google.com/finance/quote/DUS:RTHA"}, {"text": "HAM:RTHA", "url": "https://www.google.com/finance/quote/HAM:RTHA"}, {"text": "DEU:WLIL", "url": "https://www.google.com/finance/quote/DEU:WLIL"}, {"text": "PKC:WLMIY", "url": "https://www.google.com/finance/quote/PKC:WLMIY"}, {"text": "FRA:RTHA", "url": "https://www.google.com/finance/quote/FRA:RTHA"}, {"text": "PKC:WLMIF", "url": "https://www.google.com/finance/quote/PKC:WLMIF"}, {"text": "HAN:RTHA", "url": "https://www.google.com/finance/quote/HAN:RTHA"}, {"text": "MUN:RTHA", "url": "https://www.google.com/finance/quote/MUN:RTHA"}, {"text": "STU:RTHA", "url": "https://www.google.com/finance/quote/RTHA:STU"}, {"text": "SES:F34", "url": "https://www.google.com/finance/quote/F34:SES"}, {"text": "FRA:RTH", "url": "https://www.google.com/finance/quote/FRA:RTH"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2, 1, 2, 2, 4, 6, 1, 1, 9, 13, 0], "total": 41, "isTopResearch": false, "rank": 653, "sp500_rank": 342}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 1, 1, 0, 0, 0], "total": 4, "table": null, "rank": 565, "sp500_rank": 235}, "ai_patents_growth": {"counts": [], "total": -25.0, "table": null, "rank": 1469, "sp500_rank": 434}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 10, 10, 0, 0, 0], "total": 40, "table": null, "rank": 565, "sp500_rank": 235}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 82, "rank": 900, "sp500_rank": 318}, "ai_jobs": {"counts": null, "total": 6, "rank": 970, "sp500_rank": 324}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1815, "country": "Russian Federation", "website": "https://www.lukoil.com/", "crunchbase": {"text": " ceab0e74-8770-e8c9-7206-006f0ece7580 ", "url": " https://www.crunchbase.com/organization/lukoil "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lukoil"], "stage": "Mature", "name": "Lukoil", "patent_name": "Lukoil", "continent": "Europe", "local_logo": null, "aliases": "Lukoil; The Pjsc Lukoil Oil Company", "permid_links": [{"text": 4295887034, "url": "https://permid.org/1-4295887034"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "LSE:LKOH", "url": "https://www.google.com/finance/quote/LKOH:LSE"}, {"text": "MUN:LUK", "url": "https://www.google.com/finance/quote/LUK:MUN"}, {"text": "LSE:LKOE", "url": "https://www.google.com/finance/quote/LKOE:LSE"}, {"text": "MCX:LKOH", "url": "https://www.google.com/finance/quote/LKOH:MCX"}, {"text": "VIE:LKOD", "url": "https://www.google.com/finance/quote/LKOD:VIE"}, {"text": "FRA:LUK", "url": "https://www.google.com/finance/quote/FRA:LUK"}, {"text": "HAM:LUK", "url": "https://www.google.com/finance/quote/HAM:LUK"}, {"text": "MEX:LKODN", "url": "https://www.google.com/finance/quote/LKODN:MEX"}, {"text": "BRN:LUK", "url": "https://www.google.com/finance/quote/BRN:LUK"}, {"text": "LSE:LKOD", "url": "https://www.google.com/finance/quote/LKOD:LSE"}, {"text": "BUE:LKOD3", "url": "https://www.google.com/finance/quote/BUE:LKOD3"}, {"text": "HAN:LUK", "url": "https://www.google.com/finance/quote/HAN:LUK"}, {"text": "DUS:LUK", "url": "https://www.google.com/finance/quote/DUS:LUK"}, {"text": "BER:LUK", "url": "https://www.google.com/finance/quote/BER:LUK"}, {"text": "STU:LUK", "url": "https://www.google.com/finance/quote/LUK:STU"}, {"text": "DEU:LUK", "url": "https://www.google.com/finance/quote/DEU:LUK"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Random forest", "field_count": 1}], "clusters": [{"cluster_id": 47249, "cluster_count": 2}, {"cluster_id": 99742, "cluster_count": 1}, {"cluster_id": 22509, "cluster_count": 1}, {"cluster_id": 61094, "cluster_count": 1}, {"cluster_id": 44513, "cluster_count": 1}, {"cluster_id": 60922, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1815, "referenced_count": 2}, {"ref_CSET_id": 1897, "referenced_count": 1}, {"ref_CSET_id": 676, "referenced_count": 1}], "tasks": [{"referent": "speech_production", "task_count": 3}, {"referent": "developmental_learning", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "jsoniq_query_execution", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "video_description", "task_count": 1}, {"referent": "seismic_analysis", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "efficient_exploration", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 3}, {"referent": "logistic_regression", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "linear_regression", "method_count": 1}, {"referent": "taypo", "method_count": 1}, {"referent": "value_function_estimation", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "gic", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [89, 143, 138, 209, 133, 160, 215, 186, 182, 55, 2], "total": 1512, "isTopResearch": false, "rank": 144, "sp500_rank": 112}, "ai_publications": {"counts": [0, 0, 0, 1, 2, 1, 1, 2, 1, 0, 0], "total": 8, "isTopResearch": false, "rank": 455, "sp500_rank": 233}, "ai_publications_growth": {"counts": [], "total": -16.666666666666668, "isTopResearch": false, "rank": 1303, "sp500_rank": 339}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 1, 3, 5, 11, 11, 0], "total": 32, "isTopResearch": false, "rank": 647, "sp500_rank": 275}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0.5, 1.0, 3.0, 2.5, 11.0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735, "sp500_rank": 295}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 82, "rank": 900, "sp500_rank": 318}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "sp500_rank": 335}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 638, "country": "United States", "website": "https://primer.ai/", "crunchbase": {"text": "4791bd7c-ae41-447e-9f0e-07431cbe7cbe", "url": "https://www.crunchbase.com/organization/primer-7cbe"}, "child_crunchbase": [{"text": "5e300309-92e8-b336-d832-a65581e14b60", "url": "https://www.crunchbase.com/organization/popily"}], "linkedin": ["https://www.linkedin.com/company/primer-ai", "https://www.linkedin.com/company/therealyonder"], "stage": "Growth", "name": "Primer AI", "patent_name": "primer ai", "continent": "North America", "local_logo": "primer_ai.png", "aliases": "Primer; Primer.Ai", "permid_links": [{"text": 5081078137, "url": "https://permid.org/1-5081078137"}, {"text": 5060642390, "url": "https://permid.org/1-5060642390"}], "parent_info": null, "agg_child_info": "Yonder", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Primer develops a text analytics solution designed to automate the analysis of textual data.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Pose", "field_count": 1}, {"field_name": "Boosting (machine learning)", "field_count": 1}, {"field_name": "Analytics", "field_count": 1}, {"field_name": "Spurious relationship", "field_count": 1}, {"field_name": "Automatic summarization", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}], "clusters": [{"cluster_id": 1432, "cluster_count": 1}, {"cluster_id": 15195, "cluster_count": 1}, {"cluster_id": 5109, "cluster_count": 1}, {"cluster_id": 16136, "cluster_count": 1}, {"cluster_id": 72553, "cluster_count": 1}, {"cluster_id": 3683, "cluster_count": 1}, {"cluster_id": 17833, "cluster_count": 1}, {"cluster_id": 47660, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 638, "referenced_count": 3}, {"ref_CSET_id": 1125, "referenced_count": 1}, {"ref_CSET_id": 550, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 793, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "semantic_segmentation", "task_count": 2}, {"referent": "segmentation", "task_count": 2}, {"referent": "document_summarization", "task_count": 1}, {"referent": "multi_document_summarization", "task_count": 1}, {"referent": "topic_detection", "task_count": 1}, {"referent": "summarization", "task_count": 1}, {"referent": "keyword_extraction", "task_count": 1}, {"referent": "text_summarization", "task_count": 1}, {"referent": "clustering", "task_count": 1}], "methods": [{"referent": "appo", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "semantic_segmentation_models", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "exponential_decay", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}, {"referent": "transformers", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [8, 5, 9, 9, 8, 9, 8, 8, 7, 5, 0], "total": 76, "isTopResearch": false, "rank": 550}, "ai_publications": {"counts": [0, 0, 0, 1, 3, 0, 2, 1, 1, 1, 0], "total": 9, "isTopResearch": false, "rank": 437}, "ai_publications_growth": {"counts": [], "total": -16.666666666666668, "isTopResearch": false, "rank": 1303}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 5, 2, 11, 14, 6, 3, 0], "total": 41, "isTopResearch": false, "rank": 615}, "cv_pubs": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 1.6666666666666667, 0, 5.5, 14.0, 6.0, 3.0, 0], "total": 4.555555555555555, "isTopResearch": false, "rank": 728}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 81, "rank": 904}, "ai_jobs": {"counts": null, "total": 28, "rank": 616}}, "sector": "Technology", "business_sector": "Telecommunications Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We build machines that can read and write, automating the analysis of very large datasets. Primer's technology is deployed by some of the world\u2019s largest government agencies, financial institutions, and Fortune 50 companies.", "company_site_link": "https://primer.ai/about/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 337, "country": "United States", "website": "https://www.aqr.com/", "crunchbase": {"text": "042e7ae1-ee59-a406-72e4-de1f78d962ec", "url": "https://www.crunchbase.com/organization/aqr"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aqr-capital-management"], "stage": "Unknown", "name": "Aqr Capital Management", "patent_name": "aqr capital management", "continent": "North America", "local_logo": "aqr_capital_management.png", "aliases": "Aqr; Aqr Capital Management Llc", "permid_links": [{"text": 5000068471, "url": "https://permid.org/1-5000068471"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "AQR develops inventive practical investment strategies and customized solutions.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Phrase", "field_count": 1}], "clusters": [{"cluster_id": 230, "cluster_count": 2}, {"cluster_id": 5511, "cluster_count": 1}, {"cluster_id": 14861, "cluster_count": 1}, {"cluster_id": 9951, "cluster_count": 1}, {"cluster_id": 13982, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 337, "referenced_count": 6}, {"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "human_dynamics", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "text_recognition", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "dimensionality_reduction", "method_count": 1}, {"referent": "neural_cache", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "generalized_linear_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [27, 18, 24, 30, 30, 34, 26, 33, 22, 10, 0], "total": 254, "isTopResearch": false, "rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 2, 2, 2, 0, 0], "total": 7, "isTopResearch": false, "rank": 481}, "ai_publications_growth": {"counts": [], "total": -33.333333333333336, "isTopResearch": false, "rank": 1404}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [4, 6, 11, 11, 17, 36, 85, 183, 241, 192, 18], "total": 804, "isTopResearch": false, "rank": 210}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 36.0, 42.5, 91.5, 120.5, 0, 0], "total": 114.85714285714286, "isTopResearch": false, "rank": 27}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 10, 0, 10, 0, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 1, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 172}, "Telecommunications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 81, "rank": 904}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "AQR Capital Management (Applied Quantitative Research) is a global investment management firm based in Greenwich, Connecticut, United States. The firm, which was founded in 1998 by Cliff Asness, David Kabiller, John Liew, and Robert Krail, offers a variety of quantitatively driven alternative and traditional investment vehicles to both institutional clients and financial advisors. The firm is primarily owned by its founders and principals. AQR has additional offices in Boston, Chicago, Los Angeles, Bangalore, Hong Kong, London, Sydney, and Tokyo.", "wikipedia_link": "https://en.wikipedia.org/wiki/AQR_Capital", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2926, "country": "United States", "website": "https://www.ainfosec.com/", "crunchbase": {"text": "60ef174a-64c2-568f-834a-caf398b25b94", "url": "https://www.crunchbase.com/organization/assured-information-security"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/assured-information-security-inc."], "stage": "Unknown", "name": "Assured Information Security Inc", "patent_name": "assured information security inc", "continent": "North America", "local_logo": "assured_information_security_inc.png", "aliases": "Assured Information Security; Assured Information Security Inc; Assured Information Security, Inc", "permid_links": [{"text": 4296275638, "url": "https://permid.org/1-4296275638"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Assured Information Security is a software company offering service on the research of critical Air Force.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Semantic Web", "field_count": 1}, {"field_name": "Speech coding", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 10473, "cluster_count": 1}, {"cluster_id": 1609, "cluster_count": 1}, {"cluster_id": 23378, "cluster_count": 1}, {"cluster_id": 1821, "cluster_count": 1}, {"cluster_id": 222, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 6, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "efficient_exploration", "task_count": 1}, {"referent": "biometric_authentication", "task_count": 1}, {"referent": "robust_speech_recognition", "task_count": 1}, {"referent": "sensor_fusion", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "cyber_attack_detection", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}, {"referent": "transformer_xl", "method_count": 1}, {"referent": "speech_enhancement", "method_count": 1}, {"referent": "codeslam", "method_count": 1}, {"referent": "de_gan", "method_count": 1}, {"referent": "verse", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [5, 1, 1, 2, 1, 2, 0, 2, 1, 1, 0], "total": 16, "isTopResearch": false, "rank": 847}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [1, 2, 1, 1, 1, 0, 5, 1, 1, 0, 0], "total": 13, "isTopResearch": false, "rank": 733}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [1.0, 0, 0, 0, 0, 0.0, 0, 1.0, 1.0, 0, 0], "total": 3.25, "isTopResearch": false, "rank": 773}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 141}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 363}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 81, "rank": 904}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We\u2019re a company of down-to-earth overachievers and technology pioneers making a difference for our customers, our country and the security of cyberspace.", "company_site_link": "https://www.ainfosec.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 722, "country": "United States", "website": "https://secure.emmes.com/emmesweb", "crunchbase": {"text": "dce2763a-61e4-44fc-8adc-8a41858931fb", "url": "https://www.crunchbase.com/organization/emmes"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/emmes"], "stage": "Mature", "name": "The Emmes Corporation", "patent_name": "the emmes corporation", "continent": "North America", "local_logo": "the_emmes_corporation.png", "aliases": "Emmes; Emmes Corp; The Emmes Company, Llc", "permid_links": [{"text": 5035542542, "url": "https://permid.org/1-5035542542"}], "parent_info": "New Mountain Capital (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Emmes is a contract research organization that offers clinical research services for public health and biopharmaceutical innovation.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Sentence", "field_count": 1}, {"field_name": "Unified Medical Language System", "field_count": 1}, {"field_name": "Kernel (statistics)", "field_count": 1}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Optimal design", "field_count": 1}], "clusters": [{"cluster_id": 29223, "cluster_count": 2}, {"cluster_id": 487, "cluster_count": 1}, {"cluster_id": 67773, "cluster_count": 1}, {"cluster_id": 14934, "cluster_count": 1}, {"cluster_id": 95919, "cluster_count": 1}, {"cluster_id": 6574, "cluster_count": 1}, {"cluster_id": 6776, "cluster_count": 1}, {"cluster_id": 22841, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1492, "referenced_count": 2}, {"ref_CSET_id": 722, "referenced_count": 2}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "sentence_classification", "task_count": 2}, {"referent": "timex_normalization", "task_count": 1}, {"referent": "identity_recognition", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "translation", "task_count": 1}, {"referent": "sign_language_translation", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "connectivity_estimation", "task_count": 1}, {"referent": "disease_detection", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "auto_classifier", "method_count": 2}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "gic", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "ltls", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "infonce", "method_count": 1}, {"referent": "momentum_rules", "method_count": 1}, {"referent": "selective_search", "method_count": 1}, {"referent": "edgeboxes", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [159, 173, 147, 145, 244, 179, 198, 123, 143, 118, 0], "total": 1629, "isTopResearch": false, "rank": 137}, "ai_publications": {"counts": [1, 0, 0, 1, 1, 0, 3, 0, 3, 0, 0], "total": 9, "isTopResearch": false, "rank": 437}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 5, 7, 5, 6, 27, 47, 60, 68, 71, 0], "total": 296, "isTopResearch": false, "rank": 333}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 177}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0.0, 0, 0, 5.0, 6.0, 0, 15.666666666666666, 0, 22.666666666666668, 0, 0], "total": 32.888888888888886, "isTopResearch": false, "rank": 168}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 80, "rank": 907}, "ai_jobs": {"counts": null, "total": 33, "rank": 569}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Welcome to Emmes, a global full service clinical research organization (CRO) dedicated to helping private sector, government, non-profit and academic partners achieve their biopharmaceutical development and human health goals. Committed to scientific excellence, collaboration, and problem-solving, we work closely with clients to generate high quality data and make better treatments available to patients.", "company_site_link": "https://secure.emmes.com/emmesweb", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 39, "country": "Canada", "website": "https://www.behavox.com/", "crunchbase": {"text": "1d54d5fe-2409-19f4-179d-5d0adb7abee9", "url": "https://www.crunchbase.com/organization/behavox"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/behavox"], "stage": "Growth", "name": "Behavox", "patent_name": "behavox", "continent": "North America", "local_logo": "behavox.png", "aliases": "Behavox Limited; Behavox Ltd", "permid_links": [{"text": 5051396021, "url": "https://permid.org/1-5051396021"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Behavox is an AI-driven platform that enables you to aggregate, analyze, and act on your entire organization\u2019s data.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Word error rate", "field_count": 1}], "clusters": [{"cluster_id": 59125, "cluster_count": 1}, {"cluster_id": 10811, "cluster_count": 1}, {"cluster_id": 21939, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 50, "referenced_count": 1}, {"ref_CSET_id": 27, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "speech_recognition", "task_count": 2}, {"referent": "activity_detection", "task_count": 1}, {"referent": "diarization", "task_count": 1}, {"referent": "semi_supervised_object_detection", "task_count": 1}, {"referent": "speaker_diarization", "task_count": 1}, {"referent": "acoustic_modelling", "task_count": 1}, {"referent": "unsupervised_domain_expansion", "task_count": 1}], "methods": [{"referent": "appo", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "l1_regularization", "method_count": 1}, {"referent": "sequential", "method_count": 1}, {"referent": "sabn", "method_count": 1}, {"referent": "cbam", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 2, 1, 0], "total": 4, "isTopResearch": false, "rank": 833}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0, 0, 0.0, 2.0, 0, 0], "total": 1.3333333333333333, "isTopResearch": false, "rank": 865}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 80, "rank": 907}, "ai_jobs": {"counts": null, "total": 14, "rank": 775}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Behavox is an enterprise data company on a mission to organize\nand make useful all enterprise data in the world", "company_site_link": "https://www.behavox.com/about/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2521, "country": "United States", "website": "https://www.unitedrentals.com/", "crunchbase": {"text": "907ec082-c31f-1d2a-7520-a6a1a2ec630c", "url": "https://www.crunchbase.com/organization/united-rentals"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/united-rentals"], "stage": "Mature", "name": "United Rentals, Inc.", "patent_name": "united rentals, inc.", "continent": "North America", "local_logo": "united_rentals,_inc.png", "aliases": "United Rentals; United Rentals Inc", "permid_links": [{"text": 4295905175, "url": "https://permid.org/1-4295905175"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:URI", "url": "https://www.google.com/finance/quote/nyse:uri"}], "market_full": [{"text": "STU:UR3", "url": "https://www.google.com/finance/quote/stu:ur3"}, {"text": "NYQ:URI", "url": "https://www.google.com/finance/quote/nyq:uri"}, {"text": "BRN:UR3", "url": "https://www.google.com/finance/quote/brn:ur3"}, {"text": "ASE:URI", "url": "https://www.google.com/finance/quote/ase:uri"}, {"text": "LSE:0LIY", "url": "https://www.google.com/finance/quote/0liy:lse"}, {"text": "MEX:URI*", "url": "https://www.google.com/finance/quote/mex:uri*"}, {"text": "NYSE:URI", "url": "https://www.google.com/finance/quote/nyse:uri"}, {"text": "DUS:UR3", "url": "https://www.google.com/finance/quote/dus:ur3"}, {"text": "FRA:UR3", "url": "https://www.google.com/finance/quote/fra:ur3"}, {"text": "GER:UR3X", "url": "https://www.google.com/finance/quote/ger:ur3x"}, {"text": "BER:UR3", "url": "https://www.google.com/finance/quote/ber:ur3"}, {"text": "MUN:UR3", "url": "https://www.google.com/finance/quote/mun:ur3"}, {"text": "SAO:U1RI34", "url": "https://www.google.com/finance/quote/sao:u1ri34"}, {"text": "DEU:URI", "url": "https://www.google.com/finance/quote/deu:uri"}, {"text": "MCX:URI-RM", "url": "https://www.google.com/finance/quote/mcx:uri-rm"}, {"text": "HAN:UR3", "url": "https://www.google.com/finance/quote/han:ur3"}], "crunchbase_description": "United Rentals operates as an equipment rental company that provides rental equipment and tools for industrial and construction companies.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 80, "rank": 907, "fortune500_rank": 437}, "ai_jobs": {"counts": null, "total": 12, "rank": 812, "fortune500_rank": 400}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 42, "country": "Israel", "website": "https://www.biocatch.com/", "crunchbase": {"text": "516abfe7-ee23-d825-b1e2-144b41ca591e", "url": "https://www.crunchbase.com/organization/biocatch"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/biocatch"], "stage": "Growth", "name": "BioCatch", "patent_name": "biocatch", "continent": "Asia", "local_logo": "biocatch.png", "aliases": "Biocatch Ltd", "permid_links": [{"text": 5052147989, "url": "https://permid.org/1-5052147989"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "BioCatch unlocks the power of behavior and deliver actionable insights to create a digital world where identity, trust, and ease co-exist.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 79, "rank": 910}, "ai_jobs": {"counts": null, "total": 23, "rank": 656}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "BioCatch delivers advanced behavioral insights to provide global organizations with actionable intelligence so you can create a secure customer journey.", "company_site_link": "https://www.biocatch.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2889, "country": "Canada", "website": "http://en.gf.com.cn/", "crunchbase": {"text": "3e40cd95-3d39-42b2-8cf0-fb77c796f19e", "url": "https://www.crunchbase.com/organization/gf-securities"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/gf-securities"], "stage": "Mature", "name": "Gf Securities Co Ltd", "patent_name": "gf securities co ltd", "continent": "North America", "local_logo": "gf_securities_co_ltd.png", "aliases": "Gf Securities; Guangfa Securities Co., Ltd; Guangfa Zhengquan; \u5e7f\u53d1\u8bc1\u5238; \u5e7f\u53d1\u8bc1\u5238\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295864218, "url": "https://permid.org/1-4295864218"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "SZSE:000776", "url": "https://www.google.com/finance/quote/000776:szse"}, {"text": "HKG:1776", "url": "https://www.google.com/finance/quote/1776:hkg"}], "market_full": [{"text": "HKG.HZ:1776", "url": "https://www.google.com/finance/quote/1776:hkg.hz"}, {"text": "SZSE:000776", "url": "https://www.google.com/finance/quote/000776:szse"}, {"text": "PNK:GFSEZ", "url": "https://www.google.com/finance/quote/gfsez:pnk"}, {"text": "HKG:1776", "url": "https://www.google.com/finance/quote/1776:hkg"}, {"text": "HKG.HS:1776", "url": "https://www.google.com/finance/quote/1776:hkg.hs"}], "crunchbase_description": "Gf Securities is a financial services fintech company located in Vancouver.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 1970, "cluster_count": 1}, {"cluster_id": 3124, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "relation_classification", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "news_classification", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "stock_market_prediction", "task_count": 1}, {"referent": "stock_price_prediction", "task_count": 1}], "methods": [{"referent": "bert", "method_count": 1}, {"referent": "graphsage", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "graph_embeddings", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [32, 37, 38, 43, 34, 27, 21, 21, 16, 2, 0], "total": 271, "isTopResearch": false, "rank": 369}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 2, 10, 34, 44, 6], "total": 96, "isTopResearch": false, "rank": 511}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 5.0, 0, 0, 0], "total": 48.0, "isTopResearch": false, "rank": 99}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 3, 2, 2, 3, 0, 0], "total": 10, "table": null, "rank": 413}, "ai_patents_growth": {"counts": [], "total": -16.666666666666668, "table": null, "rank": 1452}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 30, 20, 20, 30, 0, 0], "total": 100, "table": null, "rank": 413}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 2, 0, 0], "total": 5, "table": "industry", "rank": 103}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 79, "rank": 910}, "ai_jobs": {"counts": null, "total": 16, "rank": 738}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "At Gulf Island, our goal is to exceed customer expectations by bringing together a legacy of industry leadership with an unyielding commitment to quality and safety in the fabrication of complex steel structures and marine vessels and offshore and onshore services. From fabrication to providing technical support, and other expert services, we have a history of building customer success, safely and reliably.", "company_site_link": "https://www.gulfisland.com", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2797, "country": "United States", "website": "http://owens-minor.com/", "crunchbase": {"text": "99be4965-3647-6c00-b550-c536a77da550", "url": "https://www.crunchbase.com/organization/owens-minor"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/owens-&-minor"], "stage": "Mature", "name": "Owens & Minor Inc", "patent_name": "owens & minor inc", "continent": "North America", "local_logo": "owens_&_minor_inc.png", "aliases": "Owens & Minor; Owens & Minor, Inc", "permid_links": [{"text": 4295904672, "url": "https://permid.org/1-4295904672"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:OMI", "url": "https://www.google.com/finance/quote/nyse:omi"}], "market_full": [{"text": "NYSE:OMI", "url": "https://www.google.com/finance/quote/nyse:omi"}, {"text": "NYQ:OMI", "url": "https://www.google.com/finance/quote/nyq:omi"}], "crunchbase_description": "Owens & Minor is a distributor of medical and surgical supplies.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 79, "rank": 910}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Owens & Minor, Inc. (NYSE: OMI) is a global healthcare logistics company. Owens & Minor employs 15,000 people in 70 countries. A FORTUNE 500 company, Owens & Minor was founded in 1882 in Richmond, Virginia, where it remains headquartered today. The company now has distribution, production, customer service and sales facilities located across the Asia Pacific region, Europe, Latin America, and North America.", "wikipedia_link": "https://en.wikipedia.org/wiki/Owens_%26_Minor", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 48, "country": "United States", "website": "https://www.brightmachines.com/", "crunchbase": {"text": "a20b4d54-5432-44e5-b3ce-febaa2b28b21", "url": "https://www.crunchbase.com/organization/bright-machines"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bright-machines"], "stage": "Growth", "name": "Bright Machines", "patent_name": "bright machines", "continent": "North America", "local_logo": "bright_machines.png", "aliases": "Bright Machines Inc; Bright Machines, Inc", "permid_links": [{"text": 5064567153, "url": "https://permid.org/1-5064567153"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Bright Machines brings together flexible factory robots with intelligent software, production data and machine learning.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 36285, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 901}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1.0, 0], "total": 1.0, "isTopResearch": false, "rank": 871}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 79, "rank": 910}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Bright Machines is a software and robotics company whose applications focus on automation for the electronics manufacturing industry. The San Francisco-based company has two primary products. First, Bright Machines employs \u201cmicro-factories\u201d made up of robot cells for the purpose of automating electronics manufacturing and inspection. Second, Bright Machines offers software tools for the purpose of improving efficiencies in the manufacturing process.", "wikipedia_link": "https://en.wikipedia.org/wiki/Bright_Machines", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2915, "country": "United States", "website": "https://erc.us/", "crunchbase": {"text": "5d44a699-710a-4921-a417-90cdfce91726", "url": "https://www.crunchbase.com/organization/engineering-research-and-consulting"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/erc"], "stage": "Unknown", "name": "Engineering Research & Consulting Inc", "patent_name": "engineering research & consulting inc", "continent": "North America", "local_logo": "engineering_research_&_consulting_inc.png", "aliases": "Engineering Research And Consulting, Inc; Erc Inc; Erc, Inc", "permid_links": [{"text": 4297510620, "url": "https://permid.org/1-4297510620"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Engineering Research and Consulting offers aerospace engineering, IT, R&D, network administration and consultation services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [43, 22, 25, 24, 20, 7, 8, 3, 1, 2, 0], "total": 155, "isTopResearch": false, "rank": 450}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 79, "rank": 910}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 3035, "country": "United States", "website": "http://imagine-one.com/", "crunchbase": {"text": "514edcf9-22ac-48c7-b74b-a191b5965f1d", "url": "https://www.crunchbase.com/organization/imagine-one"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/imagine-one_2"], "stage": "Unknown", "name": "Imagine One Technology & Management Inc", "patent_name": "imagine one technology & management inc", "continent": "North America", "local_logo": "imagine_one_technology_&_management_inc.png", "aliases": "Imagine One Technology & Management, Ltd; Imagine One Technology And Management Ltd; Imagine-One", "permid_links": [{"text": 5017741035, "url": "https://permid.org/1-5017741035"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Imagine One Technology & Management, Ltd. provides mission-critical support services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 78, "rank": 915}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Build a profitable business in defense services that meets the needs of our customers and fulfills the lives of our employees.", "company_site_link": "https://imagine-one.com/about/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1426, "country": "United Kingdom", "website": "http://www.instadeep.com/", "crunchbase": {"text": "be070ccc-a4cd-4e26-bb29-e6e318d3f832", "url": "https://www.crunchbase.com/organization/instadeep"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/instadeep"], "stage": "Growth", "name": "InstaDeep", "patent_name": "instadeep", "continent": "Europe", "local_logo": "instadeep.png", "aliases": "Instadeep Ltd", "permid_links": [{"text": 5079201903, "url": "https://permid.org/1-5079201903"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "InstaDeep delivers AI-powered decision-making systems for the Enterprise, to solve complex industrial problems.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 4}, {"field_name": "Segmentation", "field_count": 3}, {"field_name": "Multi-objective optimization", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Genetic algorithm", "field_count": 1}, {"field_name": "Modality (human\u2013computer interaction)", "field_count": 1}, {"field_name": "Natural language", "field_count": 1}, {"field_name": "Evolutionary algorithm", "field_count": 1}], "clusters": [{"cluster_id": 1609, "cluster_count": 2}, {"cluster_id": 77674, "cluster_count": 2}, {"cluster_id": 970, "cluster_count": 2}, {"cluster_id": 1539, "cluster_count": 1}, {"cluster_id": 31880, "cluster_count": 1}, {"cluster_id": 21045, "cluster_count": 1}, {"cluster_id": 26678, "cluster_count": 1}, {"cluster_id": 3527, "cluster_count": 1}, {"cluster_id": 1193, "cluster_count": 1}, {"cluster_id": 31677, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 82}, {"ref_CSET_id": 87, "referenced_count": 26}, {"ref_CSET_id": 163, "referenced_count": 17}, {"ref_CSET_id": 1426, "referenced_count": 6}, {"ref_CSET_id": 789, "referenced_count": 5}, {"ref_CSET_id": 184, "referenced_count": 4}, {"ref_CSET_id": 737, "referenced_count": 2}, {"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 319, "referenced_count": 2}, {"ref_CSET_id": 2075, "referenced_count": 1}], "tasks": [{"referent": "segmentation", "task_count": 5}, {"referent": "continuous_control", "task_count": 3}, {"referent": "image_recognition", "task_count": 2}, {"referent": "image_quality_assessment", "task_count": 2}, {"referent": "morphological_analysis", "task_count": 2}, {"referent": "video_surveillance", "task_count": 2}, {"referent": "robots", "task_count": 2}, {"referent": "general_reinforcement_learning", "task_count": 2}, {"referent": "motion_planning", "task_count": 2}, {"referent": "named_entity_recognition", "task_count": 2}], "methods": [{"referent": "reinforcement_learning", "method_count": 8}, {"referent": "alphazero", "method_count": 2}, {"referent": "alp_gmm", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "twin_networks", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "policy_gradient_methods", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 3, 6, 14, 11, 0], "total": 34, "isTopResearch": false, "rank": 689}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 3, 6, 12, 4, 0], "total": 25, "isTopResearch": false, "rank": 270}, "ai_publications_growth": {"counts": [], "total": 44.444444444444436, "isTopResearch": false, "rank": 72}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 19, 53, 54, 0], "total": 126, "isTopResearch": false, "rank": 469}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 3, 2, 0], "total": 7, "isTopResearch": true, "rank": 252}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 0], "total": 4, "isTopResearch": true, "rank": 161}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 3.1666666666666665, 4.416666666666667, 13.5, 0], "total": 5.04, "isTopResearch": false, "rank": 711}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 5, 0, 3, 0, 0], "total": 8, "table": null, "rank": 443}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 50, 0, 30, 0, 0], "total": 80, "table": null, "rank": 443}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": "industry", "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 336}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 160}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 77, "rank": 916}, "ai_jobs": {"counts": null, "total": 33, "rank": 569}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Developing actionable custom AI solutions", "company_site_link": "https://www.instadeep.com/solutions/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 637, "country": "Japan", "website": "https://preferred.jp/en/", "crunchbase": {"text": "900e276f-746c-3883-9535-2501c38db939", "url": "https://www.crunchbase.com/organization/preferred-networks"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/preferred-networks"], "stage": "Unknown", "name": "Preferred Networks, Inc.", "patent_name": "preferred networks, inc.", "continent": "Asia", "local_logo": "preferred_networks,_inc.png", "aliases": "Preferred Networks; Preferred Networks Inc", "permid_links": [{"text": 5044012691, "url": "https://permid.org/1-5044012691"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Preferred Networks develops real-world applications of deep learning, robotics and other latest technologies.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 8}, {"field_name": "Deep learning", "field_count": 5}, {"field_name": "Robot", "field_count": 5}, {"field_name": "Robotic arm", "field_count": 4}, {"field_name": "Segmentation", "field_count": 4}, {"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Pose", "field_count": 3}, {"field_name": "Object (computer science)", "field_count": 3}, {"field_name": "Inference", "field_count": 3}, {"field_name": "Task (computing)", "field_count": 2}], "clusters": [{"cluster_id": 1609, "cluster_count": 8}, {"cluster_id": 18881, "cluster_count": 5}, {"cluster_id": 822, "cluster_count": 5}, {"cluster_id": 13150, "cluster_count": 4}, {"cluster_id": 914, "cluster_count": 3}, {"cluster_id": 1764, "cluster_count": 3}, {"cluster_id": 2505, "cluster_count": 2}, {"cluster_id": 22816, "cluster_count": 2}, {"cluster_id": 27297, "cluster_count": 2}, {"cluster_id": 38657, "cluster_count": 2}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 348}, {"ref_CSET_id": 87, "referenced_count": 126}, {"ref_CSET_id": 163, "referenced_count": 120}, {"ref_CSET_id": 637, "referenced_count": 55}, {"ref_CSET_id": 184, "referenced_count": 33}, {"ref_CSET_id": 6, "referenced_count": 27}, {"ref_CSET_id": 115, "referenced_count": 26}, {"ref_CSET_id": 790, "referenced_count": 17}, {"ref_CSET_id": 127, "referenced_count": 15}, {"ref_CSET_id": 245, "referenced_count": 13}], "tasks": [{"referent": "robots", "task_count": 15}, {"referent": "classification", "task_count": 14}, {"referent": "image_manipulation", "task_count": 10}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 7}, {"referent": "multimodal_deep_learning", "task_count": 5}, {"referent": "image_processing", "task_count": 4}, {"referent": "classification_tasks", "task_count": 4}, {"referent": "general_reinforcement_learning", "task_count": 4}, {"referent": "segmentation", "task_count": 3}, {"referent": "semantic_segmentation", "task_count": 3}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 12}, {"referent": "reinforcement_learning", "method_count": 11}, {"referent": "symbolic_deep_learning", "method_count": 10}, {"referent": "3d_representations", "method_count": 8}, {"referent": "q_learning", "method_count": 7}, {"referent": "convolutional_neural_networks", "method_count": 7}, {"referent": "generative_models", "method_count": 7}, {"referent": "vqa_models", "method_count": 6}, {"referent": "neural_architecture_search", "method_count": 6}, {"referent": "mad_learning", "method_count": 6}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 3, 15, 17, 39, 41, 61, 50, 36, 0], "total": 263, "isTopResearch": false, "rank": 374}, "ai_publications": {"counts": [1, 0, 1, 3, 9, 19, 23, 41, 31, 8, 0], "total": 136, "isTopResearch": false, "rank": 103}, "ai_publications_growth": {"counts": [], "total": -6.774307574772801, "isTopResearch": false, "rank": 1245}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 3, 9, 5, 7, 2, 1, 0], "total": 28, "isTopResearch": false, "rank": 64}, "citation_counts": {"counts": [0, 1, 1, 4, 38, 227, 601, 1130, 1426, 877, 23], "total": 4328, "isTopResearch": false, "rank": 76}, "cv_pubs": {"counts": [0, 0, 0, 2, 2, 7, 4, 11, 4, 3, 0], "total": 33, "isTopResearch": true, "rank": 108}, "nlp_pubs": {"counts": [0, 0, 0, 0, 3, 4, 1, 1, 1, 0, 0], "total": 10, "isTopResearch": true, "rank": 92}, "robotics_pubs": {"counts": [0, 0, 0, 0, 3, 3, 11, 17, 7, 5, 0], "total": 46, "isTopResearch": true, "rank": 49}, "citations_per_article": {"counts": [0.0, 0, 1.0, 1.3333333333333333, 4.222222222222222, 11.947368421052632, 26.130434782608695, 27.5609756097561, 46.0, 109.625, 0], "total": 31.823529411764707, "isTopResearch": false, "rank": 180}}, "patents": {"ai_patents": {"counts": [1, 0, 15, 7, 17, 33, 30, 14, 4, 0, 0], "total": 121, "table": null, "rank": 144}, "ai_patents_growth": {"counts": [], "total": 10.564468211527036, "table": null, "rank": 332}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 0, 150, 70, 170, 330, 300, 140, 40, 0, 0], "total": 1210, "table": null, "rank": 144}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 125}, "Life_Sciences": {"counts": [0, 0, 1, 2, 0, 1, 3, 3, 1, 0, 0], "total": 11, "table": "industry", "rank": 78}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 180}, "Industrial_and_Manufacturing": {"counts": [0, 0, 6, 0, 3, 4, 5, 0, 0, 0, 0], "total": 18, "table": "industry", "rank": 45}, "Education": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 60}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 4, 1, 3, 5, 4, 2, 0, 0, 0], "total": 19, "table": "industry", "rank": 195}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 4, 2, 3, 1, 0, 0, 0], "total": 10, "table": "industry", "rank": 165}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 45}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 35}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 162}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298}, "Control": {"counts": [0, 0, 6, 0, 3, 4, 5, 0, 0, 0, 0], "total": 18, "table": "application", "rank": 98}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 14}, "Computer_Vision": {"counts": [0, 0, 1, 1, 9, 14, 7, 2, 0, 0, 0], "total": 34, "table": "application", "rank": 141}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 2, 1, 0, 1, 0, 0], "total": 5, "table": "application", "rank": 170}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 77, "rank": 916}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Preferred Networks (PFN) rapidly realizes practical applications of deep learning and other emerging technologies in order to solve real-world problems that are difficult to address with existing technologies.", "company_site_link": "https://preferred.jp/en/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 549, "country": "France", "website": "https://www.limagrain.com/", "crunchbase": {"text": "231fe46b-19aa-4b2e-b373-068f0134840e", "url": "https://www.crunchbase.com/organization/limagrain-840e"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/groupe-limagrain"], "stage": "Mature", "name": "Limagrain", "patent_name": "limagrain", "continent": "Europe", "local_logo": "limagrain.png", "aliases": "Groupe Limagrain; Limagrain Group; Limagrain Sca", "permid_links": [{"text": 4296191561, "url": "https://permid.org/1-4296191561"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Limagrain group is an international agricultural cooperative, specialist in # field seeds, vegetable seeds and cereal products.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Logistic regression", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}], "clusters": [{"cluster_id": 1648, "cluster_count": 3}, {"cluster_id": 78563, "cluster_count": 1}, {"cluster_id": 55316, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "computational_manga", "task_count": 1}, {"referent": "interpretability_techniques_for_deep_learning", "task_count": 1}, {"referent": "supervised_learning", "task_count": 1}, {"referent": "active_learning", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 2}, {"referent": "merl", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "counting_methods", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "deepwalk", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "dcgan", "method_count": 1}, {"referent": "trpo", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [22, 27, 29, 19, 23, 21, 20, 19, 33, 27, 0], "total": 240, "isTopResearch": false, "rank": 387}, "ai_publications": {"counts": [2, 1, 1, 0, 0, 0, 1, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 540}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 1, 16, 31, 30, 46, 43, 84, 107, 74, 1], "total": 433, "isTopResearch": false, "rank": 287}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0.0, 1.0, 16.0, 0, 0, 0, 43.0, 0, 0, 0, 0], "total": 86.6, "isTopResearch": false, "rank": 44}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 77, "rank": 916}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "An agricultural cooperative owned by French farmers and an international seed group, Limagrain is guided by a raison d'\u00eatre: to cooperate for the progress of agriculture everywhere, for all. Focused on the genetic progress of plants, Limagrain selects, produces and markets field crop seeds, vegetable seeds and cereal products.", "company_site_link": "https://www.limagrain.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3052, "country": "United States", "website": "http://gov-acq.com/", "crunchbase": {"text": "eba15779-d972-0699-4cb0-3b297d2c4907", "url": "https://www.crunchbase.com/organization/government-acquisitions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/government-acquisitions"], "stage": "Unknown", "name": "Government Acquisitions Inc", "patent_name": "government acquisitions inc", "continent": "North America", "local_logo": "government_acquisitions_inc.png", "aliases": "Gov-Acq; Government Acquisitions; Government Acquisitions, Inc", "permid_links": [{"text": 4296273221, "url": "https://permid.org/1-4296273221"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "GAI is an experienced, award-winning, value-added reseller, bringing over 25 years of dedication to Federal mission success.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 77, "rank": 916}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Protecting citizens. Supporting critical infrastructure. Delivering cutting-edge research and development. Government Acquisitions, Inc. (GAI) is an experienced, award-winning, value-added reseller, bringing over 30 years of dedication to Federal mission success, and a performance culture to power real innovation. Changing course on a dime? No problem. GAI is dedicated to empowering Federal missions with new efficiencies and agility. Dedication is in our DNA. Mission is our mindset.", "company_site_link": "http://gov-acq.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1882, "country": "China", "website": "http://www.chinatelecom.com.cn/", "crunchbase": {"text": "031d9c2f-e3c3-d65c-928c-184b5872b50c", "url": "https://www.crunchbase.com/organization/china-telcom"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/china-telecom-global"], "stage": "Mature", "name": "China Telecommunications", "patent_name": "China Telecommunications", "continent": "Asia", "local_logo": "china_telecommunications.png", "aliases": "China Telecommunications; China Telecommunications Corporation; \u4e2d\u56fd\u7535\u4fe1\u96c6\u56e2\u516c\u53f8", "permid_links": [{"text": 4295865537, "url": "https://permid.org/1-4295865537"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:728", "url": "https://www.google.com/finance/quote/728:HKG"}, {"text": "NYSE:CHA", "url": "https://www.google.com/finance/quote/CHA:NYSE"}], "market_full": [{"text": "HKG:728", "url": "https://www.google.com/finance/quote/728:HKG"}, {"text": "FRA:ZCH", "url": "https://www.google.com/finance/quote/FRA:ZCH"}, {"text": "SHH:601728", "url": "https://www.google.com/finance/quote/601728:SHH"}, {"text": "STU:ZCH", "url": "https://www.google.com/finance/quote/STU:ZCH"}, {"text": "NYSE:CHA", "url": "https://www.google.com/finance/quote/CHA:NYSE"}, {"text": "DEU:0728", "url": "https://www.google.com/finance/quote/0728:DEU"}, {"text": "MUN:ZCH", "url": "https://www.google.com/finance/quote/MUN:ZCH"}], "crunchbase_description": "China Telecom as China's major basic telecom operators, is implementing the transformation and upgrading strategy.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 4}, {"field_name": "Cluster analysis", "field_count": 3}, {"field_name": "Anomaly detection", "field_count": 3}, {"field_name": "Segmentation", "field_count": 2}, {"field_name": "Euclidean distance", "field_count": 1}, {"field_name": "Local search (optimization)", "field_count": 1}, {"field_name": "Blind spot", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Ranking", "field_count": 1}], "clusters": [{"cluster_id": 3944, "cluster_count": 2}, {"cluster_id": 214, "cluster_count": 2}, {"cluster_id": 12689, "cluster_count": 1}, {"cluster_id": 3781, "cluster_count": 1}, {"cluster_id": 14596, "cluster_count": 1}, {"cluster_id": 4607, "cluster_count": 1}, {"cluster_id": 1609, "cluster_count": 1}, {"cluster_id": 7380, "cluster_count": 1}, {"cluster_id": 2259, "cluster_count": 1}, {"cluster_id": 2846, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 15}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 161, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 336, "referenced_count": 1}, {"ref_CSET_id": 789, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 258, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 5}, {"referent": "image_recognition", "task_count": 4}, {"referent": "image_analysis", "task_count": 3}, {"referent": "network_pruning", "task_count": 3}, {"referent": "feature_selection", "task_count": 2}, {"referent": "segmentation", "task_count": 2}, {"referent": "image_retrieval", "task_count": 2}, {"referent": "anomaly_detection", "task_count": 2}, {"referent": "computer_vision", "task_count": 2}, {"referent": "medical_image_registration", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 4}, {"referent": "clustering", "method_count": 3}, {"referent": "double_q_learning", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 2}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "dilated_convolution", "method_count": 2}, {"referent": "ggs_nns", "method_count": 2}, {"referent": "mobilenetv1", "method_count": 2}, {"referent": "(2+1)d_convolution", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [20, 22, 48, 30, 23, 25, 12, 20, 28, 41, 0], "total": 269, "isTopResearch": false, "rank": 371, "sp500_rank": 237}, "ai_publications": {"counts": [4, 4, 2, 4, 2, 1, 1, 3, 5, 3, 0], "total": 29, "isTopResearch": false, "rank": 244, "sp500_rank": 147}, "ai_publications_growth": {"counts": [], "total": 75.55555555555556, "isTopResearch": false, "rank": 34, "sp500_rank": 18}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99}, "citation_counts": {"counts": [2, 4, 4, 14, 11, 10, 9, 38, 63, 99, 2], "total": 256, "isTopResearch": false, "rank": 355, "sp500_rank": 165}, "cv_pubs": {"counts": [0, 2, 0, 3, 1, 0, 1, 3, 0, 0, 0], "total": 10, "isTopResearch": true, "rank": 202, "sp500_rank": 115}, "nlp_pubs": {"counts": [1, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], "total": 3, "isTopResearch": true, "rank": 177, "sp500_rank": 102}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0.5, 1.0, 2.0, 3.5, 5.5, 10.0, 9.0, 12.666666666666666, 12.6, 33.0, 0], "total": 8.827586206896552, "isTopResearch": false, "rank": 578, "sp500_rank": 218}}, "patents": {"ai_patents": {"counts": [3, 2, 1, 3, 7, 16, 48, 59, 108, 83, 0], "total": 330, "table": null, "rank": 72, "sp500_rank": 56}, "ai_patents_growth": {"counts": [], "total": 117.16269841269842, "table": null, "rank": 95, "sp500_rank": 43}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [30, 20, 10, 30, 70, 160, 480, 590, 1080, 830, 0], "total": 3300, "table": null, "rank": 72, "sp500_rank": 56}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 1, 1, 2, 4, 6, 6, 0], "total": 21, "table": "industry", "rank": 54, "sp500_rank": 41}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0], "total": 3, "table": "industry", "rank": 159, "sp500_rank": 107}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0], "total": 3, "table": null, "rank": 131, "sp500_rank": 89}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 1, 0, 0, 0, 1, 0, 0, 1, 0], "total": 3, "table": null, "rank": 29, "sp500_rank": 25}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0], "total": 3, "table": null, "rank": 27, "sp500_rank": 21}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 2, 4, 2, 10, 19, 22, 24, 0], "total": 83, "table": "industry", "rank": 86, "sp500_rank": 62}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 172, "sp500_rank": 111}, "Telecommunications": {"counts": [0, 0, 0, 2, 0, 7, 27, 15, 29, 18, 0], "total": 98, "table": "industry", "rank": 42, "sp500_rank": 38}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [0, 0, 1, 0, 0, 1, 0, 6, 4, 4, 0], "total": 16, "table": "industry", "rank": 119, "sp500_rank": 84}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 3, 3, 0], "total": 8, "table": "application", "rank": 90, "sp500_rank": 59}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 0, 0, 0, 0, 6, 3, 3, 0], "total": 13, "table": "application", "rank": 111, "sp500_rank": 79}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 2, 14, 11, 19, 13, 0], "total": 59, "table": "application", "rank": 103, "sp500_rank": 69}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 3, 7, 0], "total": 12, "table": "application", "rank": 99, "sp500_rank": 73}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 1, 3, 0], "total": 6, "table": "application", "rank": 158, "sp500_rank": 117}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 77, "rank": 916, "sp500_rank": 320}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231, "sp500_rank": 370}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 84, "country": "United Kingdom", "website": "http://www.eigentech.com/", "crunchbase": {"text": "48ac16e4-a65b-49cb-3425-cb16eefbaa8c", "url": "https://www.crunchbase.com/organization/eigen-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/eigen-technologies"], "stage": "Growth", "name": "Eigen Technologies", "patent_name": "eigen technologies", "continent": "Europe", "local_logo": "eigen_technologies.png", "aliases": "Eigen Technologies Limited; Eigen Technologies Ltd", "permid_links": [{"text": 5055266889, "url": "https://permid.org/1-5055266889"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Eigen is a research-driven AI company specializing in NLP for businesses in finance, law, and professional services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 76, "rank": 921}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We provide clients in finance, law and professional services, including one-third of all G-SIBs, with a flexible, fast and accurate Document AI platform powered by natural language processing (NLP) technology.", "company_site_link": "https://eigentech.com/about-us#who-we-are", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2484, "country": "United States", "website": "https://ir.sbasite.com/overview/default.aspx", "crunchbase": {"text": "f48b5f50-590d-4583-16c3-cc1b03468ef3", "url": "https://www.crunchbase.com/organization/sba-communications"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sba-communications"], "stage": "Mature", "name": "Sba Communications", "patent_name": "sba communications", "continent": "North America", "local_logo": "sba_communications.png", "aliases": "SBA Communications Corp; Sba; Sba Communications Corporation", "permid_links": [{"text": 5052136396, "url": "https://permid.org/1-5052136396"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:SBAC", "url": "https://www.google.com/finance/quote/nasdaq:sbac"}], "market_full": [{"text": "MUN:4SB", "url": "https://www.google.com/finance/quote/4sb:mun"}, {"text": "HAM:4SB", "url": "https://www.google.com/finance/quote/4sb:ham"}, {"text": "MEX:SBAC", "url": "https://www.google.com/finance/quote/mex:sbac"}, {"text": "DEU:4SB", "url": "https://www.google.com/finance/quote/4sb:deu"}, {"text": "HAN:4SB", "url": "https://www.google.com/finance/quote/4sb:han"}, {"text": "BER:4SB", "url": "https://www.google.com/finance/quote/4sb:ber"}, {"text": "LSE:0KYZ", "url": "https://www.google.com/finance/quote/0kyz:lse"}, {"text": "SAO:S1BA34", "url": "https://www.google.com/finance/quote/s1ba34:sao"}, {"text": "FRA:4SB", "url": "https://www.google.com/finance/quote/4sb:fra"}, {"text": "NASDAQ:SBAC", "url": "https://www.google.com/finance/quote/nasdaq:sbac"}, {"text": "BRN:4SB", "url": "https://www.google.com/finance/quote/4sb:brn"}, {"text": "DUS:4SB", "url": "https://www.google.com/finance/quote/4sb:dus"}, {"text": "STU:4SB", "url": "https://www.google.com/finance/quote/4sb:stu"}], "crunchbase_description": "SBA Communications is a wireless Internet installer for a number of different countries.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 75, "rank": 922, "fortune500_rank": 438}, "ai_jobs": {"counts": null, "total": 11, "rank": 829, "fortune500_rank": 406}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "SBA Communications Corporation is a real estate investment trust which owns and operates wireless infrastructure, including small cells, indoor/outdoor distributed antenna systems, and traditional cell sites that support antennas used for wireless communication by mobile carriers and wireless broadband providers in the United States and its territories, as well as in Canada, Central America, South America, and South Africa.", "wikipedia_link": "https://en.wikipedia.org/wiki/SBA_Communications", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1914, "country": "Canada", "website": "https://www.brookfield.com/", "crunchbase": {"text": " 87204836-9464-0180-ebc2-aed6133c3cfe ", "url": " https://www.crunchbase.com/organization/brookfield-asset-management "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/brookfield-asset-management"], "stage": "Mature", "name": "Brookfield Asset Management", "patent_name": "Brookfield Asset Management", "continent": "North America", "local_logo": null, "aliases": "Brookfield Asset Management; Brookfield Asset Management Inc", "permid_links": [{"text": 4295861073, "url": "https://permid.org/1-4295861073"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BAM", "url": "https://www.google.com/finance/quote/BAM:NYSE"}], "market_full": [{"text": "TOR:BAM.PF.F", "url": "https://www.google.com/finance/quote/BAM.PF.F:TOR"}, {"text": "PKC:BAMGF", "url": "https://www.google.com/finance/quote/BAMGF:PKC"}, {"text": "TOR:BAM.PF.B", "url": "https://www.google.com/finance/quote/BAM.PF.B:TOR"}, {"text": "TOR:BAM.PF.E", "url": "https://www.google.com/finance/quote/BAM.PF.E:TOR"}, {"text": "PKC:BAMKF", "url": "https://www.google.com/finance/quote/BAMKF:PKC"}, {"text": "TOR:BAMPR.B", "url": "https://www.google.com/finance/quote/BAMPR.B:TOR"}, {"text": "TOR:BAM.PF.D", "url": "https://www.google.com/finance/quote/BAM.PF.D:TOR"}, {"text": "ASE:BAM", "url": "https://www.google.com/finance/quote/ASE:BAM"}, {"text": "TOR:BAMPR.G", "url": "https://www.google.com/finance/quote/BAMPR.G:TOR"}, {"text": "MUN:BKAA", "url": "https://www.google.com/finance/quote/BKAA:MUN"}, {"text": "LSE:0KEH", "url": "https://www.google.com/finance/quote/0KEH:LSE"}, {"text": "NYSE:BAM", "url": "https://www.google.com/finance/quote/BAM:NYSE"}, {"text": "PKC:BXDIF", "url": "https://www.google.com/finance/quote/BXDIF:PKC"}, {"text": "TOR:BAMPR.K", "url": "https://www.google.com/finance/quote/BAMPR.K:TOR"}, {"text": "TOR:BAM.PF.A", "url": "https://www.google.com/finance/quote/BAM.PF.A:TOR"}, {"text": "TOR:BAM.PF.J", "url": "https://www.google.com/finance/quote/BAM.PF.J:TOR"}, {"text": "TOR:BAM.A", "url": "https://www.google.com/finance/quote/BAM.A:TOR"}, {"text": "TOR:BAMPR.M", "url": "https://www.google.com/finance/quote/BAMPR.M:TOR"}, {"text": "TOR:BAMPR.E", "url": "https://www.google.com/finance/quote/BAMPR.E:TOR"}, {"text": "FRA:BKAA", "url": "https://www.google.com/finance/quote/BKAA:FRA"}, {"text": "PKC:BKAMF", "url": "https://www.google.com/finance/quote/BKAMF:PKC"}, {"text": "DEU:BAMA", "url": "https://www.google.com/finance/quote/BAMa:DEU"}, {"text": "TOR:BAMPR.C", "url": "https://www.google.com/finance/quote/BAMPR.C:TOR"}, {"text": "TOR:BAM.PR.T", "url": "https://www.google.com/finance/quote/BAM.PR.T:TOR"}, {"text": "BER:BKAA", "url": "https://www.google.com/finance/quote/BER:BKAA"}, {"text": "TOR:BAM.PF.G", "url": "https://www.google.com/finance/quote/BAM.PF.G:TOR"}, {"text": "PKC:BKFPF", "url": "https://www.google.com/finance/quote/BKFPF:PKC"}, {"text": "SAO:BKFPF", "url": "https://www.google.com/finance/quote/BKFPF:SAO"}, {"text": "TOR:BAMPR.N", "url": "https://www.google.com/finance/quote/BAMPR.N:TOR"}, {"text": "TOR:BAM.PR.X", "url": "https://www.google.com/finance/quote/BAM.PR.X:TOR"}, {"text": "TOR:BAM.PF.I", "url": "https://www.google.com/finance/quote/BAM.PF.I:TOR"}, {"text": "PKC:BROXF", "url": "https://www.google.com/finance/quote/BROXF:PKC"}, {"text": "STU:BKAA", "url": "https://www.google.com/finance/quote/BKAA:STU"}, {"text": "PKC:BKFAF", "url": "https://www.google.com/finance/quote/BKFAF:PKC"}, {"text": "MEX:BAMAN", "url": "https://www.google.com/finance/quote/BAMAN:MEX"}, {"text": "TOR:BAM.PR.Z", "url": "https://www.google.com/finance/quote/BAM.PR.Z:TOR"}, {"text": "TOR:BAM.PR.R", "url": "https://www.google.com/finance/quote/BAM.PR.R:TOR"}, {"text": "NYQ:BAM", "url": "https://www.google.com/finance/quote/BAM:NYQ"}, {"text": "TOR:BAM.PF.C", "url": "https://www.google.com/finance/quote/BAM.PF.C:TOR"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "sp500_rank": 446}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 75, "rank": 922, "sp500_rank": 321}, "ai_jobs": {"counts": null, "total": 9, "rank": 880, "sp500_rank": 304}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 596, "country": "China", "website": "http://www.nio.io/", "crunchbase": {"text": "0af9627f-abe2-d21f-8832-7022de2fa311", "url": "https://www.crunchbase.com/organization/nextev"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nio"], "stage": "Mature", "name": "Nio", "patent_name": "nio", "continent": "Asia", "local_logo": "nio.png", "aliases": "Blue Sky Coming; Nextcar; Nextev; Nio Inc; Nio Limited; Shanghai Weilai Automobile Co., Ltd; Weilai; \u4e0a\u6d77\u851a\u6765\u6c7d\u8f66\u6709\u9650\u516c\u53f8; \u851a\u6765", "permid_links": [{"text": 5064707091, "url": "https://permid.org/1-5064707091"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NIO", "url": "https://www.google.com/finance/quote/nio:nyse"}], "market_full": [{"text": "NYSE:NIO", "url": "https://www.google.com/finance/quote/nio:nyse"}, {"text": "LSE:0A1K", "url": "https://www.google.com/finance/quote/0a1k:lse"}, {"text": "BMV:NIO/N", "url": "https://www.google.com/finance/quote/bmv:nio/n"}, {"text": "HAN:N3IA", "url": "https://www.google.com/finance/quote/han:n3ia"}, {"text": "HAM:N3IA", "url": "https://www.google.com/finance/quote/ham:n3ia"}, {"text": "FRA:NIO", "url": "https://www.google.com/finance/quote/fra:nio"}, {"text": "DUS:N3IA", "url": "https://www.google.com/finance/quote/dus:n3ia"}, {"text": "NYQ:NIO", "url": "https://www.google.com/finance/quote/nio:nyq"}, {"text": "MOEX:NIO-RM", "url": "https://www.google.com/finance/quote/moex:nio-rm"}, {"text": "MUN:N3IA", "url": "https://www.google.com/finance/quote/mun:n3ia"}, {"text": "BER:N3IA", "url": "https://www.google.com/finance/quote/ber:n3ia"}], "crunchbase_description": "NIO is an automotive company that designs and develops electric autonomous vehicles.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Pixel", "field_count": 1}, {"field_name": "Recommender system", "field_count": 1}], "clusters": [{"cluster_id": 19648, "cluster_count": 1}, {"cluster_id": 5273, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}], "tasks": [{"referent": "image_alignment", "task_count": 1}, {"referent": "lexical_analysis", "task_count": 1}, {"referent": "image_enhancement", "task_count": 1}, {"referent": "topological_data_analysis", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "intent_detection", "task_count": 1}, {"referent": "recommendation", "task_count": 1}, {"referent": "entity_embeddings", "task_count": 1}], "methods": [{"referent": "natural_language_processing", "method_count": 1}, {"referent": "channel_shuffle", "method_count": 1}, {"referent": "wgan_gp", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 2, 0, 1, 0, 2, 9, 0], "total": 15, "isTopResearch": false, "rank": 859}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 1, 2, 1, 1, 4, 4, 4, 4, 0, 0], "total": 21, "isTopResearch": false, "rank": 679}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 1.0, 0, 0, 0, 0, 0, 0, 0], "total": 21.0, "isTopResearch": false, "rank": 294}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 4, 0, 1, 9, 6, 0], "total": 21, "table": null, "rank": 316}, "ai_patents_growth": {"counts": [], "total": 100.0, "table": null, "rank": 116}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 40, 0, 10, 90, 60, 0], "total": 210, "table": null, "rank": 316}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": "industry", "rank": 193}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 0], "total": 4, "table": "industry", "rank": 147}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], "total": 3, "table": "application", "rank": 139}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "table": "application", "rank": 212}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 3, 3, 0], "total": 8, "table": "application", "rank": 269}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 75, "rank": 922}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "The automotive industry is on the cusp of profound change. We believe it isn\u2019t just products and technology that must change; it is how people use these products, and their entire ownership experience. We want you to feel positive again about owning a car.", "company_site_link": "https://www.nio.com/about", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2441, "country": "United States", "website": "http://www.nvrinc.com/", "crunchbase": {"text": "2bfdc06d-80f2-b9bd-6122-3c48c719bf91", "url": "https://www.crunchbase.com/organization/nvr"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nvr-inc-"], "stage": "Mature", "name": "NVR Inc", "patent_name": "nvr inc", "continent": "North America", "local_logo": "nvr_inc.png", "aliases": "Nvr; Nvr, Inc; Nvr, Inc. (Nvr)", "permid_links": [{"text": 4295904572, "url": "https://permid.org/1-4295904572"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:NVR", "url": "https://www.google.com/finance/quote/nvr:nyse"}], "market_full": [{"text": "MEX:NVR*", "url": "https://www.google.com/finance/quote/mex:nvr*"}, {"text": "ASE:NVR", "url": "https://www.google.com/finance/quote/ase:nvr"}, {"text": "MCX:NVR-RM", "url": "https://www.google.com/finance/quote/mcx:nvr-rm"}, {"text": "SAO:N1VR34", "url": "https://www.google.com/finance/quote/n1vr34:sao"}, {"text": "NYQ:NVR", "url": "https://www.google.com/finance/quote/nvr:nyq"}, {"text": "STU:NVE", "url": "https://www.google.com/finance/quote/nve:stu"}, {"text": "DEU:NVE", "url": "https://www.google.com/finance/quote/deu:nve"}, {"text": "FRA:NVE", "url": "https://www.google.com/finance/quote/fra:nve"}, {"text": "DUS:NVE", "url": "https://www.google.com/finance/quote/dus:nve"}, {"text": "HAN:NVE", "url": "https://www.google.com/finance/quote/han:nve"}, {"text": "NYSE:NVR", "url": "https://www.google.com/finance/quote/nvr:nyse"}, {"text": "MUN:NVE", "url": "https://www.google.com/finance/quote/mun:nve"}, {"text": "BRN:NVE", "url": "https://www.google.com/finance/quote/brn:nve"}], "crunchbase_description": "NVR, Inc. (NVR) is a homebuilder in the United States.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 75, "rank": 922, "fortune500_rank": 438}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094, "fortune500_rank": 452}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2744, "country": "United States", "website": "http://cns-llc.us/", "crunchbase": {"text": "8e0cf8db-5883-4f0e-9175-d11d67ad8389", "url": "https://www.crunchbase.com/organization/consolidated-nuclear-security"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/consolidated-nuclear-security-llc"], "stage": "Unknown", "name": "Consolidated Nuclear Security LLC", "patent_name": "consolidated nuclear security llc", "continent": "North America", "local_logo": "consolidated_nuclear_security_llc.png", "aliases": "Cns; Consolidated Nuclear Security; Consolidated Nuclear Security, Llc", "permid_links": [{"text": 5043463984, "url": "https://permid.org/1-5043463984"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "CNS operates the Pantex Plant and Y-12 National Security Complex in support of the National Nuclear Security Administration.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Random forest", "field_count": 1}], "clusters": [{"cluster_id": 61387, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "fault_detection", "task_count": 1}, {"referent": "rul", "task_count": 1}, {"referent": "disease_detection", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "aggression_identification", "task_count": 1}, {"referent": "few_shot_regression", "task_count": 1}], "methods": [{"referent": "awd_lstm", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}, {"referent": "memory_network", "method_count": 1}, {"referent": "mrnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 3, 1, 3, 0, 2, 4, 6, 1, 1], "total": 21, "isTopResearch": false, "rank": 797}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 1, 0], "total": 3, "isTopResearch": false, "rank": 857}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2.0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 75, "rank": 922}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "CNS comprises member companies Bechtel National, Inc.; Leidos; ATK Launch Systems; and SOC LLC, with Booz Allen Hamilton, Inc. as a teaming subcontractor. To achieve these goals, CNS is dedicating a senior team of managers from its member companies who bring extensive experience to meet the challenges and opportunities of leading two world-class facilities with one vision.", "company_site_link": "http://cns-llc.us/about", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3013, "country": "United States", "website": "https://www.cdotech.com/", "crunchbase": {"text": "0402da5a-b0c0-4cc6-8a1b-06c487660a22", "url": "https://www.crunchbase.com/organization/cdo-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cdo-technologies"], "stage": "Unknown", "name": "CDO Technologies Inc", "patent_name": "cdo technologies inc", "continent": "North America", "local_logo": "cdo_technologies_inc.png", "aliases": "Cdo Technologies; Cdo Technologies, Inc", "permid_links": [{"text": 4297831623, "url": "https://permid.org/1-4297831623"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "CDO Technologies is a provider of secure, cutting-edge data-collection, advanced-technology communications and managed-services solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 75, "rank": 922}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "CDO Technologies provides data-collection, advanced technology communications, and managed services solutions to help commercial and federal organizations operate more efficiently and effectively.", "company_site_link": "https://www.cdotech.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1408, "country": "United States", "website": "https://www.cresta.com/", "crunchbase": {"text": "3a0411e8-d851-41e0-a05b-b5ad63d97ed6", "url": "https://www.crunchbase.com/organization/cresta"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cresta-inc"], "stage": "Growth", "name": "Cresta", "patent_name": "cresta", "continent": "North America", "local_logo": "cresta.png", "aliases": "Cresta Intelligence; Cresta Intelligence Inc; Cresta Intelligence, Inc", "permid_links": [{"text": 5073150790, "url": "https://permid.org/1-5073150790"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Cresta leverages artificial intelligence to help sales and service agents improve the quality of their customer service.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 1, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 40, 10, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], "total": 4, "table": "industry", "rank": 249}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": "industry", "rank": 252}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 1, 0, 0], "total": 4, "table": "application", "rank": 127}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 74, "rank": 928}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Cresta was founded with the goal of using AI to help people learn high-value skills and by doing so, make business radically more productive. Cresta's team of world-renowned AI thought leaders, industry experts, and top-tier investors lean on experience from scaling companies like Google, Facebook, and Open AI on our march towards helping professionals become Experts on Day One.\nPrevious\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNext", "company_site_link": "https://cresta.com/about", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1422, "country": "Israel", "website": "http://healthy.io/", "crunchbase": {"text": "3359838b-9269-124e-82ca-77deed3bf56c", "url": "https://www.crunchbase.com/organization/healthy-io"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/www-healthy-io"], "stage": "Growth", "name": "Healthy.io", "patent_name": "healthy.io", "continent": "Asia", "local_logo": "healthyio.png", "aliases": "Healthy.Io Limited; Healthyio Ltd", "permid_links": [{"text": 5047641767, "url": "https://permid.org/1-5047641767"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Healthy.io converts smartphone cameras into a clinical grade medical device.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 10, 10, 0, 0, 0, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 74, "rank": 928}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Healthy.io, based in Tel Aviv, Israel, is a health care company that offers remote clinical testing and services enabled by smartphone technology. Launched in 2013 by founder and CEO Yonatan Adiri, the company uses smartphones to enable at-home diagnostics testing for the detection of signs of kidney disease, urinary tract infections, and pregnancy complications. Its digital wound management solution is used by medical personnel to measure and track wounds using a smartphone.", "wikipedia_link": "https://en.wikipedia.org/wiki/Healthy.io", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2040, "country": "China", "website": "https://www.suning.com/", "crunchbase": {"text": " 72baffbe-857e-c02f-0608-7ae554ee7686 ", "url": " https://www.crunchbase.com/organization/suning "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/\u82cf\u5b81"], "stage": "Mature", "name": "Suning.Com Group", "patent_name": "Suning.com Group", "continent": "Asia", "local_logo": null, "aliases": "Suning Commerce Group Co.,Ltd; Suning.com Group; \u82cf\u5b81\u6613\u8d2d\u96c6\u56e2", "permid_links": [{"text": 4295864961, "url": "https://permid.org/1-4295864961"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "SZS:002024", "url": "https://www.google.com/finance/quote/002024:SZS"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature extraction", "field_count": 1}], "clusters": [{"cluster_id": 29813, "cluster_count": 1}, {"cluster_id": 67461, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1791, "referenced_count": 1}, {"ref_CSET_id": 815, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 514, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 1}, {"referent": "fault_detection", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "shadow_detection_and_removal", "task_count": 1}], "methods": [{"referent": "q_learning", "method_count": 1}, {"referent": "feature_extractors", "method_count": 1}, {"referent": "hierarchical_feature_fusion", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 1, 3, 1, 3, 2, 2, 0], "total": 13, "isTopResearch": false, "rank": 888, "sp500_rank": 384}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 1, 2, 11, 11, 0], "total": 26, "isTopResearch": false, "rank": 656, "sp500_rank": 277}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 2.0, 0, 0, 0], "total": 13.0, "isTopResearch": false, "rank": 445, "sp500_rank": 152}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 6, 3, 30, 28, 2, 0, 0], "total": 70, "table": null, "rank": 188, "sp500_rank": 119}, "ai_patents_growth": {"counts": [], "total": 281.11111111111114, "table": null, "rank": 27, "sp500_rank": 12}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 60, 30, 300, 280, 20, 0, 0], "total": 700, "table": null, "rank": 188, "sp500_rank": 119}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "sp500_rank": 136}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 1, 12, 10, 0, 0, 0], "total": 24, "table": "industry", "rank": 175, "sp500_rank": 97}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 2, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 115, "sp500_rank": 79}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 3, 4, 0, 0, 0], "total": 7, "table": "industry", "rank": 194, "sp500_rank": 108}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 2, 2, 6, 3, 2, 0, 0], "total": 15, "table": "industry", "rank": 123, "sp500_rank": 87}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 4, 3, 0, 0, 0], "total": 7, "table": "application", "rank": 96, "sp500_rank": 61}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 198, "sp500_rank": 131}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 1, 9, 9, 2, 0, 0], "total": 23, "table": "application", "rank": 177, "sp500_rank": 104}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 73, "rank": 930, "sp500_rank": 322}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "sp500_rank": 297}}, "sector": "Consumer Cyclicals", "business_sector": "Retailers"}, {"cset_id": 2480, "country": "United States", "website": "http://www.rollins.com/", "crunchbase": {"text": "6d74fe33-9b51-308c-14e6-0a478c570cf4", "url": "https://www.crunchbase.com/organization/rollins"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/rollins-inc."], "stage": "Mature", "name": "Rollins Inc.", "patent_name": "rollins inc.", "continent": "North America", "local_logo": "rollins_inc.png", "aliases": "Rollins; Rollins Inc; Rollins, Inc", "permid_links": [{"text": 4295904844, "url": "https://permid.org/1-4295904844"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ROL", "url": "https://www.google.com/finance/quote/nyse:rol"}], "market_full": [{"text": "DUS:RLS", "url": "https://www.google.com/finance/quote/dus:rls"}, {"text": "ASE:ROL", "url": "https://www.google.com/finance/quote/ase:rol"}, {"text": "FRA:RLS", "url": "https://www.google.com/finance/quote/fra:rls"}, {"text": "MCX:ROL-RM", "url": "https://www.google.com/finance/quote/mcx:rol-rm"}, {"text": "MUN:RLS", "url": "https://www.google.com/finance/quote/mun:rls"}, {"text": "HAN:RLS", "url": "https://www.google.com/finance/quote/han:rls"}, {"text": "SAO:R1OL34", "url": "https://www.google.com/finance/quote/r1ol34:sao"}, {"text": "NYQ:ROL", "url": "https://www.google.com/finance/quote/nyq:rol"}, {"text": "BRN:RLS", "url": "https://www.google.com/finance/quote/brn:rls"}, {"text": "STU:RLS", "url": "https://www.google.com/finance/quote/rls:stu"}, {"text": "DEU:RLS", "url": "https://www.google.com/finance/quote/deu:rls"}, {"text": "NYSE:ROL", "url": "https://www.google.com/finance/quote/nyse:rol"}], "crunchbase_description": "Rollins, Inc. is a premier North American consumer and commercial services company. Through its wholly owned subsidiaries.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 73, "rank": 930, "fortune500_rank": 440}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349, "fortune500_rank": 485}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Rollins, Inc. is a North American consumer and commercial services company. Through its wholly owned subsidiaries, Orkin, Inc., PCO Services in Canada, HomeTeam Pest Defense, Western Pest Services, Industrial Fumigant Company, TruTech, Critter Control, Crane, Waltham, OPC Services, PermaTreat, Northwest Exterminating, McCall Service and Clark Pest Control, as well UK subsidiaries Safeguard Pest Control, Guardian Pest Control, Ames, and Kestrel, with Australian subsidiaries Allpest, Scientific Pest Control, Murray Pest Control and Statewide Pest Control, and Singapore subsidiary Aardwolf Pestkare, the company provides pest control services and protection against termite damage, rodents and insects to over 2 million customers in the United States, Canada, Mexico, Central America, the Caribbean, the Middle East and Asia from over 500 locations.", "wikipedia_link": "https://en.wikipedia.org/wiki/Rollins,_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1425, "country": "United States", "website": "https://huggingface.co/", "crunchbase": {"text": "b7947f18-b199-45ac-b7da-66f5c52fcfbc", "url": "https://www.crunchbase.com/organization/hugging-face"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/huggingface"], "stage": "Growth", "name": "Hugging Face", "patent_name": "hugging face", "continent": "North America", "local_logo": "hugging_face.png", "aliases": "Hugging Face Inc; Hugging Face, Inc", "permid_links": [{"text": 5063742076, "url": "https://permid.org/1-5063742076"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Hugging Face allows users to build, train, and deploy art models using the reference open source in machine learning.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Language model", "field_count": 2}, {"field_name": "Question answering", "field_count": 1}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Pruning (morphology)", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Hierarchical database model", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}, {"field_name": "Natural language", "field_count": 1}, {"field_name": "Product of experts", "field_count": 1}], "clusters": [{"cluster_id": 1193, "cluster_count": 6}, {"cluster_id": 1621, "cluster_count": 2}, {"cluster_id": 4358, "cluster_count": 1}, {"cluster_id": 16472, "cluster_count": 1}, {"cluster_id": 62049, "cluster_count": 1}, {"cluster_id": 3527, "cluster_count": 1}, {"cluster_id": 11991, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 91}, {"ref_CSET_id": 87, "referenced_count": 58}, {"ref_CSET_id": 163, "referenced_count": 33}, {"ref_CSET_id": 184, "referenced_count": 15}, {"ref_CSET_id": 319, "referenced_count": 15}, {"ref_CSET_id": 115, "referenced_count": 13}, {"ref_CSET_id": 127, "referenced_count": 8}, {"ref_CSET_id": 23, "referenced_count": 6}, {"ref_CSET_id": 1425, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 3}], "tasks": [{"referent": "natural_language_processing", "task_count": 4}, {"referent": "classification_tasks", "task_count": 3}, {"referent": "unsupervised_pre_training", "task_count": 2}, {"referent": "multi_task_learning", "task_count": 2}, {"referent": "language_identification", "task_count": 1}, {"referent": "few_shot_learning", "task_count": 1}, {"referent": "out_of_distribution_detection", "task_count": 1}, {"referent": "continuous_object_recognition", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "language_models", "method_count": 4}, {"referent": "albert", "method_count": 1}, {"referent": "bert", "method_count": 1}, {"referent": "hierarchical_vae", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "amsbound", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "l1_regularization", "method_count": 1}, {"referent": "fine_tuning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 2, 1, 2, 5, 13, 0], "total": 23, "isTopResearch": false, "rank": 777}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 2, 1, 2, 5, 8, 0], "total": 18, "isTopResearch": false, "rank": 321}, "ai_publications_growth": {"counts": [], "total": 103.33333333333333, "isTopResearch": false, "rank": 20}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 3, 7, 0], "total": 13, "isTopResearch": false, "rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 56, 361, 1467, 1086, 23], "total": 2993, "isTopResearch": false, "rank": 100}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 2, 1, 2, 5, 5, 0], "total": 15, "isTopResearch": true, "rank": 77}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 56.0, 180.5, 293.4, 135.75, 0], "total": 166.27777777777777, "isTopResearch": false, "rank": 18}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 72, "rank": 932}, "ai_jobs": {"counts": null, "total": 37, "rank": 544}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Build, train and deploy state of the art models powered by the reference open source in natural language processing.", "company_site_link": "https://huggingface.co", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 304, "country": "United States", "website": "http://adaptivebiotech.com/", "crunchbase": {"text": "6536a15e-f86b-bf7a-b39d-ba4e26aac014", "url": "https://www.crunchbase.com/organization/adaptive-biotechnologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/adaptive-biotechnologies-corp-"], "stage": "Mature", "name": "Adaptive Biotechnologies Corp.", "patent_name": "adaptive biotechnologies corp.", "continent": "North America", "local_logo": "adaptive_biotechnologies_corp.png", "aliases": "Adaptive Biotechnologies; Adaptive Biotechnologies Corporation; Adaptive Tcr", "permid_links": [{"text": 5000627106, "url": "https://permid.org/1-5000627106"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:ADPT", "url": "https://www.google.com/finance/quote/adpt:nasdaq"}], "market_full": [{"text": "NASDAQ:ADPT", "url": "https://www.google.com/finance/quote/adpt:nasdaq"}], "crunchbase_description": "Adaptive Biotechnologies translates scale and precision of the adaptive immune system into products to diagnose and treat disease.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 4956, "cluster_count": 1}, {"cluster_id": 66623, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 515, "referenced_count": 1}], "tasks": [{"referent": "image_interpretation", "task_count": 1}, {"referent": "survival_analysis", "task_count": 1}], "methods": [{"referent": "amp", "method_count": 1}, {"referent": "multigrain", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [26, 22, 51, 54, 61, 42, 39, 66, 45, 37, 0], "total": 443, "isTopResearch": false, "rank": 293}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 1, 6, 18, 12, 0], "total": 38, "isTopResearch": false, "rank": 625}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 1.0, 6.0, 0, 0, 0], "total": 19.0, "isTopResearch": false, "rank": 327}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 72, "rank": 932}, "ai_jobs": {"counts": null, "total": 11, "rank": 829}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Adaptive Biotechnologies is harnessing this vast system of biology to unleash its power as a natural diagnostic and therapeutic tool to propel a paradigm shift in medicine.", "company_site_link": "https://www.adaptivebiotech.com", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2532, "country": "United States", "website": "https://www.vulcanmaterials.com/", "crunchbase": {"text": "dd7597b3-15d2-9fbb-ad66-bd4f681637b9", "url": "https://www.crunchbase.com/organization/vulcan-materials-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vulcan-materials-company"], "stage": "Mature", "name": "Vulcan Materials", "patent_name": "vulcan materials", "continent": "North America", "local_logo": "vulcan_materials.png", "aliases": "Vulcan; Vulcan Materials Co; Vulcan Materials Company", "permid_links": [{"text": 4295905292, "url": "https://permid.org/1-4295905292"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:VMC", "url": "https://www.google.com/finance/quote/nyse:vmc"}], "market_full": [{"text": "ASE:VMC", "url": "https://www.google.com/finance/quote/ase:vmc"}, {"text": "NYSE:VMC", "url": "https://www.google.com/finance/quote/nyse:vmc"}, {"text": "MCX:VMC-RM", "url": "https://www.google.com/finance/quote/mcx:vmc-rm"}, {"text": "DEU:VMC", "url": "https://www.google.com/finance/quote/deu:vmc"}, {"text": "BER:VMC", "url": "https://www.google.com/finance/quote/ber:vmc"}, {"text": "BRN:VMC", "url": "https://www.google.com/finance/quote/brn:vmc"}, {"text": "FRA:VMC", "url": "https://www.google.com/finance/quote/fra:vmc"}, {"text": "STU:VMC", "url": "https://www.google.com/finance/quote/stu:vmc"}, {"text": "LSE:0LRK", "url": "https://www.google.com/finance/quote/0lrk:lse"}, {"text": "SAO:V1MC34", "url": "https://www.google.com/finance/quote/sao:v1mc34"}, {"text": "MEX:VMC*", "url": "https://www.google.com/finance/quote/mex:vmc*"}, {"text": "DUS:VMC", "url": "https://www.google.com/finance/quote/dus:vmc"}, {"text": "NYQ:VMC", "url": "https://www.google.com/finance/quote/nyq:vmc"}], "crunchbase_description": "Vulcan Materials Company is the nation\u2019s largest producer of construction aggregates, primarily crushed stone, sand and gravel.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Augmented reality", "field_count": 1}], "clusters": [{"cluster_id": 60873, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "community_detection", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 7, 2, 3, 0], "total": 13, "isTopResearch": false, "rank": 888, "fortune500_rank": 314}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0], "total": 3, "isTopResearch": false, "rank": 857, "fortune500_rank": 236}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779, "fortune500_rank": 213}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 72, "rank": 932, "fortune500_rank": 441}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "fortune500_rank": 437}}, "sector": "Basic Materials", "business_sector": "Mineral Resources", "wikipedia_description": "Vulcan Materials Company (NYSE: VMC) is an American company based in Birmingham, Alabama. It is principally engaged in the production, distribution and sale of construction materials. Vulcan is the largest producer of construction materials, primarily gravel, crushed stone, and sand, and employs approximately 7,000 people at over 300 facilities. Vulcan serves 19 states, the District of Columbia and Mexico. Vulcan's innovative Crescent Market project led to construction of a large quarry and deep water seaport on the Yucat\u00e1n Peninsula of Mexico, just south of Cancun. This quarry supplies Tampa, New Orleans, Houston, and Brownsville, Texas, as well as other Gulf coast seaports, with crushed limestone via large 62,000 ton self discharging ships.", "wikipedia_link": "https://en.wikipedia.org/wiki/Vulcan_Materials_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2760, "country": "United States", "website": "https://www.vtxaero.com/", "crunchbase": {"text": "bc001514-96d4-3d55-5e1b-b1f7dafa38df", "url": "https://www.crunchbase.com/organization/vertex-aerospace"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vtxco"], "stage": "Unknown", "name": "Vertex Aerospace Llc", "patent_name": "vertex aerospace llc", "continent": "North America", "local_logo": "vertex_aerospace_llc.png", "aliases": "2020 Vertex Aerospace; Vertex; Vertex Aerospace", "permid_links": [{"text": 5000047047, "url": "https://permid.org/1-5000047047"}], "parent_info": "American Industrial Partners (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Vertex Aerospace offers aftermarket services and complete solution for government and commercial customers.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 1, 3, 0, 0, 0, 1, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 72, "rank": 932}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "As an aerospace defense contractor with a 50% Veteran employee rate, we understand the complexity of your operations. We offer you peace of mind that your mission is our priority. Vertex provides full Supply-Chain support, all levels of maintenance, and the unique capability of aircraft engineering and parts fabrication. For over 50 years, we have delivered affordable, high-quality, aftermarket aerospace services providing the confidence you need to focus on mission success.", "company_site_link": "https://www.vtxaero.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 52, "country": "China", "website": "http://www.cambricon.com/", "crunchbase": {"text": "31d4ef43-caea-4f54-b619-38de7392bc96", "url": "https://www.crunchbase.com/organization/cambricon-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cambricon"], "stage": "Mature", "name": "Cambricon", "patent_name": "cambricon", "continent": "Asia", "local_logo": "cambricon.png", "aliases": "Cambricon Technologies; Cambricon Technologies Corp Ltd; Cambricon Technologies Corporation Limited; Hanwuji Keji; \u5317\u4eac\u4e2d\u79d1\u5bd2\u6b66\u7eaa\u79d1\u6280\u6709\u9650\u516c\u53f8; \u5bd2\u6b66\u7eaa; \u5bd2\u6b66\u7eaa\u79d1\u6280", "permid_links": [{"text": 5057823667, "url": "https://permid.org/1-5057823667"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "SSE:688256", "url": "https://www.google.com/finance/quote/688256:sse"}], "market_full": [{"text": "SSE:688256", "url": "https://www.google.com/finance/quote/688256:sse"}], "crunchbase_description": "Cambricon Technologies builds core processor chips for intelligent cloud servers, intelligent terminals, and intelligent robots.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 4}, {"field_name": "Artificial neural network", "field_count": 4}, {"field_name": "Test set", "field_count": 1}, {"field_name": "Quantization (signal processing)", "field_count": 1}, {"field_name": "Image sensor", "field_count": 1}, {"field_name": "Intrinsics", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Parsing", "field_count": 1}, {"field_name": "Applications of artificial intelligence", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}], "clusters": [{"cluster_id": 1621, "cluster_count": 18}, {"cluster_id": 25609, "cluster_count": 3}, {"cluster_id": 214, "cluster_count": 2}, {"cluster_id": 1609, "cluster_count": 1}, {"cluster_id": 2505, "cluster_count": 1}, {"cluster_id": 61271, "cluster_count": 1}, {"cluster_id": 4816, "cluster_count": 1}, {"cluster_id": 981, "cluster_count": 1}, {"cluster_id": 4473, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 111}, {"ref_CSET_id": 163, "referenced_count": 71}, {"ref_CSET_id": 184, "referenced_count": 59}, {"ref_CSET_id": 87, "referenced_count": 41}, {"ref_CSET_id": 127, "referenced_count": 24}, {"ref_CSET_id": 115, "referenced_count": 20}, {"ref_CSET_id": 52, "referenced_count": 16}, {"ref_CSET_id": 37, "referenced_count": 13}, {"ref_CSET_id": 209, "referenced_count": 10}, {"ref_CSET_id": 161, "referenced_count": 8}], "tasks": [{"referent": "image_recognition", "task_count": 7}, {"referent": "image_processing", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "recommendation", "task_count": 4}, {"referent": "object_detection", "task_count": 3}, {"referent": "computational_manga", "task_count": 3}, {"referent": "inductive_logic_programming", "task_count": 2}, {"referent": "portfolio_optimization", "task_count": 2}, {"referent": "inference_attack", "task_count": 2}, {"referent": "quantization", "task_count": 2}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 8}, {"referent": "symbolic_deep_learning", "method_count": 7}, {"referent": "neural_architecture_search", "method_count": 6}, {"referent": "meta_learning_algorithms", "method_count": 5}, {"referent": "ggs_nns", "method_count": 5}, {"referent": "wgan_gp", "method_count": 4}, {"referent": "1d_cnn", "method_count": 3}, {"referent": "(2+1)d_convolution", "method_count": 3}, {"referent": "ghost_module", "method_count": 3}, {"referent": "deep_belief_network", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 6, 13, 10, 10, 9, 0], "total": 49, "isTopResearch": false, "rank": 619}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 5, 8, 8, 7, 1, 0], "total": 30, "isTopResearch": false, "rank": 240}, "ai_publications_growth": {"counts": [], "total": -32.738095238095234, "isTopResearch": false, "rank": 1400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [0, 0, 0, 2, 25, 77, 154, 164, 219, 138, 3], "total": 782, "isTopResearch": false, "rank": 213}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 3, 0, 0], "total": 6, "isTopResearch": true, "rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 2.0, 0, 15.4, 19.25, 20.5, 31.285714285714285, 138.0, 0], "total": 26.066666666666666, "isTopResearch": false, "rank": 222}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 84, 113, 276, 323, 161, 41, 0, 0], "total": 998, "table": null, "rank": 24}, "ai_patents_growth": {"counts": [], "total": 37.040658118751985, "table": null, "rank": 253}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 840, 1130, 2760, 3230, 1610, 410, 0, 0], "total": 9980, "table": null, "rank": 24}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 193}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 57, 69, 153, 183, 93, 23, 0, 0], "total": 578, "table": "industry", "rank": 15}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 5, 6, 12, 7, 1, 0, 0, 0], "total": 31, "table": "industry", "rank": 107}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 55}, "Business": {"counts": [0, 0, 0, 1, 3, 1, 0, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 213}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 3, 0, 0, 0, 1, 0, 0], "total": 4, "table": "industry", "rank": 24}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 7, 3, 0, 0, 0, 0, 0], "total": 10, "table": "application", "rank": 81}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 162}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298}, "Control": {"counts": [0, 0, 0, 4, 5, 2, 3, 0, 0, 0, 0], "total": 14, "table": "application", "rank": 116}, "Distributed_AI": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 2, 19, 7, 11, 10, 4, 0, 0], "total": 53, "table": "application", "rank": 112}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 1, 2, 1, 1, 0, 0], "total": 6, "table": "application", "rank": 147}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": null, "rank": 209}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 71, "rank": 936}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "\u5bd2\u6b66\u7eaa\u805a\u7126\u4e91\u8fb9\u7aef\u4e00\u4f53\u7684\u667a\u80fd\u65b0\u751f\u6001\uff0c\u81f4\u529b\u6253\u9020\u5404\u7c7b\u667a\u80fd\u4e91\u670d\u52a1\u5668\u3001\u667a\u80fd\u8fb9\u7f18\u8bbe\u5907\u3001\u667a\u80fd\u7ec8\u7aef\u7684\u6838\u5fc3\u5904\u7406\u5668\u82af\u7247\uff0c\u8ba9\u673a\u5668\u66f4\u597d\u5730\u7406\u89e3\u548c\u670d\u52a1\u4eba\u7c7b\u3002", "company_site_link": "https://www.cambricon.com/index.php?m=content&c=index&a=lists&catid=7", "description_retrieval_date": "2021-03-18", "company_site_description_translation": "Cambrian focuses on a new intelligent ecosystem that integrates cloud, edge, and terminal, and is committed to building core processor chips for various types of intelligent cloud servers, intelligent edge devices, and intelligent terminals, so that machines can better understand and serve humans."}, {"cset_id": 2469, "country": "United States", "website": "http://www.quantaservices.com/", "crunchbase": {"text": "6715f0b7-f8ed-5240-4050-c393670b2785", "url": "https://www.crunchbase.com/organization/quanta-services-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/quanta-services"], "stage": "Mature", "name": "Quanta Services Inc.", "patent_name": "quanta services inc.", "continent": "North America", "local_logo": "quanta_services_inc.png", "aliases": "Quanta Services; Quanta Services, Inc", "permid_links": [{"text": 4295904787, "url": "https://permid.org/1-4295904787"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PWR", "url": "https://www.google.com/finance/quote/nyse:pwr"}], "market_full": [{"text": "BRN:QAA", "url": "https://www.google.com/finance/quote/brn:qaa"}, {"text": "ASE:PWR", "url": "https://www.google.com/finance/quote/ase:pwr"}, {"text": "NYQ:PWR", "url": "https://www.google.com/finance/quote/nyq:pwr"}, {"text": "NYSE:PWR", "url": "https://www.google.com/finance/quote/nyse:pwr"}, {"text": "DEU:PWR", "url": "https://www.google.com/finance/quote/deu:pwr"}, {"text": "MCX:PWR-RM", "url": "https://www.google.com/finance/quote/mcx:pwr-rm"}, {"text": "LSE:0KSR", "url": "https://www.google.com/finance/quote/0ksr:lse"}, {"text": "SAO:Q1UA34", "url": "https://www.google.com/finance/quote/q1ua34:sao"}, {"text": "FRA:QAA", "url": "https://www.google.com/finance/quote/fra:qaa"}, {"text": "MUN:QAA", "url": "https://www.google.com/finance/quote/mun:qaa"}, {"text": "STU:QAA", "url": "https://www.google.com/finance/quote/qaa:stu"}, {"text": "BER:QAA", "url": "https://www.google.com/finance/quote/ber:qaa"}, {"text": "DUS:QAA", "url": "https://www.google.com/finance/quote/dus:qaa"}], "crunchbase_description": "Quanta Services provides engineering, procurement and construction (EPC) services for comprehensive infrastructure needs.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 71, "rank": 936, "fortune500_rank": 442}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "fortune500_rank": 447}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Quanta Services is an American corporation that provides infrastructure services for electric power, pipeline, industrial and communications industries. Capabilities include the planning, design, installation, program management, maintenance and repair of most types of network infrastructure. In June 2009, Quanta Services was added to the S&P 500 index, replacing Ingersoll-Rand.", "wikipedia_link": "https://en.wikipedia.org/wiki/Quanta_Services", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1446, "country": "United States", "website": "http://www.secondspectrum.com/", "crunchbase": {"text": "07fc1ffc-fb1c-1bc1-81e8-4d184199e60c", "url": "https://www.crunchbase.com/organization/second-spectrum"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/second-spectrum"], "stage": "Growth", "name": "Second Spectrum", "patent_name": "second spectrum", "continent": "North America", "local_logo": "second_spectrum.png", "aliases": "Second Spectrum, Inc", "permid_links": [{"text": 5057762257, "url": "https://permid.org/1-5057762257"}], "parent_info": "Genius Sports (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Second Spectrum develops a gaming machine learning software to revolutionize sports through AI.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Contrast (statistics)", "field_count": 1}, {"field_name": "Pose", "field_count": 1}], "clusters": [{"cluster_id": 7639, "cluster_count": 1}, {"cluster_id": 8844, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 3}], "tasks": [{"referent": "action_localization", "task_count": 1}, {"referent": "keypoint_detection", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 3, 3, 2, 7, 12, 7, 0], "total": 34, "isTopResearch": false, "rank": 640}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0, 0, 7.0, 0, 0, 0], "total": 17.0, "isTopResearch": false, "rank": 364}}, "patents": {"ai_patents": {"counts": [0, 9, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 11, "table": null, "rank": 394}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 90, 0, 10, 0, 0, 10, 0, 0, 0, 0], "total": 110, "table": null, "rank": 394}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 9, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": "industry", "rank": 261}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 9, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": "industry", "rank": 165}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 7, "table": "industry", "rank": 21}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 9, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 11, "table": "application", "rank": 236}, "Analytics_and_Algorithms": {"counts": [0, 7, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 137}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 70, "rank": 938}, "ai_jobs": {"counts": null, "total": 20, "rank": 692}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Second Spectrum is the Official Tracking Provider for the NBA, Premier League, and MLS, and provides an unparalleled machine understanding of every game. In partnership with these leagues, Second Spectrum has created never before seen products and experiences for coaches, analysts, players, producers, storytellers, and fans everywhere.", "company_site_link": "http://www.secondspectrum.com/", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 243, "country": "United States", "website": "http://www.tamr.com/", "crunchbase": {"text": "38b64a43-111c-032d-1908-7910633bf851", "url": "https://www.crunchbase.com/organization/tamr"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tamrinc"], "stage": "Growth", "name": "Tamr", "patent_name": "tamr", "continent": "North America", "local_logo": "tamr.png", "aliases": "Tamr Inc; Tamr, Inc", "permid_links": [{"text": 5042932770, "url": "https://permid.org/1-5042932770"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Tamr is an enterprise data unification company that is accessible to any enterprise.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 1, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 20, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 70, "rank": 938}, "ai_jobs": {"counts": null, "total": 17, "rank": 728}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We envision a world where people in organizations have accurate, up-to-date, \nmastered data to deliver impactful business outcomes.", "company_site_link": "https://www.tamr.com/about-us-2/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2126, "country": "Switzerland", "website": "https://www.migros.ch/", "crunchbase": {"text": " d6bbf3f7-5662-1b84-0fc4-3c9fd0ce63d6", "url": " https://www.crunchbase.com/organization/migros-genossenschafts-bund"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/migros-online"], "stage": "Unknown", "name": "Migros Group", "patent_name": "Migros Group", "continent": "Europe", "local_logo": null, "aliases": "Migros Group; Migros Gruppe", "permid_links": [{"text": 4295890473, "url": "https://permid.org/1-4295890473"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 70, "rank": 938, "sp500_rank": 323}, "ai_jobs": {"counts": null, "total": 9, "rank": 880, "sp500_rank": 304}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Drug Retailing"}, {"cset_id": 1808, "country": "China", "website": "https://www.saicmotor.com/", "crunchbase": {"text": " 394f7252-21e6-6d62-2f69-7a243197d428 ", "url": " https://www.crunchbase.com/organization/saic-motor "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/saic-motor"], "stage": "Mature", "name": "Saic Motor", "patent_name": "SAIC Motor", "continent": "Asia", "local_logo": null, "aliases": "SAIC Motor; Saic Motor Corporation Limited; \u4e0a\u6d77\u6c7d\u8f66\u96c6\u56e2\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295865461, "url": "https://permid.org/1-4295865461"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "SHH:600104", "url": "https://www.google.com/finance/quote/600104:SHH"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robustness (computer science)", "field_count": 3}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Surrogate model", "field_count": 2}, {"field_name": "Linear regression", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Dimensionality reduction", "field_count": 1}], "clusters": [{"cluster_id": 24157, "cluster_count": 4}, {"cluster_id": 2410, "cluster_count": 3}, {"cluster_id": 31686, "cluster_count": 3}, {"cluster_id": 8773, "cluster_count": 3}, {"cluster_id": 22331, "cluster_count": 2}, {"cluster_id": 88650, "cluster_count": 2}, {"cluster_id": 50755, "cluster_count": 2}, {"cluster_id": 19977, "cluster_count": 2}, {"cluster_id": 1065, "cluster_count": 2}, {"cluster_id": 62192, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 32}, {"ref_CSET_id": 101, "referenced_count": 32}, {"ref_CSET_id": 87, "referenced_count": 18}, {"ref_CSET_id": 223, "referenced_count": 9}, {"ref_CSET_id": 37, "referenced_count": 8}, {"ref_CSET_id": 112, "referenced_count": 8}, {"ref_CSET_id": 790, "referenced_count": 8}, {"ref_CSET_id": 800, "referenced_count": 7}, {"ref_CSET_id": 820, "referenced_count": 7}, {"ref_CSET_id": 127, "referenced_count": 7}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 22}, {"referent": "vehicle_detection", "task_count": 11}, {"referent": "autonomous_driving", "task_count": 10}, {"referent": "classification", "task_count": 10}, {"referent": "steering_control", "task_count": 5}, {"referent": "safety_perception_recognition", "task_count": 4}, {"referent": "motion_planning", "task_count": 4}, {"referent": "trajectory_planning", "task_count": 4}, {"referent": "path_planning", "task_count": 4}, {"referent": "environmental_sound_classification", "task_count": 3}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 7}, {"referent": "double_q_learning", "method_count": 7}, {"referent": "convolutional_neural_networks", "method_count": 6}, {"referent": "optimization", "method_count": 5}, {"referent": "vqa_models", "method_count": 5}, {"referent": "contrastive_predictive_coding", "method_count": 4}, {"referent": "self_supervised_learning", "method_count": 3}, {"referent": "logistic_regression", "method_count": 3}, {"referent": "clustering", "method_count": 3}, {"referent": "auto_classifier", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [300, 227, 250, 241, 250, 321, 376, 329, 263, 54, 2], "total": 2613, "isTopResearch": false, "rank": 104, "sp500_rank": 83}, "ai_publications": {"counts": [6, 2, 5, 7, 3, 11, 17, 15, 8, 7, 0], "total": 81, "isTopResearch": false, "rank": 139, "sp500_rank": 92}, "ai_publications_growth": {"counts": [], "total": -23.643790849673206, "isTopResearch": false, "rank": 1359, "sp500_rank": 366}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [11, 19, 21, 22, 23, 34, 53, 114, 144, 157, 6], "total": 604, "isTopResearch": false, "rank": 246, "sp500_rank": 132}, "cv_pubs": {"counts": [0, 1, 0, 2, 0, 6, 6, 4, 3, 3, 0], "total": 25, "isTopResearch": true, "rank": 125, "sp500_rank": 79}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [2, 0, 1, 2, 1, 3, 7, 5, 1, 2, 0], "total": 24, "isTopResearch": true, "rank": 73, "sp500_rank": 56}, "citations_per_article": {"counts": [1.8333333333333333, 9.5, 4.2, 3.142857142857143, 7.666666666666667, 3.090909090909091, 3.1176470588235294, 7.6, 18.0, 22.428571428571427, 0], "total": 7.45679012345679, "isTopResearch": false, "rank": 627, "sp500_rank": 244}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 3, 6, 15, 11, 24, 14, 2, 0], "total": 76, "table": null, "rank": 178, "sp500_rank": 112}, "ai_patents_growth": {"counts": [], "total": 80.5050505050505, "table": null, "rank": 146, "sp500_rank": 69}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 30, 60, 150, 110, 240, 140, 20, 0], "total": 760, "table": null, "rank": 178, "sp500_rank": 112}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 1, 0, 1, 0, 2, 0, 1, 0], "total": 5, "table": "industry", "rank": 78, "sp500_rank": 64}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 4, 0, 0, 0], "total": 5, "table": null, "rank": 128, "sp500_rank": 88}, "Transportation": {"counts": [0, 0, 0, 1, 2, 3, 1, 5, 1, 0, 0], "total": 13, "table": "industry", "rank": 86, "sp500_rank": 67}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": null, "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 1, 5, 3, 1, 0], "total": 11, "table": "industry", "rank": 250, "sp500_rank": 136}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 172, "sp500_rank": 111}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": null, "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 1, 0, 1, 5, 2, 6, 2, 0, 0], "total": 17, "table": "industry", "rank": 114, "sp500_rank": 80}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 1, 2, 2, 0, 0], "total": 6, "table": "industry", "rank": 70, "sp500_rank": 63}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0], "total": 4, "table": "application", "rank": 127, "sp500_rank": 76}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 1, 0, 1, 5, 2, 5, 1, 0, 0], "total": 15, "table": "application", "rank": 97, "sp500_rank": 69}, "Control": {"counts": [0, 0, 0, 1, 2, 1, 1, 6, 0, 0, 0], "total": 11, "table": "application", "rank": 126, "sp500_rank": 89}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 4, 4, 7, 0, 0], "total": 16, "table": "application", "rank": 206, "sp500_rank": 117}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "table": null, "rank": 223, "sp500_rank": 134}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 189, "sp500_rank": 129}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 70, "rank": 938, "sp500_rank": 323}, "ai_jobs": {"counts": null, "total": 7, "rank": 944, "sp500_rank": 319}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 2300, "country": "United States", "website": "https://www.edison.com/", "crunchbase": {"text": "c4b7747b-18b2-5f4d-3dc1-4441e23ef794", "url": "https://www.crunchbase.com/organization/edison-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/edison-international"], "stage": "Mature", "name": "Edison Int'l", "patent_name": "edison int'l", "continent": "North America", "local_logo": "edison_int'l.png", "aliases": "Edison International", "permid_links": [{"text": 4295903910, "url": "https://permid.org/1-4295903910"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EIX", "url": "https://www.google.com/finance/quote/eix:nyse"}], "market_full": [{"text": "DUS:EIX", "url": "https://www.google.com/finance/quote/dus:eix"}, {"text": "BRN:EIX", "url": "https://www.google.com/finance/quote/brn:eix"}, {"text": "GER:EIXX", "url": "https://www.google.com/finance/quote/eixx:ger"}, {"text": "MUN:EIX", "url": "https://www.google.com/finance/quote/eix:mun"}, {"text": "ASE:EIX", "url": "https://www.google.com/finance/quote/ase:eix"}, {"text": "BER:EIX", "url": "https://www.google.com/finance/quote/ber:eix"}, {"text": "SAO:E1IX34", "url": "https://www.google.com/finance/quote/e1ix34:sao"}, {"text": "LSE:0IFJ", "url": "https://www.google.com/finance/quote/0ifj:lse"}, {"text": "MEX:EIX1*", "url": "https://www.google.com/finance/quote/eix1*:mex"}, {"text": "FRA:EIX", "url": "https://www.google.com/finance/quote/eix:fra"}, {"text": "NYSE:EIX", "url": "https://www.google.com/finance/quote/eix:nyse"}, {"text": "NYQ:EIX", "url": "https://www.google.com/finance/quote/eix:nyq"}, {"text": "MOEX:EIX-RM", "url": "https://www.google.com/finance/quote/eix-rm:moex"}, {"text": "STU:EIX", "url": "https://www.google.com/finance/quote/eix:stu"}, {"text": "DEU:EIX", "url": "https://www.google.com/finance/quote/deu:eix"}], "crunchbase_description": "Edison International is a generator and distributor of electric power and an investor in infrastructure and energy assets.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 90303, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [], "methods": [{"referent": "self_supervised_learning", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [13, 13, 23, 25, 12, 19, 10, 18, 7, 18, 0], "total": 158, "isTopResearch": false, "rank": 447, "fortune500_rank": 173}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0], "total": 2, "isTopResearch": false, "rank": 881, "fortune500_rank": 245}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0], "total": 2.0, "isTopResearch": false, "rank": 823, "fortune500_rank": 217}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 70, "rank": 938, "fortune500_rank": 443}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094, "fortune500_rank": 452}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Edison International is a public utility holding company based in Rosemead, California. Its subsidiaries include Southern California Edison, and unregulated non-utility business assets Edison Energy. Edison's roots trace back to Holt & Knupps, a company founded in 1886 as a provider of street lights in Visalia, California.", "wikipedia_link": "https://en.wikipedia.org/wiki/Edison_International", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 259, "country": "China", "website": "https://www.tuya.com/", "crunchbase": {"text": "a32db970-85e0-4eb7-9edf-c441baaee15f", "url": "https://www.crunchbase.com/organization/tuya-e15f"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tuya-smart"], "stage": "Growth", "name": "Tuya Smart", "patent_name": "tuya smart", "continent": "Asia", "local_logo": "tuya_smart.png", "aliases": "Hangzhou Graffiti Technology Co., Ltd; Tuya; Tuya Inc; \u676d\u5dde\u6d82\u9e26\u79d1\u6280\u6709\u9650\u516c\u53f8; \u6d82\u9e26\u667a\u80fd", "permid_links": [{"text": 5068328209, "url": "https://permid.org/1-5068328209"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Tuya is an IOT solutions provider that helps manufacturers develop their app and bring their product to market and at competitive prices.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 70, "rank": 938}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Tuya Smart was founded on the principal that with the right foundational technology, anything is possible: any product, any features, any speed, any capabilities, any business model. We took this to the IoT industry and became the first all-in-one IoT platform designed to let any company easily make its products smart. And the rest is, well\u2026 history.", "company_site_link": "https://www.tuya.com/history", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2198, "country": "United States", "website": "https://www.albemarle.com/", "crunchbase": {"text": "7b960c60-a3f1-79a3-206b-e2db29ed8d29", "url": "https://www.crunchbase.com/organization/albemarle"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/albemarlecorp"], "stage": "Mature", "name": "Albemarle Corp", "patent_name": "albemarle corp", "continent": "North America", "local_logo": "albemarle_corp.png", "aliases": "Albemarle Corporation; Albermarle", "permid_links": [{"text": 4295903309, "url": "https://permid.org/1-4295903309"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:ALB", "url": "https://www.google.com/finance/quote/alb:nyse"}], "market_full": [{"text": "MCX:ALB-RM", "url": "https://www.google.com/finance/quote/alb-rm:mcx"}, {"text": "MUN:AMC", "url": "https://www.google.com/finance/quote/amc:mun"}, {"text": "VIE:ALBE", "url": "https://www.google.com/finance/quote/albe:vie"}, {"text": "BER:AMC", "url": "https://www.google.com/finance/quote/amc:ber"}, {"text": "NYSE:ALB", "url": "https://www.google.com/finance/quote/alb:nyse"}, {"text": "STU:AMC", "url": "https://www.google.com/finance/quote/amc:stu"}, {"text": "ASE:ALB", "url": "https://www.google.com/finance/quote/alb:ase"}, {"text": "SAO:A1LB34", "url": "https://www.google.com/finance/quote/a1lb34:sao"}, {"text": "FRA:AMC", "url": "https://www.google.com/finance/quote/amc:fra"}, {"text": "GER:AMCX", "url": "https://www.google.com/finance/quote/amcx:ger"}, {"text": "DEU:ALLE", "url": "https://www.google.com/finance/quote/alle:deu"}, {"text": "MEX:ALB*", "url": "https://www.google.com/finance/quote/alb*:mex"}, {"text": "BRN:AMC", "url": "https://www.google.com/finance/quote/amc:brn"}, {"text": "NYQ:ALB", "url": "https://www.google.com/finance/quote/alb:nyq"}, {"text": "DUS:AMC", "url": "https://www.google.com/finance/quote/amc:dus"}, {"text": "LSE:0HC7", "url": "https://www.google.com/finance/quote/0hc7:lse"}], "crunchbase_description": "At Albemarle, our nearly 4,000 employees put their ideas and innovations to work every day for communities and customers around the globe", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [9, 4, 5, 4, 9, 7, 8, 13, 7, 5, 0], "total": 71, "isTopResearch": false, "rank": 563, "fortune500_rank": 210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655, "fortune500_rank": 199}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 0, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655, "fortune500_rank": 199}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "fortune500_rank": 131}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277, "fortune500_rank": 105}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 69, "rank": 944, "fortune500_rank": 444}, "ai_jobs": {"counts": null, "total": 13, "rank": 790, "fortune500_rank": 393}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "Albemarle Corporation is a fine chemical manufacturing company based in Charlotte, North Carolina. It operates 3 divisions: lithium (37.8% of 2019 revenues), bromine specialties (28.0% of 2019 revenues) and catalysts (29.6% of 2019 revenues).", "wikipedia_link": "https://en.wikipedia.org/wiki/Albemarle_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 198, "country": "United States", "website": "https://people.ai/", "crunchbase": {"text": "010a349a-14bf-76ff-53b5-5fb3281a46de", "url": "https://www.crunchbase.com/organization/people-ai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/people.ai"], "stage": "Mature", "name": "People.ai", "patent_name": "people.ai", "continent": "North America", "local_logo": "peopleai.png", "aliases": "People Ai Inc; People.Ai Inc", "permid_links": [{"text": 5056391252, "url": "https://permid.org/1-5056391252"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "People is an AI platform for enterprise sales, marketing, and customer success that uncovers revenue opportunities.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Object (computer science)", "field_count": 2}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Convolution", "field_count": 1}, {"field_name": "Discriminative model", "field_count": 1}, {"field_name": "Pruning (morphology)", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "RGB color model", "field_count": 1}], "clusters": [{"cluster_id": 214, "cluster_count": 3}, {"cluster_id": 26441, "cluster_count": 1}, {"cluster_id": 66498, "cluster_count": 1}, {"cluster_id": 22315, "cluster_count": 1}, {"cluster_id": 5070, "cluster_count": 1}, {"cluster_id": 51360, "cluster_count": 1}, {"cluster_id": 1052, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 58}, {"ref_CSET_id": 101, "referenced_count": 46}, {"ref_CSET_id": 87, "referenced_count": 37}, {"ref_CSET_id": 223, "referenced_count": 14}, {"ref_CSET_id": 245, "referenced_count": 11}, {"ref_CSET_id": 112, "referenced_count": 8}, {"ref_CSET_id": 161, "referenced_count": 8}, {"ref_CSET_id": 23, "referenced_count": 8}, {"ref_CSET_id": 50, "referenced_count": 7}, {"ref_CSET_id": 127, "referenced_count": 6}], "tasks": [{"referent": "feature_selection", "task_count": 2}, {"referent": "video_object_detection", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "weakly_supervised_object_localization", "task_count": 1}, {"referent": "image_forensics", "task_count": 1}, {"referent": "object_localization", "task_count": 1}, {"referent": "image_recognition", "task_count": 1}, {"referent": "multi_task_learning", "task_count": 1}, {"referent": "neural_network_compression", "task_count": 1}, {"referent": "unsupervised_pre_training", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "ggs_nns", "method_count": 2}, {"referent": "dpn", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "gic", "method_count": 1}, {"referent": "feature_pyramid_blocks", "method_count": 1}, {"referent": "csgld", "method_count": 1}, {"referent": "cam", "method_count": 1}, {"referent": "adversarial_training", "method_count": 1}, {"referent": "alp_gmm", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 6, 2, 0], "total": 12, "isTopResearch": false, "rank": 907}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 6, 1, 0], "total": 11, "isTopResearch": false, "rank": 397}, "ai_publications_growth": {"counts": [], "total": -16.666666666666664, "isTopResearch": false, "rank": 1301}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 2, 16, 78, 82, 5], "total": 183, "isTopResearch": false, "rank": 396}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 6, 1, 0], "total": 11, "isTopResearch": true, "rank": 196}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 4.0, 13.0, 82.0, 0], "total": 16.636363636363637, "isTopResearch": false, "rank": 372}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": -66.66666666666667, "table": null, "rank": 1550}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 30, 20, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 363}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 225}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 252}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 3, 2, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 126}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 214}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 69, "rank": 944}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "The industry\u2019s leading Revenue Operations and Intelligence platform that harnesses business activity to unlock growth.", "company_site_link": "https://people.ai/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2421, "country": "United States", "website": "http://www.mosaicco.com/", "crunchbase": {"text": "a6052de1-6408-76c7-dd2d-f264367e2748", "url": "https://www.crunchbase.com/organization/the-mosaic-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mosaiccompany"], "stage": "Mature", "name": "The Mosaic Company", "patent_name": "the mosaic company", "continent": "North America", "local_logo": "the_mosaic_company.png", "aliases": "Mosaic; Mosaic Co; The Mosaic Co", "permid_links": [{"text": 5000274109, "url": "https://permid.org/1-5000274109"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MOS", "url": "https://www.google.com/finance/quote/mos:nyse"}], "market_full": [{"text": "SAO:MOSC34", "url": "https://www.google.com/finance/quote/mosc34:sao"}, {"text": "MUN:02M", "url": "https://www.google.com/finance/quote/02m:mun"}, {"text": "GER:02MX", "url": "https://www.google.com/finance/quote/02mx:ger"}, {"text": "DUS:02M", "url": "https://www.google.com/finance/quote/02m:dus"}, {"text": "ASE:MOS", "url": "https://www.google.com/finance/quote/ase:mos"}, {"text": "MEX:MOS*", "url": "https://www.google.com/finance/quote/mex:mos*"}, {"text": "LSE:0K3B", "url": "https://www.google.com/finance/quote/0k3b:lse"}, {"text": "MCX:MOS-RM", "url": "https://www.google.com/finance/quote/mcx:mos-rm"}, {"text": "NYSE:MOS", "url": "https://www.google.com/finance/quote/mos:nyse"}, {"text": "BRN:02M", "url": "https://www.google.com/finance/quote/02m:brn"}, {"text": "FRA:02M", "url": "https://www.google.com/finance/quote/02m:fra"}, {"text": "NYQ:MOS", "url": "https://www.google.com/finance/quote/mos:nyq"}, {"text": "BER:02M", "url": "https://www.google.com/finance/quote/02m:ber"}, {"text": "STU:02M", "url": "https://www.google.com/finance/quote/02m:stu"}, {"text": "DEU:02M", "url": "https://www.google.com/finance/quote/02m:deu"}], "crunchbase_description": "The Mosaic Company is a producer and marketer of concentrated phosphate and potash minerals into crop nutrients to help feed the world.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [17, 15, 13, 15, 8, 4, 9, 3, 5, 5, 0], "total": 94, "isTopResearch": false, "rank": 518, "fortune500_rank": 193}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 69, "rank": 944, "fortune500_rank": 444}, "ai_jobs": {"counts": null, "total": 6, "rank": 970, "fortune500_rank": 431}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "The Mosaic Company is a Fortune 500 company based in Tampa, Florida which mines phosphate and potash, and operates through segments such as international distribution and mosaic fertilizantes. It is the largest U.S. producer of potash and phosphate fertilizer.", "wikipedia_link": "https://en.wikipedia.org/wiki/The_Mosaic_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 3, "country": "China", "website": "https://www.4paradigm.com/", "crunchbase": {"text": "7ec603f5-8f92-49ba-90da-cafee6bf1d4e", "url": "https://www.crunchbase.com/organization/4paradigm"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/4paradigm"], "stage": "Mature", "name": "4thParadigm", "patent_name": "4thparadigm", "continent": "Asia", "local_logo": "4thparadigm.png", "aliases": "4Paradigm; Beijing Wusi Chuangxiang Technology Co., Ltd; \u7b2c\u56db\u8303\u5f0f; \u7b2c\u56db\u8303\u5f0f\uff08\u5317\u4eac\uff09\u6280\u672f\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5050657655, "url": "https://permid.org/1-5050657655"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "4Paradigm is an AI tech firm that helps enterprises improve work efficiency while reducing risk and achieving greater commercial value.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 3}, {"field_name": "Model selection", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Information extraction", "field_count": 2}, {"field_name": "Keyword spotting", "field_count": 1}, {"field_name": "Nearest neighbor search", "field_count": 1}, {"field_name": "Singular value decomposition", "field_count": 1}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}, {"field_name": "Categorical variable", "field_count": 1}], "clusters": [{"cluster_id": 303, "cluster_count": 8}, {"cluster_id": 1989, "cluster_count": 6}, {"cluster_id": 10485, "cluster_count": 2}, {"cluster_id": 7496, "cluster_count": 2}, {"cluster_id": 16160, "cluster_count": 2}, {"cluster_id": 79917, "cluster_count": 2}, {"cluster_id": 26441, "cluster_count": 1}, {"cluster_id": 3167, "cluster_count": 1}, {"cluster_id": 46624, "cluster_count": 1}, {"cluster_id": 6200, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 184}, {"ref_CSET_id": 163, "referenced_count": 105}, {"ref_CSET_id": 87, "referenced_count": 47}, {"ref_CSET_id": 3, "referenced_count": 37}, {"ref_CSET_id": 115, "referenced_count": 25}, {"ref_CSET_id": 112, "referenced_count": 23}, {"ref_CSET_id": 21, "referenced_count": 19}, {"ref_CSET_id": 245, "referenced_count": 15}, {"ref_CSET_id": 37, "referenced_count": 15}, {"ref_CSET_id": 161, "referenced_count": 10}], "tasks": [{"referent": "classification", "task_count": 10}, {"referent": "automatic_machine_learning_model_selection", "task_count": 6}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "computer_vision", "task_count": 5}, {"referent": "automl", "task_count": 5}, {"referent": "classification_tasks", "task_count": 5}, {"referent": "multi_label_learning", "task_count": 4}, {"referent": "knowledge_graphs", "task_count": 3}, {"referent": "semi_supervised_image_classification", "task_count": 2}, {"referent": "meta_learning", "task_count": 2}], "methods": [{"referent": "neural_architecture_search", "method_count": 9}, {"referent": "automl", "method_count": 7}, {"referent": "nas_fcos", "method_count": 6}, {"referent": "recurrent_neural_networks", "method_count": 6}, {"referent": "meta_learning_algorithms", "method_count": 4}, {"referent": "ggs_nns", "method_count": 4}, {"referent": "symbolic_deep_learning", "method_count": 4}, {"referent": "mad_learning", "method_count": 4}, {"referent": "differentiable_hyperparameter_search", "method_count": 3}, {"referent": "backbone_architectures", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 2, 14, 25, 21, 14, 0], "total": 77, "isTopResearch": false, "rank": 549}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 2, 13, 6, 20, 9, 0], "total": 51, "isTopResearch": false, "rank": 181}, "ai_publications_growth": {"counts": [], "total": 41.4957264957265, "isTopResearch": false, "rank": 75}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 9, 6, 4, 2, 0], "total": 21, "isTopResearch": false, "rank": 76}, "citation_counts": {"counts": [0, 0, 0, 0, 2, 5, 46, 137, 173, 129, 7], "total": 499, "isTopResearch": false, "rank": 270}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 1, 2, 0], "total": 6, "isTopResearch": true, "rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0], "total": 4, "isTopResearch": true, "rank": 161}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 2.0, 2.5, 3.5384615384615383, 22.833333333333332, 8.65, 14.333333333333334, 0], "total": 9.784313725490197, "isTopResearch": false, "rank": 549}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 8, 21, 61, 56, 69, 22, 2, 0], "total": 239, "table": null, "rank": 90}, "ai_patents_growth": {"counts": [], "total": 68.49791829300027, "table": null, "rank": 160}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 80, 210, 610, 560, 690, 220, 20, 0], "total": 2390, "table": null, "rank": 90}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": null, "rank": 158}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 7, 0, 1, 1, 0, 0], "total": 9, "table": "industry", "rank": 95}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": null, "rank": 165}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 61}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 34}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 4, 5, 24, 25, 36, 11, 0, 0], "total": 105, "table": "industry", "rank": 71}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 1, 1, 5, 4, 1, 0, 0], "total": 13, "table": "industry", "rank": 63}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 2, 1, 3, 0, 0, 0], "total": 6, "table": "industry", "rank": 204}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 55}, "Business": {"counts": [0, 0, 0, 2, 3, 5, 12, 9, 4, 0, 0], "total": 35, "table": "industry", "rank": 71}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 62}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0], "total": 3, "table": "application", "rank": 139}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 2, 1, 1, 3, 0, 0, 0], "total": 8, "table": "application", "rank": 88}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 2, 3, 5, 6, 6, 2, 0, 0], "total": 24, "table": "application", "rank": 73}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 3, 10, 5, 6, 14, 8, 0, 0], "total": 46, "table": "application", "rank": 123}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "table": null, "rank": 191}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 68, "rank": 947}, "ai_jobs": {"counts": null, "total": 27, "rank": 627}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "4Paradigm is an AI technology and service provider. With machine learning technology, 4Paradigm helps enterprises to improve work efficiency, reduce risks and achieve greater commercial values.", "company_site_link": "https://www.4paradigm.com/about/about-us", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1976, "country": "China", "website": "https://www.vanke.com", "crunchbase": {"text": "13f42240-4d48-b96e-1f3d-ec2137821780", "url": "https://www.crunchbase.com/organization/china-vanke"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vanke"], "stage": "Mature", "name": "China Vanke", "patent_name": "China Vanke", "continent": "Asia", "local_logo": "china_vanke.png", "aliases": "China Vanke; China Vanke Co.,Ltd; Wanke; \u4e07\u79d1; \u4e07\u79d1\u4f01\u4e1a\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295863798, "url": "https://permid.org/1-4295863798"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:2202", "url": "https://www.google.com/finance/quote/2202:HKG"}], "market_full": [{"text": "PKC:CHVKF", "url": "https://www.google.com/finance/quote/CHVKF:PKC"}, {"text": "DEU:18V", "url": "https://www.google.com/finance/quote/18V:DEU"}, {"text": "BER:18V", "url": "https://www.google.com/finance/quote/18V:BER"}, {"text": "HKG.HS:2202", "url": "https://www.google.com/finance/quote/2202:HKG.HS"}, {"text": "HKG:2202", "url": "https://www.google.com/finance/quote/2202:HKG"}, {"text": "MUN:18V", "url": "https://www.google.com/finance/quote/18V:MUN"}, {"text": "DUS:18V", "url": "https://www.google.com/finance/quote/18V:DUS"}, {"text": "PKC:CHVKY", "url": "https://www.google.com/finance/quote/CHVKY:PKC"}, {"text": "HKG.HZ:2202", "url": "https://www.google.com/finance/quote/2202:HKG.HZ"}, {"text": "FRA:18V", "url": "https://www.google.com/finance/quote/18V:FRA"}], "crunchbase_description": "Vanke is a Chinese real estate company with main business in real estate development and property service.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 71605, "cluster_count": 1}, {"cluster_id": 57387, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "image_analysis", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [2, 4, 1, 1, 1, 2, 5, 10, 8, 6, 2], "total": 42, "isTopResearch": false, "rank": 647, "sp500_rank": 340}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441, "sp500_rank": 400}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 22, 15, 0], "total": 40, "isTopResearch": false, "rank": 620, "sp500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 1.0, 2.0, 0, 0, 0], "total": 20.0, "isTopResearch": false, "rank": 313, "sp500_rank": 94}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 68, "rank": 947, "sp500_rank": 325}, "ai_jobs": {"counts": null, "total": 7, "rank": 944, "sp500_rank": 319}}, "sector": "Real Estate", "business_sector": "Real Estate"}, {"cset_id": 2483, "country": "United States", "website": "https://www.royalcaribbean.com/", "crunchbase": {"text": "459e7a1c-134d-8910-e0da-d66a1e495c53", "url": "https://www.crunchbase.com/organization/royal-caribbean-cruises-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/royal-caribbean-international"], "stage": "Mature", "name": "Royal Caribbean Cruises Ltd", "patent_name": "royal caribbean cruises ltd", "continent": "North America", "local_logo": "royal_caribbean_cruises_ltd.png", "aliases": "Royal Caribbean Cruises; Royal Caribbean Group", "permid_links": [{"text": 4295900973, "url": "https://permid.org/1-4295900973"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:RCL", "url": "https://www.google.com/finance/quote/nyse:rcl"}], "market_full": [{"text": "FRA:RC8", "url": "https://www.google.com/finance/quote/fra:rc8"}, {"text": "MEX:RCL*", "url": "https://www.google.com/finance/quote/mex:rcl*"}, {"text": "STU:RC8", "url": "https://www.google.com/finance/quote/rc8:stu"}, {"text": "DEU:RCL", "url": "https://www.google.com/finance/quote/deu:rcl"}, {"text": "LSE:0I1W", "url": "https://www.google.com/finance/quote/0i1w:lse"}, {"text": "NYQ:RCL", "url": "https://www.google.com/finance/quote/nyq:rcl"}, {"text": "BER:RC8", "url": "https://www.google.com/finance/quote/ber:rc8"}, {"text": "MUN:RC8", "url": "https://www.google.com/finance/quote/mun:rc8"}, {"text": "DUS:RC8", "url": "https://www.google.com/finance/quote/dus:rc8"}, {"text": "BRN:RC8", "url": "https://www.google.com/finance/quote/brn:rc8"}, {"text": "NYSE:RCL", "url": "https://www.google.com/finance/quote/nyse:rcl"}, {"text": "ASE:RCL", "url": "https://www.google.com/finance/quote/ase:rcl"}, {"text": "SAO:R1CL34", "url": "https://www.google.com/finance/quote/r1cl34:sao"}], "crunchbase_description": "Royal Caribbean Cruises is a global cruise vacation company that owns and operates global brands for leisure & travel .", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 4, 5, 0, 2, 3, 0, 0, 1, 0, 0], "total": 16, "isTopResearch": false, "rank": 847, "fortune500_rank": 300}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606, "fortune500_rank": 186}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 20, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606, "fortune500_rank": 186}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445, "fortune500_rank": 147}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122, "fortune500_rank": 52}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "fortune500_rank": 138}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 68, "rank": 947, "fortune500_rank": 446}, "ai_jobs": {"counts": null, "total": 6, "rank": 970, "fortune500_rank": 431}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Royal Caribbean Group, formerly known as Royal Caribbean Cruises Ltd., is an American global cruise holding company incorporated in Liberia and based in Miami, Florida, US. It is the world's second-largest cruise line operator, after Carnival Corporation & plc. As of January 2021, Royal Caribbean Group fully owns three cruise lines: Royal Caribbean International, Celebrity Cruises, and Silversea Cruises. They also hold a 50% stake in TUI Cruises and the now-defunct Pullmantur Cruises and CDF Croisi\u00e8res de France. Previously Royal Caribbean Group also fully owned Azamara Cruises selling the cruise line to Sycamore Partners in January 2021, and 50% of Island Cruises, selling their stake to TUI Travel PLC in October 2008.", "wikipedia_link": "https://en.wikipedia.org/wiki/Royal_Caribbean_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1767, "country": "South Korea", "website": "https://www.hyundai.com/", "crunchbase": {"text": " 271e1bf5-086a-dbb8-9806-b76a591b864e", "url": " https://www.crunchbase.com/organization/hyundai-motor-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hyundai-motor-america"], "stage": "Mature", "name": "Hyundai", "patent_name": "Hyundai", "continent": "Asia", "local_logo": null, "aliases": "Hyundai; Hyundai Motor Company; \ud604\ub300\ub4dc\ub9bc\ud22c\uc5b4", "permid_links": [{"text": 4295881548, "url": "https://permid.org/1-4295881548"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "MEX:HYUDN", "url": "https://www.google.com/finance/quote/HYUDN:MEX"}, {"text": "DUS:HYU", "url": "https://www.google.com/finance/quote/DUS:HYU"}, {"text": "FRA:HYU", "url": "https://www.google.com/finance/quote/FRA:HYU"}, {"text": "LSE:HYUO", "url": "https://www.google.com/finance/quote/HYUO:LSE"}, {"text": "PKL:HYMLY", "url": "https://www.google.com/finance/quote/HYMLY:PKL"}, {"text": "PKL:HYMPY", "url": "https://www.google.com/finance/quote/HYMPY:PKL"}, {"text": "LSE:HYUP", "url": "https://www.google.com/finance/quote/HYUP:LSE"}, {"text": "PKL:HZNDF", "url": "https://www.google.com/finance/quote/HZNDF:PKL"}, {"text": "PKL:HYMPF", "url": "https://www.google.com/finance/quote/HYMPF:PKL"}, {"text": "PKL:HYMTF", "url": "https://www.google.com/finance/quote/HYMTF:PKL"}, {"text": "HAM:HYU", "url": "https://www.google.com/finance/quote/HAM:HYU"}, {"text": "PKL:HYMLF", "url": "https://www.google.com/finance/quote/HYMLF:PKL"}, {"text": "LSE:HYUD", "url": "https://www.google.com/finance/quote/HYUD:LSE"}, {"text": "DEU:HYU", "url": "https://www.google.com/finance/quote/DEU:HYU"}, {"text": "STU:HYU", "url": "https://www.google.com/finance/quote/HYU:STU"}, {"text": "BRN:HYU", "url": "https://www.google.com/finance/quote/BRN:HYU"}, {"text": "BER:HYU", "url": "https://www.google.com/finance/quote/BER:HYU"}, {"text": "HAN:HYU", "url": "https://www.google.com/finance/quote/HAN:HYU"}, {"text": "MUN:HYU", "url": "https://www.google.com/finance/quote/HYU:MUN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 17}, {"field_name": "Artificial neural network", "field_count": 8}, {"field_name": "Feature (computer vision)", "field_count": 8}, {"field_name": "Deep learning", "field_count": 8}, {"field_name": "Advanced driver assistance systems", "field_count": 6}, {"field_name": "Convolutional neural network", "field_count": 6}, {"field_name": "Robotic arm", "field_count": 6}, {"field_name": "Segmentation", "field_count": 6}, {"field_name": "Sensor fusion", "field_count": 4}, {"field_name": "Fuzzy logic", "field_count": 3}], "clusters": [{"cluster_id": 2410, "cluster_count": 10}, {"cluster_id": 2202, "cluster_count": 6}, {"cluster_id": 10587, "cluster_count": 6}, {"cluster_id": 14335, "cluster_count": 4}, {"cluster_id": 12054, "cluster_count": 4}, {"cluster_id": 13048, "cluster_count": 4}, {"cluster_id": 1065, "cluster_count": 4}, {"cluster_id": 58040, "cluster_count": 4}, {"cluster_id": 19977, "cluster_count": 4}, {"cluster_id": 9480, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 197}, {"ref_CSET_id": 163, "referenced_count": 98}, {"ref_CSET_id": 87, "referenced_count": 79}, {"ref_CSET_id": 1767, "referenced_count": 71}, {"ref_CSET_id": 161, "referenced_count": 20}, {"ref_CSET_id": 184, "referenced_count": 20}, {"ref_CSET_id": 671, "referenced_count": 20}, {"ref_CSET_id": 37, "referenced_count": 17}, {"ref_CSET_id": 800, "referenced_count": 17}, {"ref_CSET_id": 115, "referenced_count": 16}], "tasks": [{"referent": "autonomous_driving", "task_count": 52}, {"referent": "autonomous_vehicles", "task_count": 41}, {"referent": "classification", "task_count": 35}, {"referent": "vehicle_detection", "task_count": 35}, {"referent": "robots", "task_count": 21}, {"referent": "system_identification", "task_count": 19}, {"referent": "steering_control", "task_count": 16}, {"referent": "industrial_robots", "task_count": 15}, {"referent": "mobile_robot", "task_count": 15}, {"referent": "autonomous_navigation", "task_count": 11}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 24}, {"referent": "double_q_learning", "method_count": 23}, {"referent": "convolutional_neural_networks", "method_count": 20}, {"referent": "symbolic_deep_learning", "method_count": 18}, {"referent": "vqa_models", "method_count": 13}, {"referent": "1d_cnn", "method_count": 11}, {"referent": "mad_learning", "method_count": 11}, {"referent": "optimization", "method_count": 10}, {"referent": "q_learning", "method_count": 10}, {"referent": "meta_learning_algorithms", "method_count": 9}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [310, 359, 319, 341, 364, 404, 441, 404, 392, 342, 12], "total": 3688, "isTopResearch": false, "rank": 80, "sp500_rank": 68}, "ai_publications": {"counts": [22, 30, 23, 21, 27, 38, 46, 45, 65, 47, 0], "total": 364, "isTopResearch": false, "rank": 50, "sp500_rank": 39}, "ai_publications_growth": {"counts": [], "total": 4.859407902886164, "isTopResearch": false, "rank": 180, "sp500_rank": 91}, "ai_pubs_top_conf": {"counts": [0, 0, 1, 0, 0, 0, 1, 1, 4, 1, 0], "total": 8, "isTopResearch": false, "rank": 127, "sp500_rank": 63}, "citation_counts": {"counts": [56, 92, 140, 201, 271, 322, 479, 671, 917, 939, 47], "total": 4135, "isTopResearch": false, "rank": 80, "sp500_rank": 54}, "cv_pubs": {"counts": [4, 6, 4, 2, 7, 7, 7, 4, 19, 11, 0], "total": 71, "isTopResearch": true, "rank": 69, "sp500_rank": 50}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 3, 1, 3, 2, 4, 0], "total": 13, "isTopResearch": true, "rank": 81, "sp500_rank": 53}, "robotics_pubs": {"counts": [10, 19, 9, 12, 12, 15, 12, 16, 20, 15, 0], "total": 140, "isTopResearch": true, "rank": 17, "sp500_rank": 15}, "citations_per_article": {"counts": [2.5454545454545454, 3.066666666666667, 6.086956521739131, 9.571428571428571, 10.037037037037036, 8.473684210526315, 10.41304347826087, 14.911111111111111, 14.107692307692307, 19.97872340425532, 0], "total": 11.35989010989011, "isTopResearch": false, "rank": 491, "sp500_rank": 171}}, "patents": {"ai_patents": {"counts": [16, 33, 43, 57, 88, 151, 193, 212, 63, 0, 0], "total": 856, "table": null, "rank": 32, "sp500_rank": 25}, "ai_patents_growth": {"counts": [], "total": 36.41667940427505, "table": null, "rank": 255, "sp500_rank": 116}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [160, 330, 430, 570, 880, 1510, 1930, 2120, 630, 0, 0], "total": 8560, "table": null, "rank": 32, "sp500_rank": 25}, "Physical_Sciences_and_Engineering": {"counts": [2, 1, 1, 4, 3, 13, 5, 9, 6, 0, 0], "total": 44, "table": null, "rank": 11, "sp500_rank": 9}, "Life_Sciences": {"counts": [0, 2, 0, 1, 3, 4, 7, 4, 4, 0, 0], "total": 25, "table": null, "rank": 42, "sp500_rank": 30}, "Security__eg_cybersecurity": {"counts": [0, 1, 1, 2, 3, 3, 2, 7, 2, 0, 0], "total": 21, "table": null, "rank": 54, "sp500_rank": 41}, "Transportation": {"counts": [14, 27, 38, 43, 65, 115, 133, 148, 36, 0, 0], "total": 619, "table": "industry", "rank": 2, "sp500_rank": 2}, "Industrial_and_Manufacturing": {"counts": [2, 0, 2, 4, 4, 3, 8, 10, 5, 0, 0], "total": 38, "table": null, "rank": 18, "sp500_rank": 16}, "Education": {"counts": [0, 0, 0, 2, 0, 0, 1, 2, 0, 0, 0], "total": 5, "table": null, "rank": 32, "sp500_rank": 24}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [0, 2, 2, 7, 10, 14, 29, 25, 8, 0, 0], "total": 97, "table": "industry", "rank": 76, "sp500_rank": 55}, "Banking_and_Finance": {"counts": [1, 2, 3, 3, 2, 12, 12, 14, 5, 0, 0], "total": 54, "table": "industry", "rank": 20, "sp500_rank": 15}, "Telecommunications": {"counts": [0, 2, 5, 7, 14, 23, 27, 33, 21, 0, 0], "total": 132, "table": "industry", "rank": 31, "sp500_rank": 28}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78, "sp500_rank": 54}, "Business": {"counts": [0, 0, 2, 5, 2, 10, 12, 12, 3, 0, 0], "total": 46, "table": null, "rank": 56, "sp500_rank": 43}, "Energy_Management": {"counts": [7, 19, 18, 18, 23, 34, 33, 13, 2, 0, 0], "total": 167, "table": "industry", "rank": 3, "sp500_rank": 3}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 45, "sp500_rank": 29}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 10, "sp500_rank": 9}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 2, 0, 1, 1, 0, 0, 0, 0], "total": 4, "table": null, "rank": 62, "sp500_rank": 44}, "Speech_Processing": {"counts": [0, 1, 1, 4, 8, 9, 3, 4, 1, 0, 0], "total": 31, "table": "application", "rank": 34, "sp500_rank": 26}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 2, 0, 2, 2, 0, 0, 0], "total": 7, "table": null, "rank": 102, "sp500_rank": 66}, "Planning_and_Scheduling": {"counts": [0, 0, 2, 3, 1, 6, 9, 7, 3, 0, 0], "total": 31, "table": "application", "rank": 53, "sp500_rank": 44}, "Control": {"counts": [10, 25, 35, 40, 67, 115, 119, 111, 17, 0, 0], "total": 539, "table": "application", "rank": 2, "sp500_rank": 2}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 5, 9, 6, 26, 48, 53, 26, 0, 0], "total": 174, "table": "application", "rank": 50, "sp500_rank": 39}, "Analytics_and_Algorithms": {"counts": [0, 1, 0, 0, 2, 4, 10, 9, 2, 0, 0], "total": 28, "table": null, "rank": 49, "sp500_rank": 40}, "Measuring_and_Testing": {"counts": [4, 9, 9, 16, 15, 39, 34, 56, 11, 0, 0], "total": 193, "table": "application", "rank": 9, "sp500_rank": 9}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 67, "rank": 950, "sp500_rank": 326}, "ai_jobs": {"counts": null, "total": 21, "rank": 683, "sp500_rank": 275}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 2179, "country": "South Korea", "website": "https://www.lgchem.com/", "crunchbase": {"text": " 31a14031-5326-40a1-4adb-53977b16dcc9", "url": " https://www.crunchbase.com/organization/lg-chem"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lgchemglobal"], "stage": "Mature", "name": "Lg Chem", "patent_name": "LG Chem", "continent": "Asia", "local_logo": null, "aliases": "LG Chem; Lg Chemical", "permid_links": [{"text": 4295882004, "url": "https://permid.org/1-4295882004"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PKL:LGCLF", "url": "https://www.google.com/finance/quote/LGCLF:PKL"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [{"cluster_id": 109, "cluster_count": 2}, {"cluster_id": 5590, "cluster_count": 1}, {"cluster_id": 35571, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "fault_detection", "task_count": 2}, {"referent": "point_processes", "task_count": 2}, {"referent": "image_processing", "task_count": 1}, {"referent": "soft_robotics", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "molecular_property_prediction", "task_count": 1}, {"referent": "continuous_object_recognition", "task_count": 1}, {"referent": "structured_prediction", "task_count": 1}], "methods": [{"referent": "object_detection_models", "method_count": 2}, {"referent": "som", "method_count": 1}, {"referent": "autoencoder", "method_count": 1}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "graphs", "method_count": 1}, {"referent": "electra", "method_count": 1}, {"referent": "moco", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [10, 14, 12, 5, 19, 7, 23, 17, 10, 4, 0], "total": 121, "isTopResearch": false, "rank": 480, "sp500_rank": 283}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "sp500_rank": 275}, "ai_publications_growth": {"counts": [], "total": 50.0, "isTopResearch": false, "rank": 63, "sp500_rank": 31}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 6, 4, 1], "total": 21, "isTopResearch": false, "rank": 679, "sp500_rank": 283}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 3.3333333333333335, 0, 0, 0], "total": 5.25, "isTopResearch": false, "rank": 705, "sp500_rank": 280}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "sp500_rank": 130}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 67, "rank": 950, "sp500_rank": 326}, "ai_jobs": {"counts": null, "total": 8, "rank": 908, "sp500_rank": 311}}, "sector": "Basic Materials", "business_sector": "Chemicals"}, {"cset_id": 191, "country": "United States", "website": "http://www.owkin.com", "crunchbase": {"text": "8382eda7-d0d2-9cbd-785d-5908fc4a37fb", "url": "https://www.crunchbase.com/organization/owkin-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/owkin"], "stage": "Growth", "name": "Owkin", "patent_name": "owkin", "continent": "North America", "local_logo": "owkin.png", "aliases": "Owkin, Inc", "permid_links": [{"text": 5059928461, "url": "https://permid.org/1-5059928461"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Owkin is an AI precision medicine company with a vision to find the right drug for every patient.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 4}, {"field_name": "Digital pathology", "field_count": 3}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Interpretability", "field_count": 1}, {"field_name": "Linear model", "field_count": 1}, {"field_name": "Unsupervised learning", "field_count": 1}, {"field_name": "Lasso (statistics)", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Mutual information", "field_count": 1}, {"field_name": "Medical imaging", "field_count": 1}], "clusters": [{"cluster_id": 1683, "cluster_count": 6}, {"cluster_id": 1149, "cluster_count": 4}, {"cluster_id": 13551, "cluster_count": 3}, {"cluster_id": 15347, "cluster_count": 1}, {"cluster_id": 11577, "cluster_count": 1}, {"cluster_id": 30192, "cluster_count": 1}, {"cluster_id": 10703, "cluster_count": 1}, {"cluster_id": 23169, "cluster_count": 1}, {"cluster_id": 48449, "cluster_count": 1}, {"cluster_id": 12463, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 55}, {"ref_CSET_id": 163, "referenced_count": 25}, {"ref_CSET_id": 87, "referenced_count": 18}, {"ref_CSET_id": 191, "referenced_count": 9}, {"ref_CSET_id": 184, "referenced_count": 3}, {"ref_CSET_id": 1797, "referenced_count": 3}, {"ref_CSET_id": 3116, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 785, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 9}, {"referent": "disease_detection", "task_count": 5}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 4}, {"referent": "predicting_patient_outcomes", "task_count": 3}, {"referent": "cancer_detection", "task_count": 3}, {"referent": "feature_selection", "task_count": 2}, {"referent": "histopathological_segmentation", "task_count": 2}, {"referent": "transfer_learning", "task_count": 2}, {"referent": "molecular_property_prediction", "task_count": 2}, {"referent": "model_compression", "task_count": 2}], "methods": [{"referent": "symbolic_deep_learning", "method_count": 6}, {"referent": "mad_learning", "method_count": 6}, {"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "3d_representations", "method_count": 3}, {"referent": "generalized_linear_models", "method_count": 3}, {"referent": "gradient_clipping", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "moco_v2", "method_count": 2}, {"referent": "attention_mechanisms", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 0, 1, 2, 8, 16, 17, 22, 29, 0], "total": 96, "isTopResearch": false, "rank": 515}, "ai_publications": {"counts": [0, 0, 0, 0, 2, 4, 9, 6, 5, 1, 0], "total": 27, "isTopResearch": false, "rank": 260}, "ai_publications_growth": {"counts": [], "total": -43.333333333333336, "isTopResearch": false, "rank": 1429}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 0, 0, 0, 5, 13, 85, 244, 445, 367, 4], "total": 1163, "isTopResearch": false, "rank": 179}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 2, 4, 4, 3, 0, 0], "total": 13, "isTopResearch": true, "rank": 179}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 2.5, 3.25, 9.444444444444445, 40.666666666666664, 89.0, 367.0, 0], "total": 43.074074074074076, "isTopResearch": false, "rank": 115}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 1, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": -66.66666666666667, "table": null, "rank": 1550}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 30, 10, 10, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 66, "rank": 952}, "ai_jobs": {"counts": null, "total": 41, "rank": 520}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our mission at Owkin is to use machine learning to develop better drugs for patients.", "company_site_link": "http://www.owkin.com", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 457, "country": "United States", "website": "http://www.formlabs.com", "crunchbase": {"text": "4557ecd0-4857-c69b-c419-d75c3e7044f3", "url": "https://www.crunchbase.com/organization/formlabs"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/formlabs"], "stage": "Mature", "name": "Formlabs", "patent_name": "formlabs", "continent": "North America", "local_logo": "formlabs.png", "aliases": "Formlabs Gmbh; Formlabs Inc", "permid_links": [{"text": 5037062023, "url": "https://permid.org/1-5037062023"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Formlabs develops accessible 3D fabrication systems designed for printing intricate figures.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 9526, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [{"referent": "pafs", "method_count": 1}, {"referent": "glove", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 2, 0, 0, 0, 6, 2, 1, 3, 0, 0], "total": 16, "isTopResearch": false, "rank": 847}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 2, 12, 7, 9, 8, 0], "total": 38, "isTopResearch": false, "rank": 625}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 2.0, 0, 0, 0, 0, 0], "total": 38.0, "isTopResearch": false, "rank": 141}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 66, "rank": 952}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Formlabs is a 3D printing technology developer and manufacturer. The Somerville, Massachusetts-based company was founded in September 2011 by three MIT Media Lab students. The company develops and manufactures 3D printers and related software and consumables. It is most known for raising nearly $3 million in a Kickstarter campaign and creating the Form 1, Form 1+, Form 2, Form Cell, Form 3, Form 3L, and Fuse 1 stereolithography and selective laser sintering 3D printers.", "wikipedia_link": "https://en.wikipedia.org/wiki/Formlabs", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2393, "country": "United States", "website": "https://www.sands.com/", "crunchbase": {"text": "20c1ef72-92dd-7004-0b0f-816575e56064", "url": "https://www.crunchbase.com/organization/las-vegas-sands"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/las-vegas-sands-corporation"], "stage": "Mature", "name": "Las Vegas Sands", "patent_name": "las vegas sands", "continent": "North America", "local_logo": "las_vegas_sands.png", "aliases": "Las Vagas Sand Crop; Las Vegas Sands Corp; Las Vegas Sands Corporation", "permid_links": [{"text": 4295908419, "url": "https://permid.org/1-4295908419"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LVS", "url": "https://www.google.com/finance/quote/lvs:nyse"}], "market_full": [{"text": "NYSE:LVS", "url": "https://www.google.com/finance/quote/lvs:nyse"}, {"text": "MEX:LVS*", "url": "https://www.google.com/finance/quote/lvs*:mex"}, {"text": "BRN:LCR", "url": "https://www.google.com/finance/quote/brn:lcr"}, {"text": "BER:LCR", "url": "https://www.google.com/finance/quote/ber:lcr"}, {"text": "DEU:LVS", "url": "https://www.google.com/finance/quote/deu:lvs"}, {"text": "BMV:LVS", "url": "https://www.google.com/finance/quote/bmv:lvs"}, {"text": "DUS:LCR", "url": "https://www.google.com/finance/quote/dus:lcr"}, {"text": "MOEX:LVS-RM", "url": "https://www.google.com/finance/quote/lvs-rm:moex"}, {"text": "STU:LCR", "url": "https://www.google.com/finance/quote/lcr:stu"}, {"text": "LSE:0QY4", "url": "https://www.google.com/finance/quote/0qy4:lse"}, {"text": "ASE:LVS", "url": "https://www.google.com/finance/quote/ase:lvs"}, {"text": "VIE:LVSC", "url": "https://www.google.com/finance/quote/lvsc:vie"}, {"text": "MUN:LCR", "url": "https://www.google.com/finance/quote/lcr:mun"}, {"text": "SAO:L1VS34", "url": "https://www.google.com/finance/quote/l1vs34:sao"}, {"text": "NYQ:LVS", "url": "https://www.google.com/finance/quote/lvs:nyq"}, {"text": "BUE:LVS3", "url": "https://www.google.com/finance/quote/bue:lvs3"}, {"text": "FRA:LCR", "url": "https://www.google.com/finance/quote/fra:lcr"}, {"text": "GER:LCRX", "url": "https://www.google.com/finance/quote/ger:lcrx"}], "crunchbase_description": "Las Vagas Sand Crop is a developer of mobile applications. They have been developing applications regarding Travel for providing", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 66, "rank": 952, "fortune500_rank": 447}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "fortune500_rank": 437}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Services", "wikipedia_description": "Las Vegas Sands Corporation is an American casino and resort company based in Paradise, Nevada, United States. Its resorts feature accommodations, gambling and entertainment, convention and exhibition facilities, restaurants and clubs, as well as an art and science museum in Singapore.", "wikipedia_link": "https://en.wikipedia.org/wiki/Las_Vegas_Sands", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2780, "country": "United States", "website": "https://www.iapws.com", "crunchbase": {"text": "9f2880ae-0e7e-7bc4-2341-d37a2e7e3d24", "url": "https://www.crunchbase.com/organization/iap-worldwide-services-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/iap-worldwide-services"], "stage": "Unknown", "name": "IAP Worldwide Services Inc", "patent_name": "iap worldwide services inc", "continent": "North America", "local_logo": null, "aliases": "Iap; Iap Worldwide Services; Iap Worldwide Services, Inc", "permid_links": [{"text": 4296144511, "url": "https://permid.org/1-4296144511"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "NA", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 4299, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [1, 3, 0, 3, 1, 3, 1, 0, 1, 1, 0], "total": 14, "isTopResearch": false, "rank": 724}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 66, "rank": 952}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Give us your most demanding challenges, and IAP will deliver every time. Our ability to solve problems quickly, resourcefully, and effectively is matched only by our unwavering commitment to your team and mission. IAP uses a global network of integrated capabilities to ensure the U.S. government is capable of fulfilling its many missions in any dynamic environment. We are prepared to meet the challenges of the global environment.", "company_site_link": "https://www.iapws.com", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2978, "country": "United States", "website": "https://www.vaeit.com/", "crunchbase": {"text": "73ac0bb9-d930-496a-a218-4236bc6a974e", "url": "https://www.crunchbase.com/organization/vae-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vae-inc-"], "stage": "Unknown", "name": "VAE Inc", "patent_name": "vae inc", "continent": "North America", "local_logo": "vae_inc.png", "aliases": "Vae; Vae, Inc", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "VAE is an information technology company that offers enterprise management systems and services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 66, "rank": 952}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our creativity and expertise help us deliver world-class solutions\nto support our government and commercial clients.", "company_site_link": "https://www.vaeit.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 752, "country": "United States", "website": "https://www.virtahealth.com/", "crunchbase": {"text": "63192beb-82c3-b85e-f731-dbc2aee7e551", "url": "https://www.crunchbase.com/organization/virta"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/virta-health"], "stage": "Mature", "name": "Virta Health", "patent_name": "virta health", "continent": "North America", "local_logo": "virta_health.png", "aliases": "Virta; Virta Health Corp", "permid_links": [{"text": 5046659077, "url": "https://permid.org/1-5046659077"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Virta delivers a clinically-proven treatment to reverse type 2 diabetes and other chronic metabolic diseases.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 3, 10, 7, 7, 10, 4, 0], "total": 42, "isTopResearch": false, "rank": 647}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 65, "rank": 957}, "ai_jobs": {"counts": null, "total": 13, "rank": 790}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Virta Health is company that aims to provide a treatment which will reverse type 2 diabetes. It was founded in 2014 by Sami Inkinen, a Finnish Stanford-graduate and is based in San Francisco. Virta Corp. has funded several studies about the long-term effect of continuous remote care intervention to treat diabetes.", "wikipedia_link": "https://en.wikipedia.org/wiki/Virta_Health", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2366, "country": "United States", "website": "https://www.incyte.com/", "crunchbase": {"text": "3d3dee53-c25c-187b-62b2-be6f7dddb511", "url": "https://www.crunchbase.com/organization/incyte"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/incyte"], "stage": "Mature", "name": "Incyte", "patent_name": "incyte", "continent": "North America", "local_logo": "incyte.png", "aliases": "Incyte Corp; Incyte Corporation", "permid_links": [{"text": 4295906783, "url": "https://permid.org/1-4295906783"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:INCY", "url": "https://www.google.com/finance/quote/incy:nasdaq"}], "market_full": [{"text": "HAN:ICY", "url": "https://www.google.com/finance/quote/han:icy"}, {"text": "MUN:ICY", "url": "https://www.google.com/finance/quote/icy:mun"}, {"text": "DEU:INCY", "url": "https://www.google.com/finance/quote/deu:incy"}, {"text": "STU:ICY", "url": "https://www.google.com/finance/quote/icy:stu"}, {"text": "DUS:ICY", "url": "https://www.google.com/finance/quote/dus:icy"}, {"text": "BER:ICY", "url": "https://www.google.com/finance/quote/ber:icy"}, {"text": "BRN:ICY", "url": "https://www.google.com/finance/quote/brn:icy"}, {"text": "NASDAQ:INCY", "url": "https://www.google.com/finance/quote/incy:nasdaq"}, {"text": "LSE:0J9P", "url": "https://www.google.com/finance/quote/0j9p:lse"}, {"text": "SAO:I1NC34", "url": "https://www.google.com/finance/quote/i1nc34:sao"}, {"text": "MEX:INCY", "url": "https://www.google.com/finance/quote/incy:mex"}, {"text": "MCX:INCY-RM", "url": "https://www.google.com/finance/quote/incy-rm:mcx"}, {"text": "FRA:ICY", "url": "https://www.google.com/finance/quote/fra:icy"}], "crunchbase_description": "Incyte is a drug discovery and development company which hopes to build a proprietary product pipeline of novel small molecule drugs.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Segmentation", "field_count": 9}, {"field_name": "Graphical model", "field_count": 1}, {"field_name": "Feature selection", "field_count": 1}, {"field_name": "False positive paradox", "field_count": 1}], "clusters": [{"cluster_id": 4673, "cluster_count": 5}, {"cluster_id": 18442, "cluster_count": 3}, {"cluster_id": 36467, "cluster_count": 2}, {"cluster_id": 35111, "cluster_count": 1}, {"cluster_id": 9412, "cluster_count": 1}, {"cluster_id": 16160, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 2366, "referenced_count": 25}, {"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 101, "referenced_count": 9}, {"ref_CSET_id": 789, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 37, "referenced_count": 3}, {"ref_CSET_id": 161, "referenced_count": 2}, {"ref_CSET_id": 1962, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}], "tasks": [{"referent": "segmentation", "task_count": 9}, {"referent": "manual_segmentation", "task_count": 2}, {"referent": "semantic_segmentation", "task_count": 2}, {"referent": "multiobjective_optimization", "task_count": 1}, {"referent": "multi_task_learning", "task_count": 1}, {"referent": "disease_detection", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}, {"referent": "cancer", "task_count": 1}, {"referent": "mas", "task_count": 1}, {"referent": "nuclear_segmentation", "task_count": 1}], "methods": [{"referent": "weight_tying", "method_count": 5}, {"referent": "convolutional_neural_networks", "method_count": 5}, {"referent": "generative_adversarial_networks", "method_count": 4}, {"referent": "subword_segmentation", "method_count": 3}, {"referent": "pixelcnn", "method_count": 3}, {"referent": "cyclegan", "method_count": 2}, {"referent": "mas", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 2}, {"referent": "image_to_image_translation", "method_count": 1}, {"referent": "resnet", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [38, 60, 95, 74, 110, 129, 125, 124, 166, 156, 1], "total": 1078, "isTopResearch": false, "rank": 186, "fortune500_rank": 70}, "ai_publications": {"counts": [0, 0, 0, 0, 5, 4, 3, 1, 1, 0, 0], "total": 14, "isTopResearch": false, "rank": 359, "fortune500_rank": 109}, "ai_publications_growth": {"counts": [], "total": -55.555555555555564, "isTopResearch": false, "rank": 1505, "fortune500_rank": 431}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "fortune500_rank": 66}, "citation_counts": {"counts": [0, 0, 0, 0, 3, 30, 62, 132, 158, 88, 1], "total": 474, "isTopResearch": false, "rank": 278, "fortune500_rank": 83}, "cv_pubs": {"counts": [0, 0, 0, 0, 5, 3, 2, 0, 0, 0, 0], "total": 10, "isTopResearch": true, "rank": 202, "fortune500_rank": 55}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.6, 7.5, 20.666666666666668, 132.0, 158.0, 0, 0], "total": 33.857142857142854, "isTopResearch": false, "rank": 161, "fortune500_rank": 46}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 65, "rank": 957, "fortune500_rank": 448}, "ai_jobs": {"counts": null, "total": 13, "rank": 790, "fortune500_rank": 393}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Incyte Corp is an American pharmaceutical company based in Alapocas, Delaware. The company was founded in Palo Alto, California in 1991 and went public in 1993.", "wikipedia_link": "https://en.wikipedia.org/wiki/Incyte", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 311, "country": "United States", "website": "http://afreshtechnologies.com/", "crunchbase": {"text": "a016a0c9-6c92-4c91-9c9c-ef8ae4e38f28", "url": "https://www.crunchbase.com/organization/afresh-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/afreshtechnologies"], "stage": "Growth", "name": "Afresh", "patent_name": "afresh", "continent": "North America", "local_logo": "afresh.png", "aliases": "Afresh Llc; Afresh Technologies; Afresh Technologies Inc; Pico Systems", "permid_links": [{"text": 5052540964, "url": "https://permid.org/1-5052540964"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Afresh is an AI-powered company selling software to track demand and manage orders for fresh produce in grocery stores.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 65, "rank": 957}, "ai_jobs": {"counts": null, "total": 11, "rank": 829}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Afresh is a revolutionary new approach to fresh ordering, forecasting, and store operations for grocery retailers.", "company_site_link": "http://afreshtechnologies.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 626, "country": "United States", "website": "https://www.newsbreak.com/", "crunchbase": {"text": "4002345b-067a-9590-2c5b-4d168f450602", "url": "https://www.crunchbase.com/organization/particle-media"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/particle-media-inc-"], "stage": "Growth", "name": "Particle Media, Inc.", "patent_name": "particle media, inc.", "continent": "North America", "local_logo": "particle_media,_inc.png", "aliases": "Particle Media; Particle Media Inc", "permid_links": [{"text": 5046041411, "url": "https://permid.org/1-5046041411"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "News Break is the Nation's #1 Intelligent Local News Platform", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Recommender system", "field_count": 1}], "clusters": [{"cluster_id": 13494, "cluster_count": 1}, {"cluster_id": 981, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 792, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "document_ranking", "task_count": 1}, {"referent": "product_recommendation", "task_count": 1}, {"referent": "recommendation", "task_count": 1}], "methods": [{"referent": "cross_view_training", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "neural_probabilistic_language_model", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 1, 0, 0, 4, 16, 11, 16, 10, 7, 0], "total": 65, "isTopResearch": false, "rank": 554}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 4.0, 0, 0, 0, 0, 0, 0], "total": 32.5, "isTopResearch": false, "rank": 172}}, "patents": {"ai_patents": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 20, 0, 0, 0, 0, 0, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 65, "rank": 957}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "The Nation's #1 Intelligent Local News App", "company_site_link": "https://www.newsbreak.com/about", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2328, "country": "United States", "website": "http://www.fortive.com/", "crunchbase": {"text": "a0741fa8-fe9b-80c2-73b0-e4ba16fc4aa5", "url": "https://www.crunchbase.com/organization/fortive"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fortive"], "stage": "Mature", "name": "Fortive Corp", "patent_name": "fortive corp", "continent": "North America", "local_logo": "fortive_corp.png", "aliases": "Fortive; Fortive Corporation", "permid_links": [{"text": 5047750409, "url": "https://permid.org/1-5047750409"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:FTV", "url": "https://www.google.com/finance/quote/ftv:nyse"}], "market_full": [{"text": "MUN:F03", "url": "https://www.google.com/finance/quote/f03:mun"}, {"text": "LSE:0IRE", "url": "https://www.google.com/finance/quote/0ire:lse"}, {"text": "HAN:F03", "url": "https://www.google.com/finance/quote/f03:han"}, {"text": "BER:F03", "url": "https://www.google.com/finance/quote/ber:f03"}, {"text": "STU:F03", "url": "https://www.google.com/finance/quote/f03:stu"}, {"text": "MOEX:FTV-RM", "url": "https://www.google.com/finance/quote/ftv-rm:moex"}, {"text": "NYSE:FTV", "url": "https://www.google.com/finance/quote/ftv:nyse"}, {"text": "NYQ:FTV", "url": "https://www.google.com/finance/quote/ftv:nyq"}, {"text": "FRA:F03", "url": "https://www.google.com/finance/quote/f03:fra"}, {"text": "DUS:F03", "url": "https://www.google.com/finance/quote/dus:f03"}, {"text": "BRN:F03", "url": "https://www.google.com/finance/quote/brn:f03"}, {"text": "SAO:F1TV34", "url": "https://www.google.com/finance/quote/f1tv34:sao"}, {"text": "MEX:FTV*", "url": "https://www.google.com/finance/quote/ftv*:mex"}], "crunchbase_description": "Fortive provides the essential technology for the people who create, implement, and accelerate progress.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [3, 3, 2, 1, 2, 1, 8, 0, 1, 1, 0], "total": 22, "isTopResearch": false, "rank": 784, "fortune500_rank": 280}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 1, 1, 6, 3, 8, 0, 0], "total": 20, "table": null, "rank": 323, "fortune500_rank": 109}, "ai_patents_growth": {"counts": [], "total": 150.0, "table": null, "rank": 69, "fortune500_rank": 15}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 10, 10, 60, 30, 80, 0, 0], "total": 200, "table": null, "rank": 323, "fortune500_rank": 109}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249, "fortune500_rank": 97}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216, "fortune500_rank": 68}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 5, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 305, "fortune500_rank": 110}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 3, 0, 0], "total": 5, "table": "industry", "rank": 225, "fortune500_rank": 86}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345, "fortune500_rank": 111}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "fortune500_rank": 46}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 94}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 0, 2, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 347, "fortune500_rank": 106}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223, "fortune500_rank": 86}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 0, 1, 2, 1, 2, 0, 0], "total": 7, "table": "application", "rank": 147, "fortune500_rank": 45}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 64, "rank": 961, "fortune500_rank": 449}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "fortune500_rank": 409}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Fortive is an American diversified industrial technology conglomerate company headquartered in Everett, Washington. Fortive was spun off from Danaher in July 2016. Mitchell Rales and Steven M. Rales, Danaher's founders, retained board seats with Fortive after the separation. At the point of its independent incorporation, Fortive immediately became a component of the S&P 500. In 2016, Fortive controlled over 20 businesses in the areas of field instrumentation, transportation, sensing, product realization, automation, and franchise distribution. Later the transportation, automation and franchise distribution businesses would be spun off. In 2018 and 2019, Fortune named Fortive as a Future 50 company. In 2020, Fortune named Fortive one of the world's most admired companies along with other major tech companies like Apple, Amazon, and Microsoft. 2020 also marked the third year in a row Fortive has been named to the Fortune 500", "wikipedia_link": "https://en.wikipedia.org/wiki/Fortive", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3037, "country": "United States", "website": "https://www.zeltech.com/", "crunchbase": {"text": "c64c2462-c537-47a2-8812-6cede2a475d4", "url": "https://www.crunchbase.com/organization/zel-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/zel-technologies"], "stage": "Unknown", "name": "Zel Technologies LLC", "patent_name": "zel technologies llc", "continent": "North America", "local_logo": "zel_technologies_llc.png", "aliases": "Zel Technologies; Zel Technologies L L C; Zel Technologies, Llc; Zeltech; Zeltech, Inc", "permid_links": [{"text": 4295987562, "url": "https://permid.org/1-4295987562"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Zel Technologies provides critical operations assistance and leading edge technical solutions to the US military and intelligence community.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [10, 6, 2, 0, 1, 0, 0, 0, 1, 0, 0], "total": 20, "isTopResearch": false, "rank": 809}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 64, "rank": 961}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We deliver essential operational support, expert advice and training, critical technologies, and innovative solutions that help give US military, intelligence and homeland security operations the winning edge.", "company_site_link": "https://www.zeltech.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 421, "country": "United States", "website": "https://www.dexterity.ai/", "crunchbase": {"text": "d0edf0f6-1a3f-4757-bc49-dc13037793d4", "url": "https://www.crunchbase.com/organization/dexterity-93d4"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dexterityinc"], "stage": "Growth", "name": "Dexterity, Inc.", "patent_name": "dexterity, inc.", "continent": "North America", "local_logo": "dexterity,_inc.png", "aliases": "Dexterity; Dexterity Inc", "permid_links": [{"text": 5035564828, "url": "https://permid.org/1-5035564828"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Dexterity provides robotic systems solutions for logistics, warehouses, and supply chain.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Robotic surgery", "field_count": 1}], "clusters": [{"cluster_id": 3647, "cluster_count": 1}, {"cluster_id": 16215, "cluster_count": 1}, {"cluster_id": 17252, "cluster_count": 1}, {"cluster_id": 3763, "cluster_count": 1}, {"cluster_id": 4310, "cluster_count": 1}, {"cluster_id": 1764, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 800, "referenced_count": 6}, {"ref_CSET_id": 184, "referenced_count": 4}, {"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 1516, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 637, "referenced_count": 1}, {"ref_CSET_id": 820, "referenced_count": 1}, {"ref_CSET_id": 375, "referenced_count": 1}, {"ref_CSET_id": 798, "referenced_count": 1}, {"ref_CSET_id": 789, "referenced_count": 1}], "tasks": [{"referent": "robots", "task_count": 2}, {"referent": "industrial_robots", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "speech_production", "task_count": 1}, {"referent": "safety_perception_recognition", "task_count": 1}, {"referent": "domain_adaptation", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "image_manipulation", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 2}, {"referent": "automl", "method_count": 1}, {"referent": "sttp", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "mrnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 1, 0, 0, 4, 0, 2, 0], "total": 8, "isTopResearch": false, "rank": 980}, "ai_publications": {"counts": [0, 0, 1, 0, 1, 0, 0, 4, 0, 1, 0], "total": 7, "isTopResearch": false, "rank": 481}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 7, 7, 6, 10, 17, 27, 35, 0], "total": 109, "isTopResearch": false, "rank": 491}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 1, 0, 1, 0, 0, 4, 0, 1, 0], "total": 7, "isTopResearch": true, "rank": 142}, "citations_per_article": {"counts": [0, 0, 0.0, 0, 7.0, 0, 0, 4.25, 0, 35.0, 0], "total": 15.571428571428571, "isTopResearch": false, "rank": 394}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 64, "rank": 961}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We provide dexterous robotic systems for logistics and supply chains, which allow customers to unlock the maximum value of their workforce by automating repetitive pick-pack tasks. We deliver full-stack, end-to-end systems for kitting, picking, packing, counting, sorting, palletizing, and order fulfillment. We excel at handling packaged foods, consumer packaged goods, industrial & automotive parts, parcels, and boxes.", "company_site_link": "https://dexterity.ai", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2990, "country": "United States", "website": "https://www.obxtek.com/", "crunchbase": {"text": "1f67c3ff-7132-4901-87fe-0a697eff39ac", "url": "https://www.crunchbase.com/organization/obxtek"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/obxtek"], "stage": "Unknown", "name": "Obxtek Inc", "patent_name": "obxtek inc", "continent": "North America", "local_logo": "obxtek_inc.png", "aliases": "Obxtek; Obxtek Inc; Obxtek, Inc", "permid_links": [{"text": 5003793720, "url": "https://permid.org/1-5003793720"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "OBXtek specializes in cybersecurity, enterprise service management, IT engineering, software, logistics and mobile app development services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 64, "rank": 961}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 1880, "country": "China", "website": "https://www.evergrande.com/", "crunchbase": {"text": " 90656f66-730d-ec0a-2f1b-970e0a7b6f3a", "url": " https://www.crunchbase.com/organization/evergrande-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/evergrande-group"], "stage": "Mature", "name": "China Evergrande Group", "patent_name": "China Evergrande Group", "continent": "Asia", "local_logo": null, "aliases": "China Evergrande Group; Evergrande Real Estate Group Limited; \u4e2d\u56fd\u6052\u5927\u96c6\u56e2; \u6052\u5927; \u6052\u5927\u96c6\u56e2", "permid_links": [{"text": 4295864163, "url": "https://permid.org/1-4295864163"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:3333", "url": "https://www.google.com/finance/quote/3333:HKG"}], "market_full": [{"text": "MUN:EV1A", "url": "https://www.google.com/finance/quote/EV1A:MUN"}, {"text": "DEU:EV1A", "url": "https://www.google.com/finance/quote/DEU:EV1A"}, {"text": "BER:EV1A", "url": "https://www.google.com/finance/quote/BER:EV1A"}, {"text": "HAM:EV1", "url": "https://www.google.com/finance/quote/EV1:HAM"}, {"text": "DEU:EV1", "url": "https://www.google.com/finance/quote/DEU:EV1"}, {"text": "MUN:EV1", "url": "https://www.google.com/finance/quote/EV1:MUN"}, {"text": "HKG.HZ:3333", "url": "https://www.google.com/finance/quote/3333:HKG.HZ"}, {"text": "FRA:EV1A", "url": "https://www.google.com/finance/quote/EV1A:FRA"}, {"text": "STU:EV1A", "url": "https://www.google.com/finance/quote/EV1A:STU"}, {"text": "PNK:EGRNY", "url": "https://www.google.com/finance/quote/EGRNY:PNK"}, {"text": "STU:EV1", "url": "https://www.google.com/finance/quote/EV1:STU"}, {"text": "PKL:EGRNF", "url": "https://www.google.com/finance/quote/EGRNF:PKL"}, {"text": "HKG.HS:3333", "url": "https://www.google.com/finance/quote/3333:HKG.HS"}, {"text": "FRA:EV1", "url": "https://www.google.com/finance/quote/EV1:FRA"}, {"text": "DUS:EV1", "url": "https://www.google.com/finance/quote/DUS:EV1"}, {"text": "BER:EV1", "url": "https://www.google.com/finance/quote/BER:EV1"}, {"text": "HKG:3333", "url": "https://www.google.com/finance/quote/3333:HKG"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "sp500_rank": 463}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 64, "rank": 961, "sp500_rank": 328}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153, "sp500_rank": 356}}, "sector": "Real Estate", "business_sector": "Real Estate"}, {"cset_id": 253, "country": "China", "website": "tongdun.cn", "crunchbase": {"text": "59eae86c-6e0a-40ab-82ae-48180931f834", "url": "https://www.crunchbase.com/organization/tongdun-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tongduntechnology"], "stage": "Mature", "name": "Tongdun", "patent_name": "tongdun", "continent": "Asia", "local_logo": "tongdun.png", "aliases": "Fraud Matrix; Tongdun Keji; Tongdun Technology; Tongdun Technology Co Ltd; Tongdun Technology Co., Ltd; \u540c\u76fe\u79d1\u6280; \u540c\u76fe\u79d1\u6280\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5057972133, "url": "https://permid.org/1-5057972133"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": " Tongdun Technology develops online software solutions for anti-theft and fraud management applications.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Adversarial system", "field_count": 2}, {"field_name": "Knowledge extraction", "field_count": 1}, {"field_name": "Ensemble learning", "field_count": 1}, {"field_name": "Speech synthesis", "field_count": 1}, {"field_name": "Inertial measurement unit", "field_count": 1}, {"field_name": "Data warehouse", "field_count": 1}], "clusters": [{"cluster_id": 1149, "cluster_count": 2}, {"cluster_id": 2381, "cluster_count": 2}, {"cluster_id": 10301, "cluster_count": 1}, {"cluster_id": 22315, "cluster_count": 1}, {"cluster_id": 36512, "cluster_count": 1}, {"cluster_id": 69270, "cluster_count": 1}, {"cluster_id": 72641, "cluster_count": 1}, {"cluster_id": 5507, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 25}, {"ref_CSET_id": 163, "referenced_count": 9}, {"ref_CSET_id": 87, "referenced_count": 7}, {"ref_CSET_id": 245, "referenced_count": 6}, {"ref_CSET_id": 37, "referenced_count": 3}, {"ref_CSET_id": 106, "referenced_count": 2}, {"ref_CSET_id": 800, "referenced_count": 2}, {"ref_CSET_id": 133, "referenced_count": 2}, {"ref_CSET_id": 112, "referenced_count": 2}, {"ref_CSET_id": 219, "referenced_count": 1}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "inference_attack", "task_count": 2}, {"referent": "adversarial_attack", "task_count": 2}, {"referent": "scene_text_detection", "task_count": 2}, {"referent": "classification_tasks", "task_count": 2}, {"referent": "image_recognition", "task_count": 2}, {"referent": "meta_learning", "task_count": 1}, {"referent": "question_generation", "task_count": 1}, {"referent": "reasoning", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 2}, {"referent": "adaptive_nms", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "weight_tying", "method_count": 1}, {"referent": "lightconv", "method_count": 1}, {"referent": "wfst", "method_count": 1}, {"referent": "sequence_to_sequence_models", "method_count": 1}, {"referent": "tacotron", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 3, 8, 2, 0, 0], "total": 14, "isTopResearch": false, "rank": 875}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 3, 8, 0, 0, 0], "total": 11, "isTopResearch": false, "rank": 397}, "ai_publications_growth": {"counts": [], "total": 33.33333333333333, "isTopResearch": false, "rank": 89}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 19, 74, 43, 2], "total": 138, "isTopResearch": false, "rank": 451}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 287}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 208}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 2.375, 0, 0, 0], "total": 12.545454545454545, "isTopResearch": false, "rank": 460}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 9, 25, 21, 10, 0], "total": 66, "table": null, "rank": 195}, "ai_patents_growth": {"counts": [], "total": 488.8888888888889, "table": null, "rank": 13}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 90, 250, 210, 100, 0], "total": 660, "table": null, "rank": 195}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 6, 2, 0, 0], "total": 8, "table": "industry", "rank": 103}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 7, 8, 3, 0], "total": 19, "table": "industry", "rank": 195}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 7, 2, 0], "total": 10, "table": "industry", "rank": 78}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 3, 2, 0, 0, 0], "total": 5, "table": "industry", "rank": 225}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 6, 1, 0], "total": 10, "table": "industry", "rank": 149}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 4, 0, 0, 0], "total": 5, "table": "application", "rank": 117}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 5, 1, 0], "total": 7, "table": "application", "rank": 153}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 4, 9, 10, 6, 0], "total": 29, "table": "application", "rank": 154}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 63, "rank": 966}, "ai_jobs": {"counts": null, "total": 31, "rank": 589}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "\u540c\u76fe\u79d1\u6280\u662f\u4e2d\u56fd\u667a\u80fd\u5206\u6790\u548c\u51b3\u7b56\u9886\u57df\u9886\u519b\u4f01\u4e1a\uff0c\u4ee5\u4eba\u5de5\u667a\u80fd\u3001\u4e91\u8ba1\u7b97\u3001\u5927\u6570\u636e\u4e09\u5927\u6838\u5fc3\u6280\u672f\u4f53\u7cfb\u4e3a\u57fa\u7840\uff0c\u57fa\u4e8e\u5bf9\u6570\u636e\u7684\u63a2\u7d22\u6d1e\u5bdf\u548c\u6df1\u523b\u7406\u89e3\uff0c\u5c06\u6df1\u5ea6\u5b66\u4e60\u3001\u8054\u90a6\u5b66\u4e60\u7b49\u9886\u5148\u6280\u672f\u4e0e\u4e1a\u52a1\u573a\u666f\u6df1\u5ea6\u878d\u5408\uff0c\u4e3a\u91d1\u878d\u3001\u4fdd\u9669\u3001\u4e92\u8054\u7f51\u3001\u653f\u52a1\u3001\u96f6\u552e\u3001\u7269\u6d41\u7b49\u884c\u4e1a\u63d0\u4f9b\u667a\u80fd\u5206\u6790\u4e0e\u51b3\u7b56\u670d\u52a1\uff0c\u8d4b\u80fd\u5e76\u6fc0\u53d1\u5ba2\u6237\uff0c\u5e2e\u52a9\u5ba2\u6237\u505a\u51fa\u66f4\u4f73\u51b3\u7b56\u3002\u622a\u81f3\u76ee\u524d\uff0c\u7d2f\u8ba1\u5df2\u6709\u8d85\u8fc7\u4e00\u4e07\u5bb6\u5ba2\u6237\u9009\u62e9\u4e86\u540c\u76fe\u7684\u4ea7\u54c1\u53ca\u670d\u52a1\u3002", "company_site_link": "https://tongdun.cn/info/company", "description_retrieval_date": "2021-03-17", "company_site_description_translation": "Tongdun Technology is a leading company in the field of intelligent analysis and decision-making in China. It is based on the three core technology systems of artificial intelligence, cloud computing, and big data. Based on the exploration, insight and deep understanding of data, it combines leading technologies such as deep learning and federated learning with Business scenarios are deeply integrated to provide intelligent analysis and decision-making services for finance, insurance, Internet, government affairs, retail, logistics and other industries, empowering and motivating customers, and helping them make better decisions. Up to now, more than 10,000 customers have chosen Tongdun\u2019s products and services."}, {"cset_id": 378, "country": "United States", "website": "http://www.crai.com", "crunchbase": {"text": "7e6ce66b-be8d-2396-479c-037b933be310", "url": "https://www.crunchbase.com/organization/charles-river-associates"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/charles-river-associates"], "stage": "Mature", "name": "Charles River Associates", "patent_name": "charles river associates", "continent": "North America", "local_logo": "charles_river_associates.png", "aliases": "CRA International Inc; Charles River Associates (Cra); Cra International; Cra International, Inc", "permid_links": [{"text": 4295905924, "url": "https://permid.org/1-4295905924"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:CRAI", "url": "https://www.google.com/finance/quote/crai:nasdaq"}], "market_full": [{"text": "NASDAQ:CRAI", "url": "https://www.google.com/finance/quote/crai:nasdaq"}], "crunchbase_description": "Charles River Associates is a consulting firm specializing in financial, litigation, regulatory, and management consulting.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [41, 36, 30, 45, 46, 47, 40, 67, 43, 28, 0], "total": 423, "isTopResearch": false, "rank": 299}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 63, "rank": 966}, "ai_jobs": {"counts": null, "total": 23, "rank": 656}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Charles River Associates (legally CRA International, Inc.) is a global consulting firm headquartered in Boston. In 2009, the company acquired Marakon Associates.", "wikipedia_link": "https://en.wikipedia.org/wiki/CRA_International", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2937, "country": "United States", "website": "https://www.tecolote.com/", "crunchbase": {"text": "e425b2d2-705a-4478-a842-f76f73a922bb", "url": "https://www.crunchbase.com/organization/tecolote-research"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tecoloteresearch"], "stage": "Unknown", "name": "Tecolote Research Inc", "patent_name": "tecolote research inc", "continent": "North America", "local_logo": "tecolote_research_inc.png", "aliases": "Tecolote; Tecolote Research; Tecolote Research, Inc", "permid_links": [{"text": 4296618325, "url": "https://permid.org/1-4296618325"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Tecolote Research provides decision support, program management, project controls, and software solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [4, 0, 0, 2, 1, 1, 0, 0, 2, 0, 0], "total": 10, "isTopResearch": false, "rank": 942}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 63, "rank": 966}, "ai_jobs": {"counts": null, "total": 23, "rank": 656}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our mission is our customer\u2019s mission. As a result, our repeat clients represent 90 percent of our business, and we maintain longstanding support relationships with organizations throughout the U.S. Department of Defense (DoD) and other Federal Government Agencies.", "company_site_link": "https://www.tecolote.com/Content/About/AboutUs.aspx", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2257, "country": "United States", "website": "https://churchdwight.com/", "crunchbase": {"text": "ec542035-161c-f666-01be-f2a0bcef5523", "url": "https://www.crunchbase.com/organization/church-dwight-co-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/church-&-dwight-co-inc"], "stage": "Mature", "name": "Church & Dwight", "patent_name": "church & dwight", "continent": "North America", "local_logo": "church_&_dwight.png", "aliases": "Church & Dwight Co. Inc; Church & Dwight Co., Inc", "permid_links": [{"text": 4295903707, "url": "https://permid.org/1-4295903707"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CHD", "url": "https://www.google.com/finance/quote/chd:nyse"}], "market_full": [{"text": "DEU:CXU", "url": "https://www.google.com/finance/quote/cxu:deu"}, {"text": "STU:CXU", "url": "https://www.google.com/finance/quote/cxu:stu"}, {"text": "ASE:CHD", "url": "https://www.google.com/finance/quote/ase:chd"}, {"text": "VIE:CHD", "url": "https://www.google.com/finance/quote/chd:vie"}, {"text": "MUN:CXU", "url": "https://www.google.com/finance/quote/cxu:mun"}, {"text": "MEX:CHD", "url": "https://www.google.com/finance/quote/chd:mex"}, {"text": "LSE:0R13", "url": "https://www.google.com/finance/quote/0r13:lse"}, {"text": "FRA:CXU", "url": "https://www.google.com/finance/quote/cxu:fra"}, {"text": "DUS:CXU", "url": "https://www.google.com/finance/quote/cxu:dus"}, {"text": "BRN:CXU", "url": "https://www.google.com/finance/quote/brn:cxu"}, {"text": "NYSE:CHD", "url": "https://www.google.com/finance/quote/chd:nyse"}, {"text": "GER:CXUX", "url": "https://www.google.com/finance/quote/cxux:ger"}, {"text": "SAO:CHDC34", "url": "https://www.google.com/finance/quote/chdc34:sao"}, {"text": "BER:CXU", "url": "https://www.google.com/finance/quote/ber:cxu"}, {"text": "MCX:CHD-RM", "url": "https://www.google.com/finance/quote/chd-rm:mcx"}, {"text": "NYQ:CHD", "url": "https://www.google.com/finance/quote/chd:nyq"}], "crunchbase_description": "Church & Dwight Co., Inc. develops, manufactures and markets a range of household, personal care and specialty products.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [5, 1, 3, 12, 6, 4, 9, 9, 15, 3, 0], "total": 67, "isTopResearch": false, "rank": 572, "fortune500_rank": 212}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510, "fortune500_rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 63, "rank": 966, "fortune500_rank": 450}, "ai_jobs": {"counts": null, "total": 20, "rank": 692, "fortune500_rank": 349}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services", "wikipedia_description": "Church & Dwight Co., Inc., is a major American manufacturer of household products that is headquartered in Ewing, New Jersey. While it manufactures many items, it is best known for its Arm & Hammer line which includes baking soda and a variety of products made with it, including laundry detergent. Church & Dwight is incorporated in Delaware.", "wikipedia_link": "https://en.wikipedia.org/wiki/Church_%26_Dwight", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 723, "country": "United States", "website": "http://voleon.com/", "crunchbase": {"text": "bedb81b6-4607-e962-5f9a-9b3890d826c8", "url": "https://www.crunchbase.com/organization/the-voleon-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/voleon-capital-management"], "stage": "Unknown", "name": "The Voleon Group", "patent_name": "the voleon group", "continent": "North America", "local_logo": "the_voleon_group.png", "aliases": "Voleon; Voleon Capital Management Lp", "permid_links": [{"text": 5000684901, "url": "https://permid.org/1-5000684901"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "The Voleon Group is a family of companies committed to the development & deployment of cutting-edge technologies in investment management.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Topic model", "field_count": 1}, {"field_name": "Linear model", "field_count": 1}, {"field_name": "Categorical variable", "field_count": 1}], "clusters": [{"cluster_id": 28416, "cluster_count": 2}, {"cluster_id": 916, "cluster_count": 1}, {"cluster_id": 39035, "cluster_count": 1}, {"cluster_id": 17517, "cluster_count": 1}, {"cluster_id": 38657, "cluster_count": 1}, {"cluster_id": 59147, "cluster_count": 1}, {"cluster_id": 25647, "cluster_count": 1}, {"cluster_id": 2381, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 15}, {"ref_CSET_id": 163, "referenced_count": 9}, {"ref_CSET_id": 6, "referenced_count": 4}, {"ref_CSET_id": 115, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 792, "referenced_count": 2}, {"ref_CSET_id": 800, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}], "tasks": [{"referent": "inference_attack", "task_count": 2}, {"referent": "portfolio_optimization", "task_count": 1}, {"referent": "uncertainty_estimation", "task_count": 1}, {"referent": "bayesian_inference", "task_count": 1}, {"referent": "tensor_networks", "task_count": 1}, {"referent": "hierarchical_reinforcement_learning", "task_count": 1}, {"referent": "multivariate_time_series_forecasting", "task_count": 1}, {"referent": "time_series", "task_count": 1}, {"referent": "graph_sampling", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "linear_regression", "method_count": 2}, {"referent": "generalized_linear_models", "method_count": 2}, {"referent": "stochastic_optimization", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "emf", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}, {"referent": "t_d", "method_count": 1}, {"referent": "mixture_of_logistic_distributions", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 1, 0, 2, 5, 4, 2, 4, 0, 0], "total": 19, "isTopResearch": false, "rank": 818}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 3, 2, 0, 2, 0, 0], "total": 8, "isTopResearch": false, "rank": 455}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [5, 25, 44, 58, 45, 48, 83, 151, 165, 84, 2], "total": 710, "isTopResearch": false, "rank": 225}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [5.0, 0, 0, 0, 0, 16.0, 41.5, 0, 82.5, 0, 0], "total": 88.75, "isTopResearch": false, "rank": 41}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 63, "rank": 966}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "At Voleon, we approach investment management through the prism of machine learning, in which flexible statistical models are applied to the problem of financial prediction. Rather than having humans look at individual events within the marketplace, machine learning employs statistical algorithms capable of detecting persistent effects across large swaths of data. Besides financial markets, there is a wide array of other real-life applications for machine learning, from medical diagnosis to weather prediction.", "company_site_link": "https://voleon.com/index.html%3Fp=150.html", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2160, "country": "Taiwan", "website": "https://www.fubon.com/", "crunchbase": {"text": " 2504bb68-81cd-a827-6a82-8a991156da55", "url": " https://www.crunchbase.com/organization/fubon-technology-co"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fubon"], "stage": "Mature", "name": "Fubon Financial Holding", "patent_name": "Fubon Financial Holding", "continent": "Asia", "local_logo": null, "aliases": "Fubon; Fubon Financial Holding", "permid_links": [{"text": 4295891740, "url": "https://permid.org/1-4295891740"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "TAI:2881B", "url": "https://www.google.com/finance/quote/2881B:TAI"}, {"text": "PKL:FUISY", "url": "https://www.google.com/finance/quote/FUISY:PKL"}, {"text": "TAI:2881C", "url": "https://www.google.com/finance/quote/2881C:TAI"}, {"text": "PKL:FUIZF", "url": "https://www.google.com/finance/quote/FUIZF:PKL"}, {"text": "PKL:FUISF", "url": "https://www.google.com/finance/quote/FUISF:PKL"}, {"text": "TAI:2881", "url": "https://www.google.com/finance/quote/2881:TAI"}, {"text": "TAI:2881A", "url": "https://www.google.com/finance/quote/2881A:TAI"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 1, 0, 1, 1, 0, 1, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105, "sp500_rank": 421}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 63, "rank": 966, "sp500_rank": 329}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "sp500_rank": 297}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 228, "country": "United States", "website": "http://www.shield.ai", "crunchbase": {"text": "c4396463-b910-f125-3f0b-6c3857a58b42", "url": "https://www.crunchbase.com/organization/shield-ai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/shield-ai"], "stage": "Mature", "name": "Shield AI", "patent_name": "shield ai", "continent": "North America", "local_logo": "shield_ai.png", "aliases": "Shield; Shield Ai Inc; Shield Ai, Inc", "permid_links": [{"text": 5050996365, "url": "https://permid.org/1-5050996365"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Shield AI is an artificial intelligence company that aims to protect service members and civilians with intelligent systems.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Synthetic data", "field_count": 1}, {"field_name": "Unsupervised learning", "field_count": 1}], "clusters": [{"cluster_id": 981, "cluster_count": 4}, {"cluster_id": 2353, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 184, "referenced_count": 5}, {"ref_CSET_id": 787, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 228, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 27, "referenced_count": 1}], "tasks": [{"referent": "classification_tasks", "task_count": 2}, {"referent": "image_forgery_detection", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "ship_detection", "task_count": 1}, {"referent": "optical_flow_estimation", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "multimodal_deep_learning", "task_count": 1}, {"referent": "unsupervised_image_classification", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "cross_domain_text_classification", "task_count": 1}], "methods": [{"referent": "deep_belief_network", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "resnet", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "ian", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}, {"referent": "polya_gamma_augmentation", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 540}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 5, 6, 3, 0], "total": 15, "isTopResearch": false, "rank": 717}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 5, 0, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 287}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.2, 0, 0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 63, "rank": 966}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Shield AI leverages decades worth of research and industry-leading talent to develop cutting-edge artificial intelligence software and systems.", "company_site_link": "https://www.shield.ai/company", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3002, "country": "United States", "website": "https://www.epsilonsystems.com/", "crunchbase": {"text": "d1d240e0-f2a1-bc6f-4482-4a0613c6d9e5", "url": "https://www.crunchbase.com/organization/epsilon-systems-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/epsilon-systems-solutions-inc."], "stage": "Unknown", "name": "Epsilon Systems Solutions Inc", "patent_name": "epsilon systems solutions inc", "continent": "North America", "local_logo": "epsilon_systems_solutions_inc.png", "aliases": "Epsilon Systems Solutions; Epsilon Systems Solutions, Inc", "permid_links": [{"text": 5001137938, "url": "https://permid.org/1-5001137938"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Epsilon Systems, founded in 1998 and headquartered in San Diego, CA, has established an international presence in 26 locations including 3", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 63, "rank": 966}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Epsilon Systems provides total life cycle support to defense systems and commercial enterprises.", "company_site_link": "https://www.epsilonsystems.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 124, "country": "China", "website": "https://www.inceptio.ai/", "crunchbase": {"text": "50f53380-8e2e-4a20-a18a-1ca76c6619e0", "url": "https://www.crunchbase.com/organization/inceptio-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/inceptio-technology"], "stage": "Growth", "name": "Inceptio", "patent_name": "inceptio", "continent": "Asia", "local_logo": "inceptio.png", "aliases": "Inceptio Technology; Jiluo Technology (Shangai) Co., Ltd; \u5b34\u5f7b\u79d1\u6280; \u5b34\u5f7b\u79d1\u6280(\u4e0a\u6d77)\u6709\u9650\u516c\u53f8", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Inceptio Technology is a company that develops autonomous trucks and their logistic networks.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 3}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Face (geometry)", "field_count": 1}, {"field_name": "Iterative refinement", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Pose", "field_count": 1}, {"field_name": "Unsupervised learning", "field_count": 1}, {"field_name": "Point cloud", "field_count": 1}, {"field_name": "Semantic data model", "field_count": 1}, {"field_name": "Active learning (machine learning)", "field_count": 1}], "clusters": [{"cluster_id": 981, "cluster_count": 4}, {"cluster_id": 12947, "cluster_count": 3}, {"cluster_id": 3446, "cluster_count": 2}, {"cluster_id": 1298, "cluster_count": 1}, {"cluster_id": 23307, "cluster_count": 1}, {"cluster_id": 19977, "cluster_count": 1}, {"cluster_id": 13943, "cluster_count": 1}, {"cluster_id": 77795, "cluster_count": 1}, {"cluster_id": 2505, "cluster_count": 1}, {"cluster_id": 91046, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 73}, {"ref_CSET_id": 163, "referenced_count": 43}, {"ref_CSET_id": 87, "referenced_count": 38}, {"ref_CSET_id": 6, "referenced_count": 25}, {"ref_CSET_id": 223, "referenced_count": 22}, {"ref_CSET_id": 37, "referenced_count": 21}, {"ref_CSET_id": 184, "referenced_count": 20}, {"ref_CSET_id": 127, "referenced_count": 17}, {"ref_CSET_id": 245, "referenced_count": 15}, {"ref_CSET_id": 112, "referenced_count": 12}], "tasks": [{"referent": "semantic_segmentation", "task_count": 3}, {"referent": "domain_adaptation", "task_count": 3}, {"referent": "depth_estimation", "task_count": 3}, {"referent": "knowledge_tracing", "task_count": 2}, {"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "image_restoration", "task_count": 2}, {"referent": "segmentation", "task_count": 1}, {"referent": "supervised_learning", "task_count": 1}, {"referent": "multiple_action_detection", "task_count": 1}, {"referent": "inference_attack", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 5}, {"referent": "polya_gamma_augmentation", "method_count": 2}, {"referent": "auto_classifier", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "dac", "method_count": 2}, {"referent": "gated_convolution_network", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "optimization", "method_count": 1}, {"referent": "agglomerative_contextual_decomposition", "method_count": 1}, {"referent": "normalization", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 8, 13, 4, 0], "total": 25, "isTopResearch": false, "rank": 754}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 8, 12, 2, 0], "total": 22, "isTopResearch": false, "rank": 286}, "ai_publications_growth": {"counts": [], "total": -16.666666666666664, "isTopResearch": false, "rank": 1301}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 6, 0, 0], "total": 10, "isTopResearch": false, "rank": 114}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 11, 127, 211, 10], "total": 359, "isTopResearch": false, "rank": 312}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 7, 10, 1, 0], "total": 18, "isTopResearch": true, "rank": 148}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 1.375, 10.583333333333334, 105.5, 0], "total": 16.318181818181817, "isTopResearch": false, "rank": 379}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 62, "rank": 974}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We focus on the transformation of line-haul logistics by providing a more secure, efficient, and economical Transportation-As-A-Service (TaaS) to logistic customers.", "company_site_link": "https://www.inceptio.ai/", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 239, "country": "United States", "website": "https://standard.ai/", "crunchbase": {"text": "0b5778b3-0727-3f3c-dd16-3221e95968b3", "url": "https://www.crunchbase.com/organization/standard-cognition"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/standard-ai"], "stage": "Growth", "name": "Standard Ai", "patent_name": "standard ai", "continent": "North America", "local_logo": "standard_ai.png", "aliases": "Standard; Standard Cognition; Standard Cognition Corp; Standard Cognition, Corp", "permid_links": [{"text": 5057940543, "url": "https://permid.org/1-5057940543"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Standard Cognition provides an autonomous checkout tool that can be installed into retailers\u2019 existing stores.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 34936, "cluster_count": 1}, {"cluster_id": 17125, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 1897, "referenced_count": 1}], "tasks": [{"referent": "point_cloud_classification", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 3, 0], "total": 6, "isTopResearch": false, "rank": 805}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 2.0, 0, 3.0, 0], "total": 3.0, "isTopResearch": false, "rank": 779}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 15, 8, 1, 4, 1, 0, 0], "total": 29, "table": null, "rank": 273}, "ai_patents_growth": {"counts": [], "total": 55.27777777777778, "table": null, "rank": 191}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 150, 80, 10, 40, 10, 0, 0], "total": 290, "table": null, "rank": 273}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 165}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 4, 1, 0, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 336}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 2, 0, 1, 0, 0, 0], "total": 4, "table": "industry", "rank": 115}, "Telecommunications": {"counts": [0, 0, 0, 0, 7, 2, 0, 1, 0, 0, 0], "total": 10, "table": "industry", "rank": 165}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 10, 6, 0, 2, 0, 0, 0], "total": 18, "table": "industry", "rank": 112}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 10, 6, 0, 2, 0, 0, 0], "total": 18, "table": "application", "rank": 88}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 15, 7, 1, 4, 0, 0, 0], "total": 27, "table": "application", "rank": 160}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 61, "rank": 975}, "ai_jobs": {"counts": null, "total": 22, "rank": 667}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 193, "country": "United States", "website": "https://www.paigeai.com/", "crunchbase": {"text": "d169d086-fc7b-4375-a5ea-066bd7263775", "url": "https://www.crunchbase.com/organization/paige-ai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/paige-ai"], "stage": "Growth", "name": "PAIGE.AI", "patent_name": "paige.ai", "continent": "North America", "local_logo": "paigeai.png", "aliases": "Paige; Paige.Ai, Inc; Paigeai Inc", "permid_links": [{"text": 5060688817, "url": "https://permid.org/1-5060688817"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "A Global Leader in Digital Diagnostics", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 4, 1, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 8, 17, 7, 0, 0], "total": 32, "table": null, "rank": 265}, "ai_patents_growth": {"counts": [], "total": 112.5, "table": null, "rank": 99}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 80, 170, 70, 0, 0], "total": 320, "table": null, "rank": 265}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 5, 15, 5, 0, 0], "total": 25, "table": "industry", "rank": 42}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 7, 15, 6, 0, 0], "total": 28, "table": "application", "rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 61, "rank": 975}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 203, "country": "United States", "website": "http://plus.ai/", "crunchbase": {"text": "1527974b-d8aa-b6e3-24be-a0c0674ab3f0", "url": "https://www.crunchbase.com/organization/plusai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/plusai"], "stage": "Mature", "name": "Plus.ai", "patent_name": "plus.ai", "continent": "North America", "local_logo": "plusai.png", "aliases": "Plusai Inc; \u667a\u52a0\u79d1\u6280; \u667a\u52a0\u79d1\u6280\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5071169825, "url": "https://permid.org/1-5071169825"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Plus develops self-driving trucks to enable large-scale commercialization of autonomous transport.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 12947, "cluster_count": 1}, {"cluster_id": 3723, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 5}, {"ref_CSET_id": 787, "referenced_count": 2}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 786, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 790, "referenced_count": 1}, {"ref_CSET_id": 1784, "referenced_count": 1}], "tasks": [{"referent": "information_retrieval", "task_count": 1}, {"referent": "retrieval", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}, {"referent": "depth_estimation", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}], "methods": [{"referent": "contrastive_predictive_coding", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 5, 8, 0], "total": 14, "isTopResearch": false, "rank": 724}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 1.0, 0, 0, 0.0, 0, 8.0, 0], "total": 4.666666666666667, "isTopResearch": false, "rank": 724}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 11, 0, 5, 0, 2, 0, 0], "total": 18, "table": null, "rank": 337}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 110, 0, 50, 0, 20, 0, 0], "total": 180, "table": null, "rank": 337}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 10, 0, 5, 0, 0, 0, 0], "total": 15, "table": "industry", "rank": 82}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 78}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 11, 0, 5, 0, 0, 0, 0], "total": 16, "table": "application", "rank": 106}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 3, 0, 2, 0, 2, 0, 0], "total": 7, "table": "application", "rank": 288}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 5, 0, 4, 0, 0, 0, 0], "total": 9, "table": "application", "rank": 128}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 61, "rank": 975}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Trucking is the backbone of our country\u2019s economy, society and our personal lives, quietly moving goods we use and eat every day. We are applying automated driving technology to trucks today so that fleets and drivers can start benefiting from this revolutionary technology. Our automated driving system, PlusDrive, will improve the lives of truck drivers around the world, while saving lives lost to heavy truck-related accidents and making our world greener through reduced carbon emissions.", "company_site_link": "http://plus.ai/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2776, "country": "United States", "website": "http://aarcorp.com/", "crunchbase": {"text": "035680ea-27d1-661c-f36c-ce3c0bff0572", "url": "https://www.crunchbase.com/organization/aar-corp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aar-corp"], "stage": "Mature", "name": "AAR Corp", "patent_name": "aar corp", "continent": "North America", "local_logo": "aar_corp.png", "aliases": "AAR; Aar Corp (Air)", "permid_links": [{"text": 4295903281, "url": "https://permid.org/1-4295903281"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AIR", "url": "https://www.google.com/finance/quote/air:nyse"}], "market_full": [{"text": "ASE:AIR", "url": "https://www.google.com/finance/quote/air:ase"}, {"text": "STU:AIR", "url": "https://www.google.com/finance/quote/air:stu"}, {"text": "FRA:ARZ", "url": "https://www.google.com/finance/quote/arz:fra"}, {"text": "DUS:ARZ", "url": "https://www.google.com/finance/quote/arz:dus"}, {"text": "DEU:AARC", "url": "https://www.google.com/finance/quote/aarc:deu"}, {"text": "NYSE:AIR", "url": "https://www.google.com/finance/quote/air:nyse"}, {"text": "NYQ:AIR", "url": "https://www.google.com/finance/quote/air:nyq"}], "crunchbase_description": "AAR is a leading provider of diverse products and services to the worldwide commercial aviation and government/defense industries.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 61, "rank": 975}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "AAR CORP. is a private provider of aviation services.", "wikipedia_link": "https://en.wikipedia.org/wiki/AAR_Corp", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3050, "country": "United States", "website": "http://epeerless.com/", "crunchbase": {"text": "b95c5cac-10b7-42f7-9747-e62869a96ff9", "url": "https://www.crunchbase.com/organization/peerless-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/peerless-technologies"], "stage": "Unknown", "name": "Peerless Technologies Corp", "patent_name": "peerless technologies corp", "continent": "North America", "local_logo": "peerless_technologies_corp.png", "aliases": "Peerless; Peerless Technologies; Peerless Technologies Corporation", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Peerless Technologies provides solutions to challenging national security issues.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Surrogate model", "field_count": 1}], "clusters": [{"cluster_id": 11394, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "feature_engineering", "task_count": 1}], "methods": [{"referent": "cross_view_training", "method_count": 1}, {"referent": "gin", "method_count": 1}, {"referent": "gts", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 4, 4, 0, 0, 0, 0, 0], "total": 8, "isTopResearch": false, "rank": 980}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 8, 17, 9, 6, 20, 3], "total": 63, "isTopResearch": false, "rank": 556}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 8.0, 0, 0, 0, 0, 0], "total": 63.0, "isTopResearch": false, "rank": 67}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 61, "rank": 975}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Peerless is a nationally recognized, award-winning business serving Federal Government clients\nnationwide.\n\nBased in Fairborn, Ohio, and adjacent to Wright-Patterson Air Force Base, we provide quality\nservices backed by our ISO 9001:2015-certified Quality Management System, our ISO 14001:2015 Environmental Management System, and Capability Maturity Model Integration (CMMI) Level 3 assessed software and systems engineering processes.", "company_site_link": "http://epeerless.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 425, "country": "United States", "website": "https://www.een.com/", "crunchbase": {"text": "d77721cd-16c6-89c4-d553-85cf172ad23d", "url": "https://www.crunchbase.com/organization/eagle-eye-networks"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/eagleeyenetworks"], "stage": "Mature", "name": "Eagle Eye Networks", "patent_name": "eagle eye networks", "continent": "North America", "local_logo": "eagle_eye_networks.png", "aliases": "Eagle Eye", "permid_links": [{"text": 5042254067, "url": "https://permid.org/1-5042254067"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Eagle Eye Networks is a cloud video surveillance company that is transitioning all aspects of traditional video surveillance to the cloud.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 61, "rank": 975}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Technology", "business_sector": "Software & IT Services"}, {"cset_id": 2254, "country": "United States", "website": "https://www.cfindustries.com/", "crunchbase": {"text": "e32b4bbb-a7bc-c93e-e0bf-706c76718fc2", "url": "https://www.crunchbase.com/organization/cf-industries-holdings"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cf-industries"], "stage": "Mature", "name": "CF Industries Holdings Inc", "patent_name": "cf industries holdings inc", "continent": "North America", "local_logo": "cf_industries_holdings_inc.png", "aliases": "CF Industries; Cf Industries Holdings", "permid_links": [{"text": 4295903461, "url": "https://permid.org/1-4295903461"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:CF", "url": "https://www.google.com/finance/quote/cf:nyse"}], "market_full": [{"text": "ASE:CF", "url": "https://www.google.com/finance/quote/ase:cf"}, {"text": "HAM:C4F", "url": "https://www.google.com/finance/quote/c4f:ham"}, {"text": "NYQ:CF", "url": "https://www.google.com/finance/quote/cf:nyq"}, {"text": "LSE:0HQU", "url": "https://www.google.com/finance/quote/0hqu:lse"}, {"text": "BRN:C4F", "url": "https://www.google.com/finance/quote/brn:c4f"}, {"text": "STU:C4F", "url": "https://www.google.com/finance/quote/c4f:stu"}, {"text": "SAO:C1FI34", "url": "https://www.google.com/finance/quote/c1fi34:sao"}, {"text": "HAN:C4F", "url": "https://www.google.com/finance/quote/c4f:han"}, {"text": "FRA:C4F", "url": "https://www.google.com/finance/quote/c4f:fra"}, {"text": "MCX:CF-RM", "url": "https://www.google.com/finance/quote/cf-rm:mcx"}, {"text": "MUN:C4F", "url": "https://www.google.com/finance/quote/c4f:mun"}, {"text": "NYSE:CF", "url": "https://www.google.com/finance/quote/cf:nyse"}, {"text": "DUS:C4F", "url": "https://www.google.com/finance/quote/c4f:dus"}, {"text": "DEU:CF", "url": "https://www.google.com/finance/quote/cf:deu"}, {"text": "BER:C4F", "url": "https://www.google.com/finance/quote/ber:c4f"}], "crunchbase_description": "CF Industries, a global leader in nitrogen fertilizer manufacturing and distribution", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 61, "rank": 975, "fortune500_rank": 451}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349, "fortune500_rank": 485}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "CF Industries Holdings, Inc. is a North American manufacturer and distributor of agricultural fertilizers, based in Deerfield, Illinois, a suburb of Chicago. It was founded in 1946 as the Central Farmers Fertilizer Company. For its first 56 years, it was a federation of regional agricultural supply cooperatives. CF then demutualized, and became a publicly traded company.", "wikipedia_link": "https://en.wikipedia.org/wiki/CF_Industries", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2967, "country": "United States", "website": "https://www.tsc.com/", "crunchbase": {"text": "96c89c15-38ab-435a-9cb0-5d12a14498c3", "url": "https://www.crunchbase.com/organization/technology-service-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/technology-service-corporation-tsc-"], "stage": "Unknown", "name": "Technology Service Corp", "patent_name": "technology service corp", "continent": "North America", "local_logo": "technology_service_corp.png", "aliases": "Technology Service Corporation", "permid_links": [{"text": 4297253534, "url": "https://permid.org/1-4297253534"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "TSC is a high technology company providing engineering consulting services and specialized products to the government and industry.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Hyperspectral imaging", "field_count": 1}, {"field_name": "Change detection", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Pixel", "field_count": 1}], "clusters": [{"cluster_id": 2704, "cluster_count": 2}, {"cluster_id": 82867, "cluster_count": 1}, {"cluster_id": 2076, "cluster_count": 1}, {"cluster_id": 17845, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 2031, "referenced_count": 1}], "tasks": [{"referent": "action_understanding", "task_count": 1}, {"referent": "remote_sensing_image_classification", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "target_recognition", "task_count": 1}, {"referent": "model_compression", "task_count": 1}, {"referent": "change_detection", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}, {"referent": "multimodal_deep_learning", "task_count": 1}, {"referent": "hyperspectral_image_classification", "task_count": 1}, {"referent": "spectral_clustering", "task_count": 1}], "methods": [{"referent": "transformer_xl", "method_count": 1}, {"referent": "l1_regularization", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "twin_networks", "method_count": 1}, {"referent": "sabn", "method_count": 1}, {"referent": "1cycle", "method_count": 1}, {"referent": "exponential_decay", "method_count": 1}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "3d_reconstruction", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [3, 4, 1, 3, 5, 4, 5, 3, 2, 2, 0], "total": 32, "isTopResearch": false, "rank": 700}, "ai_publications": {"counts": [0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [10, 18, 26, 25, 28, 14, 37, 32, 25, 18, 0], "total": 233, "isTopResearch": false, "rank": 370}, "cv_pubs": {"counts": [0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 26.0, 25.0, 0, 0, 37.0, 0, 0, 0, 0], "total": 77.66666666666667, "isTopResearch": false, "rank": 54}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 60, "rank": 982}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Originally founded in 1966, Technology Service Corporation (TSC) has developed a reputation for technical excellence in radar systems engineering and design. Our founder, Dr. Peter Swerling is considered to be one of the most influential radar theoreticians of the second half of the 20th century, and today TSC carries on his legacy in radar theory and development. Over the past 50 years we have focused on helping the Department of Defense develop, produce, and field cutting-edge RF technologies.", "company_site_link": "https://www.tsc.com/tempr/index.htm", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 159, "country": "United States", "website": "http://maymobility.com/", "crunchbase": {"text": "09fe3ece-4698-82cb-fb4b-5dea32b825e7", "url": "https://www.crunchbase.com/organization/may-mobility"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/maymobility"], "stage": "Growth", "name": "May Mobility", "patent_name": "may mobility", "continent": "North America", "local_logo": "may_mobility.png", "aliases": "May Mobility Inc; May Mobility, Inc; Maymobility.Com", "permid_links": [{"text": 5060521114, "url": "https://permid.org/1-5060521114"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "May Mobility builds an autonomy system to transform cities and safely move the world to a greener, more accessible future.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 3, 1, 1, 0, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": -33.333333333333336, "table": null, "rank": 1491}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 30, 10, 10, 0, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 3, 1, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 133}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 190}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 59, "rank": 983}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Industrials", "business_sector": "Transportation", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We are a diverse group of curious humans, solving a diverse spectrum of autonomous mobility challenges. We come to work everyday to move another step closer to our vision of a safer, greener, more accessible world. Here\u2019s a sampling of the tenets we all believe in.", "company_site_link": "https://maymobility.com/meet-may/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 267, "country": "Portugal", "website": "https://unbabel.com", "crunchbase": {"text": "b1cf7880-bab1-ee76-26e6-d04c8af0c974", "url": "https://www.crunchbase.com/organization/unbabel"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/unbabel"], "stage": "Growth", "name": "Unbabel", "patent_name": "unbabel", "continent": "Europe", "local_logo": "unbabel.png", "aliases": "Unbabel Inc", "permid_links": [{"text": 5043334147, "url": "https://permid.org/1-5043334147"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Unbabel allows modern enterprises to understand and be understood by their customers in dozens of languages.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Machine translation", "field_count": 14}, {"field_name": "Punctuation", "field_count": 1}, {"field_name": "Interpretability", "field_count": 1}, {"field_name": "Entropy (information theory)", "field_count": 1}, {"field_name": "Hybrid system", "field_count": 1}, {"field_name": "Transcription (software)", "field_count": 1}, {"field_name": "Inference", "field_count": 1}, {"field_name": "Structured prediction", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}, {"field_name": "Active learning (machine learning)", "field_count": 1}], "clusters": [{"cluster_id": 3527, "cluster_count": 8}, {"cluster_id": 16824, "cluster_count": 3}, {"cluster_id": 69349, "cluster_count": 3}, {"cluster_id": 12787, "cluster_count": 2}, {"cluster_id": 14887, "cluster_count": 2}, {"cluster_id": 69417, "cluster_count": 2}, {"cluster_id": 5109, "cluster_count": 2}, {"cluster_id": 9898, "cluster_count": 2}, {"cluster_id": 86818, "cluster_count": 1}, {"cluster_id": 14686, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 65}, {"ref_CSET_id": 267, "referenced_count": 30}, {"ref_CSET_id": 87, "referenced_count": 28}, {"ref_CSET_id": 163, "referenced_count": 28}, {"ref_CSET_id": 115, "referenced_count": 12}, {"ref_CSET_id": 3131, "referenced_count": 11}, {"ref_CSET_id": 112, "referenced_count": 6}, {"ref_CSET_id": 37, "referenced_count": 5}, {"ref_CSET_id": 734, "referenced_count": 5}, {"ref_CSET_id": 1390, "referenced_count": 3}], "tasks": [{"referent": "machine_translation", "task_count": 11}, {"referent": "neural_machine_translation", "task_count": 4}, {"referent": "translation", "task_count": 4}, {"referent": "automatic_post_editing", "task_count": 4}, {"referent": "multi_task_learning", "task_count": 2}, {"referent": "named_entity_recognition", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "image_quality_estimation", "task_count": 2}, {"referent": "visual_question_answering", "task_count": 2}, {"referent": "natural_language_inference", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 5}, {"referent": "bert", "method_count": 4}, {"referent": "attention_mechanisms", "method_count": 4}, {"referent": "sparsemax", "method_count": 4}, {"referent": "q_learning", "method_count": 3}, {"referent": "sequence_to_sequence_models", "method_count": 3}, {"referent": "loss_functions", "method_count": 2}, {"referent": "ape_x", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "mrnn", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 5, 3, 5, 13, 6, 4, 3, 0], "total": 39, "isTopResearch": false, "rank": 667}, "ai_publications": {"counts": [0, 0, 0, 5, 3, 4, 10, 5, 4, 3, 0], "total": 34, "isTopResearch": false, "rank": 221}, "ai_publications_growth": {"counts": [], "total": -31.666666666666668, "isTopResearch": false, "rank": 1396}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 2, 4, 0, 3, 1, 0], "total": 11, "isTopResearch": false, "rank": 108}, "citation_counts": {"counts": [0, 0, 1, 9, 21, 59, 177, 309, 296, 138, 0], "total": 1010, "isTopResearch": false, "rank": 192}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 4, 1, 3, 9, 4, 3, 3, 0], "total": 27, "isTopResearch": true, "rank": 59}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 1.8, 7.0, 14.75, 17.7, 61.8, 74.0, 46.0, 0], "total": 29.705882352941178, "isTopResearch": false, "rank": 196}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 58, "rank": 984}, "ai_jobs": {"counts": null, "total": 17, "rank": 728}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Unbabel is an artificial intelligence-powered human translation platform. The company has headquarters in Lisbon, Portugal, and San Francisco, California.", "wikipedia_link": "https://en.wikipedia.org/wiki/Unbabel", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2857, "country": "United States", "website": "https://www.olin.com/", "crunchbase": {"text": "1199054d-ce11-9832-92dd-a2530d30d573", "url": "https://www.crunchbase.com/organization/olin-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/olin-corporation"], "stage": "Mature", "name": "Olin Corp", "patent_name": "olin corp", "continent": "North America", "local_logo": "olin_corp.png", "aliases": "Olin; Olin Corporation", "permid_links": [{"text": 4295904649, "url": "https://permid.org/1-4295904649"}], "parent_info": "Global Brass (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:OLN", "url": "https://www.google.com/finance/quote/nyse:oln"}], "market_full": [{"text": "NYSE:OLN", "url": "https://www.google.com/finance/quote/nyse:oln"}, {"text": "NYQ:OLN", "url": "https://www.google.com/finance/quote/nyq:oln"}], "crunchbase_description": "Olin Corporation is a Virginia Corporation having its principal executive offices.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 4, 2, 3, 6, 3, 4, 2, 1, 1, 0], "total": 26, "isTopResearch": false, "rank": 744}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 58, "rank": 984}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Basic Materials", "business_sector": "Chemicals", "wikipedia_description": "Olin Corporation is an American manufacturer of ammunition, chlorine, and sodium hydroxide. Based in Clayton, Missouri, it traces its roots to two companies, both founded in 1892: Franklin W. Olin's Equitable Powder Company and the Mathieson Alkali Works. After being headquartered for many years in Stamford, Connecticut, it is now headquartered in Clayton, Missouri.", "wikipedia_link": "https://en.wikipedia.org/wiki/Olin_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1774, "country": "China", "website": "http://www.countrygarden.com.cn/", "crunchbase": {"text": "c7423a89-d730-4864-b7c7-492f5068c8f4", "url": "https://www.crunchbase.com/organization/country-garden"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/country-garden-holding-co--ltd-"], "stage": "Mature", "name": "Country Garden", "patent_name": "Country Garden", "continent": "Asia", "local_logo": "country_garden.png", "aliases": "Country Garden; \u78a7\u6842\u56ed; \u78a7\u6842\u56ed\u63a7\u80a1\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295864398, "url": "https://permid.org/1-4295864398"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:6098", "url": "https://www.google.com/finance/quote/6098:HKG"}], "market_full": [{"text": "FRA:75H", "url": "https://www.google.com/finance/quote/75H:FRA"}, {"text": "DEU:75H", "url": "https://www.google.com/finance/quote/75H:DEU"}, {"text": "DUS:75H", "url": "https://www.google.com/finance/quote/75H:DUS"}, {"text": "MEX:6098N", "url": "https://www.google.com/finance/quote/6098N:MEX"}, {"text": "HKG:6098", "url": "https://www.google.com/finance/quote/6098:HKG"}], "crunchbase_description": "Country Garden is a residential property management service provider.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Machine translation", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}, {"field_name": "Gesture", "field_count": 1}, {"field_name": "Kernel (statistics)", "field_count": 1}, {"field_name": "Principal component analysis", "field_count": 1}, {"field_name": "Evolutionary algorithm", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Outlier", "field_count": 1}, {"field_name": "Discriminative model", "field_count": 1}], "clusters": [{"cluster_id": 3300, "cluster_count": 2}, {"cluster_id": 30035, "cluster_count": 1}, {"cluster_id": 56718, "cluster_count": 1}, {"cluster_id": 15048, "cluster_count": 1}, {"cluster_id": 6907, "cluster_count": 1}, {"cluster_id": 31058, "cluster_count": 1}, {"cluster_id": 46061, "cluster_count": 1}, {"cluster_id": 98865, "cluster_count": 1}, {"cluster_id": 5055, "cluster_count": 1}, {"cluster_id": 12680, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 2079, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 2074, "referenced_count": 1}, {"ref_CSET_id": 1126, "referenced_count": 1}], "tasks": [{"referent": "anomaly_detection", "task_count": 3}, {"referent": "classification", "task_count": 2}, {"referent": "image_restoration", "task_count": 2}, {"referent": "steering_control", "task_count": 2}, {"referent": "industrial_robots", "task_count": 2}, {"referent": "computer_vision", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "intelligent_surveillance", "task_count": 1}, {"referent": "edge_computing", "task_count": 1}, {"referent": "video_surveillance", "task_count": 1}], "methods": [{"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "bigru", "method_count": 1}, {"referent": "crf", "method_count": 1}, {"referent": "3d_reconstruction", "method_count": 1}, {"referent": "initialization", "method_count": 1}, {"referent": "multigrain", "method_count": 1}, {"referent": "graph_models", "method_count": 1}, {"referent": "graphs", "method_count": 1}, {"referent": "adaptive_nms", "method_count": 1}, {"referent": "linear_warmup_with_linear_decay", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [11, 15, 23, 35, 44, 60, 72, 55, 61, 32, 2], "total": 410, "isTopResearch": false, "rank": 307, "sp500_rank": 201}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 4, 1, 3, 7, 1, 0], "total": 16, "isTopResearch": false, "rank": 341, "sp500_rank": 186}, "ai_publications_growth": {"counts": [], "total": 82.53968253968254, "isTopResearch": false, "rank": 30, "sp500_rank": 15}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 2, 18, 27, 38, 30, 5], "total": 120, "isTopResearch": false, "rank": 478, "sp500_rank": 212}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 3, 0, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.5, 18.0, 9.0, 5.428571428571429, 30.0, 0], "total": 7.5, "isTopResearch": false, "rank": 625, "sp500_rank": 242}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 58, "rank": 984, "sp500_rank": 330}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "sp500_rank": 335}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 3120, "country": null, "website": "https://www.heraeus.com/", "crunchbase": {"text": " 5e31c18e-79aa-5137-8798-b7911ab4b220", "url": " https://www.crunchbase.com/organization/heraeus"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/heraeus"], "stage": "Unknown", "name": "Heraeus Group", "patent_name": "Heraeus Group", "continent": null, "local_logo": null, "aliases": "Heraeus Group; Heraeus Holding Gmbh", "permid_links": [{"text": 4295869256, "url": "https://permid.org/1-4295869256"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 8, 0, 0, 0, 1, 1, 0, 0, 0], "total": 10, "isTopResearch": false, "rank": 942, "sp500_rank": 392}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 57, "rank": 987, "sp500_rank": 331}, "ai_jobs": {"counts": null, "total": 10, "rank": 845, "sp500_rank": 297}}, "sector": "Basic Materials", "business_sector": "Mineral Resources"}, {"cset_id": 4, "country": "China", "website": "https://www.abcfintech.com/", "crunchbase": {"text": "3c18b838-bdd4-48e2-b835-cfe2374211a5", "url": "https://www.crunchbase.com/organization/abc-fintech"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/abctechnologies"], "stage": "Growth", "name": "ABC Technology", "patent_name": "abc technology", "continent": "Asia", "local_logo": "abc_technology.png", "aliases": "Abc Fintech; Abc Technology Co Ltd; Beijing Abc Fintech Co., Ltd; Beijing Abc Technology Co Ltd; \u5317\u4eac\u963f\u535a\u8328\u79d1\u6280\u6709\u9650\u516c\u53f8; \u963f\u535a\u8328\u79d1\u6280", "permid_links": [{"text": 5057797980, "url": "https://permid.org/1-5057797980"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "ABC Fintech provides AI-driven cloud services for financial professionals.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 40, 0, 0, 0, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 57, "rank": 987}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "\u6211\u4eec\u4e13\u6ce8\u4e8e\u4f7f\u7528AI\u6280\u672f\u6539\u8fdb\u91d1\u878d\u6570\u636e\u7684\u4ea7\u751f\u3001\u63d0\u53d6\u3001\u5206\u6790\u3001\u6c89\u6dc0\u4ee5\u53ca\u5448\u73b0\uff0c\u6211\u4eec\u81f4\u529b\u4e8e\u4e3a\u5ba2\u6237\u6784\u5efa\u4e00\u4e2a\u79c1\u6709\u3001\u53ef\u6301\u7eed\u81ea\u4e3b\u7ef4\u62a4\u7684AI\u91d1\u878d\u5927\u8111\u3002\n\u4f7f\u673a\u5668\u53d8\u5f97\u667a\u80fd\u3001\u5e2e\u4eba\u7c7b\u66f4\u5177\u667a\u6167\u3002", "company_site_link": "https://www.abcfintech.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": "We focus on using AI technology to improve the generation, extraction, analysis, precipitation and presentation of financial data. We are committed to building a private, sustainable and autonomously maintained AI financial brain for our customers.\nMake machines smart and help humans become smarter."}, {"cset_id": 2489, "country": "United States", "website": "http://www.simon.com/", "crunchbase": {"text": "5b7e4c65-dca6-f3eb-55bc-5b657c5d3a32", "url": "https://www.crunchbase.com/organization/simon-property-group"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/simon-property-group"], "stage": "Mature", "name": "Simon Property Group Inc", "patent_name": "simon property group inc", "continent": "North America", "local_logo": "simon_property_group_inc.png", "aliases": "Simon; Simon Property Group; Simon Property Group, Inc; Simon Property Group, Inc. (Nyse: Spg); Simon Property Group, L.P", "permid_links": [{"text": 4295904924, "url": "https://permid.org/1-4295904924"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:SPG.PRJ", "url": "https://www.google.com/finance/quote/nyse:spg.prj"}, {"text": "NYSE:SPG", "url": "https://www.google.com/finance/quote/nyse:spg"}], "market_full": [{"text": "SAO:SIMN34", "url": "https://www.google.com/finance/quote/sao:simn34"}, {"text": "HAN:SQI", "url": "https://www.google.com/finance/quote/han:sqi"}, {"text": "STU:SQI", "url": "https://www.google.com/finance/quote/sqi:stu"}, {"text": "BER:SQI", "url": "https://www.google.com/finance/quote/ber:sqi"}, {"text": "BRN:SQI", "url": "https://www.google.com/finance/quote/brn:sqi"}, {"text": "DUS:SQI", "url": "https://www.google.com/finance/quote/dus:sqi"}, {"text": "LSE:0L6P", "url": "https://www.google.com/finance/quote/0l6p:lse"}, {"text": "NYSE:SPG.PRJ", "url": "https://www.google.com/finance/quote/nyse:spg.prj"}, {"text": "MCX:SPG*", "url": "https://www.google.com/finance/quote/mcx:spg*"}, {"text": "NYQ:SPG", "url": "https://www.google.com/finance/quote/nyq:spg"}, {"text": "NYSE:SPG", "url": "https://www.google.com/finance/quote/nyse:spg"}, {"text": "FRA:SQI", "url": "https://www.google.com/finance/quote/fra:sqi"}, {"text": "DEU:SQI", "url": "https://www.google.com/finance/quote/deu:sqi"}, {"text": "VIE:SPGR", "url": "https://www.google.com/finance/quote/spgr:vie"}, {"text": "MUN:SQI", "url": "https://www.google.com/finance/quote/mun:sqi"}, {"text": "NYQ:SPG.PRJ", "url": "https://www.google.com/finance/quote/nyq:spg.prj"}, {"text": "ASE:SPG.PRJ", "url": "https://www.google.com/finance/quote/ase:spg.prj"}, {"text": "ASE:SPG", "url": "https://www.google.com/finance/quote/ase:spg"}], "crunchbase_description": "Simon Property Group is a commercial real estate company operating in platforms that include regional malls and community/lifestyle centers.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 57, "rank": 987, "fortune500_rank": 452}, "ai_jobs": {"counts": null, "total": 6, "rank": 970, "fortune500_rank": 431}}, "sector": "Real Estate", "business_sector": "Real Estate", "wikipedia_description": "Simon Property Group, Inc. is an American commercial real estate company, one of the largest retail real estate investment trusts (REIT), and the largest shopping mall operator in the US.", "wikipedia_link": "https://en.wikipedia.org/wiki/Simon_Property_Group", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2407, "country": "United States", "website": "https://www.martinmarietta.com/", "crunchbase": {"text": "bacb8bd7-5f9c-bcd8-5d63-42ff5f2e2821", "url": "https://www.crunchbase.com/organization/martin-marietta"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/martinmarietta"], "stage": "Mature", "name": "Martin Marietta Materials", "patent_name": "martin marietta materials", "continent": "North America", "local_logo": "martin_marietta_materials.png", "aliases": "Martin Marietta; Martin Marietta Materials Inc", "permid_links": [{"text": 4295904478, "url": "https://permid.org/1-4295904478"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MLM", "url": "https://www.google.com/finance/quote/mlm:nyse"}], "market_full": [{"text": "MOEX:MLM-RM", "url": "https://www.google.com/finance/quote/mlm-rm:moex"}, {"text": "MUN:MMX", "url": "https://www.google.com/finance/quote/mmx:mun"}, {"text": "ASE:MLM", "url": "https://www.google.com/finance/quote/ase:mlm"}, {"text": "LSE:0JZ0", "url": "https://www.google.com/finance/quote/0jz0:lse"}, {"text": "BRN:MMX", "url": "https://www.google.com/finance/quote/brn:mmx"}, {"text": "DEU:MLMT", "url": "https://www.google.com/finance/quote/deu:mlmt"}, {"text": "STU:MMX", "url": "https://www.google.com/finance/quote/mmx:stu"}, {"text": "FRA:MMX", "url": "https://www.google.com/finance/quote/fra:mmx"}, {"text": "MEX:MLM*", "url": "https://www.google.com/finance/quote/mex:mlm*"}, {"text": "NYQ:MLM", "url": "https://www.google.com/finance/quote/mlm:nyq"}, {"text": "NYSE:MLM", "url": "https://www.google.com/finance/quote/mlm:nyse"}, {"text": "SAO:M1LM34", "url": "https://www.google.com/finance/quote/m1lm34:sao"}, {"text": "DUS:MMX", "url": "https://www.google.com/finance/quote/dus:mmx"}, {"text": "BER:MMX", "url": "https://www.google.com/finance/quote/ber:mmx"}], "crunchbase_description": "Martin Marietta Materials supplies the products to build the world around you. They are the nation\u2019s second largest producer of", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 57, "rank": 987, "fortune500_rank": 452}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094, "fortune500_rank": 452}}, "sector": "Basic Materials", "business_sector": "Mineral Resources", "wikipedia_description": "Martin Marietta Inc. (NYSE: MLM) is an American-based company and a member of the S&P 500 Index. The company is a supplier of aggregates and heavy building materials, with operations spanning 26 states, Canada and the Caribbean. In particular, Martin Marietta supplies the resources for roads, sidewalks and foundations.", "wikipedia_link": "https://en.wikipedia.org/wiki/Martin_Marietta_Inc.", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 200, "country": "United States", "website": "https://www.perimeterx.com", "crunchbase": {"text": "64ee97ba-7846-fbd5-fbef-769100ecefbd", "url": "https://www.crunchbase.com/organization/perimeterx-inc-"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/perimeterx"], "stage": "Mature", "name": "PerimeterX", "patent_name": "perimeterx", "continent": "North America", "local_logo": "perimeterx.png", "aliases": "Perimeterx Inc; Perimeterx, Inc", "permid_links": [{"text": 5056442454, "url": "https://permid.org/1-5056442454"}], "parent_info": "Human Security (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "PerimeterX offers a web security service, protecting web sites from modern security threats.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 57, "rank": 987}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our vision is to liberate people from security concerns so they can unleash the power of web applications to build their digital businesses. Delivered as a service, our Bot Defender, Code Defender and Page Defender solutions detect risks to your web applications and proactively manage them, freeing you to focus on growth and innovation.", "company_site_link": "https://www.perimeterx.com/about/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1437, "country": "Germany", "website": "https://www.navvis.com", "crunchbase": {"text": "de3abc3d-db56-cc7f-034c-4d3267307735", "url": "https://www.crunchbase.com/organization/navvis"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/navvis"], "stage": "Growth", "name": "Navvis", "patent_name": "navvis", "continent": "Europe", "local_logo": "navvis.png", "aliases": "Navvis Gmbh", "permid_links": [{"text": 5044198559, "url": "https://permid.org/1-5044198559"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "NavVis enables service providers and enterprises to capture and share the built environment as photorealistic digital twins.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Segmentation", "field_count": 2}, {"field_name": "Hidden Markov model", "field_count": 1}, {"field_name": "Feature vector", "field_count": 1}, {"field_name": "Point cloud", "field_count": 1}, {"field_name": "Structured light", "field_count": 1}, {"field_name": "Rotation (mathematics)", "field_count": 1}, {"field_name": "Pose", "field_count": 1}, {"field_name": "Applications of artificial intelligence", "field_count": 1}], "clusters": [{"cluster_id": 1176, "cluster_count": 2}, {"cluster_id": 4358, "cluster_count": 1}, {"cluster_id": 494, "cluster_count": 1}, {"cluster_id": 14335, "cluster_count": 1}, {"cluster_id": 1821, "cluster_count": 1}, {"cluster_id": 17559, "cluster_count": 1}, {"cluster_id": 29152, "cluster_count": 1}, {"cluster_id": 25712, "cluster_count": 1}, {"cluster_id": 33281, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 14}, {"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 1437, "referenced_count": 3}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 789, "referenced_count": 2}, {"ref_CSET_id": 785, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 800, "referenced_count": 1}], "tasks": [{"referent": "segmentation", "task_count": 2}, {"referent": "indoor_navigation", "task_count": 2}, {"referent": "action_localization", "task_count": 1}, {"referent": "image_based_localization", "task_count": 1}, {"referent": "object_detection_in_indoor_scenes", "task_count": 1}, {"referent": "indoor_localization", "task_count": 1}, {"referent": "land_cover_mapping", "task_count": 1}, {"referent": "retrieval", "task_count": 1}, {"referent": "calibration_for_link_prediction", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 2}, {"referent": "dynamic_memory_network", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "pose_estimation_models", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "gan_feature_matching", "method_count": 1}, {"referent": "tree_structured_parzen_estimator_approach_(tpe)", "method_count": 1}, {"referent": "dimensionality_reduction", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 3, 3, 5, 1, 1, 4, 4, 0, 0], "total": 21, "isTopResearch": false, "rank": 797}, "ai_publications": {"counts": [0, 0, 2, 3, 4, 0, 0, 0, 1, 0, 0], "total": 10, "isTopResearch": false, "rank": 417}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 4, 22, 53, 79, 99, 71, 65, 2], "total": 395, "isTopResearch": false, "rank": 295}, "cv_pubs": {"counts": [0, 0, 1, 3, 4, 0, 0, 0, 0, 0, 0], "total": 8, "isTopResearch": true, "rank": 229}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0.0, 1.3333333333333333, 5.5, 0, 0, 0, 71.0, 0, 0], "total": 39.5, "isTopResearch": false, "rank": 131}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 57, "rank": 987}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "NavVis develops next-generation technology for the built environment that enables accurate mobile mapping of indoor spaces, fully immersive 3D buildings and enterprise-ready digital twin solutions.", "company_site_link": "https://www.navvis.com", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 43, "country": "China", "website": "https://www.bitmain.com/", "crunchbase": {"text": "da7030d6-592c-39a9-4b04-f7ff03f2e995", "url": "https://www.crunchbase.com/organization/bitmain"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bitmain"], "stage": "Mature", "name": "Bitmain Technologies", "patent_name": "bitmain technologies", "continent": "Asia", "local_logo": "bitmain_technologies.png", "aliases": "Bite Dalu; Bitmain; Bitmain Technologies Holding Company; Bitmain Technologies Inc; \u6bd4\u7279\u5927\u9646; \u6bd4\u7279\u5927\u9646\u79d1\u6280\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5051779837, "url": "https://permid.org/1-5051779837"}], "parent_info": "Bitmain Technologies Holding Company", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Bitmain is a design and manufacture of high performance computing chips and software.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Dropout (neural networks)", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}], "clusters": [{"cluster_id": 90867, "cluster_count": 1}, {"cluster_id": 34338, "cluster_count": 1}, {"cluster_id": 4634, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 161, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 130, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 283, "referenced_count": 1}, {"ref_CSET_id": 69, "referenced_count": 1}], "tasks": [{"referent": "face_recognition", "task_count": 1}, {"referent": "video_recognition", "task_count": 1}, {"referent": "lightfield", "task_count": 1}, {"referent": "domain_generalization", "task_count": 1}, {"referent": "sequential_image_classification", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "neural_architecture_search", "task_count": 1}, {"referent": "computational_manga", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}], "methods": [{"referent": "logistic_regression", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "dropout", "method_count": 1}, {"referent": "u_rnns", "method_count": 1}, {"referent": "deepwalk", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "dnas", "method_count": 1}, {"referent": "average_pooling", "method_count": 1}, {"referent": "backbone_architectures", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 3, 3, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 1, 1, 0], "total": 7, "isTopResearch": false, "rank": 794}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 1.0, 0, 0, 0, 0], "total": 2.3333333333333335, "isTopResearch": false, "rank": 817}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 5, 1, 10, 1, 1, 0, 0, 0], "total": 18, "table": null, "rank": 337}, "ai_patents_growth": {"counts": [], "total": 270.0, "table": null, "rank": 29}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 50, 10, 100, 10, 10, 0, 0, 0], "total": 180, "table": null, "rank": 337}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 1, 3, 0, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 305}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 57, "rank": 987}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Bitmain Technologies Ltd., or Bitmain, is a privately owned company headquartered in Beijing, China that designs application-specific integrated circuit (ASIC) chips for bitcoin mining.", "wikipedia_link": "https://en.wikipedia.org/wiki/Bitmain", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1788, "country": "South Korea", "website": "https://www.samsungcnt.com/", "crunchbase": {"text": " 4789545e-7422-1b6a-4fec-7e234e41eb5b", "url": " https://www.crunchbase.com/organization/samsung-c-t-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/samsung-c&t"], "stage": "Mature", "name": "Samsung C&T", "patent_name": "Samsung C&T", "continent": "Asia", "local_logo": null, "aliases": "Cheil Industries; Samsung C&T; Samsung C&T Corporation", "permid_links": [{"text": 5000002354, "url": "https://permid.org/1-5000002354"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "STU:SSUN", "url": "https://www.google.com/finance/quote/SSUN:STU"}, {"text": "PKL:SSNGY", "url": "https://www.google.com/finance/quote/PKL:SSNGY"}, {"text": "PKL:SSNLF", "url": "https://www.google.com/finance/quote/PKL:SSNLF"}, {"text": "STU:SSU", "url": "https://www.google.com/finance/quote/SSU:STU"}, {"text": "DEU:SSU", "url": "https://www.google.com/finance/quote/DEU:SSU"}, {"text": "MUN:SSUN", "url": "https://www.google.com/finance/quote/mun:ssun"}, {"text": "FRA:SSU", "url": "https://www.google.com/finance/quote/FRA:SSU"}, {"text": "BER:SSU", "url": "https://www.google.com/finance/quote/BER:SSU"}, {"text": "BER:SSUN", "url": "https://www.google.com/finance/quote/BER:SSUN"}, {"text": "DUS:SSU", "url": "https://www.google.com/finance/quote/DUS:SSU"}, {"text": "PKL:SSNHZ", "url": "https://www.google.com/finance/quote/PKL:SSNHZ"}, {"text": "HAN:SSUN", "url": "https://www.google.com/finance/quote/HAN:SSUN"}, {"text": "HAM:SSUN", "url": "https://www.google.com/finance/quote/HAM:SSUN"}, {"text": "HAM:SSU", "url": "https://www.google.com/finance/quote/HAM:SSU"}, {"text": "LSE:SMSN", "url": "https://www.google.com/finance/quote/LSE:SMSN"}, {"text": "PKL:SSNNF", "url": "https://www.google.com/finance/quote/PKL:SSNNF"}, {"text": "BRN:SSU", "url": "https://www.google.com/finance/quote/BRN:SSU"}, {"text": "BRN:SSUN", "url": "https://www.google.com/finance/quote/BRN:SSUN"}, {"text": "VIE:SSUN", "url": "https://www.google.com/finance/quote/SSUN:VIE"}, {"text": "DUS:SSUN", "url": "https://www.google.com/finance/quote/dus:ssun"}, {"text": "HAN:SSU", "url": "https://www.google.com/finance/quote/HAN:SSU"}, {"text": "VIE:SSU", "url": "https://www.google.com/finance/quote/SSU:VIE"}, {"text": "MUN:SSU", "url": "https://www.google.com/finance/quote/MUN:SSU"}, {"text": "MEX:SMSNN", "url": "https://www.google.com/finance/quote/MEX:SMSNN"}, {"text": "LSE:SMSD", "url": "https://www.google.com/finance/quote/LSE:SMSD"}, {"text": "FRA:SSUN", "url": "https://www.google.com/finance/quote/FRA:SSUN"}, {"text": "DEU:SSUN", "url": "https://www.google.com/finance/quote/DEU:SSUN"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Visual search", "field_count": 1}, {"field_name": "Artificial neural network", "field_count": 1}], "clusters": [{"cluster_id": 12208, "cluster_count": 1}, {"cluster_id": 1875, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "image_analysis", "task_count": 1}, {"referent": "damage_detection", "task_count": 1}], "methods": [{"referent": "atss", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "hierarchical_vae", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [21, 12, 6, 9, 7, 3, 4, 3, 1, 1, 0], "total": 67, "isTopResearch": false, "rank": 572, "sp500_rank": 315}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683, "sp500_rank": 301}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 7, 2, 7, 0], "total": 16, "isTopResearch": false, "rank": 704, "sp500_rank": 293}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 8.0, "isTopResearch": false, "rank": 595, "sp500_rank": 227}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 57, "rank": 987, "sp500_rank": 331}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349, "sp500_rank": 384}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 1889, "country": "China", "website": "https://www.bankcomm.com/", "crunchbase": {"text": " 3bed9724-0370-db10-9d6e-c1ceef77c365", "url": " https://www.crunchbase.com/organization/bank-of-communications"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bank-of-communications-co.-ltd."], "stage": "Mature", "name": "Bank Of Communications", "patent_name": "Bank of Communications", "continent": "Asia", "local_logo": null, "aliases": "Bank Of Communications Co Ltd; Bank of Communications; \u4ea4\u901a\u94f6\u884c; \u4ea4\u901a\u94f6\u884c\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295864463, "url": "https://permid.org/1-4295864463"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:3328", "url": "https://www.google.com/finance/quote/3328:HKG"}], "market_full": [{"text": "PKC:BKFCF", "url": "https://www.google.com/finance/quote/BKFCF:PKC"}, {"text": "DEU:3328", "url": "https://www.google.com/finance/quote/3328:DEU"}, {"text": "HKG:3328", "url": "https://www.google.com/finance/quote/3328:HKG"}, {"text": "MUN:C4C", "url": "https://www.google.com/finance/quote/C4C:MUN"}, {"text": "STU:C4C", "url": "https://www.google.com/finance/quote/C4C:STU"}, {"text": "DUS:C4C", "url": "https://www.google.com/finance/quote/C4C:DUS"}, {"text": "SHH:601328", "url": "https://www.google.com/finance/quote/601328:SHH"}, {"text": "HKG.HS:3328", "url": "https://www.google.com/finance/quote/3328:HKG.HS"}, {"text": "BER:C4C", "url": "https://www.google.com/finance/quote/BER:C4C"}, {"text": "FRA:C4C", "url": "https://www.google.com/finance/quote/C4C:FRA"}, {"text": "PKC:BCMXY", "url": "https://www.google.com/finance/quote/BCMXY:PKC"}, {"text": "HKG.HZ:3328", "url": "https://www.google.com/finance/quote/3328:HKG.HZ"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Evolutionary algorithm", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 9675, "cluster_count": 1}, {"cluster_id": 187, "cluster_count": 1}, {"cluster_id": 44849, "cluster_count": 1}, {"cluster_id": 3124, "cluster_count": 1}, {"cluster_id": 31031, "cluster_count": 1}, {"cluster_id": 23653, "cluster_count": 1}, {"cluster_id": 183, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 792, "referenced_count": 1}, {"ref_CSET_id": 1791, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "developmental_learning", "task_count": 2}, {"referent": "stock_market_prediction", "task_count": 1}, {"referent": "stock_price_prediction", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "target_recognition", "task_count": 1}, {"referent": "multi_task_learning", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "image_processing", "task_count": 1}, {"referent": "problem_decomposition", "task_count": 1}], "methods": [{"referent": "dueling_network", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "layerscale", "method_count": 1}, {"referent": "loss_functions", "method_count": 1}, {"referent": "condconv", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "clustering", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [7, 8, 6, 6, 8, 3, 9, 9, 15, 5, 0], "total": 76, "isTopResearch": false, "rank": 550, "sp500_rank": 307}, "ai_publications": {"counts": [0, 1, 0, 0, 0, 0, 1, 1, 2, 0, 0], "total": 5, "isTopResearch": false, "rank": 540, "sp500_rank": 262}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 1, 1, 1, 0, 1, 0, 5, 5, 0], "total": 14, "isTopResearch": false, "rank": 724, "sp500_rank": 299}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0, 0, 1.0, 0.0, 2.5, 0, 0], "total": 2.8, "isTopResearch": false, "rank": 806, "sp500_rank": 320}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 1, 5, 4, 2, 0], "total": 13, "table": null, "rank": 372, "sp500_rank": 179}, "ai_patents_growth": {"counts": [], "total": 200.0, "table": null, "rank": 39, "sp500_rank": 15}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 10, 50, 40, 20, 0], "total": 130, "table": null, "rank": 372, "sp500_rank": 179}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": "industry", "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], "total": 4, "table": "industry", "rank": 363, "sp500_rank": 174}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 3, 0, 0], "total": 4, "table": "industry", "rank": 115, "sp500_rank": 79}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 3, 0, 0], "total": 6, "table": "industry", "rank": 196, "sp500_rank": 128}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 3, 0, 0], "total": 6, "table": "application", "rank": 163, "sp500_rank": 110}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0], "total": 4, "table": "application", "rank": 347, "sp500_rank": 170}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 56, "rank": 995, "sp500_rank": 333}, "ai_jobs": {"counts": null, "total": 8, "rank": 908, "sp500_rank": 311}}, "sector": "Financials", "business_sector": "Banking & Investment Services"}, {"cset_id": 320, "country": "United States", "website": "http://www.alluxio.com/", "crunchbase": {"text": "422d9813-cffa-001d-b376-1b762e2383e8", "url": "https://www.crunchbase.com/organization/alluxio"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/alluxio-inc-"], "stage": "Growth", "name": "Alluxio, Inc.", "patent_name": "alluxio, inc.", "continent": "North America", "local_logo": "alluxio,_inc.png", "aliases": "Alluxio; Alluxio Inc; Tachyon Nexus", "permid_links": [{"text": 5045624242, "url": "https://permid.org/1-5045624242"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Data Orchestration for AI and Analytics in the Cloud", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 3, 1, 0, 0, 2, 0], "total": 6, "isTopResearch": false, "rank": 1030}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 56, "rank": 995}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Alluxio enables data orchestration for compute in any cloud. It unifies data silos on-premise and across any cloud to give you the data locality, accessibility, and elasticity needed to reduce the complexities associated with orchestrating data for today\u2019s big data and AI/ML workloads.", "company_site_link": "https://www.alluxio.io/products/", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2897, "country": "United States", "website": "https://www.irtc-hq.com/", "crunchbase": {"text": "f00b04e9-7f4f-46dd-a4a8-dd8fbc74e0ef", "url": "https://www.crunchbase.com/organization/intuitive-research-and-technology-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/intuitiveresearch"], "stage": "Unknown", "name": "Intuitive Research and Technology Corp", "patent_name": "intuitive research and technology corp", "continent": "North America", "local_logo": "intuitive_research_and_technology_corp.png", "aliases": "Intuitive; Intuitive Research And Technology; Intuitive Research And Technology Corporation (Intuitiveu00Ae); Intuitive Research and Technology Corporation; Intuitiveu00Ae", "permid_links": [{"text": 4297568321, "url": "https://permid.org/1-4297568321"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Intuitive Research and Technology Corporation provides aerospace engineering and analysis services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 2, 1, 0, 0, 0, 1, 1, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 55, "rank": 997}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "INTUITIVE is committed to be the leading systems, technology and management solutions provider in our industry by continually improving our processes and providing our customers with exceptional services, quality products and unparalleled customer support.", "company_site_link": "https://www.irtc-hq.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 786, "country": "Japan", "website": "http://www.mitsubishicorp.com/", "crunchbase": {"text": "b8d38291-6018-dd90-83ec-0723756f2949", "url": "https://www.crunchbase.com/organization/mitsubishi-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mitsubishi-corporation"], "stage": "Unknown", "name": "Mitsubishi", "patent_name": "mitsubishi", "continent": "Asia", "local_logo": "mitsubishi.png", "aliases": "\u4e09\u83f1\u30b0\u30eb\u30fc\u30d7", "permid_links": [{"text": 4295880570, "url": "https://permid.org/1-4295880570"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Mitsubishi Corporation is Japan's largest trading company and a member of the Mitsubishi keiretsu.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 28}, {"field_name": "Deep learning", "field_count": 28}, {"field_name": "Robot", "field_count": 27}, {"field_name": "Feature (computer vision)", "field_count": 22}, {"field_name": "Pose", "field_count": 20}, {"field_name": "Artificial neural network", "field_count": 18}, {"field_name": "Cluster analysis", "field_count": 17}, {"field_name": "Word error rate", "field_count": 16}, {"field_name": "Robustness (computer science)", "field_count": 14}, {"field_name": "Language model", "field_count": 14}], "clusters": [{"cluster_id": 3291, "cluster_count": 54}, {"cluster_id": 1422, "cluster_count": 44}, {"cluster_id": 5142, "cluster_count": 19}, {"cluster_id": 2410, "cluster_count": 14}, {"cluster_id": 3240, "cluster_count": 11}, {"cluster_id": 14477, "cluster_count": 11}, {"cluster_id": 17758, "cluster_count": 10}, {"cluster_id": 2214, "cluster_count": 9}, {"cluster_id": 31869, "cluster_count": 8}, {"cluster_id": 3742, "cluster_count": 8}], "company_references": [{"ref_CSET_id": 1784, "referenced_count": 1229}, {"ref_CSET_id": 786, "referenced_count": 1178}, {"ref_CSET_id": 101, "referenced_count": 1078}, {"ref_CSET_id": 163, "referenced_count": 767}, {"ref_CSET_id": 87, "referenced_count": 305}, {"ref_CSET_id": 3131, "referenced_count": 246}, {"ref_CSET_id": 115, "referenced_count": 196}, {"ref_CSET_id": 6, "referenced_count": 104}, {"ref_CSET_id": 23, "referenced_count": 76}, {"ref_CSET_id": 127, "referenced_count": 65}], "tasks": [{"referent": "classification", "task_count": 93}, {"referent": "speech_recognition", "task_count": 65}, {"referent": "robots", "task_count": 51}, {"referent": "autonomous_vehicles", "task_count": 49}, {"referent": "autonomous_driving", "task_count": 45}, {"referent": "image_processing", "task_count": 36}, {"referent": "end_to_end_speech_recognition", "task_count": 32}, {"referent": "motion_planning", "task_count": 29}, {"referent": "image_restoration", "task_count": 28}, {"referent": "system_identification", "task_count": 28}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 101}, {"referent": "vqa_models", "method_count": 55}, {"referent": "q_learning", "method_count": 48}, {"referent": "3d_representations", "method_count": 43}, {"referent": "double_q_learning", "method_count": 41}, {"referent": "optimization", "method_count": 38}, {"referent": "deep_belief_network", "method_count": 36}, {"referent": "symbolic_deep_learning", "method_count": 34}, {"referent": "convolutional_neural_networks", "method_count": 31}, {"referent": "griffin_lim_algorithm", "method_count": 28}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [1288, 1272, 1205, 1182, 1328, 1367, 1450, 1388, 1150, 909, 24], "total": 12563, "isTopResearch": false, "rank": 30, "sp500_rank": 27}, "ai_publications": {"counts": [59, 59, 67, 84, 107, 100, 137, 142, 116, 49, 1], "total": 921, "isTopResearch": false, "rank": 27, "sp500_rank": 22}, "ai_publications_growth": {"counts": [], "total": -24.139614936029464, "isTopResearch": false, "rank": 1361, "sp500_rank": 367}, "ai_pubs_top_conf": {"counts": [6, 3, 5, 6, 10, 8, 8, 12, 5, 4, 0], "total": 67, "isTopResearch": false, "rank": 39, "sp500_rank": 20}, "citation_counts": {"counts": [605, 796, 1023, 1393, 1866, 2467, 3516, 4349, 5162, 3501, 133], "total": 24811, "isTopResearch": false, "rank": 27, "sp500_rank": 18}, "cv_pubs": {"counts": [26, 20, 25, 24, 28, 18, 30, 37, 30, 10, 1], "total": 249, "isTopResearch": true, "rank": 31, "sp500_rank": 22}, "nlp_pubs": {"counts": [1, 6, 8, 13, 18, 17, 13, 9, 4, 2, 0], "total": 91, "isTopResearch": true, "rank": 25, "sp500_rank": 19}, "robotics_pubs": {"counts": [10, 9, 8, 20, 27, 25, 39, 36, 23, 16, 0], "total": 213, "isTopResearch": true, "rank": 8, "sp500_rank": 6}, "citations_per_article": {"counts": [10.254237288135593, 13.491525423728813, 15.26865671641791, 16.583333333333332, 17.439252336448597, 24.67, 25.664233576642335, 30.62676056338028, 44.5, 71.44897959183673, 133.0], "total": 26.939196525515744, "isTopResearch": false, "rank": 216, "sp500_rank": 58}}, "patents": {"ai_patents": {"counts": [11, 23, 21, 64, 101, 133, 179, 152, 51, 3, 0], "total": 738, "table": null, "rank": 37, "sp500_rank": 30}, "ai_patents_growth": {"counts": [], "total": 17.06194519985455, "table": null, "rank": 304, "sp500_rank": 143}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [110, 230, 210, 640, 1010, 1330, 1790, 1520, 510, 30, 0], "total": 7380, "table": null, "rank": 37, "sp500_rank": 30}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 1, 3, 5, 11, 9, 2, 4, 0, 0], "total": 36, "table": null, "rank": 17, "sp500_rank": 13}, "Life_Sciences": {"counts": [0, 0, 0, 2, 2, 7, 8, 2, 0, 0, 0], "total": 21, "table": null, "rank": 52, "sp500_rank": 36}, "Security__eg_cybersecurity": {"counts": [0, 0, 1, 3, 6, 3, 1, 3, 1, 0, 0], "total": 18, "table": null, "rank": 62, "sp500_rank": 46}, "Transportation": {"counts": [3, 5, 2, 16, 16, 17, 16, 15, 0, 0, 0], "total": 90, "table": "industry", "rank": 29, "sp500_rank": 23}, "Industrial_and_Manufacturing": {"counts": [0, 2, 2, 6, 9, 18, 37, 20, 9, 0, 0], "total": 103, "table": "industry", "rank": 5, "sp500_rank": 3}, "Education": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0], "total": 3, "table": null, "rank": 50, "sp500_rank": 36}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 61, "sp500_rank": 47}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [3, 10, 4, 9, 31, 26, 30, 25, 10, 0, 0], "total": 148, "table": "industry", "rank": 52, "sp500_rank": 41}, "Banking_and_Finance": {"counts": [0, 3, 0, 1, 0, 3, 3, 2, 0, 0, 0], "total": 12, "table": null, "rank": 67, "sp500_rank": 52}, "Telecommunications": {"counts": [1, 1, 1, 3, 15, 17, 18, 9, 4, 0, 0], "total": 69, "table": "industry", "rank": 60, "sp500_rank": 49}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 55, "sp500_rank": 41}, "Business": {"counts": [1, 4, 2, 2, 7, 10, 10, 6, 0, 0, 0], "total": 42, "table": null, "rank": 62, "sp500_rank": 49}, "Energy_Management": {"counts": [4, 5, 3, 4, 5, 20, 20, 7, 3, 0, 0], "total": 71, "table": "industry", "rank": 7, "sp500_rank": 7}, "Entertainment": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 60, "sp500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22}, "Language_Processing": {"counts": [0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 75, "sp500_rank": 50}, "Speech_Processing": {"counts": [1, 2, 5, 7, 7, 7, 5, 5, 1, 0, 0], "total": 40, "table": "application", "rank": 25, "sp500_rank": 17}, "Knowledge_Representation": {"counts": [1, 0, 1, 3, 3, 8, 3, 2, 1, 0, 0], "total": 22, "table": null, "rank": 50, "sp500_rank": 39}, "Planning_and_Scheduling": {"counts": [0, 2, 1, 2, 6, 9, 8, 5, 0, 0, 0], "total": 33, "table": "application", "rank": 50, "sp500_rank": 42}, "Control": {"counts": [3, 9, 9, 23, 36, 48, 54, 36, 13, 0, 0], "total": 231, "table": "application", "rank": 16, "sp500_rank": 13}, "Distributed_AI": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [2, 4, 6, 21, 29, 28, 30, 26, 5, 0, 0], "total": 151, "table": "application", "rank": 54, "sp500_rank": 41}, "Analytics_and_Algorithms": {"counts": [0, 0, 1, 3, 3, 7, 12, 4, 2, 0, 0], "total": 32, "table": null, "rank": 38, "sp500_rank": 33}, "Measuring_and_Testing": {"counts": [2, 2, 2, 12, 16, 20, 20, 16, 4, 0, 0], "total": 94, "table": "application", "rank": 27, "sp500_rank": 20}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 54, "rank": 998, "sp500_rank": 334}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "sp500_rank": 335}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "The Mitsubishi Group (\u4e09\u83f1\u30b0\u30eb\u30fc\u30d7, Mitsubishi Gur\u016bpu, informally known as the Mitsubishi Keiretsu) is a group of autonomous Japanese multinational companies in a variety of industries.", "wikipedia_link": "https://en.wikipedia.org/wiki/Mitsubishi", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2868, "country": "United States", "website": "http://www.gryphonlc.com/", "crunchbase": {"text": "c628fe41-4bc3-a06c-2ca5-a9d12082361d", "url": "https://www.crunchbase.com/organization/gryphon-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/gryphon-technologies"], "stage": "Unknown", "name": "Gryphon Technologies LC", "patent_name": "gryphon technologies lc", "continent": "North America", "local_logo": "gryphon_technologies_lc.png", "aliases": "Gryphon; Gryphon Technologies; Gryphon Technologies Inc", "permid_links": [{"text": 4297468500, "url": "https://permid.org/1-4297468500"}], "parent_info": "Mantech International (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Gryphon is a premier engineering and technical services firm providing support to national security and coalition forces.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 54, "rank": 998}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Gryphon Technologies Inc. is a transformational leader in providing digital engineering, cyber, cloud solutions, predictive analytics and technical solutions and services to national security organizations.", "company_site_link": "https://www.gryphontechnologies.com/about/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1982, "country": "South Korea", "website": "https://www.hanwhacorp.co.kr/", "crunchbase": {"text": " 16abfaf7-7347-aa1c-afa7-60a211aedfd7 ", "url": " https://www.crunchbase.com/organization/hanwha-holdings "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hanwha-group"], "stage": "Mature", "name": "Hanwha", "patent_name": "Hanwha", "continent": "Asia", "local_logo": null, "aliases": "Hanwha; Hanwha Corporation; Hanwha Group; \ud55c\ud654\uadf8\ub8f9", "permid_links": [{"text": 4295881078, "url": "https://permid.org/1-4295881078"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "KRX:000880", "url": "https://www.google.com/finance/quote/000880:KRX"}], "market_full": [{"text": "KRX:000880", "url": "https://www.google.com/finance/quote/000880:KRX"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Spectrogram", "field_count": 1}, {"field_name": "Navigation system", "field_count": 1}, {"field_name": "Cluster analysis", "field_count": 1}, {"field_name": "Stereo camera", "field_count": 1}, {"field_name": "Fuzzy logic", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "Synthetic aperture radar", "field_count": 1}, {"field_name": "Anomaly detection", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Constant false alarm rate", "field_count": 1}], "clusters": [{"cluster_id": 3842, "cluster_count": 2}, {"cluster_id": 54932, "cluster_count": 1}, {"cluster_id": 10301, "cluster_count": 1}, {"cluster_id": 21685, "cluster_count": 1}, {"cluster_id": 3708, "cluster_count": 1}, {"cluster_id": 55553, "cluster_count": 1}, {"cluster_id": 15847, "cluster_count": 1}, {"cluster_id": 12022, "cluster_count": 1}, {"cluster_id": 25517, "cluster_count": 1}, {"cluster_id": 36105, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 133, "referenced_count": 1}, {"ref_CSET_id": 833, "referenced_count": 1}], "tasks": [{"referent": "target_recognition", "task_count": 3}, {"referent": "autonomous_navigation", "task_count": 3}, {"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "decision_making", "task_count": 1}, {"referent": "cbc_test", "task_count": 1}, {"referent": "motion_compensation", "task_count": 1}, {"referent": "denoising_of_radar_micro_doppler_signatures", "task_count": 1}, {"referent": "acoustic_modelling", "task_count": 1}, {"referent": "eeg_decoding", "task_count": 1}], "methods": [{"referent": "adashift", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "foveabox", "method_count": 1}, {"referent": "trpo", "method_count": 1}, {"referent": "gravity", "method_count": 1}, {"referent": "vilbert", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [9, 11, 14, 25, 13, 21, 39, 22, 31, 27, 0], "total": 212, "isTopResearch": false, "rank": 405, "sp500_rank": 247}, "ai_publications": {"counts": [2, 0, 1, 1, 0, 3, 3, 2, 2, 4, 0], "total": 18, "isTopResearch": false, "rank": 321, "sp500_rank": 178}, "ai_publications_growth": {"counts": [], "total": 22.222222222222218, "isTopResearch": false, "rank": 111, "sp500_rank": 54}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [5, 3, 6, 6, 3, 8, 17, 23, 21, 21, 0], "total": 113, "isTopResearch": false, "rank": 483, "sp500_rank": 216}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 2, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 313, "sp500_rank": 158}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 1, 1, 0, 1, 1, 0, 0, 2, 0], "total": 6, "isTopResearch": true, "rank": 156, "sp500_rank": 101}, "citations_per_article": {"counts": [2.5, 0, 6.0, 6.0, 0, 2.6666666666666665, 5.666666666666667, 11.5, 10.5, 5.25, 0], "total": 6.277777777777778, "isTopResearch": false, "rank": 675, "sp500_rank": 268}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 728, "sp500_rank": 279}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0], "total": 10, "table": null, "rank": 728, "sp500_rank": 279}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 54, "rank": 998, "sp500_rank": 334}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094, "sp500_rank": 346}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 246, "country": "United States", "website": "http://terminus.com", "crunchbase": {"text": "fa9ee419-6e8d-5a55-046e-53550fb2c5f4", "url": "https://www.crunchbase.com/organization/terminus-software"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/terminus-account-based-marketing"], "stage": "Growth", "name": "Terminus", "patent_name": "terminus", "continent": "North America", "local_logo": "terminus.png", "aliases": "Terminus Software; Terminus Software, Inc; \u7279\u65af\u8054; \u7279\u65af\u8054\u79d1\u6280\u96c6\u56e2\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5055940854, "url": "https://permid.org/1-5055940854"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Terminus is a marketing platform used to target companies, engage decision-makers on their terms, and accelerate pipeline velocity.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 3, 6, 30, 0, 0, 0, 0], "total": 39, "table": null, "rank": 242}, "ai_patents_growth": {"counts": [], "total": 133.33333333333334, "table": null, "rank": 86}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 30, 60, 300, 0, 0, 0, 0], "total": 390, "table": null, "rank": 242}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 125}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": null, "rank": 34}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 172}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 2, 3, 0, 0, 0, 0], "total": 6, "table": "industry", "rank": 204}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 78}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 0], "total": 8, "table": "industry", "rank": 168}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 160}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 7, 0, 0, 0, 0], "total": 7, "table": "application", "rank": 153}, "Control": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 3, 9, 0, 0, 0, 0], "total": 12, "table": "application", "rank": 229}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 209}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 53, "rank": 1001}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "A Total Economic Impact\u2122 report run independently by Forrester found that customers saw an average of 313% ROI by improving the efficiency of their go-to-market efforts, while creating a better brand experience across the entire customer journey.", "company_site_link": "http://terminus.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1798, "country": "China", "website": "https://www.cscec.com/", "crunchbase": {"text": " c33266a6-a217-db0b-a8ad-b9abd52de405", "url": " https://www.crunchbase.com/organization/china-state-construction-engineering-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/china-state-construction-engrg.-corp.-ltd-cscec-"], "stage": "Mature", "name": "China State Construction Engineering", "patent_name": "China State Construction Engineering", "continent": "Asia", "local_logo": null, "aliases": "China State Construction Engineering; China State Construction Engineering Corporation; Cscec; \u4e2d\u56fd\u5efa\u7b51\u96c6\u56e2\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5000032093, "url": "https://permid.org/1-5000032093"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "SHH:601668", "url": "https://www.google.com/finance/quote/601668:SHH"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 3}, {"field_name": "Random forest", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Gradation", "field_count": 1}, {"field_name": "3D reconstruction", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 19841, "cluster_count": 2}, {"cluster_id": 38285, "cluster_count": 1}, {"cluster_id": 75162, "cluster_count": 1}, {"cluster_id": 2489, "cluster_count": 1}, {"cluster_id": 3796, "cluster_count": 1}, {"cluster_id": 10760, "cluster_count": 1}, {"cluster_id": 21629, "cluster_count": 1}, {"cluster_id": 6618, "cluster_count": 1}, {"cluster_id": 64099, "cluster_count": 1}, {"cluster_id": 10722, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 1798, "referenced_count": 1}, {"ref_CSET_id": 1820, "referenced_count": 1}, {"ref_CSET_id": 682, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "indoor_positioning", "task_count": 2}, {"referent": "indoor_scene_reconstruction", "task_count": 2}, {"referent": "computer_vision", "task_count": 1}, {"referent": "simultaneous_localization_and_mapping", "task_count": 1}, {"referent": "slam", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "vehicle_detection", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "hybrid_positioning", "task_count": 1}], "methods": [{"referent": "heuristic_search_algorithms", "method_count": 1}, {"referent": "crossvit", "method_count": 1}, {"referent": "counting_methods", "method_count": 1}, {"referent": "wavetts", "method_count": 1}, {"referent": "atss", "method_count": 1}, {"referent": "resnet", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [54, 90, 49, 49, 60, 55, 93, 92, 91, 103, 13], "total": 749, "isTopResearch": false, "rank": 227, "sp500_rank": 158}, "ai_publications": {"counts": [0, 4, 0, 1, 1, 2, 1, 1, 1, 3, 0], "total": 14, "isTopResearch": false, "rank": 359, "sp500_rank": 192}, "ai_publications_growth": {"counts": [], "total": 66.66666666666667, "isTopResearch": false, "rank": 44, "sp500_rank": 24}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [3, 4, 4, 4, 4, 5, 12, 16, 68, 45, 2], "total": 167, "isTopResearch": false, "rank": 416, "sp500_rank": 190}, "cv_pubs": {"counts": [0, 1, 0, 0, 1, 1, 0, 0, 0, 3, 0], "total": 6, "isTopResearch": true, "rank": 267, "sp500_rank": 137}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "sp500_rank": 169}, "citations_per_article": {"counts": [0, 1.0, 0, 4.0, 4.0, 2.5, 12.0, 16.0, 68.0, 15.0, 0], "total": 11.928571428571429, "isTopResearch": false, "rank": 476, "sp500_rank": 164}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 1, 2, 0, 1, 0], "total": 6, "table": null, "rank": 487, "sp500_rank": 216}, "ai_patents_growth": {"counts": [], "total": 25.0, "table": null, "rank": 287, "sp500_rank": 134}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 10, 20, 0, 10, 0], "total": 60, "table": null, "rank": 487, "sp500_rank": 216}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 125, "sp500_rank": 92}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "table": "industry", "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "sp500_rank": 183}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "sp500_rank": 152}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 1, 0], "total": 3, "table": "application", "rank": 209, "sp500_rank": 132}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 53, "rank": 1001, "sp500_rank": 336}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349, "sp500_rank": 384}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 2814, "country": "United States", "website": "https://www.rgnext.com/", "crunchbase": {"text": null, "url": null}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/rgnext"], "stage": "Unknown", "name": "Range Generation Next LLC", "patent_name": "range generation next llc", "continent": "North America", "local_logo": null, "aliases": "Range Generation Next; Rgnext", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 53, "rank": 1001}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1944, "country": "Brazil", "website": "https://jbs.com.br/", "crunchbase": {"text": " 51a87f62-934f-16ff-25d7-021626440ee3 ", "url": " https://www.crunchbase.com/organization/jbs-3 "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/jbsusa"], "stage": "Mature", "name": "Jbs", "patent_name": "JBS", "continent": "South America", "local_logo": null, "aliases": "JBS; Jbs S.A", "permid_links": [{"text": 4295860302, "url": "https://permid.org/1-4295860302"}], "parent_info": "J&F Investimentos", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "DUS:YJ3A", "url": "https://www.google.com/finance/quote/DUS:YJ3A"}, {"text": "STU:YJ3A", "url": "https://www.google.com/finance/quote/STU:YJ3A"}, {"text": "SAO:JBSS3", "url": "https://www.google.com/finance/quote/JBSS3:SAO"}, {"text": "DEU:YJ3A", "url": "https://www.google.com/finance/quote/DEU:YJ3A"}, {"text": "MEX:JBSAYN", "url": "https://www.google.com/finance/quote/JBSAYN:MEX"}, {"text": "QXI:JBSAY", "url": "https://www.google.com/finance/quote/JBSAY:QXI"}, {"text": "FRA:YJ3A", "url": "https://www.google.com/finance/quote/FRA:YJ3A"}, {"text": "BER:YJ3A", "url": "https://www.google.com/finance/quote/BER:YJ3A"}, {"text": "MUN:YJ3A", "url": "https://www.google.com/finance/quote/MUN:YJ3A"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Boosting (machine learning)", "field_count": 1}], "clusters": [{"cluster_id": 19188, "cluster_count": 1}, {"cluster_id": 4379, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "action_quality_assessment", "task_count": 1}, {"referent": "svbrdf_estimation", "task_count": 1}, {"referent": "materials_imaging", "task_count": 1}, {"referent": "automated_writing_evaluation", "task_count": 1}, {"referent": "precision_agriculture", "task_count": 1}, {"referent": "image_fusion", "task_count": 1}, {"referent": "patch_matching", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "clustering", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "stochastic_depth", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "crf", "method_count": 1}, {"referent": "weight_tying", "method_count": 1}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "ghm_r", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [35, 26, 26, 17, 25, 17, 19, 23, 21, 12, 0], "total": 221, "isTopResearch": false, "rank": 399, "sp500_rank": 245}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618, "sp500_rank": 285}, "ai_publications_growth": {"counts": [], "total": -75.0, "isTopResearch": false, "rank": 1526, "sp500_rank": 435}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 6, 5, 4, 0], "total": 16, "isTopResearch": false, "rank": 704, "sp500_rank": 293}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.5, 6.0, 0, 0, 0], "total": 5.333333333333333, "isTopResearch": false, "rank": 701, "sp500_rank": 278}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 52, "rank": 1004, "sp500_rank": 337}, "ai_jobs": {"counts": null, "total": 12, "rank": 812, "sp500_rank": 290}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages"}, {"cset_id": 113, "country": "China", "website": "http://en.huiyihuiying.com/", "crunchbase": {"text": "a91e737a-7ce2-4c6e-829f-11a052e75f8d", "url": "https://www.crunchbase.com/organization/huiyihuiying"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/\u6caa\u6c5f\u7f51"], "stage": "Growth", "name": "HuJiang", "patent_name": "hujiang", "continent": "Asia", "local_logo": "hujiang.png", "aliases": "Huiyi Huiying; Huiying Medical Technology (Beijing) Co., Ltd; Huiying Medical Technology Beijing Co Ltd; \u6167\u5f71\u533b\u7597\u79d1\u6280\uff08\u5317\u4eac\uff09\u6709\u9650\u516c\u53f8; \u6c47\u533b\u6167\u5f71", "permid_links": [{"text": 5052159826, "url": "https://permid.org/1-5052159826"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Huiyi Huiying is an international cloud computing & AI tech that has created a digital medical imaging and tumor radiotherapy platform.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Segmentation", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 36467, "cluster_count": 1}, {"cluster_id": 47138, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 789, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 2366, "referenced_count": 2}, {"ref_CSET_id": 341, "referenced_count": 1}, {"ref_CSET_id": 201, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 2119, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 1}, {"referent": "disease_detection", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "medical_image_segmentation", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "graphs", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "gan", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 6, 4, 0], "total": 13, "isTopResearch": false, "rank": 888}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 7, 11, 24, 0], "total": 42, "isTopResearch": false, "rank": 607}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 11.0, 0, 0], "total": 21.0, "isTopResearch": false, "rank": 294}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 7, 0, 0], "total": 11, "table": null, "rank": 394}, "ai_patents_growth": {"counts": [], "total": -66.66666666666667, "table": null, "rank": 1550}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 30, 10, 70, 0, 0], "total": 110, "table": null, "rank": 394}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 3, 1, 6, 0, 0], "total": 10, "table": "application", "rank": 241}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 52, "rank": 1004}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "\u6c47\u533b\u6167\u5f71\u662f\u6167\u5f71\u533b\u7597\u79d1\u6280\uff08\u5317\u4eac\uff09\u6709\u9650\u516c\u53f8\u65d7\u4e0b\u54c1\u724c\uff0c\u516c\u53f8\u7531\u67f4\u8c61\u98de\u548c\u90ed\u5a1c\u57282015\u5e74\u8054\u5408\u521b\u529e\uff0c\u662f\u5317\u4eac\u4e00\u5bb6\u5e2e\u52a9\u533b\u751f\u4f7f\u7528\u6df1\u5ea6\u5b66\u4e60\u6280\u672f\u9605\u8bfb\u533b\u5b66\u56fe\u50cf\u7684\u521d\u521b\u516c\u53f8\u3002\u6c47\u533b\u6167\u5f71\u5c06\u6df1\u5ea6\u5b66\u4e60\u6280\u672f\u5e94\u7528\u5728\u533b\u5b66\u5f71\u50cf\u4e2d\uff0c\u4e3a\u533b\u9662\u63d0\u4f9b\u533b\u5b66\u8bca\u65ad\u8f6f\u4ef6\u4ea7\u54c1\uff0c\u5305\u62ecAI\u8bca\u65ad\u4e91\u5e73\u53f0\u3001\u653e\u5c04\u7ec4\u5b66\u4e91\u5e73\u53f0\u7b49\uff0c\u8f85\u52a9\u533b\u751f\u8fdb\u884c\u80ba\u7ed3\u8282\u3001\u9aa8\u6298\u7b49\u7684\u68c0\u6d4b\u3001\u6cbb\u7597\uff0c\u4e3a\u533b\u751f\u79d1\u7814\u63d0\u4f9b\u5e2e\u52a9\u3002", "company_site_link": "https://www.huiyihuiying.com", "description_retrieval_date": "2021-03-18", "company_site_description_translation": "Huiyi Huiying is a brand of Huiying Medical Technology (Beijing) Co., Ltd. The company was co-founded by Chai Xiangfei and Guo Na in 2015. It is a startup company in Beijing that helps doctors use deep learning technology to read medical images. Huiyihuiying applies deep learning technology to medical imaging and provides hospitals with medical diagnostic software products, including AI diagnostic cloud platform, radiomics cloud platform, etc., to assist doctors in the detection and treatment of pulmonary nodules, fractures, etc., providing hospitals with Physician research helps."}, {"cset_id": 692, "country": "United States", "website": "http://smartdrive.net/", "crunchbase": {"text": "99b341b4-8a9f-f175-d747-dd1d914d462e", "url": "https://www.crunchbase.com/organization/smartdrive-systems"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/smartdrive-systems"], "stage": "Mature", "name": "SmartDrive Systems", "patent_name": "smartdrive systems", "continent": "North America", "local_logo": "smartdrive_systems.png", "aliases": "Smartdrive; Smartdrive Systems, Inc; Smartdrive\u00ae", "permid_links": [{"text": 4297643673, "url": "https://permid.org/1-4297643673"}], "parent_info": "Omnitracs (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "SmartDrive provides fuel management and driver safety solutions for customers in range of industries from waste management.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Linear model", "field_count": 1}], "clusters": [{"cluster_id": 1168, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "facial_expression_analysis", "task_count": 1}, {"referent": "image_interpretation", "task_count": 1}], "methods": [{"referent": "carafe", "method_count": 1}, {"referent": "linear_regression", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "linear_warmup_with_linear_decay", "method_count": 1}, {"referent": "tree_structured_parzen_estimator_approach_(tpe)", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 1, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 901}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0], "total": 5, "table": null, "rank": 525}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 20, 0, 0, 30, 0, 0, 0, 0], "total": 50, "table": null, "rank": 525}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 2, 0, 0, 3, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 133}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 1, 0, 0, 3, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 190}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 52, "rank": 1004}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "SmartDrive Systems, Inc. is a driver safety and transportation intelligence company located in San Diego, California. The company uses video and driver data to monitor driver behavior in commercial vehicles including trucks, buses and trains.", "wikipedia_link": "https://en.wikipedia.org/wiki/SmartDrive_Systemss", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1785, "country": "Japan", "website": "https://www.mhi.com/", "crunchbase": {"text": " bc0a165f-929d-4497-a52a-92e25ae0d8c6", "url": " https://www.crunchbase.com/organization/mitsubishi-heavy-industries"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mitsubishi-heavy-industries"], "stage": "Mature", "name": "Mitsubishi Heavy Industries", "patent_name": "Mitsubishi Heavy Industries", "continent": "Asia", "local_logo": null, "aliases": "Mitsubishi Heavy Industries; \u4e09\u83f1\u91cd\u5de5\u30de\u30ea\u30f3\u30de\u30b7\u30ca\u30ea", "permid_links": [{"text": 4295877302, "url": "https://permid.org/1-4295877302"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:7011", "url": "https://www.google.com/finance/quote/7011:TYO"}], "market_full": [{"text": "DEU:MITH", "url": "https://www.google.com/finance/quote/DEU:MITH"}, {"text": "FRA:MIH", "url": "https://www.google.com/finance/quote/FRA:MIH"}, {"text": "TYO:7011", "url": "https://www.google.com/finance/quote/7011:TYO"}, {"text": "STU:MIH", "url": "https://www.google.com/finance/quote/MIH:STU"}, {"text": "PKL:MHVYF", "url": "https://www.google.com/finance/quote/MHVYF:PKL"}, {"text": "MUN:MIH", "url": "https://www.google.com/finance/quote/MIH:MUN"}, {"text": "DUS:MIH", "url": "https://www.google.com/finance/quote/DUS:MIH"}, {"text": "BER:MIH", "url": "https://www.google.com/finance/quote/BER:MIH"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 4}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Rotation (mathematics)", "field_count": 2}, {"field_name": "Navigation system", "field_count": 2}, {"field_name": "Domain knowledge", "field_count": 1}, {"field_name": "Tracking (particle physics)", "field_count": 1}, {"field_name": "Actuator", "field_count": 1}], "clusters": [{"cluster_id": 43099, "cluster_count": 2}, {"cluster_id": 887, "cluster_count": 2}, {"cluster_id": 8642, "cluster_count": 2}, {"cluster_id": 77258, "cluster_count": 2}, {"cluster_id": 60010, "cluster_count": 1}, {"cluster_id": 91247, "cluster_count": 1}, {"cluster_id": 21619, "cluster_count": 1}, {"cluster_id": 1338, "cluster_count": 1}, {"cluster_id": 13215, "cluster_count": 1}, {"cluster_id": 84579, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 10}, {"ref_CSET_id": 786, "referenced_count": 6}, {"ref_CSET_id": 1785, "referenced_count": 5}, {"ref_CSET_id": 790, "referenced_count": 3}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 1884, "referenced_count": 2}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 785, "referenced_count": 1}, {"ref_CSET_id": 2075, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 6}, {"referent": "auv", "task_count": 5}, {"referent": "motion_planning", "task_count": 4}, {"referent": "path_planning", "task_count": 4}, {"referent": "image_manipulation", "task_count": 3}, {"referent": "unmanned_aerial_vehicles", "task_count": 3}, {"referent": "steering_control", "task_count": 2}, {"referent": "robots", "task_count": 2}, {"referent": "obstacle_avoidance", "task_count": 2}, {"referent": "simultaneous_localization_and_mapping", "task_count": 2}], "methods": [{"referent": "orb_slam2", "method_count": 4}, {"referent": "wgan_gp", "method_count": 4}, {"referent": "automl", "method_count": 3}, {"referent": "taypo", "method_count": 2}, {"referent": "fast_ocr", "method_count": 2}, {"referent": "ulmfit", "method_count": 2}, {"referent": "contrastive_predictive_coding", "method_count": 1}, {"referent": "video_sampling", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "sniper", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [245, 246, 248, 172, 228, 241, 238, 188, 203, 97, 7], "total": 2113, "isTopResearch": false, "rank": 121, "sp500_rank": 95}, "ai_publications": {"counts": [2, 2, 4, 4, 5, 6, 4, 6, 6, 3, 0], "total": 42, "isTopResearch": false, "rank": 198, "sp500_rank": 121}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268, "sp500_rank": 113}, "citation_counts": {"counts": [5, 12, 18, 23, 27, 36, 43, 48, 49, 42, 2], "total": 305, "isTopResearch": false, "rank": 329, "sp500_rank": 158}, "cv_pubs": {"counts": [1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0], "total": 4, "isTopResearch": true, "rank": 313, "sp500_rank": 158}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [1, 1, 2, 2, 5, 5, 4, 2, 3, 2, 0], "total": 27, "isTopResearch": true, "rank": 68, "sp500_rank": 52}, "citations_per_article": {"counts": [2.5, 6.0, 4.5, 5.75, 5.4, 6.0, 10.75, 8.0, 8.166666666666666, 14.0, 0], "total": 7.261904761904762, "isTopResearch": false, "rank": 630, "sp500_rank": 247}}, "patents": {"ai_patents": {"counts": [2, 5, 2, 8, 22, 29, 18, 27, 6, 0, 0], "total": 119, "table": null, "rank": 145, "sp500_rank": 92}, "ai_patents_growth": {"counts": [], "total": 14.629049111807731, "table": null, "rank": 316, "sp500_rank": 148}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [20, 50, 20, 80, 220, 290, 180, 270, 60, 0, 0], "total": 1190, "table": null, "rank": 145, "sp500_rank": 92}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 1, 4, 2, 1, 0, 2, 0, 0], "total": 10, "table": "industry", "rank": 51, "sp500_rank": 44}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 131}, "Transportation": {"counts": [0, 2, 0, 2, 1, 3, 1, 3, 0, 0, 0], "total": 12, "table": "industry", "rank": 91, "sp500_rank": 71}, "Industrial_and_Manufacturing": {"counts": [0, 1, 1, 3, 3, 5, 3, 3, 2, 0, 0], "total": 21, "table": "industry", "rank": 40, "sp500_rank": 33}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 3, 0, 2, 7, 6, 4, 3, 1, 0, 0], "total": 27, "table": "industry", "rank": 160, "sp500_rank": 91}, "Banking_and_Finance": {"counts": [0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 141, "sp500_rank": 91}, "Telecommunications": {"counts": [0, 1, 0, 0, 2, 3, 0, 0, 0, 0, 0], "total": 6, "table": null, "rank": 204, "sp500_rank": 111}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 2, 1, 0, 2, 3, 2, 0, 0, 0, 0], "total": 10, "table": null, "rank": 149, "sp500_rank": 101}, "Energy_Management": {"counts": [2, 2, 2, 1, 1, 6, 2, 0, 0, 0, 0], "total": 16, "table": "industry", "rank": 35, "sp500_rank": 32}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 137, "sp500_rank": 79}, "Planning_and_Scheduling": {"counts": [0, 1, 1, 0, 2, 3, 2, 0, 0, 0, 0], "total": 9, "table": "application", "rank": 134, "sp500_rank": 94}, "Control": {"counts": [2, 3, 2, 5, 9, 13, 3, 5, 1, 0, 0], "total": 43, "table": "application", "rank": 59, "sp500_rank": 46}, "Distributed_AI": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 2, 3, 3, 1, 6, 0, 0, 0], "total": 15, "table": "application", "rank": 213, "sp500_rank": 122}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 1, 2, 1, 2, 1, 0, 0], "total": 8, "table": "application", "rank": 131, "sp500_rank": 95}, "Measuring_and_Testing": {"counts": [0, 0, 0, 1, 4, 4, 2, 2, 0, 0, 0], "total": 13, "table": "application", "rank": 104, "sp500_rank": 80}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 52, "rank": 1004, "sp500_rank": 337}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "sp500_rank": 335}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Consumer Goods Conglomerates"}, {"cset_id": 1874, "country": "Thailand", "website": "https://www.pttplc.com/th/", "crunchbase": {"text": " a6f8de5e-83f8-ea9b-613e-2b09fda1d775 ", "url": " https://www.crunchbase.com/organization/ptt "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ptt-company-limited"], "stage": "Mature", "name": "Ptt", "patent_name": "PTT", "continent": "Asia", "local_logo": null, "aliases": "PTT; Ptt Plc; Ptt Public Company; Ptt Public Company Limited", "permid_links": [{"text": 4295893306, "url": "https://permid.org/1-4295893306"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "BKK:BTT", "url": "https://www.google.com/finance/quote/BKK:BTT"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Sonar", "field_count": 5}, {"field_name": "Dynamic time warping", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Proxy (statistics)", "field_count": 1}], "clusters": [{"cluster_id": 14837, "cluster_count": 4}, {"cluster_id": 484, "cluster_count": 1}, {"cluster_id": 799, "cluster_count": 1}, {"cluster_id": 29, "cluster_count": 1}, {"cluster_id": 6581, "cluster_count": 1}, {"cluster_id": 22081, "cluster_count": 1}, {"cluster_id": 536, "cluster_count": 1}, {"cluster_id": 31316, "cluster_count": 1}, {"cluster_id": 9925, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1874, "referenced_count": 4}, {"ref_CSET_id": 101, "referenced_count": 3}, {"ref_CSET_id": 1897, "referenced_count": 1}, {"ref_CSET_id": 1385, "referenced_count": 1}], "tasks": [{"referent": "autonomous_vehicles", "task_count": 7}, {"referent": "auv", "task_count": 6}, {"referent": "autonomous_navigation", "task_count": 3}, {"referent": "classification", "task_count": 2}, {"referent": "segmentation", "task_count": 1}, {"referent": "unmanned_aerial_vehicles", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "acoustic_modelling", "task_count": 1}, {"referent": "real_time_object_detection", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}], "methods": [{"referent": "ltls", "method_count": 4}, {"referent": "audio", "method_count": 3}, {"referent": "root", "method_count": 3}, {"referent": "vqa_models", "method_count": 2}, {"referent": "som", "method_count": 2}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "dvd_gan", "method_count": 1}, {"referent": "gat", "method_count": 1}, {"referent": "ca", "method_count": 1}, {"referent": "image_segmentation_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [20, 44, 40, 17, 22, 16, 32, 30, 54, 24, 0], "total": 299, "isTopResearch": false, "rank": 358, "sp500_rank": 230}, "ai_publications": {"counts": [0, 0, 1, 1, 1, 2, 3, 2, 1, 0, 0], "total": 11, "isTopResearch": false, "rank": 397, "sp500_rank": 211}, "ai_publications_growth": {"counts": [], "total": -61.111111111111114, "isTopResearch": false, "rank": 1512, "sp500_rank": 431}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [3, 5, 4, 7, 8, 9, 11, 15, 18, 18, 3], "total": 101, "isTopResearch": false, "rank": 501, "sp500_rank": 220}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 2, 2, 1, 0, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "sp500_rank": 146}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 1, 0, 0, 0, 2, 1, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114}, "citations_per_article": {"counts": [0, 0, 4.0, 7.0, 8.0, 4.5, 3.6666666666666665, 7.5, 18.0, 0, 0], "total": 9.181818181818182, "isTopResearch": false, "rank": 570, "sp500_rank": 213}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 51, "rank": 1008, "sp500_rank": 339}, "ai_jobs": {"counts": null, "total": 15, "rank": 754, "sp500_rank": 284}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 28, "country": "United States", "website": "http://applitools.com/", "crunchbase": {"text": "253bb7b6-a7cc-731d-148a-5c96d5fe63db", "url": "https://www.crunchbase.com/organization/applitools"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/applitools"], "stage": "Growth", "name": "Applitools", "patent_name": "applitools", "continent": "North America", "local_logo": "applitools.png", "aliases": "Applitools Ltd; Applitools, Inc", "permid_links": [{"text": 5056435660, "url": "https://permid.org/1-5056435660"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Applitools developed the first cloud-based software testing tool that automatically validates all the visual aspects of any web.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 51, "rank": 1008}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "After years of hard work carried out by experts, we successfully built a vast tech-stack that solved the automated visual UI testing problem", "company_site_link": "https://applitools.com/about/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 388, "country": "United States", "website": "http://clarifai.com/", "crunchbase": {"text": "2431cd94-50a9-07c1-5db4-b45d4558041a", "url": "https://www.crunchbase.com/organization/clarifai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/clarifai"], "stage": "Growth", "name": "Clarifai", "patent_name": "clarifai", "continent": "North America", "local_logo": "clarifai.png", "aliases": "Clarifai Inc", "permid_links": [{"text": 5045881400, "url": "https://permid.org/1-5045881400"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Clarifai is a deep learning AI platform for computer vision, natural language processing, and data labeling.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Source separation", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Augmented reality", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Task (computing)", "field_count": 1}], "clusters": [{"cluster_id": 14903, "cluster_count": 2}, {"cluster_id": 1436, "cluster_count": 1}, {"cluster_id": 18513, "cluster_count": 1}, {"cluster_id": 3291, "cluster_count": 1}, {"cluster_id": 35601, "cluster_count": 1}, {"cluster_id": 13649, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 18}, {"ref_CSET_id": 163, "referenced_count": 12}, {"ref_CSET_id": 6, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 223, "referenced_count": 2}, {"ref_CSET_id": 786, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 388, "referenced_count": 1}, {"ref_CSET_id": 1784, "referenced_count": 1}], "tasks": [{"referent": "domain_generalization", "task_count": 2}, {"referent": "multi_task_learning", "task_count": 1}, {"referent": "future_prediction", "task_count": 1}, {"referent": "attentive_segmentation_networks", "task_count": 1}, {"referent": "fine_grained_visual_recognition", "task_count": 1}, {"referent": "fine_grained_action_detection", "task_count": 1}, {"referent": "few_shot_learning", "task_count": 1}, {"referent": "image_instance_retrieval", "task_count": 1}, {"referent": "medical_diagnosis", "task_count": 1}, {"referent": "robot_navigation", "task_count": 1}], "methods": [{"referent": "q_learning", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "polya_gamma_augmentation", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "generative_discrimination", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "verse", "method_count": 1}, {"referent": "cross_view_training", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 1, 3, 2, 0, 2, 0], "total": 9, "isTopResearch": false, "rank": 958}, "ai_publications": {"counts": [0, 0, 1, 0, 0, 1, 3, 2, 0, 0, 0], "total": 7, "isTopResearch": false, "rank": 481}, "ai_publications_growth": {"counts": [], "total": -66.66666666666667, "isTopResearch": false, "rank": 1518}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [0, 0, 3, 32, 70, 88, 101, 147, 189, 105, 3], "total": 738, "isTopResearch": false, "rank": 219}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 3.0, 0, 0, 88.0, 33.666666666666664, 73.5, 0, 0, 0], "total": 105.42857142857143, "isTopResearch": false, "rank": 32}}, "patents": {"ai_patents": {"counts": [0, 1, 4, 5, 1, 2, 1, 0, 0, 0, 0], "total": 14, "table": null, "rank": 365}, "ai_patents_growth": {"counts": [], "total": -16.666666666666668, "table": null, "rank": 1452}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 40, 50, 10, 20, 10, 0, 0, 0, 0], "total": 140, "table": null, "rank": 365}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 1, 4, 2, 0, 1, 0, 0, 0, 0, 0], "total": 8, "table": "industry", "rank": 273}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 2, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 277}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 78}, "Business": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 1, 1, 2, 1, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 318}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 50, "rank": 1010}, "ai_jobs": {"counts": null, "total": 16, "rank": 738}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Clarifai Inc. is an artificial intelligence (AI) company that specializes in computer vision and uses machine learning and deep neural networks to identify and analyze images and videos. The company offers its solution[buzzword] via API, mobile SDK, and on-premise solutions.", "wikipedia_link": "https://en.wikipedia.org/wiki/Clarifai", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 14, "country": "United States", "website": "http://aifi.io", "crunchbase": {"text": "4fa325c8-c988-43dc-ae7e-da92a467c8f8", "url": "https://www.crunchbase.com/organization/aifi-c8f8"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aifi-inc"], "stage": "Growth", "name": "Aifi", "patent_name": "aifi", "continent": "North America", "local_logo": "aifi.png", "aliases": "Aifi Inc", "permid_links": [{"text": 5067772808, "url": "https://permid.org/1-5067772808"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "AiFi enables reliable, cost-effective, and contactless autonomous shopping with AI-powered computer vision technology.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 1}, {"field_name": "Camera module", "field_count": 1}, {"field_name": "Gesture", "field_count": 1}, {"field_name": "Visualization", "field_count": 1}, {"field_name": "Monocular vision", "field_count": 1}], "clusters": [{"cluster_id": 49745, "cluster_count": 2}, {"cluster_id": 5857, "cluster_count": 2}, {"cluster_id": 5585, "cluster_count": 2}, {"cluster_id": 279, "cluster_count": 2}, {"cluster_id": 8094, "cluster_count": 1}, {"cluster_id": 105359, "cluster_count": 1}, {"cluster_id": 33078, "cluster_count": 1}, {"cluster_id": 83187, "cluster_count": 1}, {"cluster_id": 6975, "cluster_count": 1}, {"cluster_id": 10764, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 11}, {"ref_CSET_id": 14, "referenced_count": 7}, {"ref_CSET_id": 101, "referenced_count": 6}, {"ref_CSET_id": 786, "referenced_count": 4}, {"ref_CSET_id": 1784, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 3}, {"ref_CSET_id": 50, "referenced_count": 2}, {"ref_CSET_id": 789, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}], "tasks": [{"referent": "image_recognition", "task_count": 2}, {"referent": "3d_multi_person_pose_estimation", "task_count": 2}, {"referent": "computer_vision", "task_count": 2}, {"referent": "image_restoration", "task_count": 2}, {"referent": "speech_recognition", "task_count": 1}, {"referent": "audio_visual_speech_recognition", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "subjectivity_analysis", "task_count": 1}, {"referent": "activity_detection", "task_count": 1}], "methods": [{"referent": "automl", "method_count": 2}, {"referent": "attention_patterns", "method_count": 1}, {"referent": "3d_reconstruction", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "npid", "method_count": 1}, {"referent": "localization_models", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "pisa", "method_count": 1}, {"referent": "fa", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 7, 8, 4, 3, 0], "total": 22, "isTopResearch": false, "rank": 784}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 5, 5, 2, 2, 0], "total": 14, "isTopResearch": false, "rank": 359}, "ai_publications_growth": {"counts": [], "total": -20.0, "isTopResearch": false, "rank": 1324}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 16, 41, 32, 1], "total": 91, "isTopResearch": false, "rank": 518}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 5, 3, 0, 1, 0], "total": 9, "isTopResearch": true, "rank": 217}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.2, 3.2, 20.5, 16.0, 0], "total": 6.5, "isTopResearch": false, "rank": 661}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 20, 10, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 172}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 50, "rank": 1010}, "ai_jobs": {"counts": null, "total": 15, "rank": 754}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "AiFi, Inc. is a privately-held automated retail technology company with a computer vision and sensor-based shopping platform for self-service autonomous brick and mortar stores. AiFi works with retailers including Ahold Delhaize's Albert Heijn brand (Netherlands), Carrefour (France), and \u017babka (Poland).", "wikipedia_link": "https://en.wikipedia.org/wiki/AiFi", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 1414, "country": "United States", "website": "https://dotdata.com", "crunchbase": {"text": "4de1dec6-1864-4c8b-8757-b9801d5ba15d", "url": "https://www.crunchbase.com/organization/dotdata"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dotdatainc"], "stage": "Growth", "name": "Dotdata", "patent_name": "dotdata", "continent": "North America", "local_logo": "dotdata.png", "aliases": "Dotdata Accelerate Data Science; Dotdata Inc", "permid_links": [{"text": 5071524993, "url": "https://permid.org/1-5071524993"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "DotData end-to-end data science automation platform accelerates, democratizes, and operationalizes the entire data science process.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 30, 0, 0, 0, 0, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 363}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 50, "rank": 1010}, "ai_jobs": {"counts": null, "total": 12, "rank": 812}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "dotData frees your business to focus on the results of your AI and Machine Learning applications, not the headaches of the Data Science process by automating the full data science life-cycle.", "company_site_link": "https://dotdata.com", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 31, "country": "United States", "website": "https://www.armorblox.com/", "crunchbase": {"text": "254fa85c-c50c-06a8-3ae0-78ef48ecf3ea", "url": "https://www.crunchbase.com/organization/armorblox"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/armorbloxinc"], "stage": "Growth", "name": "Armorblox", "patent_name": "armorblox", "continent": "North America", "local_logo": "armorblox.png", "aliases": "Armorblox Inc; Armorblox, Inc", "permid_links": [{"text": 5067749787, "url": "https://permid.org/1-5067749787"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Armorblox uses deep learning and natural language technologies to protect enterprise communications.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 55}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 49, "rank": 1013}, "ai_jobs": {"counts": null, "total": 14, "rank": 775}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Prevent targeted attacks and data loss over email and other cloud office applications.", "company_site_link": "https://www.armorblox.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2392, "country": "United States", "website": "https://www.lambweston.com/", "crunchbase": {"text": "8c47f25e-8c6f-33a9-c719-a4499ec69887", "url": "https://www.crunchbase.com/organization/conagra-foods-lamb-weston"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lamb-weston"], "stage": "Mature", "name": "Lamb Weston Holdings Inc", "patent_name": "lamb weston holdings inc", "continent": "North America", "local_logo": "lamb_weston_holdings_inc.png", "aliases": "Conagra Foods Lamb Weston; Lamb Weston", "permid_links": [{"text": 5051774284, "url": "https://permid.org/1-5051774284"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:LW", "url": "https://www.google.com/finance/quote/lw:nyse"}], "market_full": [{"text": "NYQ:LW", "url": "https://www.google.com/finance/quote/lw:nyq"}, {"text": "MOEX:LW-RM", "url": "https://www.google.com/finance/quote/lw-rm:moex"}, {"text": "MUN:0L5", "url": "https://www.google.com/finance/quote/0l5:mun"}, {"text": "STU:0L5", "url": "https://www.google.com/finance/quote/0l5:stu"}, {"text": "ASE:LW", "url": "https://www.google.com/finance/quote/ase:lw"}, {"text": "DUS:0L5", "url": "https://www.google.com/finance/quote/0l5:dus"}, {"text": "MEX:LW", "url": "https://www.google.com/finance/quote/lw:mex"}, {"text": "BRN:0L5", "url": "https://www.google.com/finance/quote/0l5:brn"}, {"text": "SAO:L1WH34", "url": "https://www.google.com/finance/quote/l1wh34:sao"}, {"text": "BER:0L5", "url": "https://www.google.com/finance/quote/0l5:ber"}, {"text": "FRA:0L5", "url": "https://www.google.com/finance/quote/0l5:fra"}, {"text": "DEU:0L5", "url": "https://www.google.com/finance/quote/0l5:deu"}, {"text": "NYSE:LW", "url": "https://www.google.com/finance/quote/lw:nyse"}], "crunchbase_description": "A produces and distributes frozen potato products to restaurants and consumers in the United States and internationally.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 49, "rank": 1013, "fortune500_rank": 454}, "ai_jobs": {"counts": null, "total": 6, "rank": 970, "fortune500_rank": 431}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 428, "country": "United Kingdom", "website": "https://eatron.com/", "crunchbase": {"text": "be70174b-0393-4493-9b95-cf9a06d3c4ea", "url": "https://www.crunchbase.com/organization/eatron-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/eatron-technologies"], "stage": "Growth", "name": "Eatron Technologies", "patent_name": "eatron technologies", "continent": "Europe", "local_logo": "eatron_technologies.png", "aliases": "Eatron; Eatron Tech; Eatron Technologies Ltd", "permid_links": [{"text": 5081482466, "url": "https://permid.org/1-5081482466"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Intelligent Software Platform for Battery Management and Motion Control", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 3}], "clusters": [{"cluster_id": 27589, "cluster_count": 4}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 15}, {"ref_CSET_id": 428, "referenced_count": 3}, {"ref_CSET_id": 785, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 783, "referenced_count": 1}, {"ref_CSET_id": 50, "referenced_count": 1}, {"ref_CSET_id": 205, "referenced_count": 1}], "tasks": [{"referent": "autonomous_driving", "task_count": 2}, {"referent": "decision_making", "task_count": 1}, {"referent": "safety_perception_recognition", "task_count": 1}, {"referent": "uncertainty_estimation", "task_count": 1}], "methods": [{"referent": "reinforcement_learning", "method_count": 2}, {"referent": "hopfield_layer", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "rainbow_dqn", "method_count": 1}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "gan", "method_count": 1}, {"referent": "behaviour_policies", "method_count": 1}, {"referent": "generative_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 2, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 1, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 1, 14, 15, 22, 1], "total": 53, "isTopResearch": false, "rank": 580}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 1.0, 7.0, 0, 22.0, 0], "total": 13.25, "isTopResearch": false, "rank": 441}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 20, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 151}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": "application", "rank": 243}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 49, "rank": 1013}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Eatron Technologies is an intelligent software products & solutions company specializing in Electric & Autonomous vehicles. Our solutions include Battery Management System (BMS) and Advanced Driver Assistance Systems (ADAS) powered by Eatron\u2019s special IP and tools for \u201cAutomotive Safe AI\u201d : individual AI functions satisfying automotive safety and verifiability requirements.", "company_site_link": "https://eatron.com/#news", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2110, "country": null, "website": "https://www.phoenixgroup.eu/", "crunchbase": {"text": " e1c26efa-04b9-43f3-9260-a78fafb972aa ", "url": " https://www.crunchbase.com/organization/phoenix-pharmahandel "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/phoenix-pharmahandel-ag-&-co-kg"], "stage": "Unknown", "name": "Phoenix Pharma", "patent_name": "Phoenix Pharma", "continent": null, "local_logo": null, "aliases": "Phoenix International Beteiligungs Gmbh; Phoenix Pharma; Phoenix Pharmahandel Gmbh & Co Kg", "permid_links": [{"text": 4296796381, "url": "https://permid.org/1-4296796381"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 1, 1, 0, 1, 3, 0, 0, 1, 3, 0], "total": 10, "isTopResearch": false, "rank": 942, "sp500_rank": 392}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 49, "rank": 1013, "sp500_rank": 340}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "sp500_rank": 335}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment"}, {"cset_id": 2362, "country": "United States", "website": "http://www.idexcorp.com/", "crunchbase": {"text": "48c280e3-7c4d-102a-9f8d-a2b221d64404", "url": "https://www.crunchbase.com/organization/idex-corp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/idex-corporation"], "stage": "Mature", "name": "Idex Corporation", "patent_name": "idex corporation", "continent": "North America", "local_logo": "idex_corporation.png", "aliases": "IDEX Corp; Idex", "permid_links": [{"text": 4295904217, "url": "https://permid.org/1-4295904217"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:IEX", "url": "https://www.google.com/finance/quote/iex:nyse"}], "market_full": [{"text": "NYQ:IEX", "url": "https://www.google.com/finance/quote/iex:nyq"}, {"text": "BRN:ID7", "url": "https://www.google.com/finance/quote/brn:id7"}, {"text": "DUS:ID7", "url": "https://www.google.com/finance/quote/dus:id7"}, {"text": "NYSE:IEX", "url": "https://www.google.com/finance/quote/iex:nyse"}, {"text": "FRA:ID7", "url": "https://www.google.com/finance/quote/fra:id7"}, {"text": "DEU:IEXC", "url": "https://www.google.com/finance/quote/deu:iexc"}, {"text": "MEX:IEX", "url": "https://www.google.com/finance/quote/iex:mex"}, {"text": "MCX:IEX-RM", "url": "https://www.google.com/finance/quote/iex-rm:mcx"}, {"text": "STU:ID7", "url": "https://www.google.com/finance/quote/id7:stu"}, {"text": "MUN:ID7", "url": "https://www.google.com/finance/quote/id7:mun"}], "crunchbase_description": "IDEX is a publicly-traded company providing development, design, and manufacturing of fluidics systems and specialty engineered products.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105, "fortune500_rank": 368}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728, "fortune500_rank": 220}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "fortune500_rank": 455}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728, "fortune500_rank": 220}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158, "fortune500_rank": 50}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "fortune500_rank": 169}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "fortune500_rank": 102}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "fortune500_rank": 103}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 49, "rank": 1013, "fortune500_rank": 454}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153, "fortune500_rank": 463}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "IDEX Corporation, based in Northbrook, Illinois, is a publicly traded company engaged in the development, design, and manufacture of fluidics systems and specialty engineered products. IDEX Corporation's products, which include pumps, clamping systems, flow meters, optical filters, powder processing equipment, hydraulic rescue tools, and fire suppression equipment, are used in a variety of industries ranging from agriculture to semiconductor manufacturing.", "wikipedia_link": "https://en.wikipedia.org/wiki/IDEX_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2852, "country": "United States", "website": "http://www.vsecorp.com/", "crunchbase": {"text": "2e099f06-5eba-4c3c-7707-0baeafa9fc39", "url": "https://www.crunchbase.com/organization/vse-corp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/vsecorp"], "stage": "Mature", "name": "VSE Corp", "patent_name": "vse corp", "continent": "North America", "local_logo": "vse_corp.png", "aliases": "Vse; Vse Corporation", "permid_links": [{"text": 4295908285, "url": "https://permid.org/1-4295908285"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:VSEC", "url": "https://www.google.com/finance/quote/nasdaq:vsec"}], "market_full": [{"text": "NASDAQ:VSEC", "url": "https://www.google.com/finance/quote/nasdaq:vsec"}], "crunchbase_description": "VSE Corporation provides engineering and technical services to the owners and operators of transportation.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 49, "rank": 1013}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "At VSE, we believe in celebrating our vibrant 60-year history of delivering exceptional value while continuously raising the bar for our land, sea and air customers. From excellence in service for our federal and commercial customers, to creating a culture of accountability and growth for our employees, to consistently delivering and improving for our partners and stakeholders, the VSE family of companies share a commitment to not just meeting expectations, but exceeding them. VSE is your partner for success in your critical missions on land, sea, and air.", "company_site_link": "https://www.vsecorp.com/about.html", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2465, "country": "United States", "website": "https://www.publicstorage.com/", "crunchbase": {"text": "77f34042-4d6b-343f-cf3f-8e6077469750", "url": "https://www.crunchbase.com/organization/public-storage"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/public-storage"], "stage": "Mature", "name": "Public Storage", "patent_name": "public storage", "continent": "North America", "local_logo": "public_storage.png", "aliases": "Public Storage Inc", "permid_links": [{"text": 4295904777, "url": "https://permid.org/1-4295904777"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:PSA.PRL", "url": "https://www.google.com/finance/quote/nyse:psa.prl"}, {"text": "NYSE:PSA.PRQ", "url": "https://www.google.com/finance/quote/nyse:psa.prq"}, {"text": "NYSE:PSA.PRG", "url": "https://www.google.com/finance/quote/nyse:psa.prg"}, {"text": "NYSE:PSA.PRO", "url": "https://www.google.com/finance/quote/nyse:psa.pro"}, {"text": "NYSE:PSA.PRP", "url": "https://www.google.com/finance/quote/nyse:psa.prp"}, {"text": "NYSE:PSA.PRH", "url": "https://www.google.com/finance/quote/nyse:psa.prh"}, {"text": "NYSE:PSA.PRM", "url": "https://www.google.com/finance/quote/nyse:psa.prm"}, {"text": "NYSE:PSA.PRR", "url": "https://www.google.com/finance/quote/nyse:psa.prr"}, {"text": "NYSE:PSA.PRS", "url": "https://www.google.com/finance/quote/nyse:psa.prs"}, {"text": "NYSE:PSA.PRK", "url": "https://www.google.com/finance/quote/nyse:psa.prk"}, {"text": "NYSE:PSA.PRN", "url": "https://www.google.com/finance/quote/nyse:psa.prn"}, {"text": "NYSE:PSA.PRI", "url": "https://www.google.com/finance/quote/nyse:psa.pri"}, {"text": "NYSE:PSA", "url": "https://www.google.com/finance/quote/nyse:psa"}, {"text": "NYSE:PSA.PRJ", "url": "https://www.google.com/finance/quote/nyse:psa.prj"}], "market_full": [{"text": "ASE:PSA.PRI", "url": "https://www.google.com/finance/quote/ase:psa.pri"}, {"text": "NYQ:PSA.PRL", "url": "https://www.google.com/finance/quote/nyq:psa.prl"}, {"text": "NYQ:PSA.PRI", "url": "https://www.google.com/finance/quote/nyq:psa.pri"}, {"text": "NYSE:PSA.PRL", "url": "https://www.google.com/finance/quote/nyse:psa.prl"}, {"text": "NYQ:PSA.PRM", "url": "https://www.google.com/finance/quote/nyq:psa.prm"}, {"text": "NYQ:PSA.PRQ", "url": "https://www.google.com/finance/quote/nyq:psa.prq"}, {"text": "NYSE:PSA.PRQ", "url": "https://www.google.com/finance/quote/nyse:psa.prq"}, {"text": "NYQ:PSA.PRO", "url": "https://www.google.com/finance/quote/nyq:psa.pro"}, {"text": "LSE:0KS3", "url": "https://www.google.com/finance/quote/0ks3:lse"}, {"text": "NYSE:PSA.PRG", "url": "https://www.google.com/finance/quote/nyse:psa.prg"}, {"text": "ASE:PSA.PRJ", "url": "https://www.google.com/finance/quote/ase:psa.prj"}, {"text": "NYSE:PSA.PRO", "url": "https://www.google.com/finance/quote/nyse:psa.pro"}, {"text": "ASE:PSA.PRH", "url": "https://www.google.com/finance/quote/ase:psa.prh"}, {"text": "ASE:PSA.PRN", "url": "https://www.google.com/finance/quote/ase:psa.prn"}, {"text": "NYSE:PSA.PRP", "url": "https://www.google.com/finance/quote/nyse:psa.prp"}, {"text": "NYQ:PSA.PRP", "url": "https://www.google.com/finance/quote/nyq:psa.prp"}, {"text": "NYSE:PSA.PRH", "url": "https://www.google.com/finance/quote/nyse:psa.prh"}, {"text": "ASE:PSA.PRO", "url": "https://www.google.com/finance/quote/ase:psa.pro"}, {"text": "NYQ:PSA", "url": "https://www.google.com/finance/quote/nyq:psa"}, {"text": "FRA:PUP", "url": "https://www.google.com/finance/quote/fra:pup"}, {"text": "NYQ:PSA.PRG", "url": "https://www.google.com/finance/quote/nyq:psa.prg"}, {"text": "NYQ:PSA.PRK", "url": "https://www.google.com/finance/quote/nyq:psa.prk"}, {"text": "NYQ:PSA.PRJ", "url": "https://www.google.com/finance/quote/nyq:psa.prj"}, {"text": "STU:PUP", "url": "https://www.google.com/finance/quote/pup:stu"}, {"text": "BRN:PUP", "url": "https://www.google.com/finance/quote/brn:pup"}, {"text": "ASE:PSA.PRR", "url": "https://www.google.com/finance/quote/ase:psa.prr"}, {"text": "NYSE:PSA.PRM", "url": "https://www.google.com/finance/quote/nyse:psa.prm"}, {"text": "ASE:PSA.PRG", "url": "https://www.google.com/finance/quote/ase:psa.prg"}, {"text": "ASE:PSA.PRL", "url": "https://www.google.com/finance/quote/ase:psa.prl"}, {"text": "NYSE:PSA.PRR", "url": "https://www.google.com/finance/quote/nyse:psa.prr"}, {"text": "NYQ:PSA.PRH", "url": "https://www.google.com/finance/quote/nyq:psa.prh"}, {"text": "NYSE:PSA.PRS", "url": "https://www.google.com/finance/quote/nyse:psa.prs"}, {"text": "ASE:PSA.PRP", "url": "https://www.google.com/finance/quote/ase:psa.prp"}, {"text": "BER:PUP", "url": "https://www.google.com/finance/quote/ber:pup"}, {"text": "MUN:PUP", "url": "https://www.google.com/finance/quote/mun:pup"}, {"text": "DEU:PUP", "url": "https://www.google.com/finance/quote/deu:pup"}, {"text": "NYQ:PSA.PRN", "url": "https://www.google.com/finance/quote/nyq:psa.prn"}, {"text": "MEX:PSA*", "url": "https://www.google.com/finance/quote/mex:psa*"}, {"text": "DUS:PUP", "url": "https://www.google.com/finance/quote/dus:pup"}, {"text": "NYSE:PSA.PRK", "url": "https://www.google.com/finance/quote/nyse:psa.prk"}, {"text": "NYQ:PSA.PRR", "url": "https://www.google.com/finance/quote/nyq:psa.prr"}, {"text": "ASE:PSA.PRM", "url": "https://www.google.com/finance/quote/ase:psa.prm"}, {"text": "ASE:PSA.PRQ", "url": "https://www.google.com/finance/quote/ase:psa.prq"}, {"text": "NYSE:PSA.PRN", "url": "https://www.google.com/finance/quote/nyse:psa.prn"}, {"text": "ASE:PSA.PRS", "url": "https://www.google.com/finance/quote/ase:psa.prs"}, {"text": "ASE:PSA", "url": "https://www.google.com/finance/quote/ase:psa"}, {"text": "SAO:P1SA34", "url": "https://www.google.com/finance/quote/p1sa34:sao"}, {"text": "NYSE:PSA.PRI", "url": "https://www.google.com/finance/quote/nyse:psa.pri"}, {"text": "NYSE:PSA", "url": "https://www.google.com/finance/quote/nyse:psa"}, {"text": "NYQ:PSA.PRS", "url": "https://www.google.com/finance/quote/nyq:psa.prs"}, {"text": "NYSE:PSA.PRJ", "url": "https://www.google.com/finance/quote/nyse:psa.prj"}, {"text": "ASE:PSA.PRK", "url": "https://www.google.com/finance/quote/ase:psa.prk"}], "crunchbase_description": "Public Storage is an ideal choice for both commercial and household self-storage needs.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 48, "rank": 1019, "fortune500_rank": 456}, "ai_jobs": {"counts": null, "total": 15, "rank": 754, "fortune500_rank": 376}}, "sector": "Real Estate", "business_sector": "Real Estate", "wikipedia_description": "Public Storage is an American international self storage company headquartered in Glendale, California, that is run as a real estate investment trust (REIT). It is the largest brand of self-storage services in the US. In 2008, it was the largest of four publicly traded storage REITs. There are more than 2,200 Public Storage self-storage locations in the US, Canada and Europe. It also owns 42 percent of an office parks subsidiary, sells packing supplies, and provides other services. As a REIT, it is owned by real estate investors, who receive more than 90 percent of the company's profits as a return-on-investment.", "wikipedia_link": "https://en.wikipedia.org/wiki/Public_Storage", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 178, "country": "Israel", "website": "https://getnexar.com/", "crunchbase": {"text": "834b7f73-78c1-3134-30a4-789a2195fd41", "url": "https://www.crunchbase.com/organization/nexar-2"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nexar-inc-"], "stage": "Mature", "name": "Nexar", "patent_name": "nexar", "continent": "Asia", "local_logo": "nexar.png", "aliases": "Nexar Ltd", "permid_links": [{"text": 5056406965, "url": "https://permid.org/1-5056406965"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Nexar develops software to protect the user and their business against car crashes and road casualties.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 4473, "cluster_count": 1}, {"cluster_id": 6913, "cluster_count": 1}, {"cluster_id": 52544, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 24}, {"ref_CSET_id": 87, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 787, "referenced_count": 7}, {"ref_CSET_id": 1126, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 3}, {"ref_CSET_id": 711, "referenced_count": 1}, {"ref_CSET_id": 949, "referenced_count": 1}, {"ref_CSET_id": 21, "referenced_count": 1}, {"ref_CSET_id": 35, "referenced_count": 1}], "tasks": [{"referent": "retrieval", "task_count": 2}, {"referent": "vehicle_localization", "task_count": 1}, {"referent": "visual_localization", "task_count": 1}, {"referent": "vehicle_detection", "task_count": 1}, {"referent": "entity_embeddings", "task_count": 1}, {"referent": "metric_learning", "task_count": 1}, {"referent": "action_triplet_recognition", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "fine_grained_image_recognition", "task_count": 1}, {"referent": "multi_object_tracking", "task_count": 1}], "methods": [{"referent": "input_embedding_factorization", "method_count": 1}, {"referent": "graph_embeddings", "method_count": 1}, {"referent": "holographic_reduced_representation", "method_count": 1}, {"referent": "graph_models", "method_count": 1}, {"referent": "deep_voice_3", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "image_representations", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "representation_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 2, 1, 1, 1, 0, 1, 0], "total": 6, "isTopResearch": false, "rank": 1030}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 8, 18, 23, 16, 0], "total": 66, "isTopResearch": false, "rank": 553}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 1.0, 8.0, 18.0, 0, 0, 0], "total": 22.0, "isTopResearch": false, "rank": 279}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 48, "rank": 1019}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our mission is to create the technology that will make driving and cities better and safer.", "company_site_link": "https://data.getnexar.com/about/?utm_source=wwwGetnexar&utm_medium=Organic&utm_content=wwwGetnexar_FOOTER", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 175, "country": "United States", "website": "https://www.mythic-ai.com/", "crunchbase": {"text": "321038ce-6617-f9a8-1bc1-8e36e3b2a55b", "url": "https://www.crunchbase.com/organization/isocline"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mythic-ai"], "stage": "Startup", "name": "Mythic", "patent_name": "mythic", "continent": "North America", "local_logo": "mythic.png", "aliases": "Mythic Inc", "permid_links": [{"text": 5052533495, "url": "https://permid.org/1-5052533495"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Mythic is an advertising agency that provides broadcasting, content marketing, digital transformation, and social media solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 25609, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 13}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 184, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 170, "referenced_count": 1}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 145, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}], "tasks": [{"referent": "system_identification", "task_count": 1}], "methods": [{"referent": "sniper", "method_count": 1}, {"referent": "causal_inference", "method_count": 1}, {"referent": "softplus", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 1, 1, 2, 7, 0, 2, 0, 1, 3, 0], "total": 18, "isTopResearch": false, "rank": 825}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 9, 62, 84, 62, 1], "total": 218, "isTopResearch": false, "rank": 379}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 9.0, 0, 0, 0, 0], "total": 218.0, "isTopResearch": false, "rank": 12}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 3, 2, 2, 3, 2, 0, 0], "total": 13, "table": null, "rank": 372}, "ai_patents_growth": {"counts": [], "total": 5.5555555555555545, "table": null, "rank": 344}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 30, 20, 20, 30, 20, 0, 0], "total": 130, "table": null, "rank": 372}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 0, 3, 1, 2, 3, 1, 0, 0], "total": 11, "table": "industry", "rank": 250}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 2, 2, 0, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 225}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 48, "rank": 1019}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We are a diverse team focused on accelerating AI that works for everyone. We have a clear and complete understanding of what it takes to run AI inference in real-world environments. Our fast-growing company includes leading experts in disciplines ranging from neural networks to low-level device physics, software design, and processor architecture.", "company_site_link": "https://www.mythic-ai.com/about/", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2355, "country": "United States", "website": "https://www.hollyfrontier.com/", "crunchbase": {"text": "3e837b56-fa4d-c5a2-f453-2f067aba783a", "url": "https://www.crunchbase.com/organization/hollyfrontier-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hfsinclair"], "stage": "Mature", "name": "HollyFrontier Corp", "patent_name": "hollyfrontier corp", "continent": "North America", "local_logo": "hollyfrontier_corp.png", "aliases": "HollyFrontier Corporation; Hollyfrontier; Hollyfrontier Cop", "permid_links": [{"text": 4295904178, "url": "https://permid.org/1-4295904178"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:DINO", "url": "https://www.google.com/finance/quote/DINO:nyse"}], "market_full": [{"text": "DUS:HL8", "url": "https://www.google.com/finance/quote/dus:hl8"}, {"text": "FRA:HL8", "url": "https://www.google.com/finance/quote/fra:hl8"}, {"text": "NYSE:DINO", "url": "https://www.google.com/finance/quote/DINO:nyse"}, {"text": "STU:HL8", "url": "https://www.google.com/finance/quote/hl8:stu"}, {"text": "MOEX:HFC-RM", "url": "https://www.google.com/finance/quote/hfc-rm:moex"}, {"text": "SAO:H1FC34", "url": "https://www.google.com/finance/quote/h1fc34:sao"}, {"text": "ASE:DINO", "url": "https://www.google.com/finance/quote/DINO:ase"}, {"text": "BER:HL8", "url": "https://www.google.com/finance/quote/ber:hl8"}, {"text": "MUN:HL8", "url": "https://www.google.com/finance/quote/hl8:mun"}, {"text": "NYQ:DINO", "url": "https://www.google.com/finance/quote/DINO:nyq"}, {"text": "BRN:HL8", "url": "https://www.google.com/finance/quote/brn:hl8"}, {"text": "DEU:HL8", "url": "https://www.google.com/finance/quote/deu:hl8"}], "crunchbase_description": "HollyFrontier Corporation the premier U.S. petroleum refining, pipeline and terminal company as measured by superior financial performance.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210, "fortune500_rank": 388}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305, "fortune500_rank": 84}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 48, "rank": 1019, "fortune500_rank": 456}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094, "fortune500_rank": 452}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels", "wikipedia_description": "The HollyFrontier Corporation is a Fortune 500 company based in Dallas, TX. HollyFrontier is a petroleum refiner and distributor of petroleum products, from gasoline to petroleum-based lubricants and waxes. Michael Jennings is CEO and president of HollyFrontier, replacing George Damaris on 1 January 2020. The company has primary refining operations in Kansas, New Mexico, Oklahoma, Utah, and Wyoming.", "wikipedia_link": "https://en.wikipedia.org/wiki/HollyFrontier", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2842, "country": "United States", "website": "https://www.traxintl.com/", "crunchbase": {"text": "1aacf068-9d77-4180-9484-91c7f92e346f", "url": "https://www.crunchbase.com/organization/trax-international"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/trax-international-corporation"], "stage": "Unknown", "name": "TRAX International Corp", "patent_name": "trax international corp", "continent": "North America", "local_logo": "trax_international_corp.png", "aliases": "Trax; Trax International; Trax International Corporation", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Trax International provides technical services and products to government and commercial sectors.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 48, "rank": 1019}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 401, "country": "United States", "website": "http://covariant.ai/", "crunchbase": {"text": "541ac806-d874-4988-a910-076955701d58", "url": "https://www.crunchbase.com/organization/covariant"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/covariant-ai"], "stage": "Growth", "name": "Covariant AI (formerly Embodied Intelligence)", "patent_name": "covariant ai (formerly embodied intelligence)", "continent": "North America", "local_logo": "covariant_ai_formerly_embodied_intelligence.png", "aliases": "Covariant; Covariant.Ai; Embodied Intelligence Inc", "permid_links": [{"text": 5059037221, "url": "https://permid.org/1-5059037221"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Covariant is an AI Robotics company developing a universal AI that enables robots to see, reason, and act on the world around them.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Feature learning", "field_count": 1}, {"field_name": "Cardinality (data modeling)", "field_count": 1}], "clusters": [{"cluster_id": 11659, "cluster_count": 2}, {"cluster_id": 76022, "cluster_count": 1}, {"cluster_id": 7095, "cluster_count": 1}, {"cluster_id": 3446, "cluster_count": 1}, {"cluster_id": 72176, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 37}, {"ref_CSET_id": 87, "referenced_count": 10}, {"ref_CSET_id": 163, "referenced_count": 9}, {"ref_CSET_id": 401, "referenced_count": 4}, {"ref_CSET_id": 6, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 506, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 35, "referenced_count": 2}], "tasks": [{"referent": "density_estimation", "task_count": 2}, {"referent": "classification", "task_count": 1}, {"referent": "protein_function_prediction", "task_count": 1}, {"referent": "semi_supervised_image_classification", "task_count": 1}, {"referent": "unsupervised_representation_learning", "task_count": 1}, {"referent": "community_detection", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "transfer_learning", "task_count": 1}, {"referent": "influence_approximation", "task_count": 1}, {"referent": "text_matching", "task_count": 1}], "methods": [{"referent": "taypo", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "self_supervised_learning", "method_count": 1}, {"referent": "semi_supervised_learning_methods", "method_count": 1}, {"referent": "video_sampling", "method_count": 1}, {"referent": "syncbn", "method_count": 1}, {"referent": "counting_methods", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "root", "method_count": 1}, {"referent": "attention_mechanisms", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 3, 3, 1, 1, 0], "total": 9, "isTopResearch": false, "rank": 958}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 3, 2, 1, 1, 0], "total": 7, "isTopResearch": false, "rank": 481}, "ai_publications_growth": {"counts": [], "total": -27.777777777777782, "isTopResearch": false, "rank": 1380}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 9, 89, 188, 183, 1], "total": 470, "isTopResearch": false, "rank": 279}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 3.0, 44.5, 188.0, 183.0, 0], "total": 67.14285714285714, "isTopResearch": false, "rank": 63}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 4, 6, 0, 0, 0], "total": 10, "table": null, "rank": 413}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 40, 60, 0, 0, 0], "total": 100, "table": null, "rank": 413}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 4, 6, 0, 0, 0], "total": 10, "table": "industry", "rank": 69}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 3, 3, 0, 0, 0], "total": 6, "table": "application", "rank": 166}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 3, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 47, "rank": 1024}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "OpenAI, our vision is the Covariant Brain: universal AI that allows robots to see, reason, and act on the world around them. We\u2019re bringing the Covariant Brain to commercial viability, starting with the industries that make, move and store things in the physical world.", "company_site_link": "https://covariant.ai/about-us", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 347, "country": "United States", "website": "https://www.autox.ai/", "crunchbase": {"text": "31288e1b-eccf-405f-b309-51233378ac12", "url": "https://www.crunchbase.com/organization/autox-ac12"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/autox-ai"], "stage": "Growth", "name": "AutoX.ai", "patent_name": "autox.ai", "continent": "North America", "local_logo": "autoxai.png", "aliases": "Autox; Autox Inc; Autox Technologies, Inc", "permid_links": [{"text": 5059089512, "url": "https://permid.org/1-5059089512"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "AutoX is a self-driving car startup that offers AI drivers to enable universal access to transportation for the people.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Fuzzy logic", "field_count": 1}, {"field_name": "Feature learning", "field_count": 1}, {"field_name": "Pose", "field_count": 1}], "clusters": [{"cluster_id": 17945, "cluster_count": 1}, {"cluster_id": 18894, "cluster_count": 1}, {"cluster_id": 13150, "cluster_count": 1}, {"cluster_id": 3446, "cluster_count": 1}, {"cluster_id": 40901, "cluster_count": 1}, {"cluster_id": 981, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 13}, {"ref_CSET_id": 101, "referenced_count": 10}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 735, "referenced_count": 2}, {"ref_CSET_id": 80, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 786, "referenced_count": 1}, {"ref_CSET_id": 784, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "network_anomaly_detection", "task_count": 1}, {"referent": "network_pruning", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "scene_understanding", "task_count": 1}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "multiple_affordance_detection", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}, {"referent": "local_feature_matching", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "6d_pose_estimation", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 3}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "3d_representations", "method_count": 2}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "dueling_network", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "cgnn", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 2, 2, 1, 1, 0, 2, 1, 0], "total": 9, "isTopResearch": false, "rank": 958}, "ai_publications": {"counts": [0, 0, 0, 2, 2, 1, 1, 0, 0, 0, 0], "total": 6, "isTopResearch": false, "rank": 514}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 0, 0, 6, 43, 123, 192, 237, 255, 187, 12], "total": 1055, "isTopResearch": false, "rank": 187}, "cv_pubs": {"counts": [0, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0], "total": 4, "isTopResearch": true, "rank": 313}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243}, "citations_per_article": {"counts": [0, 0, 0, 3.0, 21.5, 123.0, 192.0, 0, 0, 0, 0], "total": 175.83333333333334, "isTopResearch": false, "rank": 14}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 20, 0, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244}, "Control": {"counts": [0, 0, 0, 0, 1, 2, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 47, "rank": 1024}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Technology", "business_sector": "Telecommunications Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "AutoX is building the most advanced self-driving AI platform for the most challenging traffic scenarios in China. The same self-driving platform can drive different vehicles, including RoboTaxis and RoboTrucks. We want to empower the world with our AI driver to provide universal access to transportation of people and goods, safely and reliably.", "company_site_link": "https://www.autox.ai/en/index.html", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2790, "country": "United States", "website": "http://www.henselphelps.com/", "crunchbase": {"text": "d2ad8170-6690-6998-b2d8-a42141a977b9", "url": "https://www.crunchbase.com/organization/hensel-phelps-construction"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/hensel-phelps-construction-co-"], "stage": "Unknown", "name": "Hensel Phelps Construction Co", "patent_name": "hensel phelps construction co", "continent": "North America", "local_logo": "hensel_phelps_construction_co.png", "aliases": "Hensel Phelps", "permid_links": [{"text": 4296577863, "url": "https://permid.org/1-4296577863"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Hensel Phelps Construction is a general contractor with a range of projects including construction and renovation.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 47, "rank": 1024}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Hensel Phelps Construction Co. is one of the largest general contractors and construction managers in the United States, ranked consistently among ENR's (Engineering News-Record) top 20 Contractors. Founded in 1937 as a small, local builder in Greeley, Colorado, Hensel Phelps has grown into a multibillion-dollar employee owned, national contractor with an eclectic and unparalleled portfolio of successfully completed projects. Hensel Phelps currently has eight different district offices located across the nation, and has over 4,000 employees.", "wikipedia_link": "https://en.wikipedia.org/wiki/Hensel_Phelps_Construction", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2214, "country": "United States", "website": "https://www.amphenol.com/", "crunchbase": {"text": "a0f836c0-440f-f803-9dfb-99780507a97e", "url": "https://www.crunchbase.com/organization/amphenol-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/amphenol"], "stage": "Mature", "name": "Amphenol Corp", "patent_name": "amphenol corp", "continent": "North America", "local_logo": "amphenol_corp.png", "aliases": "Amphenol; Amphenol Corporation", "permid_links": [{"text": 4295903359, "url": "https://permid.org/1-4295903359"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:APH", "url": "https://www.google.com/finance/quote/aph:nyse"}], "market_full": [{"text": "NYSE:APH", "url": "https://www.google.com/finance/quote/aph:nyse"}, {"text": "MEX:APH*", "url": "https://www.google.com/finance/quote/aph*:mex"}, {"text": "FRA:XPH", "url": "https://www.google.com/finance/quote/fra:xph"}, {"text": "MUN:XPH", "url": "https://www.google.com/finance/quote/mun:xph"}, {"text": "LSE:0HFB", "url": "https://www.google.com/finance/quote/0hfb:lse"}, {"text": "NYQ:APH", "url": "https://www.google.com/finance/quote/aph:nyq"}, {"text": "ASE:APH", "url": "https://www.google.com/finance/quote/aph:ase"}, {"text": "STU:XPH", "url": "https://www.google.com/finance/quote/stu:xph"}, {"text": "BER:XPH", "url": "https://www.google.com/finance/quote/ber:xph"}, {"text": "HAN:XPH", "url": "https://www.google.com/finance/quote/han:xph"}, {"text": "DUS:XPH", "url": "https://www.google.com/finance/quote/dus:xph"}, {"text": "MCX:APH", "url": "https://www.google.com/finance/quote/aph:mcx"}, {"text": "GER:XPHX", "url": "https://www.google.com/finance/quote/ger:xphx"}, {"text": "BRN:XPH", "url": "https://www.google.com/finance/quote/brn:xph"}, {"text": "VIE:APH", "url": "https://www.google.com/finance/quote/aph:vie"}, {"text": "SAO:A1PH34", "url": "https://www.google.com/finance/quote/a1ph34:sao"}, {"text": "DEU:APH", "url": "https://www.google.com/finance/quote/aph:deu"}, {"text": "MEX:ADS1", "url": "https://www.google.com/finance/quote/ads1:mex"}], "crunchbase_description": "Amphenol is one of the largest manufacturers of interconnect products in the world.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 2, 1, 0, 2, 2, 0], "total": 7, "isTopResearch": false, "rank": 1006, "fortune500_rank": 339}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 47, "rank": 1024, "fortune500_rank": 458}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231, "fortune500_rank": 474}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Amphenol Corporation is a major producer of electronic and fiber optic connectors, cable and interconnect systems such as coaxial cables. Amphenol is a portmanteau from the corporation's original name, American Phenolic Corp.", "wikipedia_link": "https://en.wikipedia.org/wiki/Amphenol", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1924, "country": "South Korea", "website": "https://home.kepco.co.kr/", "crunchbase": {"text": " f82d0820-bdcc-1221-0491-91fee0a5aa74 ", "url": " https://www.crunchbase.com/organization/korea-electric-power-corporation "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/korea-electric-power-corporation-kepco-"], "stage": "Mature", "name": "Korea Electric Power", "patent_name": "Korea Electric Power", "continent": "Asia", "local_logo": null, "aliases": "Kepco; Korea Electric Power; Korea Electric Power Corporation", "permid_links": [{"text": 4295881588, "url": "https://permid.org/1-4295881588"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:KEP", "url": "https://www.google.com/finance/quote/KEP:NYSE"}], "market_full": [{"text": "NYQ:KEP", "url": "https://www.google.com/finance/quote/KEP:NYQ"}, {"text": "DUS:KOP", "url": "https://www.google.com/finance/quote/DUS:KOP"}, {"text": "STU:KOP", "url": "https://www.google.com/finance/quote/KOP:STU"}, {"text": "DEU:KOP", "url": "https://www.google.com/finance/quote/DEU:KOP"}, {"text": "MUN:KOP", "url": "https://www.google.com/finance/quote/KOP:MUN"}, {"text": "BER:KOP", "url": "https://www.google.com/finance/quote/BER:KOP"}, {"text": "BUE:KEP3", "url": "https://www.google.com/finance/quote/BUE:KEP3"}, {"text": "ASE:KEP", "url": "https://www.google.com/finance/quote/ASE:KEP"}, {"text": "FRA:KOP", "url": "https://www.google.com/finance/quote/FRA:KOP"}, {"text": "NYSE:KEP", "url": "https://www.google.com/finance/quote/KEP:NYSE"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 3}, {"field_name": "Feature (computer vision)", "field_count": 3}, {"field_name": "Deep learning", "field_count": 3}, {"field_name": "Support vector machine", "field_count": 2}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Object (computer science)", "field_count": 2}, {"field_name": "Feature extraction", "field_count": 2}, {"field_name": "Entropy (information theory)", "field_count": 1}, {"field_name": "Linear discriminant analysis", "field_count": 1}, {"field_name": "Genetic algorithm", "field_count": 1}], "clusters": [{"cluster_id": 3568, "cluster_count": 6}, {"cluster_id": 214, "cluster_count": 4}, {"cluster_id": 28783, "cluster_count": 3}, {"cluster_id": 3226, "cluster_count": 2}, {"cluster_id": 7103, "cluster_count": 2}, {"cluster_id": 2618, "cluster_count": 2}, {"cluster_id": 29535, "cluster_count": 1}, {"cluster_id": 38199, "cluster_count": 1}, {"cluster_id": 2888, "cluster_count": 1}, {"cluster_id": 18513, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 33}, {"ref_CSET_id": 163, "referenced_count": 31}, {"ref_CSET_id": 87, "referenced_count": 24}, {"ref_CSET_id": 1924, "referenced_count": 8}, {"ref_CSET_id": 161, "referenced_count": 6}, {"ref_CSET_id": 1791, "referenced_count": 6}, {"ref_CSET_id": 37, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 4}, {"ref_CSET_id": 23, "referenced_count": 4}, {"ref_CSET_id": 1126, "referenced_count": 3}], "tasks": [{"referent": "classification", "task_count": 14}, {"referent": "disease_detection", "task_count": 9}, {"referent": "system_identification", "task_count": 6}, {"referent": "object_detection", "task_count": 5}, {"referent": "fault_detection", "task_count": 4}, {"referent": "image_analysis", "task_count": 2}, {"referent": "pattern_classification", "task_count": 2}, {"referent": "autonomous_vehicles", "task_count": 2}, {"referent": "time_series", "task_count": 2}, {"referent": "vehicle_detection", "task_count": 2}], "methods": [{"referent": "double_q_learning", "method_count": 8}, {"referent": "autoencoder", "method_count": 6}, {"referent": "convolutional_neural_networks", "method_count": 6}, {"referent": "recurrent_neural_networks", "method_count": 5}, {"referent": "cgnn", "method_count": 5}, {"referent": "symbolic_deep_learning", "method_count": 5}, {"referent": "optimization", "method_count": 4}, {"referent": "mad_learning", "method_count": 4}, {"referent": "deep_belief_network", "method_count": 4}, {"referent": "ae", "method_count": 3}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [116, 92, 128, 122, 154, 190, 187, 170, 135, 126, 7], "total": 1427, "isTopResearch": false, "rank": 149, "sp500_rank": 116}, "ai_publications": {"counts": [0, 1, 2, 2, 2, 6, 9, 17, 11, 9, 0], "total": 59, "isTopResearch": false, "rank": 163, "sp500_rank": 106}, "ai_publications_growth": {"counts": [], "total": 11.804317686670624, "isTopResearch": false, "rank": 147, "sp500_rank": 74}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [4, 7, 6, 10, 34, 82, 118, 170, 187, 223, 12], "total": 853, "isTopResearch": false, "rank": 202, "sp500_rank": 111}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 3, 3, 5, 2, 2, 0], "total": 15, "isTopResearch": true, "rank": 163, "sp500_rank": 99}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257, "sp500_rank": 140}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 0], "total": 4, "isTopResearch": true, "rank": 187, "sp500_rank": 114}, "citations_per_article": {"counts": [0, 7.0, 3.0, 5.0, 17.0, 13.666666666666666, 13.11111111111111, 10.0, 17.0, 24.77777777777778, 0], "total": 14.457627118644067, "isTopResearch": false, "rank": 415, "sp500_rank": 138}}, "patents": {"ai_patents": {"counts": [0, 2, 2, 5, 9, 12, 41, 31, 22, 0, 0], "total": 124, "table": null, "rank": 142, "sp500_rank": 91}, "ai_patents_growth": {"counts": [], "total": 83.53658536585367, "table": null, "rank": 134, "sp500_rank": 63}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 20, 20, 50, 90, 120, 410, 310, 220, 0, 0], "total": 1240, "table": null, "rank": 142, "sp500_rank": 91}, "Physical_Sciences_and_Engineering": {"counts": [0, 1, 1, 0, 0, 1, 4, 3, 2, 0, 0], "total": 12, "table": "industry", "rank": 44, "sp500_rank": 37}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 3, 1, 0, 3, 4, 1, 0, 0], "total": 12, "table": null, "rank": 80, "sp500_rank": 59}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "table": null, "rank": 159, "sp500_rank": 107}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 87, "sp500_rank": 61}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [0, 1, 2, 0, 1, 0, 8, 2, 7, 0, 0], "total": 21, "table": "industry", "rank": 186, "sp500_rank": 104}, "Banking_and_Finance": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 0, 0, 0, 3, 3, 7, 0, 1, 0, 0], "total": 14, "table": "industry", "rank": 147, "sp500_rank": 91}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 1, 2, 4, 10, 5, 2, 0, 0], "total": 24, "table": "industry", "rank": 89, "sp500_rank": 63}, "Energy_Management": {"counts": [0, 2, 1, 3, 5, 3, 15, 12, 8, 0, 0], "total": 49, "table": "industry", "rank": 14, "sp500_rank": 14}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 55, "sp500_rank": 39}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 1, 1, 2, 5, 4, 1, 0, 0], "total": 14, "table": "application", "rank": 103, "sp500_rank": 72}, "Control": {"counts": [0, 1, 0, 1, 3, 2, 7, 1, 3, 0, 0], "total": 18, "table": "application", "rank": 98, "sp500_rank": 69}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 47, "sp500_rank": 36}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 3, 9, 3, 4, 0, 0], "total": 20, "table": "application", "rank": 186, "sp500_rank": 109}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 277, "sp500_rank": 154}, "Measuring_and_Testing": {"counts": [0, 0, 1, 0, 2, 2, 7, 13, 3, 0, 0], "total": 28, "table": "application", "rank": 63, "sp500_rank": 48}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 46, "rank": 1028, "sp500_rank": 341}, "ai_jobs": {"counts": null, "total": 8, "rank": 908, "sp500_rank": 311}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2419, "country": "United States", "website": "http://monsterbevcorp.com/", "crunchbase": {"text": "74b4bc75-fbd2-5a9f-4b55-c5d72d57a5be", "url": "https://www.crunchbase.com/organization/monster-beverage-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/monsterenergy"], "stage": "Mature", "name": "Monster Beverage", "patent_name": "monster beverage", "continent": "North America", "local_logo": "monster_beverage.png", "aliases": "Monster Beverage Corp; Monster Beverage Corporation; Monster Energy; Monster Energy Company", "permid_links": [{"text": 5044505533, "url": "https://permid.org/1-5044505533"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:MNST", "url": "https://www.google.com/finance/quote/mnst:nasdaq"}], "market_full": [{"text": "NASDAQ:MNST", "url": "https://www.google.com/finance/quote/mnst:nasdaq"}, {"text": "HAM:MOB", "url": "https://www.google.com/finance/quote/ham:mob"}, {"text": "BRN:MOB", "url": "https://www.google.com/finance/quote/brn:mob"}, {"text": "STU:MOB", "url": "https://www.google.com/finance/quote/mob:stu"}, {"text": "SAO:M1NS34", "url": "https://www.google.com/finance/quote/m1ns34:sao"}, {"text": "DUS:MOB", "url": "https://www.google.com/finance/quote/dus:mob"}, {"text": "BER:MOB", "url": "https://www.google.com/finance/quote/ber:mob"}, {"text": "HAN:MOB", "url": "https://www.google.com/finance/quote/han:mob"}, {"text": "LSE:0K34", "url": "https://www.google.com/finance/quote/0k34:lse"}, {"text": "VIE:MNST", "url": "https://www.google.com/finance/quote/mnst:vie"}, {"text": "FRA:MOB", "url": "https://www.google.com/finance/quote/fra:mob"}, {"text": "MCX:MNST-RM", "url": "https://www.google.com/finance/quote/mcx:mnst-rm"}, {"text": "DEU:MOB", "url": "https://www.google.com/finance/quote/deu:mob"}, {"text": "MUN:MOB", "url": "https://www.google.com/finance/quote/mob:mun"}, {"text": "MEX:MNST*", "url": "https://www.google.com/finance/quote/mex:mnst*"}], "crunchbase_description": "Monster Beverage Corporation is a holding company.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 46, "rank": 1028, "fortune500_rank": 459}, "ai_jobs": {"counts": null, "total": 6, "rank": 970, "fortune500_rank": 431}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages", "wikipedia_description": "Monster Beverage Corporation is an American beverage company that manufactures energy drinks including Monster Energy, Relentless and Burn. The company was originally founded as Hansen's in 1935 in Southern California, originally selling juice products. The company renamed itself as Monster Beverage in 2012, and then sold their Hansen's juices and sodas and their other non-energy drink brands to The Coca-Cola Company in 2015.", "wikipedia_link": "https://en.wikipedia.org/wiki/Monster_Beverage", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2132, "country": "Japan", "website": "https://sumitomoelectric.com/", "crunchbase": {"text": "0fb7feb1-9bd0-a809-d77b-f03cb95f811e", "url": "https://www.crunchbase.com/organization/sumitomo-electric"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sumitomo-electric"], "stage": "Mature", "name": "Sumitomo Electric Industries", "patent_name": "Sumitomo Electric Industries", "continent": "Asia", "local_logo": "sumitomo_electric_industries.png", "aliases": "Sumitomo Electric; Sumitomo Electric Industries; Sumitomo Electric Industries, Ltd; \u4f4f\u53cb\u96fb\u6c17\u5de5\u696d", "permid_links": [{"text": 4295877346, "url": "https://permid.org/1-4295877346"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:5802", "url": "https://www.google.com/finance/quote/5802:TYO"}], "market_full": [{"text": "FRA:SMO1", "url": "https://www.google.com/finance/quote/FRA:SMO1"}, {"text": "MUN:SMO", "url": "https://www.google.com/finance/quote/MUN:SMO"}, {"text": "DEU:SMO1", "url": "https://www.google.com/finance/quote/DEU:SMO1"}, {"text": "DEU:5802", "url": "https://www.google.com/finance/quote/5802:DEU"}, {"text": "FRA:SMO", "url": "https://www.google.com/finance/quote/FRA:SMO"}, {"text": "TYO:5802", "url": "https://www.google.com/finance/quote/5802:TYO"}, {"text": "BER:SMO", "url": "https://www.google.com/finance/quote/BER:SMO"}, {"text": "STU:SMO", "url": "https://www.google.com/finance/quote/SMO:STU"}, {"text": "DUS:SMO", "url": "https://www.google.com/finance/quote/DUS:SMO"}], "crunchbase_description": "Sumitomo Electric Industries is a manufacturer of electric wire and optical fiber cables.", "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Hyperspectral imaging", "field_count": 1}, {"field_name": "Genetic programming", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Orientation (computer vision)", "field_count": 1}], "clusters": [{"cluster_id": 12084, "cluster_count": 2}, {"cluster_id": 36, "cluster_count": 2}, {"cluster_id": 81888, "cluster_count": 1}, {"cluster_id": 19056, "cluster_count": 1}, {"cluster_id": 19662, "cluster_count": 1}, {"cluster_id": 99619, "cluster_count": 1}, {"cluster_id": 2983, "cluster_count": 1}, {"cluster_id": 3157, "cluster_count": 1}, {"cluster_id": 24291, "cluster_count": 1}, {"cluster_id": 68451, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 156, "referenced_count": 1}, {"ref_CSET_id": 2132, "referenced_count": 1}, {"ref_CSET_id": 396, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 3}, {"referent": "human_activity_recognition", "task_count": 2}, {"referent": "video_surveillance", "task_count": 2}, {"referent": "dead_reckoning_prediction", "task_count": 2}, {"referent": "robots", "task_count": 1}, {"referent": "multi_class_classification", "task_count": 1}, {"referent": "autonomous_vehicles", "task_count": 1}, {"referent": "traffic_flow", "task_count": 1}, {"referent": "gait_analysis", "task_count": 1}, {"referent": "3d_shape_recognition", "task_count": 1}], "methods": [{"referent": "hit_detector", "method_count": 1}, {"referent": "glow", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "logistic_regression", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "optimization", "method_count": 1}, {"referent": "geco", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "wgan_gp", "method_count": 1}, {"referent": "adamax", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [112, 113, 92, 145, 114, 129, 159, 122, 91, 80, 1], "total": 1158, "isTopResearch": false, "rank": 178, "sp500_rank": 134}, "ai_publications": {"counts": [0, 0, 1, 1, 2, 2, 3, 1, 1, 0, 0], "total": 11, "isTopResearch": false, "rank": 397, "sp500_rank": 211}, "ai_publications_growth": {"counts": [], "total": -55.555555555555564, "isTopResearch": false, "rank": 1505, "sp500_rank": 429}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [24, 15, 21, 18, 27, 29, 37, 36, 34, 17, 0], "total": 258, "isTopResearch": false, "rank": 354, "sp500_rank": 164}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392, "sp500_rank": 192}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0, 0, 21.0, 18.0, 13.5, 14.5, 12.333333333333334, 36.0, 34.0, 0, 0], "total": 23.454545454545453, "isTopResearch": false, "rank": 260, "sp500_rank": 71}}, "patents": {"ai_patents": {"counts": [0, 1, 1, 5, 5, 7, 9, 10, 2, 0, 0], "total": 40, "table": null, "rank": 239, "sp500_rank": 137}, "ai_patents_growth": {"counts": [], "total": 26.56084656084656, "table": null, "rank": 282, "sp500_rank": 131}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 10, 10, 50, 50, 70, 90, 100, 20, 0, 0], "total": 400, "table": null, "rank": 239, "sp500_rank": 137}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 105, "sp500_rank": 81}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 193, "sp500_rank": 115}, "Transportation": {"counts": [0, 0, 0, 2, 0, 3, 0, 0, 1, 0, 0], "total": 6, "table": "industry", "rank": 123, "sp500_rank": 89}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 132}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 3, 0, 2, 2, 4, 0, 0, 0], "total": 12, "table": "industry", "rank": 240, "sp500_rank": 129}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": null, "rank": 172, "sp500_rank": 111}, "Telecommunications": {"counts": [0, 0, 0, 2, 0, 2, 2, 2, 1, 0, 0], "total": 9, "table": "industry", "rank": 174, "sp500_rank": 101}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 284, "sp500_rank": 164}, "Energy_Management": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 151, "sp500_rank": 113}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191, "sp500_rank": 104}, "Knowledge_Representation": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240, "sp500_rank": 116}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 244, "sp500_rank": 152}, "Control": {"counts": [0, 0, 0, 1, 0, 1, 1, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 212, "sp500_rank": 129}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 0, 1, 1, 2, 1, 1, 0, 0, 0], "total": 7, "table": "application", "rank": 288, "sp500_rank": 148}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 1, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 209, "sp500_rank": 132}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 46, "rank": 1028, "sp500_rank": 341}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "sp500_rank": 328}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 3022, "country": "Israel", "website": "http://www.integrity-apps.com/", "crunchbase": {"text": "ec0f70a6-8e91-22df-de11-ffbf91ea7e47", "url": "https://www.crunchbase.com/organization/integrity-applications-incorporated-3"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/integrity-applications-incorporated"], "stage": "Unknown", "name": "Integrity Applications Inc", "patent_name": "integrity applications inc", "continent": "Asia", "local_logo": "integrity_applications_inc.png", "aliases": "Integrity Applications Incorporated", "permid_links": [{"text": 4297757582, "url": "https://permid.org/1-4297757582"}], "parent_info": "Xebec Global Corporation (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "IAI is a provider of systems engineering, integrated solutions, technical analysis, and subject matter expertise to customers.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Synthetic data", "field_count": 1}, {"field_name": "Change detection", "field_count": 1}, {"field_name": "Synthetic aperture radar", "field_count": 1}], "clusters": [{"cluster_id": 16230, "cluster_count": 1}, {"cluster_id": 6201, "cluster_count": 1}, {"cluster_id": 6910, "cluster_count": 1}, {"cluster_id": 73200, "cluster_count": 1}, {"cluster_id": 12070, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 2601, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 2}, {"referent": "image_fusion", "task_count": 2}, {"referent": "community_detection", "task_count": 1}, {"referent": "pattern_classification", "task_count": 1}, {"referent": "social_network_analysis", "task_count": 1}, {"referent": "patch_matching", "task_count": 1}, {"referent": "sar", "task_count": 1}, {"referent": "synthetic_aperture_radar", "task_count": 1}, {"referent": "atr", "task_count": 1}, {"referent": "target_recognition", "task_count": 1}], "methods": [{"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "graphs", "method_count": 1}, {"referent": "maddpg", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [11, 2, 3, 7, 5, 10, 5, 0, 0, 0, 0], "total": 43, "isTopResearch": false, "rank": 646}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [2, 0, 1, 1, 3, 6, 4, 4, 10, 6, 0], "total": 37, "isTopResearch": false, "rank": 630}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 1.0, 0, 6.0, 0, 0, 0, 0, 0], "total": 18.5, "isTopResearch": false, "rank": 338}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 46, "rank": 1028}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "At KBR, we partner with government and industry clients to provide purposeful and comprehensive solutions with an emphasis on efficiency and safety. With a full portfolio of services, proprietary technologies and expertise, our employees are ready to handle projects and missions from planning and design to sustainability and maintenance. Whether at the bottom of the ocean or in outer space, our clients trust us to deliver the impossible on a daily basis.", "company_site_link": "https://www.kbr.com/en/about-us", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3008, "country": "United States", "website": "https://www.jfti.com", "crunchbase": {"text": "efbac82a-5c66-427d-9b90-c6b56cae3c9d", "url": "https://www.crunchbase.com/organization/j-f-taylor-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/j.f.-taylor-inc"], "stage": "Unknown", "name": "JF Taylor Inc", "patent_name": "jf taylor inc", "continent": "North America", "local_logo": "jf_taylor_inc.png", "aliases": "J F Taylor Inc; J.F. Taylor, Inc", "permid_links": [{"text": 5000399391, "url": "https://permid.org/1-5000399391"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "J.F. Taylor is a defense & space company offering electronic and mechanical engineering services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 46, "rank": 1028}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2226, "country": "United States", "website": "https://www.avaloncommunities.com/", "crunchbase": {"text": "55d9d7b2-3c0a-f750-6388-174164320bdc", "url": "https://www.crunchbase.com/organization/avalonbay"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/avalonbay-communities"], "stage": "Mature", "name": "AvalonBay Communities, Inc.", "patent_name": "avalonbay communities, inc.", "continent": "North America", "local_logo": "avalonbay_communities,_inc.png", "aliases": "Avalonbay; Avalonbay, Inc", "permid_links": [{"text": 4295903478, "url": "https://permid.org/1-4295903478"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:AVB", "url": "https://www.google.com/finance/quote/avb:nyse"}], "market_full": [{"text": "STU:WV8", "url": "https://www.google.com/finance/quote/stu:wv8"}, {"text": "DUS:WV8", "url": "https://www.google.com/finance/quote/dus:wv8"}, {"text": "ASE:AVB", "url": "https://www.google.com/finance/quote/ase:avb"}, {"text": "MEX:AVB*", "url": "https://www.google.com/finance/quote/avb*:mex"}, {"text": "VIE:AVBC", "url": "https://www.google.com/finance/quote/avbc:vie"}, {"text": "NYSE:AVB", "url": "https://www.google.com/finance/quote/avb:nyse"}, {"text": "SAO:A1VB34", "url": "https://www.google.com/finance/quote/a1vb34:sao"}, {"text": "DEU:AVB", "url": "https://www.google.com/finance/quote/avb:deu"}, {"text": "NYQ:AVB", "url": "https://www.google.com/finance/quote/avb:nyq"}, {"text": "BRN:WV8", "url": "https://www.google.com/finance/quote/brn:wv8"}, {"text": "MUN:WV8", "url": "https://www.google.com/finance/quote/mun:wv8"}, {"text": "BER:WV8", "url": "https://www.google.com/finance/quote/ber:wv8"}, {"text": "LSE:0HJO", "url": "https://www.google.com/finance/quote/0hjo:lse"}, {"text": "FRA:WV8", "url": "https://www.google.com/finance/quote/fra:wv8"}], "crunchbase_description": "AvalonBay Communities, Inc. is in the business of developing, redeveloping, acquiring and managing high-quality apartment", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [{"cluster_id": 26160, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "classification", "task_count": 1}], "methods": [{"referent": "metrix", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302, "fortune500_rank": 409}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "fortune500_rank": 442}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 1, 3, 0], "total": 8, "isTopResearch": false, "rank": 782, "fortune500_rank": 210}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 4.0, 0, 0, 0], "total": 8.0, "isTopResearch": false, "rank": 595, "fortune500_rank": 171}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 45, "rank": 1033, "fortune500_rank": 460}, "ai_jobs": {"counts": null, "total": 12, "rank": 812, "fortune500_rank": 400}}, "sector": "Real Estate", "business_sector": "Real Estate", "wikipedia_description": "AvalonBay Communities, Inc. is a publicly traded real estate investment trust that invests in apartments.", "wikipedia_link": "https://en.wikipedia.org/wiki/AvalonBay_Communities", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 696, "country": "United States", "website": "https://soartech.com/", "crunchbase": {"text": "8c8354fa-7398-9fb2-5907-14d89f4ad4d5", "url": "https://www.crunchbase.com/organization/soar-technologies"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/soar-technology"], "stage": "Unknown", "name": "Soar Technology, Inc.", "patent_name": "soar technology, inc.", "continent": "North America", "local_logo": "soar_technology,_inc.png", "aliases": "Soar Technologies; Soartech", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Soar Technology is a provider that engages in the design and development of software solutions for military or civilian applications.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Swarm behaviour", "field_count": 4}, {"field_name": "Task (computing)", "field_count": 3}, {"field_name": "Gesture", "field_count": 2}, {"field_name": "Intelligent tutoring system", "field_count": 2}, {"field_name": "False alarm", "field_count": 2}, {"field_name": "Social system", "field_count": 1}, {"field_name": "Intelligent decision support system", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Computational sociology", "field_count": 1}, {"field_name": "Adaptive learning", "field_count": 1}], "clusters": [{"cluster_id": 1960, "cluster_count": 9}, {"cluster_id": 38342, "cluster_count": 6}, {"cluster_id": 34950, "cluster_count": 5}, {"cluster_id": 45180, "cluster_count": 3}, {"cluster_id": 13721, "cluster_count": 3}, {"cluster_id": 14137, "cluster_count": 2}, {"cluster_id": 9134, "cluster_count": 2}, {"cluster_id": 25581, "cluster_count": 1}, {"cluster_id": 53832, "cluster_count": 1}, {"cluster_id": 80940, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 696, "referenced_count": 29}, {"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 163, "referenced_count": 8}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 27, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 790, "referenced_count": 1}, {"ref_CSET_id": 1797, "referenced_count": 1}, {"ref_CSET_id": 740, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 8}, {"referent": "robots", "task_count": 6}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 5}, {"referent": "developmental_learning", "task_count": 4}, {"referent": "image_restoration", "task_count": 3}, {"referent": "recommendation", "task_count": 3}, {"referent": "action_localization", "task_count": 3}, {"referent": "path_planning", "task_count": 2}, {"referent": "domain_adaptation", "task_count": 2}, {"referent": "skills_assessment", "task_count": 2}], "methods": [{"referent": "q_learning", "method_count": 7}, {"referent": "atss", "method_count": 7}, {"referent": "3d_representations", "method_count": 7}, {"referent": "vqa_models", "method_count": 6}, {"referent": "mad_learning", "method_count": 5}, {"referent": "symbolic_deep_learning", "method_count": 3}, {"referent": "automl", "method_count": 3}, {"referent": "self_supervised_learning", "method_count": 2}, {"referent": "adaptive_nms", "method_count": 2}, {"referent": "csgld", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [6, 3, 6, 7, 16, 15, 22, 9, 19, 11, 0], "total": 114, "isTopResearch": false, "rank": 492}, "ai_publications": {"counts": [3, 1, 2, 1, 5, 9, 15, 6, 9, 3, 0], "total": 54, "isTopResearch": false, "rank": 174}, "ai_publications_growth": {"counts": [], "total": -25.555555555555557, "isTopResearch": false, "rank": 1372}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [21, 12, 21, 18, 22, 23, 34, 27, 47, 49, 3], "total": 277, "isTopResearch": false, "rank": 341}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 1, 1, 0], "total": 4, "isTopResearch": true, "rank": 313}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 257}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 3, 3, 2, 1, 0, 0], "total": 9, "isTopResearch": true, "rank": 124}, "citations_per_article": {"counts": [7.0, 12.0, 10.5, 18.0, 4.4, 2.5555555555555554, 2.2666666666666666, 4.5, 5.222222222222222, 16.333333333333332, 0], "total": 5.12962962962963, "isTopResearch": false, "rank": 709}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 45, "rank": 1033}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "At SoarTech, our focus is in the development of intelligent software that reasons like humans do, to automate complex tasks, simplify human-machine interactions, or model human behaviors. Our philosophy is three-fold: to be an augmentation to, not a replacement of, the human; to think \u201ctop-down, not bottom-up;\u201d and to be transparent so that decisions and processing are communicated to the human and in human-like terms.", "company_site_link": "https://soartech.com", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 169, "country": "China", "website": "https://www.mobvoi.com/", "crunchbase": {"text": "6d531f23-acbc-75a5-d748-baa7560e7e82", "url": "https://www.crunchbase.com/organization/mobvoi"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mobvoi"], "stage": "Mature", "name": "Mobvoi", "patent_name": "mobvoi", "continent": "Asia", "local_logo": "mobvoi.png", "aliases": "Chumenwenwen; Chumenwenwen.Com; Mobvoi, Inc; \u51fa\u95e8\u95ee\u95ee; \u5317\u4eac\u7fbd\u6247\u667a\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5069397706, "url": "https://permid.org/1-5069397706"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Mobvoi develops technologies in Chinese language speech recognition, natural language processing, and vertical mobile search.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Word error rate", "field_count": 3}, {"field_name": "Keyword spotting", "field_count": 3}, {"field_name": "Transcription (software)", "field_count": 1}, {"field_name": "Language model", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 1422, "cluster_count": 5}, {"cluster_id": 6386, "cluster_count": 3}, {"cluster_id": 2644, "cluster_count": 2}, {"cluster_id": 11991, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 68}, {"ref_CSET_id": 163, "referenced_count": 33}, {"ref_CSET_id": 87, "referenced_count": 24}, {"ref_CSET_id": 23, "referenced_count": 13}, {"ref_CSET_id": 786, "referenced_count": 11}, {"ref_CSET_id": 115, "referenced_count": 8}, {"ref_CSET_id": 1784, "referenced_count": 7}, {"ref_CSET_id": 169, "referenced_count": 6}, {"ref_CSET_id": 3131, "referenced_count": 6}, {"ref_CSET_id": 805, "referenced_count": 5}], "tasks": [{"referent": "small_footprint_keyword_spotting", "task_count": 2}, {"referent": "keyword_spotting", "task_count": 2}, {"referent": "speech_recognition", "task_count": 2}, {"referent": "end_to_end_speech_recognition", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "accented_speech_recognition", "task_count": 1}, {"referent": "knowledge_distillation", "task_count": 1}, {"referent": "language_identification", "task_count": 1}, {"referent": "neural_network_security", "task_count": 1}, {"referent": "model_selection", "task_count": 1}], "methods": [{"referent": "l1_regularization", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "pointer_network", "method_count": 1}, {"referent": "glu", "method_count": 1}, {"referent": "hrnet", "method_count": 1}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "dpn", "method_count": 1}, {"referent": "region_proposal", "method_count": 1}, {"referent": "transformers", "method_count": 1}, {"referent": "bp_transformer", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 3, 7, 1, 3, 4, 0], "total": 18, "isTopResearch": false, "rank": 825}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 2, 6, 1, 2, 0, 0], "total": 11, "isTopResearch": false, "rank": 397}, "ai_publications_growth": {"counts": [], "total": -27.777777777777775, "isTopResearch": false, "rank": 1379}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 217}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 9, 53, 112, 95, 64, 2], "total": 335, "isTopResearch": false, "rank": 316}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 2, 4, 1, 2, 0, 0], "total": 9, "isTopResearch": true, "rank": 99}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 4.5, 8.833333333333334, 112.0, 47.5, 0, 0], "total": 30.454545454545453, "isTopResearch": false, "rank": 191}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 4, 9, 6, 5, 1, 0], "total": 26, "table": null, "rank": 288}, "ai_patents_growth": {"counts": [], "total": 130.55555555555557, "table": null, "rank": 88}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 40, 90, 60, 50, 10, 0], "total": 260, "table": null, "rank": 288}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 199}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 5, 3, 2, 1, 0], "total": 12, "table": "industry", "rank": 240}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 1, 2, 3, 1, 0, 0], "total": 7, "table": "application", "rank": 96}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 1, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 45, "rank": 1033}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Mobvoi Information Technology Company Limited (simplified Chinese: \u51fa\u95e8\u95ee\u95ee; traditional Chinese: \u51fa\u9580\u554f\u554f; pinyin: Ch\u016bm\u00e9n W\u00e8nw\u00e8n) is a technological company headquartered in Beijing, China that sells and develops consumer electronics and Chinese voice recognition, natural language processing, and vertical search technology in-house.", "wikipedia_link": "https://en.wikipedia.org/wiki/Mobvoi", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1832, "country": "China", "website": "https://www.crc.com.hk/", "crunchbase": {"text": " 8b72a82f-52fb-6181-49d7-82bac7cc95ca ", "url": " https://www.crunchbase.com/organization/china-resources "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/china-resources-holdings-co"], "stage": "Mature", "name": "China Resources", "patent_name": "China Resources", "continent": "Asia", "local_logo": null, "aliases": "China Resources; China Resources (Holdings) Company Limited; China Resources Power Holdings Co. Ltd; \u534e\u6da6\u96c6\u56e2; \u83ef\u6f64\uff08\u96c6\u5718\uff09\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4295871541, "url": "https://permid.org/1-4295871541"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "FRA:XGR", "url": "https://www.google.com/finance/quote/FRA:XGR"}, {"text": "PKC:CMPGF", "url": "https://www.google.com/finance/quote/CMPGF:PKC"}, {"text": "MEX:CPGN", "url": "https://www.google.com/finance/quote/CPGN:MEX"}, {"text": "BRN:XGR2", "url": "https://www.google.com/finance/quote/BRN:XGR2"}, {"text": "GER:XGR2X", "url": "https://www.google.com/finance/quote/GER:XGR2X"}, {"text": "HAN:XGR2", "url": "https://www.google.com/finance/quote/HAN:XGR2"}, {"text": "PKC:CMPGY", "url": "https://www.google.com/finance/quote/CMPGY:PKC"}, {"text": "MUN:XGR", "url": "https://www.google.com/finance/quote/MUN:XGR"}, {"text": "DUS:XGR2", "url": "https://www.google.com/finance/quote/DUS:XGR2"}, {"text": "DEU:XGR", "url": "https://www.google.com/finance/quote/DEU:XGR"}, {"text": "DEU:XGR2", "url": "https://www.google.com/finance/quote/DEU:XGR2"}, {"text": "STU:XGR2", "url": "https://www.google.com/finance/quote/STU:XGR2"}, {"text": "FRA:XGR2", "url": "https://www.google.com/finance/quote/FRA:XGR2"}, {"text": "BER:XGR2", "url": "https://www.google.com/finance/quote/BER:XGR2"}, {"text": "MUN:XGR2", "url": "https://www.google.com/finance/quote/MUN:XGR2"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 1}], "clusters": [{"cluster_id": 13405, "cluster_count": 2}, {"cluster_id": 5527, "cluster_count": 1}, {"cluster_id": 29585, "cluster_count": 1}, {"cluster_id": 15036, "cluster_count": 1}, {"cluster_id": 15956, "cluster_count": 1}, {"cluster_id": 23565, "cluster_count": 1}, {"cluster_id": 12571, "cluster_count": 1}, {"cluster_id": 69375, "cluster_count": 1}, {"cluster_id": 3186, "cluster_count": 1}, {"cluster_id": 9579, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 163, "referenced_count": 19}, {"ref_CSET_id": 101, "referenced_count": 12}, {"ref_CSET_id": 87, "referenced_count": 7}, {"ref_CSET_id": 37, "referenced_count": 5}, {"ref_CSET_id": 112, "referenced_count": 3}, {"ref_CSET_id": 805, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 786, "referenced_count": 2}, {"ref_CSET_id": 1784, "referenced_count": 2}, {"ref_CSET_id": 1952, "referenced_count": 1}], "tasks": [{"referent": "image_processing", "task_count": 2}, {"referent": "segmentation", "task_count": 1}, {"referent": "video_surveillance", "task_count": 1}, {"referent": "edge_computing", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}, {"referent": "image_recognition", "task_count": 1}, {"referent": "imitation_learning", "task_count": 1}, {"referent": "short_text_conversation", "task_count": 1}, {"referent": "dialogue_generation", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 3}, {"referent": "griffin_lim_algorithm", "method_count": 2}, {"referent": "image_segmentation_models", "method_count": 2}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "natural_language_processing", "method_count": 1}, {"referent": "som", "method_count": 1}, {"referent": "dcgan", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [37, 25, 42, 34, 44, 52, 61, 83, 90, 94, 1], "total": 563, "isTopResearch": false, "rank": 261, "sp500_rank": 174}, "ai_publications": {"counts": [1, 0, 1, 1, 0, 0, 0, 2, 3, 1, 0], "total": 9, "isTopResearch": false, "rank": 437, "sp500_rank": 224}, "ai_publications_growth": {"counts": [], "total": -8.333333333333336, "isTopResearch": false, "rank": 1254, "sp500_rank": 308}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 217, "sp500_rank": 99}, "citation_counts": {"counts": [1, 4, 7, 5, 15, 6, 4, 6, 12, 21, 3], "total": 84, "isTopResearch": false, "rank": 529, "sp500_rank": 229}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": true, "rank": 344, "sp500_rank": 170}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": true, "rank": 208, "sp500_rank": 115}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [1.0, 0, 7.0, 5.0, 0, 0, 0, 3.0, 4.0, 21.0, 0], "total": 9.333333333333334, "isTopResearch": false, "rank": 566, "sp500_rank": 211}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 0, 1, 2, 3, 15, 11, 7, 0], "total": 40, "table": null, "rank": 239, "sp500_rank": 137}, "ai_patents_growth": {"counts": [], "total": 183.33333333333334, "table": null, "rank": 51, "sp500_rank": 20}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 10, 0, 10, 20, 30, 150, 110, 70, 0], "total": 400, "table": null, "rank": 239, "sp500_rank": 137}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], "total": 5, "table": "industry", "rank": 122, "sp500_rank": 78}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0], "total": 2, "table": "industry", "rank": 165, "sp500_rank": 110}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 48, "sp500_rank": 36}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 6, 5, 1, 0], "total": 13, "table": "industry", "rank": 233, "sp500_rank": 126}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 207, "sp500_rank": 125}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 2, 4, 1, 2, 0], "total": 10, "table": "industry", "rank": 149, "sp500_rank": 101}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 1, 2, 4, 1, 2, 0], "total": 10, "table": "industry", "rank": 48, "sp500_rank": 45}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 2, 4, 1, 2, 0], "total": 10, "table": "application", "rank": 124, "sp500_rank": 89}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 10, 3, 0, 0], "total": 13, "table": "application", "rank": 224, "sp500_rank": 128}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 5, 0, 0], "total": 5, "table": "application", "rank": 160, "sp500_rank": 107}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 44, "rank": 1036, "sp500_rank": 343}, "ai_jobs": {"counts": null, "total": 6, "rank": 970, "sp500_rank": 324}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 3091, "country": "United States", "website": "https://www.poolcorp.com/", "crunchbase": {"text": " 58bf7521-01c1-e91b-0308-8a9b009800f1", "url": " https://www.crunchbase.com/organization/pool-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/poolcorp"], "stage": "Mature", "name": "Pool Corporation", "patent_name": "Pool Corporation", "continent": "North America", "local_logo": null, "aliases": "Pool Corp; Pool Corporation; Scp Pool Corporation", "permid_links": [{"text": 4295907828, "url": "https://permid.org/1-4295907828"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NASDAQ:POOL", "url": "https://www.google.com/finance/quote/NASDAQ:POOL"}], "market_full": [{"text": "MEX:POOL*", "url": "https://www.google.com/finance/quote/MEX:POOL*"}, {"text": "DEU:SP1", "url": "https://www.google.com/finance/quote/DEU:SP1"}, {"text": "MCX:POOL-RM", "url": "https://www.google.com/finance/quote/MCX:POOL-RM"}, {"text": "FRA:SP1", "url": "https://www.google.com/finance/quote/FRA:SP1"}, {"text": "NASDAQ:POOL", "url": "https://www.google.com/finance/quote/NASDAQ:POOL"}, {"text": "BRN:SP1", "url": "https://www.google.com/finance/quote/BRN:SP1"}], "crunchbase_description": null, "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 44, "rank": 1036, "fortune500_rank": 461}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "fortune500_rank": 437}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products"}, {"cset_id": 2999, "country": "United States", "website": "http://www.goprecise.com/", "crunchbase": {"text": "8a2f4ee9-d6a1-4eaa-8fd5-f77d69b866ca", "url": "https://www.crunchbase.com/organization/precise-systems-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/precise-systems-inc-"], "stage": "Unknown", "name": "Precise Systems Inc", "patent_name": "precise systems inc", "continent": "North America", "local_logo": "precise_systems_inc.png", "aliases": "Precise Systems; Precise Systems, Inc", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Precise Systems is a defense & space company providing training and technical support systems.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 44, "rank": 1036}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We apply best practice integration using LEAN Six Sigma, PMBOK processes and adherence to ISO standards. Our metrics-driven processes optimize the organizations we support.", "company_site_link": "http://www.goprecise.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2958, "country": "United States", "website": "https://sumaria.com/", "crunchbase": {"text": "9330114b-f831-450a-bae8-f2aaca1a2088", "url": "https://www.crunchbase.com/organization/sumaria-systems"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sumaria-systems-inc"], "stage": "Unknown", "name": "Sumaria Systems Inc", "patent_name": "sumaria systems inc", "continent": "North America", "local_logo": "sumaria_systems_inc.png", "aliases": "Sumaria; Sumaria Systems, Inc", "permid_links": [{"text": 4296581555, "url": "https://permid.org/1-4296581555"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Sumaria Systems delivers technical, software, and enterprise networking solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 44, "rank": 1036}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 1601, "country": "United States", "website": "http://www.tapjoy.com", "crunchbase": {"text": "964a9855-b230-1961-135d-c70f910f5f6a", "url": "https://www.crunchbase.com/organization/tapjoy"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tapjoy"], "stage": "Mature", "name": "Tapjoy", "patent_name": "tapjoy", "continent": "North America", "local_logo": "tapjoy.png", "aliases": "Tapjoy Inc; Tapjoy, Inc", "permid_links": [{"text": 5000680255, "url": "https://permid.org/1-5000680255"}], "parent_info": "Ironsource (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Tapjoy maximize mobile engagement and monetization for leading advertisers and app developers.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Semantic feature", "field_count": 1}], "clusters": [{"cluster_id": 39257, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "medical", "task_count": 1}, {"referent": "document_retrieval", "task_count": 1}], "methods": [{"referent": "metrix", "method_count": 1}, {"referent": "dimensionality_reduction", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "content_based_attention", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 901}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 43, "rank": 1040}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 266, "country": "China", "website": "https://www.ultrapower.com.cn", "crunchbase": {"text": "63bcec40-779b-8186-64f8-676c08ff4e40", "url": "https://www.crunchbase.com/organization/ultrapower-software"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/beijing-ultrapower-software-co-ltd"], "stage": "Mature", "name": "Ultrapower", "patent_name": "ultrapower", "continent": "Asia", "local_logo": "ultrapower.png", "aliases": "Beijing Ultrapower Software Co., Ltd; Ultrapower Software; \u5317\u4eac\u795e\u5dde\u6cf0\u5cb3\u8f6f\u4ef6\u80a1\u4efd\u6709\u9650\u516c\u53f8; \u795e\u5dde\u6cf0\u5cb3", "permid_links": [{"text": 5000430921, "url": "https://permid.org/1-5000430921"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "SZSE:300002", "url": "https://www.google.com/finance/quote/300002:szse"}], "market_full": [{"text": "SZSE:300002", "url": "https://www.google.com/finance/quote/300002:szse"}], "crunchbase_description": "Ultrapower Software provides information technology (IT) operation, maintenance and management solutions.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Chinese characters", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Forensic video analysis", "field_count": 1}], "clusters": [{"cluster_id": 16160, "cluster_count": 1}, {"cluster_id": 20224, "cluster_count": 1}, {"cluster_id": 5273, "cluster_count": 1}, {"cluster_id": 46452, "cluster_count": 1}, {"cluster_id": 3886, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 10}, {"ref_CSET_id": 163, "referenced_count": 6}, {"ref_CSET_id": 87, "referenced_count": 5}, {"ref_CSET_id": 112, "referenced_count": 2}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}, {"ref_CSET_id": 319, "referenced_count": 1}, {"ref_CSET_id": 281, "referenced_count": 1}], "tasks": [{"referent": "word_embeddings", "task_count": 2}, {"referent": "component_classification", "task_count": 1}, {"referent": "character_recognition", "task_count": 1}, {"referent": "chinese", "task_count": 1}, {"referent": "image_analysis", "task_count": 1}, {"referent": "video_surveillance", "task_count": 1}, {"referent": "representation_learning", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "knowledge_distillation", "task_count": 1}, {"referent": "natural_language_processing", "task_count": 1}], "methods": [{"referent": "nas_fcos", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "skip_gram_word2vec", "method_count": 1}, {"referent": "topic_embeddings", "method_count": 1}, {"referent": "gts", "method_count": 1}, {"referent": "word_embeddings", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 1, 3, 2, 4, 0, 0], "total": 11, "isTopResearch": false, "rank": 924}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0], "total": 5, "isTopResearch": false, "rank": 540}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 3, 14, 15, 15, 2], "total": 49, "isTopResearch": false, "rank": 586}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 2, 0, 0], "total": 4, "isTopResearch": true, "rank": 161}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 1.0, 0, 7.5, 0, 0], "total": 9.8, "isTopResearch": false, "rank": 547}}, "patents": {"ai_patents": {"counts": [1, 1, 1, 1, 4, 4, 3, 5, 1, 0, 0], "total": 21, "table": null, "rank": 316}, "ai_patents_growth": {"counts": [], "total": 13.888888888888891, "table": null, "rank": 317}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [10, 10, 10, 10, 40, 40, 30, 50, 10, 0, 0], "total": 210, "table": null, "rank": 316}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 3, 4, 2, 2, 0, 0, 0], "total": 12, "table": "industry", "rank": 240}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 1, 0, 0], "total": 3, "table": "industry", "rank": 252}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 43, "rank": 1040}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "\u795e\u5dde\u6cf0\u5cb3\u6210\u7acb\u4e8e2001\u5e74\uff0c2009\u5e74\u9996\u6279\u6df1\u4ea4\u6240\u521b\u4e1a\u677f\u4e0a\u5e02\uff08300002\uff09\u3002\u4f5c\u4e3a\u4e00\u5bb6\u201c\u4ef7\u503c\u5f15\u9886\uff0c\u521b\u65b0\u9a71\u52a8\u201d\u7684\u6c11\u8425\u9ad8\u79d1\u6280\u4f01\u4e1a\uff0c\u795e\u5dde\u6cf0\u5cb3\u81f4\u529b\u4e8e\u7528\u4fe1\u606f\u6280\u672f\u63a8\u52a8\u884c\u4e1a\u53d1\u5c55\u548c\u793e\u4f1a\u8fdb\u6b65\u3002\u7ecf\u8fc720\u5e74\u7684\u52aa\u529b\uff0c\u516c\u53f8\u9010\u6e10\u5f62\u6210\u4e86\u4ee5\u901a\u4fe1\u548c\u6570\u636e\u4e3a\u6838\u5fc3\u7684\u6280\u672f\u4ea7\u54c1\u80fd\u529b\uff0c\u4e1a\u5df2\u5f62\u6210\u8fd0\u8425\u5546\u4e1a\u52a1\u3001\u7269\u8054\u7f51\u4e0e\u901a\u4fe1\u3001\u4eba\u5de5\u667a\u80fd\u4e0e\u5927\u6570\u636e\u3001\u624b\u673a\u6e38\u620f\u53ca\u521b\u65b0\u4e1a\u52a1\u4e94\u5927\u4e1a\u52a1\u677f\u5757\u3002", "company_site_link": "https://www.ultrapower.com.cn/portal/about_introduce.action", "description_retrieval_date": "2021-03-17", "company_site_description_translation": "Shenzhou Taiyue was established in 2001. In 2009, it was among the first batch to be listed on the GEM of Shenzhen Stock Exchange (300002). As a \"value-led, innovation-driven\" private high-tech enterprise, China Taiyue is committed to using information technology to promote industry development and social progress. After 20 years of hard work, the company has gradually formed technical product capabilities with communications and data as the core, and has formed five major business segments: operator business, Internet of Things and communications, artificial intelligence and big data, mobile games and innovative business."}, {"cset_id": 38, "country": "China", "website": "http://baifendian.com", "crunchbase": {"text": "19bf632c-4d84-9161-2e5f-f79e5178ac73", "url": "https://www.crunchbase.com/organization/baifendian"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/baifendian-technology"], "stage": "Mature", "name": "BAIFENDIAN", "patent_name": "baifendian", "continent": "Asia", "local_logo": "baifendian.png", "aliases": "BAIFENDIAN; Beijing Baifendian Information Technology Co Ltd; Percent Corporation; \u5317\u4eac\u767e\u5206\u70b9\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8; \u767e\u5206\u70b9\u79d1\u6280", "permid_links": [{"text": 5035566877, "url": "https://permid.org/1-5035566877"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Baifendian offers a recommendation engine and consumer preference database in China.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 1, 1, 1, 1, 1, 3, 0, 0, 0, 0], "total": 9, "isTopResearch": false, "rank": 958}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 4, 2, 7, 1, 0, 0, 0], "total": 14, "table": null, "rank": 365}, "ai_patents_growth": {"counts": [], "total": 38.095238095238095, "table": null, "rank": 248}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 40, 20, 70, 10, 0, 0, 0], "total": 140, "table": null, "rank": 365}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 3, 1, 1, 1, 0, 0, 0], "total": 6, "table": "industry", "rank": 305}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 252}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 244}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 2, 0, 2, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 42, "rank": 1042}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 265, "country": "China", "website": "http://www.uisee.com/", "crunchbase": {"text": "c7291d8f-9f3f-a7ad-ed2f-5db616692603", "url": "https://www.crunchbase.com/organization/uisee"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/\u9a6d\u52bf\u79d1\u6280\uff08\u5317\u4eac\uff09\u79d1\u6280\u6709\u9650\u516c\u53f8"], "stage": "Growth", "name": "UISEE", "patent_name": "uisee", "continent": "Asia", "local_logo": "uisee.png", "aliases": "Uisee Beijing Co Ltd; Uisee Technology; Uisee Technology (Beijing) Co., Ltd; Yu Technology (Beijing) Co., Ltd; \u9a6d\u52bf\u79d1\u6280; \u9a6d\u52bf\u79d1\u6280\uff08\u5317\u4eac\uff09\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5073359374, "url": "https://permid.org/1-5073359374"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "UISEE provides leading-edge products on autonomous driving and transformative services on mobility on demand.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Convolutional neural network", "field_count": 2}, {"field_name": "Cluster analysis", "field_count": 2}, {"field_name": "Point cloud", "field_count": 2}, {"field_name": "Feature (computer vision)", "field_count": 2}, {"field_name": "Sensor fusion", "field_count": 2}, {"field_name": "Inertial measurement unit", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Driving simulator", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Pruning (morphology)", "field_count": 1}], "clusters": [{"cluster_id": 29152, "cluster_count": 2}, {"cluster_id": 9689, "cluster_count": 2}, {"cluster_id": 3742, "cluster_count": 2}, {"cluster_id": 76402, "cluster_count": 1}, {"cluster_id": 10301, "cluster_count": 1}, {"cluster_id": 3886, "cluster_count": 1}, {"cluster_id": 27589, "cluster_count": 1}, {"cluster_id": 52544, "cluster_count": 1}, {"cluster_id": 16876, "cluster_count": 1}, {"cluster_id": 3446, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 39}, {"ref_CSET_id": 163, "referenced_count": 38}, {"ref_CSET_id": 223, "referenced_count": 12}, {"ref_CSET_id": 127, "referenced_count": 12}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 87, "referenced_count": 6}, {"ref_CSET_id": 245, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 4}, {"ref_CSET_id": 37, "referenced_count": 4}, {"ref_CSET_id": 161, "referenced_count": 4}], "tasks": [{"referent": "autonomous_driving", "task_count": 3}, {"referent": "camera_relocalization", "task_count": 2}, {"referent": "6d_pose_estimation", "task_count": 2}, {"referent": "action_localization", "task_count": 2}, {"referent": "image_retrieval", "task_count": 2}, {"referent": "classification_tasks", "task_count": 2}, {"referent": "feature_selection", "task_count": 2}, {"referent": "image_enhancement", "task_count": 1}, {"referent": "environmental_sound_classification", "task_count": 1}, {"referent": "visual_localization", "task_count": 1}], "methods": [{"referent": "1d_cnn", "method_count": 4}, {"referent": "convolutional_neural_networks", "method_count": 3}, {"referent": "gan_feature_matching", "method_count": 2}, {"referent": "orb_slam2", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "feature_extractors", "method_count": 2}, {"referent": "graphs", "method_count": 1}, {"referent": "autoencoder", "method_count": 1}, {"referent": "semantic_segmentation_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 4, 5, 5, 4, 7, 0], "total": 26, "isTopResearch": false, "rank": 744}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 4, 5, 3, 4, 5, 0], "total": 21, "isTopResearch": false, "rank": 294}, "ai_publications_growth": {"counts": [], "total": 6.111111111111112, "isTopResearch": false, "rank": 171}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 2, 3, 0, 1, 0], "total": 6, "isTopResearch": false, "rank": 140}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 21, 54, 98, 75, 6], "total": 255, "isTopResearch": false, "rank": 356}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 3, 4, 3, 3, 3, 0], "total": 16, "isTopResearch": true, "rank": 158}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 3, 1, 1, 1, 1, 0], "total": 7, "isTopResearch": true, "rank": 142}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.25, 4.2, 18.0, 24.5, 15.0, 0], "total": 12.142857142857142, "isTopResearch": false, "rank": 468}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 1, 3, 4, 10, 5, 3, 1, 0], "total": 27, "table": null, "rank": 283}, "ai_patents_growth": {"counts": [], "total": 44.44444444444445, "table": null, "rank": 228}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 10, 30, 40, 100, 50, 30, 10, 0], "total": 270, "table": null, "rank": 283}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 1, 0, 0, 3, 1, 0, 0, 0], "total": 5, "table": "industry", "rank": 133}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 1, 0, 1, 3, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 182}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 3, 1, 5, 2, 3, 1, 0], "total": 15, "table": "application", "rank": 213}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 42, "rank": 1042}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "UISEE focuses on creating future-oriented mobility and logistics solutions with AI driving,reshaping the way we live by enabling utility, inclusive, safe experiences and efficient, eco-friendly city life style.", "company_site_link": "https://www.uisee.com/en/aboutcontrollingpotential/index.aspx#dw1", "description_retrieval_date": "2021-06-11", "company_site_description_translation": null}, {"cset_id": 254, "country": "United States", "website": "http://trifacta.com", "crunchbase": {"text": "7ad11657-573d-5159-6678-0e9a2e5023b8", "url": "https://www.crunchbase.com/organization/trifacta"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/trifacta"], "stage": "Mature", "name": "Trifacta", "patent_name": "trifacta", "continent": "North America", "local_logo": "trifacta.png", "aliases": "Trifacta Inc; Trifacta, Inc", "permid_links": [{"text": 5037853566, "url": "https://permid.org/1-5037853566"}], "parent_info": "Alteryx (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Trifacta delivers an intelligent, collaborative data engineering cloud platform to transform data, ensure quality, and automate pipelines.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 0, 0, 0, 1, 1, 1, 0, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 42, "rank": 1042}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Trifacta is a privately owned software company headquartered in San Francisco with offices in Bengaluru, Boston, Berlin and London. The company was founded in October 2012 and primarily develops data wrangling software for data exploration and self-service data preparation on cloud and on-premises data platforms.", "wikipedia_link": "https://en.wikipedia.org/wiki/Trifacta", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 99, "country": "China", "website": "http://www.geekplus.com.cn/", "crunchbase": {"text": "d50879f3-6dd2-a21e-e0ca-88d7f404458b", "url": "https://www.crunchbase.com/organization/geek"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/geekplusrobotics"], "stage": "Mature", "name": "Geek+", "patent_name": "geek+", "continent": "Asia", "local_logo": "geek+.png", "aliases": "Geek Plus; Geek+ Inc; Geekplus Robotics; Geekplus Technology Co., Ltd", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Geek+ develops autonomous mobile robots for warehouse, factory, and supply chain management.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 19500, "cluster_count": 1}, {"cluster_id": 1191, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 1}, {"referent": "mobile_robot", "task_count": 1}, {"referent": "mapf", "task_count": 1}, {"referent": "multi_agent_path_finding", "task_count": 1}], "methods": [{"referent": "maddpg", "method_count": 1}, {"referent": "esp", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 6, 1], "total": 8, "isTopResearch": false, "rank": 980}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0], "total": 4, "isTopResearch": false, "rank": 833}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 2.0, 0], "total": 2.0, "isTopResearch": false, "rank": 823}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 42, "rank": 1042}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Geek+ is a global technology company specialized in smart logistics. We apply advanced robotics and artificial intelligence technologies to create solutions for warehouse and factory operations.", "company_site_link": "https://www.geekplus.com/company", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1405, "country": "United States", "website": "http://www.citrine.io", "crunchbase": {"text": "ca52adc7-27eb-a07e-fad4-3f6521de75e6", "url": "https://www.crunchbase.com/organization/citrine-informatics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/citrine-informatics"], "stage": "Growth", "name": "Citrine Informatics", "patent_name": "citrine informatics", "continent": "North America", "local_logo": "citrine_informatics.png", "aliases": "Citrine Informatics Inc; Citrine Informatics, Inc", "permid_links": [{"text": 5050989509, "url": "https://permid.org/1-5050989509"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Citrine Informatics specializes in the fields of big data, artificial intelligence, and machine learning.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Haystack", "field_count": 3}, {"field_name": "Artificial neural network", "field_count": 2}, {"field_name": "Interpretability", "field_count": 1}, {"field_name": "Domain knowledge", "field_count": 1}, {"field_name": "Errors-in-variables models", "field_count": 1}, {"field_name": "Active learning (machine learning)", "field_count": 1}], "clusters": [{"cluster_id": 5590, "cluster_count": 12}, {"cluster_id": 65581, "cluster_count": 1}, {"cluster_id": 41315, "cluster_count": 1}, {"cluster_id": 29985, "cluster_count": 1}, {"cluster_id": 34653, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 15}, {"ref_CSET_id": 1405, "referenced_count": 9}, {"ref_CSET_id": 1797, "referenced_count": 5}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 553, "referenced_count": 2}, {"ref_CSET_id": 2972, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 790, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}], "tasks": [{"referent": "object_discovery", "task_count": 4}, {"referent": "information_extraction", "task_count": 2}, {"referent": "material_classification", "task_count": 2}, {"referent": "anomaly_detection", "task_count": 1}, {"referent": "classification_tasks", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "data_mining", "task_count": 1}, {"referent": "structured_prediction", "task_count": 1}, {"referent": "domain_generalization", "task_count": 1}, {"referent": "interpretability_techniques_for_deep_learning", "task_count": 1}], "methods": [{"referent": "mad_learning", "method_count": 9}, {"referent": "vqa_models", "method_count": 5}, {"referent": "3d_representations", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "feature_centric_voting", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "autoencoder", "method_count": 1}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 8, 9, 14, 9, 14, 10, 8, 1], "total": 74, "isTopResearch": false, "rank": 558}, "ai_publications": {"counts": [0, 0, 0, 1, 2, 5, 1, 4, 3, 1, 0], "total": 17, "isTopResearch": false, "rank": 330}, "ai_publications_growth": {"counts": [], "total": 69.44444444444444, "isTopResearch": false, "rank": 42}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 10, 19, 28, 71, 134, 156, 156, 7], "total": 581, "isTopResearch": false, "rank": 249}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 10.0, 9.5, 5.6, 71.0, 33.5, 52.0, 156.0, 0], "total": 34.1764705882353, "isTopResearch": false, "rank": 159}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 20, 10, 10, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 165}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 61}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 252}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "application", "rank": 214}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 41, "rank": 1046}, "ai_jobs": {"counts": null, "total": 18, "rank": 716}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Accelerate product development through AI embedded in smart data infrastructure", "company_site_link": "http://www.citrine.io", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 185, "country": "United States", "website": "http://www.oneconcern.com/", "crunchbase": {"text": "c6e585bd-bb0d-c126-05a6-18c92c51f9da", "url": "https://www.crunchbase.com/organization/oneconcern"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/oneconcern"], "stage": "Growth", "name": "One Concern", "patent_name": "one concern", "continent": "North America", "local_logo": "one_concern.png", "aliases": "1Concern; One Concern, Inc", "permid_links": [{"text": 5059975896, "url": "https://permid.org/1-5059975896"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "One Concern's climate analytics software provides information on the potential financial impacts of weather & climate-related loss events.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Decision support system", "field_count": 1}], "clusters": [{"cluster_id": 3212, "cluster_count": 1}, {"cluster_id": 2561, "cluster_count": 1}, {"cluster_id": 17848, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 185, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [{"referent": "developmental_learning", "task_count": 1}, {"referent": "fire_detection", "task_count": 1}, {"referent": "spatio_temporal_forecasting", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "sniper", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 4, 3, 3, 4, 5, 0], "total": 19, "isTopResearch": false, "rank": 818}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 0, 3, 2, 6, 0], "total": 12, "isTopResearch": false, "rank": 740}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 1.0, 0, 3.0, 2.0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735}}, "patents": {"ai_patents": {"counts": [0, 0, 3, 0, 1, 3, 0, 0, 0, 0, 0], "total": 7, "table": null, "rank": 464}, "ai_patents_growth": {"counts": [], "total": 50.0, "table": null, "rank": 198}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 30, 0, 10, 30, 0, 0, 0, 0, 0], "total": 70, "table": null, "rank": 464}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 131}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 3, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 363}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 244}, "Control": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 3, 0, 0, 2, 0, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 170}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 41, "rank": 1046}, "ai_jobs": {"counts": null, "total": 17, "rank": 728}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We need tools that reflect the real world\u2014and the systems within it. We help uncover your blind spots, so you can make informed decisions to improve your resilience.", "company_site_link": "https://oneconcern.com/en/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 667, "country": "United States", "website": "http://www.russellreynolds.com/", "crunchbase": {"text": "d6bc5e08-ab8b-a906-ffdf-100057f1e523", "url": "https://www.crunchbase.com/organization/russell-reynolds-associates"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/russell-reynolds-associates"], "stage": "Unknown", "name": "Russell Reynolds Associates", "patent_name": "russell reynolds associates", "continent": "North America", "local_logo": "russell_reynolds_associates.png", "aliases": "Russell Reynolds Associates Inc", "permid_links": [{"text": 4296637377, "url": "https://permid.org/1-4296637377"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Russell Reynolds Associates is a consultancy firm that recruits and assesses senior-level executives for commercial enterprises.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 41, "rank": 1046}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Russell Reynolds Associates (RRA) is a management consulting firm. Established in 1969, the firm assists international and domestic companies develop leaders, assess business processes, and recruit new executives. It provides leadership advisory and executive recruiting services.", "wikipedia_link": "https://en.wikipedia.org/wiki/Russell_Reynolds_Associates", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2839, "country": "United States", "website": "https://www.westonsolutions.com/", "crunchbase": {"text": "4deb32f2-3271-425e-91bd-0c2bc7c9d171", "url": "https://www.crunchbase.com/organization/weston-solutions"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/weston-solutions-inc-"], "stage": "Unknown", "name": "Weston Solutions Holdings Inc", "patent_name": "weston solutions holdings inc", "continent": "North America", "local_logo": "weston_solutions_holdings_inc.png", "aliases": "Weston; Weston Solutions; Weston Solutions, Inc", "permid_links": [{"text": 5000073961, "url": "https://permid.org/1-5000073961"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Weston Solutions is an environmental consulting company located in West Chester.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [2, 3, 1, 1, 3, 0, 2, 2, 1, 1, 0], "total": 16, "isTopResearch": false, "rank": 847}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 41, "rank": 1046}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Weston is a premier provider of environmental and infrastructure support services serving federal, state and local government, and industrial, utility, and commercial clients. Our singular focus is on understanding our clients\u2019 business demands and applying our greatest capabilities to solve their most complex challenges. With an unwavering pledge to our clients and the environment, we continue in the tradition of Weston\u2019s heritage.", "company_site_link": "https://www.westonsolutions.com/about/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 64, "country": "United States", "website": "http://www.datavisor.com/", "crunchbase": {"text": "55f73465-b8c1-a095-8f31-3c03e72b5c13", "url": "https://www.crunchbase.com/organization/datavisor"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/datavisor"], "stage": "Growth", "name": "Datavisor", "patent_name": "datavisor", "continent": "North America", "local_logo": "datavisor.png", "aliases": "Datavisor; Datavisor, Inc", "permid_links": [{"text": 5046722418, "url": "https://permid.org/1-5046722418"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "DataVisor is a fraud detection company powered by transformational AI technology.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Active learning (machine learning)", "field_count": 1}], "clusters": [{"cluster_id": 26042, "cluster_count": 1}, {"cluster_id": 10454, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 127, "referenced_count": 5}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 163, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 792, "referenced_count": 1}], "tasks": [{"referent": "adversarial", "task_count": 1}, {"referent": "feature_selection", "task_count": 1}, {"referent": "active_learning", "task_count": 1}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "neural_architecture_search", "method_count": 1}, {"referent": "sabn", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 2, 1, 3, 2, 0, 0, 1, 0, 0, 0], "total": 9, "isTopResearch": false, "rank": 958}, "ai_publications": {"counts": [0, 2, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 4, 5, 12, 17, 15, 24, 20, 13, 0], "total": 110, "isTopResearch": false, "rank": 490}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0.0, 4.0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 36.666666666666664, "isTopResearch": false, "rank": 148}}, "patents": {"ai_patents": {"counts": [0, 1, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 10, 0, 0, 20, 10, 0, 0, 0, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 157}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 207}, "Telecommunications": {"counts": [0, 1, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 277}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 41, "rank": 1046}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "DataVisor delivers the world\u2019s most sophisticated AI-powered solutions to keep companies and their customers safe from fraud and abuse.", "company_site_link": "http://www.datavisor.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2905, "country": "United States", "website": "https://axientcorp.com/", "crunchbase": {"text": "85e81931-9ea5-4a15-b074-26ba55fd368e", "url": "https://www.crunchbase.com/organization/millennium-engineering-and-integration-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/millennium-engineering-and-integration"], "stage": "Unknown", "name": "Millennium Engineering & Integration Co", "patent_name": "millennium engineering & integration co", "continent": "North America", "local_logo": "millennium_engineering_&_integration_co.png", "aliases": "Millennium; Millennium Engineering; Millennium Engineering And Integration Company", "permid_links": [{"text": 4296190292, "url": "https://permid.org/1-4296190292"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Millennium Engineering and Integration Company is a solution provider in space, cyber, intelligence, aviation and healthcare markets.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Emerging technologies", "field_count": 1}], "clusters": [{"cluster_id": 5748, "cluster_count": 1}, {"cluster_id": 34395, "cluster_count": 1}, {"cluster_id": 45875, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "autonomous_flight_(dense_forest)", "task_count": 1}, {"referent": "robots", "task_count": 1}, {"referent": "future_prediction", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [14, 20, 27, 31, 31, 25, 21, 16, 1, 2, 0], "total": 188, "isTopResearch": false, "rank": 416}, "ai_publications": {"counts": [0, 0, 1, 3, 1, 0, 0, 2, 0, 0, 0], "total": 7, "isTopResearch": false, "rank": 481}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 1, 1, 3, 3, 7, 4, 3, 6, 0], "total": 28, "isTopResearch": false, "rank": 651}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 1, 3, 1, 0, 0, 2, 0, 0, 0], "total": 7, "isTopResearch": true, "rank": 142}, "citations_per_article": {"counts": [0, 0, 1.0, 0.3333333333333333, 3.0, 0, 0, 2.0, 0, 0, 0], "total": 4.0, "isTopResearch": false, "rank": 735}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 41, "rank": 1046}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services"}, {"cset_id": 18, "country": "China", "website": "http://cn.aispeech.com/", "crunchbase": {"text": "cc73603b-5a13-435b-dc72-e2225b87938c", "url": "https://www.crunchbase.com/organization/aispeech"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/al-speech-ltd"], "stage": "Mature", "name": "AISPEECH", "patent_name": "aispeech", "continent": "Asia", "local_logo": "aispeech.png", "aliases": "Aispeech Company, Ltd; Suzhou Aispeech Information Technology Co Ltd; \u601d\u5fc5\u9a70\u9a70; \u82cf\u5dde\u601d\u5fc5\u9a70\u4fe1\u606f\u79d1\u6280\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5064616271, "url": "https://permid.org/1-5064616271"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "AI Speech Ltd is a high-tech start up specialized in computer speech recognition, analysis.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Speech synthesis", "field_count": 1}, {"field_name": "Phrase", "field_count": 1}, {"field_name": "Word error rate", "field_count": 1}, {"field_name": "Vector projection", "field_count": 1}, {"field_name": "Speaker recognition", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 1422, "cluster_count": 3}, {"cluster_id": 222, "cluster_count": 2}, {"cluster_id": 5507, "cluster_count": 2}, {"cluster_id": 14903, "cluster_count": 1}, {"cluster_id": 1149, "cluster_count": 1}, {"cluster_id": 24364, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 50}, {"ref_CSET_id": 163, "referenced_count": 30}, {"ref_CSET_id": 786, "referenced_count": 8}, {"ref_CSET_id": 18, "referenced_count": 7}, {"ref_CSET_id": 1784, "referenced_count": 6}, {"ref_CSET_id": 3131, "referenced_count": 5}, {"ref_CSET_id": 115, "referenced_count": 4}, {"ref_CSET_id": 637, "referenced_count": 3}, {"ref_CSET_id": 184, "referenced_count": 3}, {"ref_CSET_id": 245, "referenced_count": 3}], "tasks": [{"referent": "classification_tasks", "task_count": 3}, {"referent": "accented_speech_recognition", "task_count": 2}, {"referent": "data_augmentation", "task_count": 2}, {"referent": "brain_decoding", "task_count": 2}, {"referent": "speaker_recognition", "task_count": 1}, {"referent": "computer_vision", "task_count": 1}, {"referent": "speaker_verification", "task_count": 1}, {"referent": "text_dependent_speaker_verification", "task_count": 1}, {"referent": "few_shot_learning", "task_count": 1}, {"referent": "natural_language_understanding", "task_count": 1}], "methods": [{"referent": "polya_gamma_augmentation", "method_count": 3}, {"referent": "topic_embeddings", "method_count": 2}, {"referent": "language_models", "method_count": 2}, {"referent": "hit_detector", "method_count": 1}, {"referent": "cgnn", "method_count": 1}, {"referent": "loss_functions", "method_count": 1}, {"referent": "softmax", "method_count": 1}, {"referent": "auto_classifier", "method_count": 1}, {"referent": "triplet_entropy_loss", "method_count": 1}, {"referent": "dueling_network", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 0, 2, 2, 4, 4, 0], "total": 13, "isTopResearch": false, "rank": 888}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 0, 2, 2, 4, 2, 0], "total": 11, "isTopResearch": false, "rank": 397}, "ai_publications_growth": {"counts": [], "total": 16.666666666666668, "isTopResearch": false, "rank": 124}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 1, 4, 5, 5, 26, 50, 20, 0], "total": 111, "isTopResearch": false, "rank": 487}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 2, 3, 1, 0], "total": 7, "isTopResearch": true, "rank": 117}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 1.0, 0, 0, 2.5, 13.0, 12.5, 10.0, 0], "total": 10.090909090909092, "isTopResearch": false, "rank": 532}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 40, "rank": 1052}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "\u5fc5\u9a70\u4e13\u6ce8\u4eba\u6027\u5316\u7684\u667a\u80fd\u8bed\u97f3\u4ea4\u4e92\u6280\u672f\uff0c\u4e3a\u4f01\u4e1a\u548c\u5f00\u53d1\u8005\u63d0\u4f9b\u81ea\u7136\u8bed\u8a00\u4ea4\u4e92\u89e3\u51b3\u65b9\u6848\uff0c\u5305\u62ecDUI\u5f00\u653e\u5e73\u53f0\u3001\u4f01\u4e1a\u7ea7\u667a\u80fd\u670d\u52a1\u3001\u4eba\u673a\u5bf9\u8bdd\u64cd\u4f5c\u7cfb\u7edf\u3001\u4eba\u5de5\u667a\u80fd\u82af\u7247\u6a21\u7ec4\u7b49\u3002", "company_site_link": "http://www.aispeech.com/index.php?m=content&c=index&a=lists&catid=23", "description_retrieval_date": "2021-03-16", "company_site_description_translation": "Bichi focuses on humanized intelligent voice interaction technology and provides natural language interaction solutions for enterprises and developers, including DUI open platform, enterprise-level intelligent services, human-computer dialogue operating system, artificial intelligence chip modules, etc."}, {"cset_id": 1420, "country": "United States", "website": "https://grabango.com/", "crunchbase": {"text": "a8c0308c-6bb5-081a-01ba-d4a1010373cc", "url": "https://www.crunchbase.com/organization/grabango"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/grabango"], "stage": "Growth", "name": "Grabango", "patent_name": "grabango", "continent": "North America", "local_logo": "grabango.png", "aliases": "Grabango Co", "permid_links": [{"text": 5056728880, "url": "https://permid.org/1-5056728880"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Grabango is a checkout-free technology for existing, large-scale grocery, and convenience stores.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": 0.0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 10, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0], "total": 2, "table": "industry", "rank": 284}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 39, "rank": 1053}, "ai_jobs": {"counts": null, "total": 11, "rank": 829}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Grabango is a free service offered by grocery and convenience stores. Grabango allows shoppers to skip the checkout line and simply walk out after scanning the code in their Grabango app.", "company_site_link": "https://grabango.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2408, "country": "United States", "website": "https://masco.com/", "crunchbase": {"text": "11578bd3-434b-0fc9-627b-bc80501b4bb9", "url": "https://www.crunchbase.com/organization/masco-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/masco-corporation"], "stage": "Mature", "name": "Masco Corp.", "patent_name": "masco corp.", "continent": "North America", "local_logo": "masco_corp.png", "aliases": "Masco; Masco Corporation", "permid_links": [{"text": 4295904477, "url": "https://permid.org/1-4295904477"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:MAS", "url": "https://www.google.com/finance/quote/mas:nyse"}], "market_full": [{"text": "DEU:MAS", "url": "https://www.google.com/finance/quote/deu:mas"}, {"text": "DUS:MSQ", "url": "https://www.google.com/finance/quote/dus:msq"}, {"text": "SAO:M1AS34", "url": "https://www.google.com/finance/quote/m1as34:sao"}, {"text": "GER:MSQX", "url": "https://www.google.com/finance/quote/ger:msqx"}, {"text": "MUN:MSQ", "url": "https://www.google.com/finance/quote/msq:mun"}, {"text": "MOEX:MAS-RM", "url": "https://www.google.com/finance/quote/mas-rm:moex"}, {"text": "BRN:MSQ", "url": "https://www.google.com/finance/quote/brn:msq"}, {"text": "NYQ:MAS", "url": "https://www.google.com/finance/quote/mas:nyq"}, {"text": "LSE:0JZ1", "url": "https://www.google.com/finance/quote/0jz1:lse"}, {"text": "STU:MSQ", "url": "https://www.google.com/finance/quote/msq:stu"}, {"text": "MEX:MAS*", "url": "https://www.google.com/finance/quote/mas*:mex"}, {"text": "NYSE:MAS", "url": "https://www.google.com/finance/quote/mas:nyse"}, {"text": "BER:MSQ", "url": "https://www.google.com/finance/quote/ber:msq"}, {"text": "HAN:MSQ", "url": "https://www.google.com/finance/quote/han:msq"}, {"text": "FRA:MSQ", "url": "https://www.google.com/finance/quote/fra:msq"}, {"text": "ASE:MAS", "url": "https://www.google.com/finance/quote/ase:mas"}], "crunchbase_description": "Masco Corporation is one of the world's largest manufacturers of brand name products for the home improvement.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 1, 2, 0, 3, 1, 2, 1, 1, 0, 0], "total": 11, "isTopResearch": false, "rank": 924, "fortune500_rank": 321}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 39, "rank": 1053, "fortune500_rank": 462}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002, "fortune500_rank": 437}}, "sector": "Consumer Cyclicals", "business_sector": "Cyclical Consumer Products", "wikipedia_description": "Masco Corporation is a manufacturer of products for the home improvement and new home construction markets. Comprising more than 20 companies, the Masco conglomerate operates nearly 60 manufacturing facilities in the United States and over 20 in other parts of the world. Since 1969 it trades on the NYSE. Under the leadership of Richard Manoogian, the company grew exponentially and subsequently joined the Fortune 500 list of largest U.S. corporations.", "wikipedia_link": "https://en.wikipedia.org/wiki/Masco", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 80, "country": "China", "website": "dorabot.com", "crunchbase": {"text": "704aba91-b34f-777c-995d-ecfa3b8a2a44", "url": "https://www.crunchbase.com/organization/dorabot"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/dorabot-inc."], "stage": "Growth", "name": "Dorabot", "patent_name": "dorabot", "continent": "Asia", "local_logo": "dorabot.png", "aliases": "Dorabot Inc; Shenzhen Dorabot Inc; \u6df1\u5733\u84dd\u80d6\u5b50\u673a\u5668\u667a\u80fd\u6709\u9650\u516c\u53f8; \u84dd\u80d6\u5b50\u673a\u5668\u667a\u80fd", "permid_links": [{"text": 5061637723, "url": "https://permid.org/1-5061637723"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Dorabot is an AI-powered robotic solution provider for logistics, express delivery, smart manufacturing, retailing and other industries.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Autonomous system (mathematics)", "field_count": 1}], "clusters": [{"cluster_id": 13150, "cluster_count": 3}, {"cluster_id": 26531, "cluster_count": 2}, {"cluster_id": 3647, "cluster_count": 2}, {"cluster_id": 4455, "cluster_count": 1}, {"cluster_id": 21314, "cluster_count": 1}, {"cluster_id": 39641, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 4}, {"ref_CSET_id": 23, "referenced_count": 3}, {"ref_CSET_id": 1784, "referenced_count": 2}, {"ref_CSET_id": 786, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 1383, "referenced_count": 1}, {"ref_CSET_id": 421, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}, {"ref_CSET_id": 245, "referenced_count": 1}], "tasks": [{"referent": "motion_planning", "task_count": 2}, {"referent": "robotic_grasping", "task_count": 2}, {"referent": "robots", "task_count": 2}, {"referent": "autonomous_driving", "task_count": 1}, {"referent": "image_manipulation", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "reinforcement_learning", "method_count": 2}, {"referent": "multigrain", "method_count": 1}, {"referent": "xception", "method_count": 1}, {"referent": "sniper", "method_count": 1}, {"referent": "automl", "method_count": 1}, {"referent": "carafe", "method_count": 1}, {"referent": "ggs_nns", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 3, 1, 1, 2, 3, 0, 2, 0], "total": 12, "isTopResearch": false, "rank": 907}, "ai_publications": {"counts": [0, 0, 0, 3, 1, 1, 2, 3, 0, 1, 0], "total": 11, "isTopResearch": false, "rank": 397}, "ai_publications_growth": {"counts": [], "total": -25.0, "isTopResearch": false, "rank": 1365}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [0, 0, 0, 4, 3, 17, 54, 84, 100, 74, 0], "total": 336, "isTopResearch": false, "rank": 315}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 3, 1, 1, 1, 2, 0, 1, 0], "total": 9, "isTopResearch": true, "rank": 124}, "citations_per_article": {"counts": [0, 0, 0, 1.3333333333333333, 3.0, 17.0, 27.0, 28.0, 0, 74.0, 0], "total": 30.545454545454547, "isTopResearch": false, "rank": 189}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0], "total": 6, "table": null, "rank": 487}, "ai_patents_growth": {"counts": [], "total": -90.0, "table": null, "rank": 1581}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 50, 10, 0, 0, 0, 0], "total": 60, "table": null, "rank": 487}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 165}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 4, 0, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 347}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 39, "rank": 1053}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Dorabot, founded in 2014, develops automated warehouse solutions using cutting-edge AI and robotics, including computer vision, motion planning, mobility and deep learning, etc. Covering induction, sorting, transportation and loading, we provide end-to-end solutions for logistics, express, e-commerce, seaports,", "company_site_link": "https://www.dorabot.com/about-us", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1862, "country": "India", "website": "https://iocl.com/", "crunchbase": {"text": " 8b795b38-bc88-4cc0-82be-ca5964d41b81", "url": " https://www.crunchbase.com/organization/indian-oil-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/indian-oil-corp-limited"], "stage": "Mature", "name": "Indian Oil", "patent_name": "Indian Oil", "continent": "Asia", "local_logo": null, "aliases": "Indian Oil; Indian Oil Corporation; Indian Oil Corporation Limited", "permid_links": [{"text": 4295872661, "url": "https://permid.org/1-4295872661"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "NSI:IOC", "url": "https://www.google.com/finance/quote/IOC:NSI"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [{"cluster_id": 92942, "cluster_count": 1}], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [30, 47, 55, 56, 53, 44, 51, 62, 61, 56, 5], "total": 520, "isTopResearch": false, "rank": 272, "sp500_rank": 182}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "sp500_rank": 321}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 1, 1, 3, 2, 1, 1, 3, 0, 0], "total": 12, "isTopResearch": false, "rank": 740, "sp500_rank": 305}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0.0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 12.0, "isTopResearch": false, "rank": 470, "sp500_rank": 163}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 39, "rank": 1053, "sp500_rank": 344}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153, "sp500_rank": 356}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 704, "country": "United States", "website": "http://swiftnav.com", "crunchbase": {"text": "a1d869a8-ee7b-9a09-6afe-45a6bdae4a9d", "url": "https://www.crunchbase.com/organization/swift-navigation-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/swift-navigation"], "stage": "Mature", "name": "Swift Navigation", "patent_name": "swift navigation", "continent": "North America", "local_logo": "swift_navigation.png", "aliases": "Swift Navigation Inc; Swift Navigation, Inc", "permid_links": [{"text": 5043459240, "url": "https://permid.org/1-5043459240"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Swift Navigation is a technology company that provides precise positioning solutions for automotive advanced driver-assistance systems.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 7420, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 800, "referenced_count": 1}], "tasks": [{"referent": "srl", "task_count": 1}, {"referent": "safe_reinforcement_learning", "task_count": 1}], "methods": [{"referent": "reinforcement_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0], "total": 5, "isTopResearch": false, "rank": 1063}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0], "total": 3, "isTopResearch": false, "rank": 857}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 39, "rank": 1053}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Skylark is a wide-area, precision GNSS corrections service that delivers real-time, high-precision positioning seamlessly across continents. Skylark is an ever-expanding service that is currently available across the United States, Europe, South Korea, Japan and Australia.", "company_site_link": "http://swiftnav.com", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2522, "country": "United States", "website": "https://www.uhsinc.com/", "crunchbase": {"text": "006211f2-7254-4586-3a0b-effd696cce1b", "url": "https://www.crunchbase.com/organization/universal-health-services"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/nyuhsinc"], "stage": "Mature", "name": "Universal Health Services, Inc.", "patent_name": "universal health services, inc.", "continent": "North America", "local_logo": "universal_health_services,_inc.png", "aliases": "Uhs; Universal Health Services; Universal Health Services Inc; Universal Health Services, Inc. (Uhs)", "permid_links": [{"text": 4295905199, "url": "https://permid.org/1-4295905199"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:UHS", "url": "https://www.google.com/finance/quote/nyse:uhs"}], "market_full": [{"text": "BRN:UHS", "url": "https://www.google.com/finance/quote/brn:uhs"}, {"text": "DEU:UHS", "url": "https://www.google.com/finance/quote/deu:uhs"}, {"text": "DUS:UHS", "url": "https://www.google.com/finance/quote/dus:uhs"}, {"text": "NYSE:UHS", "url": "https://www.google.com/finance/quote/nyse:uhs"}, {"text": "STU:UHS", "url": "https://www.google.com/finance/quote/stu:uhs"}, {"text": "ASE:UHS", "url": "https://www.google.com/finance/quote/ase:uhs"}, {"text": "SAO:U1HS34", "url": "https://www.google.com/finance/quote/sao:u1hs34"}, {"text": "LSE:0LJL", "url": "https://www.google.com/finance/quote/0ljl:lse"}, {"text": "PKC:UKID", "url": "https://www.google.com/finance/quote/pkc:ukid"}, {"text": "BER:UHS", "url": "https://www.google.com/finance/quote/ber:uhs"}, {"text": "NYQ:UHS", "url": "https://www.google.com/finance/quote/nyq:uhs"}, {"text": "MCX:UHS-RM", "url": "https://www.google.com/finance/quote/mcx:uhs-rm"}, {"text": "MUN:UHS", "url": "https://www.google.com/finance/quote/mun:uhs"}, {"text": "MEX:UHS", "url": "https://www.google.com/finance/quote/mex:uhs"}, {"text": "FRA:UHS", "url": "https://www.google.com/finance/quote/fra:uhs"}], "crunchbase_description": "Universal Health Services, Inc. (UHS) is one of the nation's largest and most respected healthcare management companies.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [2, 4, 2, 2, 0, 1, 3, 6, 3, 2, 0], "total": 25, "isTopResearch": false, "rank": 754, "fortune500_rank": 269}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 38, "rank": 1058, "fortune500_rank": 463}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048, "fortune500_rank": 447}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": "Universal Health Services (UHS) is an American Fortune 500 company that provides hospital and healthcare services, based in King of Prussia, Pennsylvania. In 2019, its annual revenues were $11.37 billion.", "wikipedia_link": "https://en.wikipedia.org/wiki/Universal_Health_Services", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2751, "country": "Australia", "website": "https://www.austal.com/", "crunchbase": {"text": "30f21579-65c3-69f4-338a-3ebedf79db34", "url": "https://www.crunchbase.com/organization/austal"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/austal-"], "stage": "Mature", "name": "Austal Ltd", "patent_name": "austal ltd", "continent": "Oceania", "local_logo": "austal_ltd.png", "aliases": "Austal", "permid_links": [{"text": 4295857564, "url": "https://permid.org/1-4295857564"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [{"text": "PKC:AUTLF", "url": "https://www.google.com/finance/quote/autlf:pkc"}, {"text": "HAM:LX6", "url": "https://www.google.com/finance/quote/ham:lx6"}, {"text": "STU:LX6", "url": "https://www.google.com/finance/quote/lx6:stu"}, {"text": "FRA:LX6", "url": "https://www.google.com/finance/quote/fra:lx6"}, {"text": "MUN:LX6", "url": "https://www.google.com/finance/quote/lx6:mun"}, {"text": "BER:LX6", "url": "https://www.google.com/finance/quote/ber:lx6"}, {"text": "DEU:ASB", "url": "https://www.google.com/finance/quote/asb:deu"}, {"text": "ASX:ASB", "url": "https://www.google.com/finance/quote/asb:asx"}, {"text": "BRN:LX6", "url": "https://www.google.com/finance/quote/brn:lx6"}], "crunchbase_description": "Austal is a shipbuilding platform that designs, construct, and support revolutionary defense and commercial vessels.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Surrogate model", "field_count": 1}], "clusters": [{"cluster_id": 110661, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 127, "referenced_count": 3}, {"ref_CSET_id": 734, "referenced_count": 2}, {"ref_CSET_id": 1438, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 112, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}, {"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 6, "referenced_count": 1}, {"ref_CSET_id": 345, "referenced_count": 1}], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1], "total": 2, "isTopResearch": false, "rank": 881}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 1.0, 0], "total": 2.0, "isTopResearch": false, "rank": 823}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 38, "rank": 1058}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "Austal is an Australian-based global ship building company and defence prime contractor that specialises in the design, construction and support of defence and commercial vessels. Austal's product range includes naval vessels, high-speed passenger and vehicle ferries, and specialist utility vessels, such as offshore windfarm for turtles and crew transfer vessels.", "wikipedia_link": "https://en.wikipedia.org/wiki/Austal", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2871, "country": "United States", "website": "https://www.chugach.com/", "crunchbase": {"text": "64ec2f83-9eda-ac16-a906-5cc4be82d86f", "url": "https://www.crunchbase.com/organization/chugach-alaska-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/chugach"], "stage": "Unknown", "name": "Chugach Alaska Corp", "patent_name": "chugach alaska corp", "continent": "North America", "local_logo": "chugach_alaska_corp.png", "aliases": "Chugach; Chugach Alaska Corporation", "permid_links": [{"text": 4297332008, "url": "https://permid.org/1-4297332008"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "A unique corporation, dedicated to serving our clients and our people.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 38, "rank": 1058}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Chugach Alaska Corporation, or CAC, is one of thirteen Alaska Native Regional Corporations created under the Alaska Native Claims Settlement Act of 1971 (ANCSA) in settlement of aboriginal land claims. Chugach Alaska Corporation was incorporated in Alaska on June 23, 1972. Headquartered in Anchorage, Alaska, Chugach Alaska Corporation is a for-profit corporation with over 2,200 Alaska Native shareholders primarily of Chugach Alutiiq, Eyak, and Tlingit descent.", "wikipedia_link": "https://en.wikipedia.org/wiki/Chugach_Alaska_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 3020, "country": "United States", "website": "http://cymstar.com/", "crunchbase": {"text": "d646b036-0021-4fca-ad88-773acf752a76", "url": "https://www.crunchbase.com/organization/cymstar-llc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/cymstar-llc"], "stage": "Unknown", "name": "CymSTAR LLC", "patent_name": "cymstar llc", "continent": "North America", "local_logo": "cymstar_llc.png", "aliases": "Cymstar; Cymstar L L C; Cymstar, Llc", "permid_links": [{"text": 4297183554, "url": "https://permid.org/1-4297183554"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "CymSTAR is a defense & space company offering simulation solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 38, "rank": 1058}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "CymSTAR LLC and CymSTAR Services LLC share the same management and engineering core team of experienced professionals with over 25 years in the Training and Simulation industry. Together, we specialize in all aspects of commercial and military Simulation and Training Systems.", "company_site_link": "http://cymstar.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2903, "country": "United States", "website": "www.aaski.com/", "crunchbase": {"text": "5c880294-cecd-a6cf-b83d-bb3cb9eb8a89", "url": "https://www.crunchbase.com/organization/aaski-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aaski-technology"], "stage": "Unknown", "name": "Aaski Technology Inc", "patent_name": "aaski technology inc", "continent": "North America", "local_logo": "aaski_technology_inc.png", "aliases": "Aaski; Aaski Technologyn", "permid_links": [{"text": 5013293733, "url": "https://permid.org/1-5013293733"}], "parent_info": "Mag Aerospace (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "AASKI Technology provides professional services for planning, designing, implementing, securing, and managing highly complex.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 4, 3, 3, 3, 0, 0, 0], "total": 13, "isTopResearch": false, "rank": 888}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 38, "rank": 1058}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We provide professional services for planning, designing, implementing, securing, and managing highly complex, mission-critical networks and systems.", "company_site_link": "https://www.aaski.com/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1439, "country": "Chile", "website": "http://www.notco.com/", "crunchbase": {"text": "436a2d74-4ec7-ce22-d8f5-94231585d2b1", "url": "https://www.crunchbase.com/organization/the-not-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/the-not-co-"], "stage": "Mature", "name": "NotCo", "patent_name": "notco", "continent": "South America", "local_logo": "notco.png", "aliases": "Not Co Ltd; The Not Company; The Not Company Spa", "permid_links": [{"text": 5069474968, "url": "https://permid.org/1-5069474968"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "NotCo is a food technology company that produces plant-based meat and dairy substitutes.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 37, "rank": 1063}, "ai_jobs": {"counts": null, "total": 13, "rank": 790}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Eating animal products harms our planet. It's a fact. So our mission is simple: to take animals out of food production while never, ever compromising on taste.", "company_site_link": "https://notco.com/us/about-us", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2775, "country": "United States", "website": "https://www.ecc.net/", "crunchbase": {"text": "fc9bd837-9d53-4063-a35f-12a0c5f72725", "url": "https://www.crunchbase.com/organization/environmental-chemical"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/ecc"], "stage": "Unknown", "name": "Environmental Chemical Corp/Burlingame CA", "patent_name": "environmental chemical corp/burlingame ca", "continent": "North America", "local_logo": "environmental_chemical_corp_burlingame_ca.png", "aliases": "Ecc; Environmental Chemical Corporation", "permid_links": [{"text": 4297503286, "url": "https://permid.org/1-4297503286"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "ECC is an employee-owned company that serves in design-build, construction.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 37, "rank": 1063}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Personal & Household Products & Services"}, {"cset_id": 2811, "country": "Bahrain", "website": "https://www.bapco.net/", "crunchbase": {"text": "a32a73e4-c44b-a5a6-ba26-88bbea9791d0", "url": "https://www.crunchbase.com/organization/bahrain-petroleum-company"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bapcobahrain"], "stage": "Unknown", "name": "Bahrain Petroleum Co", "patent_name": "bahrain petroleum co", "continent": "Asia", "local_logo": null, "aliases": "Bahrain Petroleum Company; Bapco", "permid_links": [{"text": 5050898373, "url": "https://permid.org/1-5050898373"}], "parent_info": "Nogaholding", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Bapco is a regional oil and gas leader and an important contributor to modern Bahrain.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 1, 2, 2, 1, 2, 0, 6, 2, 0], "total": 17, "isTopResearch": false, "rank": 839}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 37, "rank": 1063}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "The Bahrain Petroleum Company (BAPCO) is an integrated national oil company of Bahrain.", "wikipedia_link": "https://en.wikipedia.org/wiki/Bahrain_Petroleum_Company", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 13, "country": "China", "website": "https://aibee.com/", "crunchbase": {"text": "33885a3e-b133-4557-a1cc-64e2d5e2ead3", "url": "https://www.crunchbase.com/organization/alibee"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aibee"], "stage": "Growth", "name": "Aibee", "patent_name": "aibee", "continent": "Asia", "local_logo": "aibee.png", "aliases": "Aibee Beijing Intelligent Technology Co Ltd; Aibee Inc; \u7231\u7b14\u667a\u80fd; \u7231\u7b14\u667a\u80fd\u79d1\u6280\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5060558453, "url": "https://permid.org/1-5060558453"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Aibee is an AI startup that develops speech recognition, big data analysis, and natural language processing technologies.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Face (geometry)", "field_count": 2}, {"field_name": "Probabilistic logic", "field_count": 1}, {"field_name": "Pose", "field_count": 1}, {"field_name": "Discriminative model", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Feature (computer vision)", "field_count": 1}, {"field_name": "Boosting (machine learning)", "field_count": 1}, {"field_name": "Relevance (information retrieval)", "field_count": 1}, {"field_name": "Stereo camera", "field_count": 1}], "clusters": [{"cluster_id": 23892, "cluster_count": 4}, {"cluster_id": 4634, "cluster_count": 3}, {"cluster_id": 5070, "cluster_count": 2}, {"cluster_id": 1123, "cluster_count": 2}, {"cluster_id": 16940, "cluster_count": 1}, {"cluster_id": 19977, "cluster_count": 1}, {"cluster_id": 10002, "cluster_count": 1}, {"cluster_id": 38398, "cluster_count": 1}, {"cluster_id": 214, "cluster_count": 1}, {"cluster_id": 8919, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 47}, {"ref_CSET_id": 163, "referenced_count": 45}, {"ref_CSET_id": 87, "referenced_count": 34}, {"ref_CSET_id": 161, "referenced_count": 11}, {"ref_CSET_id": 223, "referenced_count": 10}, {"ref_CSET_id": 245, "referenced_count": 9}, {"ref_CSET_id": 13, "referenced_count": 8}, {"ref_CSET_id": 112, "referenced_count": 8}, {"ref_CSET_id": 6, "referenced_count": 8}, {"ref_CSET_id": 133, "referenced_count": 5}], "tasks": [{"referent": "face_recognition", "task_count": 4}, {"referent": "face_anti_spoofing", "task_count": 4}, {"referent": "system_identification", "task_count": 3}, {"referent": "classification", "task_count": 3}, {"referent": "pedestrian_detection", "task_count": 2}, {"referent": "presentation_attack_detection", "task_count": 2}, {"referent": "robots", "task_count": 2}, {"referent": "trajectory_prediction", "task_count": 2}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "community_detection", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 3}, {"referent": "ctc_loss", "method_count": 3}, {"referent": "fast_ocr", "method_count": 3}, {"referent": "fcn", "method_count": 2}, {"referent": "hit_detector", "method_count": 2}, {"referent": "convolutions", "method_count": 2}, {"referent": "double_q_learning", "method_count": 2}, {"referent": "(2+1)d_convolution", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "nas_fcos", "method_count": 2}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 4, 4, 5, 7, 1, 0], "total": 21, "isTopResearch": false, "rank": 797}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 4, 4, 5, 6, 1, 0], "total": 20, "isTopResearch": false, "rank": 301}, "ai_publications_growth": {"counts": [], "total": -12.777777777777777, "isTopResearch": false, "rank": 1283}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 2, 3, 4, 7, 1, 0], "total": 17, "isTopResearch": false, "rank": 87}, "citation_counts": {"counts": [0, 0, 0, 0, 1, 16, 162, 660, 1240, 1230, 43], "total": 3352, "isTopResearch": false, "rank": 94}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 4, 4, 5, 6, 1, 0], "total": 20, "isTopResearch": true, "rank": 139}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 4.0, 40.5, 132.0, 206.66666666666666, 1230.0, 0], "total": 167.6, "isTopResearch": false, "rank": 17}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 19, 14, 2, 0], "total": 36, "table": null, "rank": 252}, "ai_patents_growth": {"counts": [], "total": 1800.0, "table": null, "rank": 2}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 190, 140, 20, 0], "total": 360, "table": null, "rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 2, 0, 0], "total": 4, "table": "industry", "rank": 233}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 14, 12, 2, 0], "total": 28, "table": "application", "rank": 158}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 243}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 36, "rank": 1066}, "ai_jobs": {"counts": null, "total": 15, "rank": 754}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "The name Aibee is derived from AI2B. The company was founded by Dr. Yuanqing Lin in November 2017. It aims to upgrade the vertical industries through AI total solutions.\nAibee builds the closed loop of algorithms and data, and it uses the loop to constantly refine the AI technologies until perfect performance. Focusing on the core value of vertical industries, Aibee develops solutions that may include computer vision, speech recognition, natural language understanding, big data analytics and more. Aibee is missioned to significantly upgrade vertical industries by providing AI total solutions.", "company_site_link": "https://aibee.com/en/aboutus.html", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 2739, "country": "United States", "website": "http://www.anser.org/", "crunchbase": {"text": "9b5d8ac7-a4dd-dee9-387c-f05abe314a11", "url": "https://www.crunchbase.com/organization/anser-corp"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/analytic-services-inc-"], "stage": "Unknown", "name": "Analytic Services Inc", "patent_name": "analytic services inc", "continent": "North America", "local_logo": "analytic_services_inc.png", "aliases": "Analytical Services; Anser; Anser Corp", "permid_links": [{"text": 4297392668, "url": "https://permid.org/1-4297392668"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "ANSER is a public service research institute organized as a not-for-profit corporation for several mission areas and the Homeland Security.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Stigmergy", "field_count": 1}], "clusters": [{"cluster_id": 27148, "cluster_count": 1}, {"cluster_id": 34950, "cluster_count": 1}, {"cluster_id": 42318, "cluster_count": 1}, {"cluster_id": 82660, "cluster_count": 1}, {"cluster_id": 7483, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 815, "referenced_count": 1}], "tasks": [{"referent": "environmental_sound_classification", "task_count": 1}, {"referent": "land_cover_classification", "task_count": 1}, {"referent": "lulc", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "remote_sensing", "task_count": 1}], "methods": [{"referent": "non_parametric_regression", "method_count": 1}, {"referent": "clustering", "method_count": 1}, {"referent": "non_parametric_classification", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [48, 44, 44, 44, 23, 30, 38, 31, 33, 4, 0], "total": 339, "isTopResearch": false, "rank": 340}, "ai_publications": {"counts": [1, 0, 1, 0, 0, 0, 0, 1, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 268}, "citation_counts": {"counts": [10, 6, 10, 7, 10, 15, 14, 19, 14, 29, 0], "total": 134, "isTopResearch": false, "rank": 456}, "cv_pubs": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [10.0, 0, 10.0, 0, 0, 0, 0, 19.0, 14.0, 0, 0], "total": 33.5, "isTopResearch": false, "rank": 163}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 36, "rank": 1066}, "ai_jobs": {"counts": null, "total": 11, "rank": 829}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Analytic Services, Inc., more known by its acronym ANSER, is a not-for-profit corporation that provides services, largely to the U.S. federal government, in several mission areas. Its headquarters are in Falls Church, Virginia.", "wikipedia_link": "https://en.wikipedia.org/wiki/ANSER", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 165, "country": "United States", "website": "https://mindstronghealth.com/", "crunchbase": {"text": "f6f6d477-1447-b5fe-495c-a9256090f39b", "url": "https://www.crunchbase.com/organization/mindstrong-health"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mindstrong"], "stage": "Growth", "name": "Mindstrong Health", "patent_name": "mindstrong health", "continent": "North America", "local_logo": "mindstrong_health.png", "aliases": "Mindstrong; Mindstrong Inc; Mindstrong, Inc", "permid_links": [{"text": 5051774944, "url": "https://permid.org/1-5051774944"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Mindstrong is a virtual mental health platform.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 2178, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "drug_discovery", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 4, 11, 12, 7, 4, 1, 0], "total": 40, "isTopResearch": false, "rank": 658}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 3, 3, 0], "total": 10, "isTopResearch": false, "rank": 760}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 10.0, "isTopResearch": false, "rank": 535}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [20, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [2, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 223}, "Measuring_and_Testing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 36, "rank": 1066}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We're building a platform used by our in-house care teams to deliver care coordination and evidence-based therapy and psychiatry in structured, goal-oriented sessions through our own technology.", "company_site_link": "https://mindstrong.com/about-us/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 142, "country": "United States", "website": "https://kodiak.ai/", "crunchbase": {"text": "41c00557-2ffd-4b34-89b5-0a5e66a72145", "url": "https://www.crunchbase.com/organization/kodiak-robotics-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kodiakrobotics"], "stage": "Growth", "name": "Kodiak Robotics", "patent_name": "kodiak robotics", "continent": "North America", "local_logo": "kodiak_robotics.png", "aliases": "Kodiak; Kodiak Robotics Inc; Kodiak Robotics, Inc; Kodiak.Ai", "permid_links": [{"text": 5064692181, "url": "https://permid.org/1-5064692181"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Kodiak Robotics develops autonomous technology for long-haul trucking.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 36, "rank": 1066}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Self-driving long-haul trucks are poised to make the industry safer and more efficient, while improving working conditions for truckers. That\u2019s why our team of industry veterans is proud to be leading the shipping revolution.", "company_site_link": "https://kodiak.ai/company/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 140, "country": "United States", "website": "http://www.kneron.us", "crunchbase": {"text": "3e670c29-f761-45c6-b6ad-7c47c526ab29", "url": "https://www.crunchbase.com/organization/kneron"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/kneron"], "stage": "Growth", "name": "Kneron", "patent_name": "kneron", "continent": "North America", "local_logo": "kneron.png", "aliases": "Kneron Inc; Kneron, Inc; Shenzhen Kneron Artificial Intelligence Co Ltd; \u6df1\u5733\u5e02\u8010\u80fd\u4eba\u5de5\u667a\u80fd\u6709\u9650\u516c\u53f8; \u8010\u80fd", "permid_links": [{"text": 5059048766, "url": "https://permid.org/1-5059048766"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Kneron develops an application-specific integrated circuit and software that offers artificial intelligence-based tools.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Lane departure warning system", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 15284, "cluster_count": 1}, {"cluster_id": 1621, "cluster_count": 1}, {"cluster_id": 17710, "cluster_count": 1}, {"cluster_id": 3281, "cluster_count": 1}, {"cluster_id": 8451, "cluster_count": 1}, {"cluster_id": 5070, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 11}, {"ref_CSET_id": 87, "referenced_count": 9}, {"ref_CSET_id": 163, "referenced_count": 7}, {"ref_CSET_id": 184, "referenced_count": 3}, {"ref_CSET_id": 37, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 161, "referenced_count": 2}, {"ref_CSET_id": 133, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 327, "referenced_count": 1}], "tasks": [{"referent": "building_extraction", "task_count": 2}, {"referent": "image_recognition", "task_count": 1}, {"referent": "vehicle_detection", "task_count": 1}, {"referent": "image_enhancement", "task_count": 1}, {"referent": "home_activity_monitoring", "task_count": 1}, {"referent": "variable_selection", "task_count": 1}, {"referent": "neural_network_compression", "task_count": 1}, {"referent": "network_pruning", "task_count": 1}, {"referent": "image_to_image_translation", "task_count": 1}, {"referent": "denoising", "task_count": 1}], "methods": [{"referent": "1d_cnn", "method_count": 2}, {"referent": "convolutional_neural_networks", "method_count": 2}, {"referent": "adamw", "method_count": 1}, {"referent": "(2+1)d_convolution", "method_count": 1}, {"referent": "copy_paste", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "softplus", "method_count": 1}, {"referent": "schnet", "method_count": 1}, {"referent": "leaky_relu", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 5, 1, 1, 3, 5, 2, 0], "total": 18, "isTopResearch": false, "rank": 825}, "ai_publications": {"counts": [0, 0, 0, 0, 2, 0, 0, 3, 0, 1, 0], "total": 6, "isTopResearch": false, "rank": 514}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 3, 19, 28, 40, 54, 43, 1], "total": 188, "isTopResearch": false, "rank": 392}, "cv_pubs": {"counts": [0, 0, 0, 0, 2, 0, 0, 2, 0, 1, 0], "total": 5, "isTopResearch": true, "rank": 287}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 1.5, 0, 0, 13.333333333333334, 0, 43.0, 0], "total": 31.333333333333332, "isTopResearch": false, "rank": 184}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 8, 2, 13, 2, 0, 2, 0, 0], "total": 27, "table": null, "rank": 283}, "ai_patents_growth": {"counts": [], "total": 121.79487179487178, "table": null, "rank": 92}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 80, 20, 130, 20, 0, 20, 0, 0], "total": 270, "table": null, "rank": 283}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 4, 1, 3, 0, 0, 1, 0, 0], "total": 9, "table": "industry", "rank": 268}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 239}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 1, 0, 4, 1, 0, 1, 0, 0], "total": 7, "table": "application", "rank": 288}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 36, "rank": 1066}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Established in San Diego in 2015, Kneron is a leading provider of edge AI solutions. It is dedicated to the design and development of integrated software and hardware edge AI solutions for AIoT, smart home, smart surveillance, security, mobile devices, robotics, and industrial control.", "company_site_link": "https://www.kneron.com/about/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2810, "country": "United States", "website": "http://www.carahsoft.com/", "crunchbase": {"text": "325600a4-1ca9-fd8d-5340-f3a7761279f9", "url": "https://www.crunchbase.com/organization/carahsoft-technology"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/carahsoft"], "stage": "Unknown", "name": "Carahsoft Technology Corp", "patent_name": "carahsoft technology corp", "continent": "North America", "local_logo": "carahsoft_technology_corp.png", "aliases": "Carahsoft; Carahsoft Technology; Carahsoft Technology Corp", "permid_links": [{"text": 4297324351, "url": "https://permid.org/1-4297324351"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Carahsoft Technology Corp is IT solutions provider delivering best-of-breed hardware, software, and support solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 36, "rank": 1066}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": "Carahsoft, founded in 2004, is a privately held business located in Reston, VA that sells IT hardware, software and consulting services to federal, state and local governments, and educational institutions.", "wikipedia_link": "https://en.wikipedia.org/wiki/Carahsoft", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2307, "country": "United States", "website": "http://www.equityapartments.com/", "crunchbase": {"text": "5b33c70a-3446-a19d-4392-2cd5ede278f1", "url": "https://www.crunchbase.com/organization/equity-residential"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/equity-residential"], "stage": "Mature", "name": "Equity Residential", "patent_name": "equity residential", "continent": "North America", "local_logo": "equity_residential.png", "aliases": "Equity Apartments", "permid_links": [{"text": 4295903946, "url": "https://permid.org/1-4295903946"}], "parent_info": "Erp Operating Ltd Partnership", "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:EQR", "url": "https://www.google.com/finance/quote/eqr:nyse"}], "market_full": [{"text": "UAX:EQR", "url": "https://www.google.com/finance/quote/eqr:uax"}, {"text": "NYSE:EQR", "url": "https://www.google.com/finance/quote/eqr:nyse"}, {"text": "LSE:0IIB", "url": "https://www.google.com/finance/quote/0iib:lse"}, {"text": "MUN:EQR", "url": "https://www.google.com/finance/quote/eqr:mun"}, {"text": "BRN:EQR", "url": "https://www.google.com/finance/quote/brn:eqr"}, {"text": "MEX:EQR*", "url": "https://www.google.com/finance/quote/eqr*:mex"}, {"text": "DUS:EQR", "url": "https://www.google.com/finance/quote/dus:eqr"}, {"text": "STU:EQR", "url": "https://www.google.com/finance/quote/eqr:stu"}, {"text": "NYQ:EQR", "url": "https://www.google.com/finance/quote/eqr:nyq"}, {"text": "ASE:EQR", "url": "https://www.google.com/finance/quote/ase:eqr"}, {"text": "SAO:E1QR34", "url": "https://www.google.com/finance/quote/e1qr34:sao"}, {"text": "HAN:EQR", "url": "https://www.google.com/finance/quote/eqr:han"}, {"text": "FRA:EQR", "url": "https://www.google.com/finance/quote/eqr:fra"}, {"text": "DEU:EQR", "url": "https://www.google.com/finance/quote/deu:eqr"}], "crunchbase_description": "Equity Residential (EQR) is a real estate investment trust (REIT).", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422, "fortune500_rank": 436}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 36, "rank": 1066, "fortune500_rank": 464}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153, "fortune500_rank": 463}}, "sector": "Real Estate", "business_sector": "Real Estate", "wikipedia_description": "Equity Residential is a publicly traded real estate investment trust that invests in apartments.", "wikipedia_link": "https://en.wikipedia.org/wiki/Equity_Residential", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 3021, "country": "United States", "website": "http://www.mission1st.com/", "crunchbase": {"text": "037df8b5-5c16-09a0-434a-cf3446558d90", "url": "https://www.crunchbase.com/organization/mission1st"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mission1st-group-inc"], "stage": "Unknown", "name": "Mission 1st Group Inc", "patent_name": "mission 1st group inc", "continent": "North America", "local_logo": "mission_1st_group_inc.png", "aliases": "Mission 1St Group, Inc; Mission1St; Mission1St Group Inc; Mission1St Group, Inc", "permid_links": [{"text": 5057540031, "url": "https://permid.org/1-5057540031"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Mission1st is a minority woman-owned small business founded in 2003.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 36, "rank": 1066}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "At Mission1st, we provide top-flight expertise in acquisition support, program management, systems engineering, and information technology solutions to realize outstanding results for our clients - wherever they are, whenever they need us.", "company_site_link": "http://www.mission1st.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 126, "country": "United States", "website": "http://www.insitro.com/", "crunchbase": {"text": "66098acf-e04d-4e06-80ae-b80c820247d4", "url": "https://www.crunchbase.com/organization/insitro"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/insitro"], "stage": "Growth", "name": "Insitro", "patent_name": "insitro", "continent": "North America", "local_logo": "insitro.png", "aliases": "Insitro Inc; Insitro, Inc", "permid_links": [{"text": 5067174677, "url": "https://permid.org/1-5067174677"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Insitro is a drug discovery and development startup that utilizes machine learning and biology to transform drug discovery.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Syntax (programming languages)", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 32715, "cluster_count": 1}, {"cluster_id": 57783, "cluster_count": 1}, {"cluster_id": 76022, "cluster_count": 1}, {"cluster_id": 11665, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 9}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 1917, "referenced_count": 2}, {"ref_CSET_id": 1867, "referenced_count": 1}, {"ref_CSET_id": 401, "referenced_count": 1}, {"ref_CSET_id": 784, "referenced_count": 1}, {"ref_CSET_id": 1633, "referenced_count": 1}, {"ref_CSET_id": 805, "referenced_count": 1}, {"ref_CSET_id": 796, "referenced_count": 1}], "tasks": [{"referent": "safety_perception_recognition", "task_count": 2}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 2}, {"referent": "drug_discovery", "task_count": 2}, {"referent": "image_analysis", "task_count": 2}, {"referent": "portfolio_optimization", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "target_recognition", "task_count": 1}, {"referent": "object_discovery", "task_count": 1}, {"referent": "cbc_test", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "neural_probabilistic_language_model", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 3, 6, 16, 10, 20, 0], "total": 55, "isTopResearch": false, "rank": 602}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0], "total": 5, "isTopResearch": false, "rank": 540}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 3, 24, 63, 77, 2], "total": 169, "isTopResearch": false, "rank": 410}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 3.0, 24.0, 63.0, 77.0, 0], "total": 33.8, "isTopResearch": false, "rank": 162}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 40, 0, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0], "total": 3, "table": "industry", "rank": 158}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 450}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 35, "rank": 1074}, "ai_jobs": {"counts": null, "total": 16, "rank": 738}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Many of the challenges in drug discovery and development could be ameliorated if only we could predict earlier in the process which drugs are likely to work and for which patients. At insitro, we are enabling better predictions throughout the pharmaceutical value chain.", "company_site_link": "https://www.insitro.com/approach", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1403, "country": "United States", "website": "http://boweryfarming.com/", "crunchbase": {"text": "e1175a4e-80fe-c21f-76d9-60d5b78015fb", "url": "https://www.crunchbase.com/organization/bowery-farming-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/bowery-farming"], "stage": "Growth", "name": "Bowery Farming", "patent_name": "bowery farming", "continent": "North America", "local_logo": "bowery_farming.png", "aliases": "Bowery; Bowery Farming Inc; Bowery, Inc", "permid_links": [{"text": 5052792750, "url": "https://permid.org/1-5052792750"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Bowery Farming uses vision systems, automation technology, and machine learning to monitor plants and their growth.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 35, "rank": 1074}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Food & Beverages", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "As a NYC-founded company bringing fresh, local food to cities, our name stems from the origins of a historic lower Manhattan neighborhood. Settled by the Dutch in 1654, the Bowery (originally called bouwerij, the old Dutch word for farm) served as the great connector of farmlands to the heart of the city through the 17th century.", "company_site_link": "https://boweryfarming.com/company/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1791, "country": "China", "website": "http://www.sgcc.com.cn/", "crunchbase": {"text": " d3c665a4-9f20-34c4-1fc2-a1c70a17c210 ", "url": " https://www.crunchbase.com/organization/state-grid-corporation-of-china "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/state-grid-corporation-of-china"], "stage": "Unknown", "name": "State Grid", "patent_name": "State Grid", "continent": "Asia", "local_logo": null, "aliases": "State Grid; State Grid Corporation Of China; \u56fd\u5bb6\u7535\u7f51\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4298346202, "url": "https://permid.org/1-4298346202"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Feature (computer vision)", "field_count": 183}, {"field_name": "Cluster analysis", "field_count": 156}, {"field_name": "Artificial neural network", "field_count": 136}, {"field_name": "Robot", "field_count": 127}, {"field_name": "Support vector machine", "field_count": 123}, {"field_name": "Feature extraction", "field_count": 111}, {"field_name": "Deep learning", "field_count": 108}, {"field_name": "Convolutional neural network", "field_count": 99}, {"field_name": "Reinforcement learning", "field_count": 77}, {"field_name": "Anomaly detection", "field_count": 68}], "clusters": [{"cluster_id": 2618, "cluster_count": 145}, {"cluster_id": 214, "cluster_count": 107}, {"cluster_id": 39564, "cluster_count": 106}, {"cluster_id": 24291, "cluster_count": 98}, {"cluster_id": 14088, "cluster_count": 72}, {"cluster_id": 369, "cluster_count": 65}, {"cluster_id": 37795, "cluster_count": 61}, {"cluster_id": 446, "cluster_count": 55}, {"cluster_id": 7103, "cluster_count": 51}, {"cluster_id": 45018, "cluster_count": 51}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1536}, {"ref_CSET_id": 1791, "referenced_count": 1508}, {"ref_CSET_id": 163, "referenced_count": 1296}, {"ref_CSET_id": 87, "referenced_count": 914}, {"ref_CSET_id": 115, "referenced_count": 185}, {"ref_CSET_id": 23, "referenced_count": 175}, {"ref_CSET_id": 245, "referenced_count": 167}, {"ref_CSET_id": 1858, "referenced_count": 118}, {"ref_CSET_id": 6, "referenced_count": 108}, {"ref_CSET_id": 127, "referenced_count": 96}], "tasks": [{"referent": "classification", "task_count": 739}, {"referent": "fault_detection", "task_count": 405}, {"referent": "system_identification", "task_count": 336}, {"referent": "feature_selection", "task_count": 222}, {"referent": "image_processing", "task_count": 187}, {"referent": "load_forecasting", "task_count": 157}, {"referent": "robots", "task_count": 136}, {"referent": "disease_detection", "task_count": 128}, {"referent": "artificial_intelligence_and_machine_learning", "task_count": 120}, {"referent": "transformer_fault_diagnosis", "task_count": 118}], "methods": [{"referent": "double_q_learning", "method_count": 602}, {"referent": "griffin_lim_algorithm", "method_count": 424}, {"referent": "recurrent_neural_networks", "method_count": 362}, {"referent": "convolutional_neural_networks", "method_count": 312}, {"referent": "symbolic_deep_learning", "method_count": 305}, {"referent": "auto_classifier", "method_count": 222}, {"referent": "optimization", "method_count": 207}, {"referent": "deep_belief_network", "method_count": 187}, {"referent": "mad_learning", "method_count": 177}, {"referent": "feature_extractors", "method_count": 171}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [9067, 11853, 13385, 15845, 18014, 19928, 21230, 21789, 22351, 13558, 296], "total": 167316, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "ai_publications": {"counts": [111, 134, 179, 249, 323, 465, 713, 842, 908, 466, 4], "total": 4394, "isTopResearch": false, "rank": 4, "sp500_rank": 3}, "ai_publications_growth": {"counts": [], "total": -7.582455889008067, "isTopResearch": false, "rank": 1248, "sp500_rank": 304}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 1, 3, 15, 27, 10, 1, 0], "total": 57, "isTopResearch": false, "rank": 40, "sp500_rank": 21}, "citation_counts": {"counts": [341, 514, 679, 1083, 1612, 2305, 3962, 5836, 7882, 5805, 288], "total": 30307, "isTopResearch": false, "rank": 22, "sp500_rank": 15}, "cv_pubs": {"counts": [14, 39, 41, 63, 80, 103, 186, 196, 217, 118, 0], "total": 1057, "isTopResearch": true, "rank": 8, "sp500_rank": 6}, "nlp_pubs": {"counts": [1, 1, 5, 2, 9, 18, 34, 53, 42, 23, 0], "total": 188, "isTopResearch": true, "rank": 14, "sp500_rank": 11}, "robotics_pubs": {"counts": [14, 16, 18, 46, 43, 36, 53, 53, 72, 32, 0], "total": 383, "isTopResearch": true, "rank": 2, "sp500_rank": 1}, "citations_per_article": {"counts": [3.0720720720720722, 3.8358208955223883, 3.793296089385475, 4.349397590361446, 4.9907120743034055, 4.956989247311828, 5.556802244039271, 6.931116389548694, 8.680616740088105, 12.457081545064378, 72.0], "total": 6.897360036413291, "isTopResearch": false, "rank": 646, "sp500_rank": 254}}, "patents": {"ai_patents": {"counts": [96, 167, 252, 282, 374, 711, 1156, 1728, 2211, 1073, 0], "total": 8050, "table": null, "rank": 1, "sp500_rank": 1}, "ai_patents_growth": {"counts": [], "total": 67.39194169661518, "table": null, "rank": 162, "sp500_rank": 77}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [960, 1670, 2520, 2820, 3740, 7110, 11560, 17280, 22110, 10730, 0], "total": 80500, "table": null, "rank": 1, "sp500_rank": 1}, "Physical_Sciences_and_Engineering": {"counts": [1, 4, 3, 2, 8, 8, 10, 37, 26, 12, 0], "total": 111, "table": null, "rank": 4, "sp500_rank": 2}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 2, 3, 6, 12, 2, 0], "total": 25, "table": null, "rank": 42, "sp500_rank": 30}, "Security__eg_cybersecurity": {"counts": [0, 0, 2, 2, 4, 15, 33, 78, 65, 21, 0], "total": 220, "table": "industry", "rank": 2, "sp500_rank": 2}, "Transportation": {"counts": [2, 2, 2, 2, 3, 6, 8, 27, 11, 12, 0], "total": 75, "table": null, "rank": 33, "sp500_rank": 27}, "Industrial_and_Manufacturing": {"counts": [2, 2, 7, 3, 7, 5, 20, 37, 40, 38, 0], "total": 161, "table": null, "rank": 3, "sp500_rank": 1}, "Education": {"counts": [0, 0, 0, 5, 1, 1, 2, 4, 10, 1, 0], "total": 24, "table": null, "rank": 5, "sp500_rank": 4}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": null, "rank": 7, "sp500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 1, 0, 0], "total": 4, "table": null, "rank": 23, "sp500_rank": 19}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 3, 3, 7, 11, 17, 8, 0], "total": 49, "table": null, "rank": 1, "sp500_rank": 1}, "Personal_Devices_and_Computing": {"counts": [3, 3, 13, 34, 63, 85, 154, 531, 697, 236, 0], "total": 1819, "table": "industry", "rank": 4, "sp500_rank": 4}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 4, 10, 15, 34, 30, 4, 0], "total": 97, "table": null, "rank": 10, "sp500_rank": 9}, "Telecommunications": {"counts": [0, 3, 7, 14, 32, 58, 101, 178, 130, 52, 0], "total": 575, "table": "industry", "rank": 5, "sp500_rank": 5}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 3, 11, 6, 3, 0], "total": 23, "table": null, "rank": 6, "sp500_rank": 5}, "Business": {"counts": [0, 22, 32, 81, 123, 214, 388, 582, 626, 192, 0], "total": 2260, "table": "industry", "rank": 1, "sp500_rank": 1}, "Energy_Management": {"counts": [18, 58, 85, 151, 185, 315, 515, 802, 857, 315, 0], "total": 3301, "table": "industry", "rank": 1, "sp500_rank": 1}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0], "total": 2, "table": null, "rank": 35, "sp500_rank": 22}, "Language_Processing": {"counts": [0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0], "total": 4, "table": null, "rank": 62, "sp500_rank": 44}, "Speech_Processing": {"counts": [0, 1, 2, 0, 0, 10, 17, 22, 20, 3, 0], "total": 75, "table": null, "rank": 14, "sp500_rank": 11}, "Knowledge_Representation": {"counts": [0, 0, 0, 4, 5, 4, 8, 9, 27, 16, 0], "total": 73, "table": null, "rank": 18, "sp500_rank": 15}, "Planning_and_Scheduling": {"counts": [0, 22, 31, 79, 117, 206, 376, 556, 598, 182, 0], "total": 2167, "table": "application", "rank": 1, "sp500_rank": 1}, "Control": {"counts": [1, 0, 6, 14, 8, 16, 24, 29, 24, 8, 0], "total": 130, "table": "application", "rank": 25, "sp500_rank": 20}, "Distributed_AI": {"counts": [0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 23, "sp500_rank": 19}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [1, 4, 12, 40, 70, 155, 375, 672, 766, 263, 0], "total": 2358, "table": "application", "rank": 1, "sp500_rank": 1}, "Analytics_and_Algorithms": {"counts": [0, 1, 1, 1, 1, 6, 9, 178, 324, 88, 0], "total": 609, "table": "application", "rank": 1, "sp500_rank": 1}, "Measuring_and_Testing": {"counts": [0, 1, 8, 52, 53, 89, 140, 227, 189, 56, 0], "total": 815, "table": "application", "rank": 1, "sp500_rank": 1}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 35, "rank": 1074, "sp500_rank": 345}, "ai_jobs": {"counts": null, "total": 6, "rank": 970, "sp500_rank": 324}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 2870, "country": "United Arab Emirates", "website": "https://www.mubadala.com/", "crunchbase": {"text": "3ac8aa81-5b3d-4401-84e7-bf5e5cf5e9c0", "url": "https://www.crunchbase.com/organization/mubadala-investment-company-e9c0"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mubadala"], "stage": "Unknown", "name": "Mubadala Investment Co", "patent_name": "mubadala investment co", "continent": "Asia", "local_logo": "mubadala_investment_co.png", "aliases": "Mubadala Investment Company Pjsc; \u0645\u0633\u062a\u062f\u0627\u0645\u0629 \u0644\u0623\u0628\u0648\u0638\u0628\u064a", "permid_links": [{"text": 5050656789, "url": "https://permid.org/1-5050656789"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Mubadala is a sovereign investor managing a global portfolio, aimed at generating sustainable financial returns for its shareholder.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 35, "rank": 1074}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Mubadala is a sovereign investor managing a diverse portfolio of assets in the UAE and abroad.", "company_site_link": "https://www.mubadala.com", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 278, "country": "China", "website": "https://www.guahao.com/about", "crunchbase": {"text": "73cd686c-d2e2-c5e5-3bf3-03b0282a9322", "url": "https://www.crunchbase.com/organization/guahao"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/wedoctor"], "stage": "Mature", "name": "WeDoctor (GuaHao)", "patent_name": "wedoctor (guahao)", "continent": "Asia", "local_logo": "wedoctor_guahao.png", "aliases": "Guahao.Com; Hangzhou Guangfa Technology Co., Ltd; Registered Network (Hangzhou) Technology Co., Ltd; Wedoctor; Wedoctor Group; Weiyi Group; \u5fae\u533b\u96c6\u56e2; \u6302\u53f7\u7f51; \u676d\u5dde\u5e7f\u53d1\u79d1\u6280\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 5067946508, "url": "https://permid.org/1-5067946508"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "WeDoctor is a medical health technology platform that offers online services for hospitals and doctors on-site.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Noise reduction", "field_count": 1}, {"field_name": "Segmentation", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 5908, "cluster_count": 1}, {"cluster_id": 12905, "cluster_count": 1}, {"cluster_id": 63240, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 87, "referenced_count": 4}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}], "tasks": [{"referent": "disease_detection", "task_count": 2}, {"referent": "automated_pulmonary_nodule_detection_and_classification", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "pulmonary_nodule_detection", "task_count": 1}, {"referent": "ecg_denoising", "task_count": 1}, {"referent": "salt_and_pepper_noise_removal", "task_count": 1}, {"referent": "dr", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "diabetic_retinopathy_detection", "task_count": 1}, {"referent": "cancer_detection", "task_count": 1}], "methods": [{"referent": "q_learning", "method_count": 2}, {"referent": "dac", "method_count": 1}, {"referent": "spp_net", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "r_cnn", "method_count": 1}, {"referent": "momentum_rules", "method_count": 1}, {"referent": "hit_detector", "method_count": 1}, {"referent": "multi_attention_network", "method_count": 1}, {"referent": "object_detection_models", "method_count": 1}, {"referent": "location_based_attention", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 2, 0, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 1, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 13, 16, 36, 28, 6], "total": 100, "isTopResearch": false, "rank": 504}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 2, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.5, 0, 0, 36.0, 0, 0], "total": 33.333333333333336, "isTopResearch": false, "rank": 165}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 4, 0, 4, 3, 0], "total": 11, "table": null, "rank": 394}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 40, 0, 40, 30, 0], "total": 110, "table": null, "rank": 394}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 2, 0, 0], "total": 5, "table": "industry", "rank": 122}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 2, 0, 0, 1, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 35, "rank": 1074}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "\u5fae\u533b\u662f\u56fd\u9645\u9886\u5148\u7684\u667a\u80fd\u5316\u6570\u5b57\u5065\u5eb7\u5e73\u53f0\uff0c\u603b\u90e8\u4f4d\u4e8e\u4e2d\u56fd\u676d\u5dde\uff0c\u7531\u5ed6\u6770\u8fdc\u5e26\u9886\u56e2\u961f\u521b\u5efa\u4e8e2010\u5e74\u3002\u5fae\u533b\u4ee5\u201c\u5065\u5eb7\u6709\u9053\uff0c\u5c31\u533b\u4e0d\u96be\u201d\u4e3a\u4f7f\u547d\uff0c\u5341\u5e74\u6765\u59cb\u7ec8\u81f4\u529b\u4e8e\u901a\u8fc7\u521b\u65b0\u548c\u79d1\u6280\u63a8\u52a8\u4e2d\u56fd\u533b\u7597\u5065\u5eb7\u4ea7\u4e1a\u6570\u5b57\u5316\u3001\u667a\u80fd\u5316\uff0c\u4e3a\u5168\u793e\u4f1a\u63d0\u4f9b\u4f18\u8d28\u3001\u9ad8\u6548\u3001\u53ef\u53ca\u7684\u533b\u7597\u5065\u5eb7\u670d\u52a1\uff0c\u5b88\u62a4\u4ebf\u4e07\u4eba\u5065\u5eb7\u3002", "company_site_link": "https://www.guahao.com/about", "description_retrieval_date": "2021-03-16", "company_site_description_translation": "WeDoctor is a leading international intelligent digital health platform headquartered in Hangzhou, China. It was founded in 2010 by a team led by Liao Jieyuan. With the mission of \"good health and easy medical treatment\", WeDoctor has been committed to promoting the digitalization and intelligence of China's medical and health industry through innovation and technology for the past ten years, providing high-quality, efficient and accessible medical and health services to the whole society, protecting Billions of people are healthy."}, {"cset_id": 3015, "country": "United States", "website": "http://www.btas.com/", "crunchbase": {"text": "12dd11c6-5b09-4daa-a267-de3f1dd0f5d4", "url": "https://www.crunchbase.com/organization/btas"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/btas-inc."], "stage": "Unknown", "name": "BTAS Inc", "patent_name": "btas inc", "continent": "North America", "local_logo": "btas_inc.png", "aliases": "Btas", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "BTAS provides information technology services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 35, "rank": 1074}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "In 1995, we began as a systems integrator for the U.S Air Force. Today we provide the Air Force Life Cycle Management Center, Air Force Space Command, Air Combat Command and the Naval Air Systems Command business technologies and solutions that revolutionize program performance. Our world-class, multi-disciplined teams are poised to support operations and partner with customers to re-engineer how talent and technology work together to meet thier mission. Our tools are familiar, innovative, appealing, and easy to use.", "company_site_link": "http://btas.com/index.php/about/", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2798, "country": "United States", "website": "http://www.jedunn.com/", "crunchbase": {"text": "2bec92cc-0436-cdca-8495-d590b0fe5255", "url": "https://www.crunchbase.com/organization/je-dunn-construction"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/je-dunn-construction"], "stage": "Unknown", "name": "JE Dunn Construction Co", "patent_name": "je dunn construction co", "continent": "North America", "local_logo": "je_dunn_construction_co.png", "aliases": "Je Dunn Construction; Je Dunn Construction Group, Inc", "permid_links": [{"text": 4296274094, "url": "https://permid.org/1-4296274094"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "J. E. Dunn Construction Group is a privately-owned construction company engaging in the commercial construction industry.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 35, "rank": 1074}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Design Phase Services provides a truly collaborative preconstruction process for our clients.", "company_site_link": "https://www.jedunn.com/design-phase-services", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 653, "country": "United States", "website": "http://redstorm.com/", "crunchbase": {"text": "7fd8ebcb-37af-4f3b-ba1f-a451c0c1dd29", "url": "https://www.crunchbase.com/organization/red-storm-entertainment-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/red-storm-entertainment"], "stage": "Unknown", "name": "Red Storm Entertainment", "patent_name": "red storm entertainment", "continent": "North America", "local_logo": "red_storm_entertainment.png", "aliases": "Red Storm; Red Storm Entertainment, Inc", "permid_links": [{"text": 4296117201, "url": "https://permid.org/1-4296117201"}], "parent_info": "Ubisoft (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Red Storm Entertainment develops computer games. It offers multi player games.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 35, "rank": 1074}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Red Storm Entertainment, Inc. is an American video game developer and studio of Ubisoft based in Cary, North Carolina. Founded in November 1996 between author Tom Clancy, manager Doug Littlejohns, and software development company Virtus Corporation, Red Storm develops games in the Tom Clancy's franchise. Ubisoft (then known as Ubi Soft) acquired the studio in August 2000.", "wikipedia_link": "https://en.wikipedia.org/wiki/Red_Storm_Entertainment", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 664, "country": "Switzerland", "website": "http://roivant.com/", "crunchbase": {"text": "f6af99f3-9f9d-a1a0-d84f-84cfa15f5451", "url": "https://www.crunchbase.com/organization/roivant-sciences"}, "child_crunchbase": [{"text": "bb598651-ddf3-4c29-840d-a9aaef31e4ce", "url": "https://www.crunchbase.com/organization/alyvant"}], "linkedin": ["https://www.linkedin.com/company/roivant-sciences-inc-", "https://www.linkedin.com/company/alyvant"], "stage": "Mature", "name": "Roivant Sciences", "patent_name": "roivant sciences", "continent": "Europe", "local_logo": "roivant_sciences.png", "aliases": "Roivant Sciences Gmbh; Roivant Sciences Inc; Roivant Sciences Ltd", "permid_links": [{"text": 5057747992, "url": "https://permid.org/1-5057747992"}, {"text": 5044178170, "url": "https://permid.org/1-5044178170"}, {"text": 5068324831, "url": "https://permid.org/1-5068324831"}], "parent_info": "Roivant Sciences Holdings Limited", "agg_child_info": "Alyvant, Inc.", "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Roivant Sciences is a biopharmaceutical company focused on the development of medicines and healthcare technologies to patients.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 4, 7, 26, 12, 2, 3, 6, 8, 0], "total": 68, "isTopResearch": false, "rank": 570}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 34, "rank": 1082}, "ai_jobs": {"counts": null, "total": 13, "rank": 790}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": "Roivant Sciences is a healthcare company focused on applying technology to drug development. Roivant builds subsidiary biotech and healthcare technology companies. Roivant was founded by Vivek Ramaswamy in 2014.", "wikipedia_link": "https://en.wikipedia.org/wiki/Roivant_Sciences", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 290, "country": "United States", "website": "http://www.zymergen.com", "crunchbase": {"text": "8a1ec47d-7d6f-122c-ee14-88ed8cb33df5", "url": "https://www.crunchbase.com/organization/zymergen"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/zymergen"], "stage": "Mature", "name": "Zymergen", "patent_name": "zymergen", "continent": "North America", "local_logo": "zymergen.png", "aliases": "Zymergen Bioinformatics; Zymergen Inc; Zymergen, Inc", "permid_links": [{"text": 5046059671, "url": "https://permid.org/1-5046059671"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Zymergen is a biotechnology company that specializes in machine learning, big data, and artificial intelligence.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 2}], "clusters": [{"cluster_id": 25609, "cluster_count": 1}, {"cluster_id": 6485, "cluster_count": 1}, {"cluster_id": 17566, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 786, "referenced_count": 1}, {"ref_CSET_id": 1784, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "damaged_building_detection", "task_count": 1}, {"referent": "decision_making", "task_count": 1}, {"referent": "soft_robotics", "task_count": 1}, {"referent": "legged_robots", "task_count": 1}, {"referent": "locomotion", "task_count": 1}, {"referent": "robots", "task_count": 1}], "methods": [{"referent": "q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 1, 4, 2, 8, 11, 13, 8, 5, 0], "total": 53, "isTopResearch": false, "rank": 608}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 1, 0, 1, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 573}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 5, 2, 1, 5, 5, 2, 0], "total": 20, "isTopResearch": false, "rank": 684}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 2.0, 0, 5.0, 5.0, 0, 0], "total": 5.0, "isTopResearch": false, "rank": 713}}, "patents": {"ai_patents": {"counts": [0, 0, 4, 0, 7, 5, 2, 2, 0, 0, 0], "total": 20, "table": null, "rank": 323}, "ai_patents_growth": {"counts": [], "total": -29.523809523809522, "table": null, "rank": 1484}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 40, 0, 70, 50, 20, 20, 0, 0, 0], "total": 200, "table": null, "rank": 323}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 2, 0, 0, 2, 0, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 88}, "Life_Sciences": {"counts": [0, 0, 3, 0, 6, 4, 2, 1, 0, 0, 0], "total": 16, "table": "industry", "rank": 61}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 61}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 1, 0, 1, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 34, "rank": 1082}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Healthcare", "business_sector": "Pharmaceuticals & Medical Research", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Our patented biofacturing platform fuses biology, chemistry, and technology to unlock the power of Nature. By combining molecular biology, data science, automation, and genomics, we design products, find the microbes to make them, and scale those products to the world, with a platform that is getting smarter all the time.", "company_site_link": "http://www.zymergen.com", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 659, "country": "United States", "website": "https://www.righthandrobotics.com/", "crunchbase": {"text": "43923382-0415-ea3f-61a6-c57f93ac1f5f", "url": "https://www.crunchbase.com/organization/righthand-robotics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/righthand-robotics-inc"], "stage": "Growth", "name": "RightHand Robotics, Inc", "patent_name": "righthand robotics, inc", "continent": "North America", "local_logo": "righthand_robotics,_inc.png", "aliases": "RightHand Robotics, Inc; Righthand Robotics; Righthand Robotics Inc; Righthand Robotics, Inc", "permid_links": [{"text": 5046714935, "url": "https://permid.org/1-5046714935"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "RightHand Robotics provides end-to-end solutions that reduce the cost of e-commerce order-fulfillment of electronics, apparel, grocery.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 2}, {"field_name": "Task (computing)", "field_count": 1}], "clusters": [{"cluster_id": 13150, "cluster_count": 2}, {"cluster_id": 3322, "cluster_count": 1}, {"cluster_id": 1764, "cluster_count": 1}, {"cluster_id": 7822, "cluster_count": 1}, {"cluster_id": 8412, "cluster_count": 1}, {"cluster_id": 54310, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 820, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}, {"ref_CSET_id": 790, "referenced_count": 1}], "tasks": [{"referent": "robotic_grasping", "task_count": 4}, {"referent": "robots", "task_count": 2}, {"referent": "legged_robots", "task_count": 1}, {"referent": "mobile_robot", "task_count": 1}, {"referent": "locomotion", "task_count": 1}, {"referent": "system_identification", "task_count": 1}, {"referent": "image_manipulation", "task_count": 1}], "methods": [{"referent": "gru", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 1, 2, 1, 0, 0, 1, 1, 0], "total": 7, "isTopResearch": false, "rank": 1006}, "ai_publications": {"counts": [0, 0, 1, 1, 2, 1, 0, 0, 1, 1, 0], "total": 7, "isTopResearch": false, "rank": 481}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 2, 4, 9, 11, 9, 11, 0], "total": 46, "isTopResearch": false, "rank": 597}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 1, 1, 2, 1, 0, 0, 1, 1, 0], "total": 7, "isTopResearch": true, "rank": 142}, "citations_per_article": {"counts": [0, 0, 0.0, 0.0, 1.0, 4.0, 0, 0, 9.0, 11.0, 0], "total": 6.571428571428571, "isTopResearch": false, "rank": 657}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 34, "rank": 1082}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "RightHand Robotics builds a data-driven intelligent picking platform, providing flexible and scalable automation for predictable order fulfillment. RightPick, our robotic piece-picking solution, enables retailers to rise up to the new realities of online commerce.", "company_site_link": "https://www.righthandrobotics.com/about-us", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 1430, "country": "Germany", "website": "http://konux.com", "crunchbase": {"text": "965653f2-5db5-ae55-7990-95540896df18", "url": "https://www.crunchbase.com/organization/konux"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/konux"], "stage": "Growth", "name": "KONUX", "patent_name": "konux", "continent": "Europe", "local_logo": "konux.png", "aliases": "Konux Gmbh", "permid_links": [{"text": 5046048406, "url": "https://permid.org/1-5046048406"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "KONUX is the first AI scale-up offering predictive maintenance, network usage, monitoring and planning solutions for railway infrastructure.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 0, 0, 20, 0, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 2, 0, 0, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 147}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085}, "ai_jobs": {"counts": null, "total": 15, "rank": 754}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Konux (stylised as KONUX) is an Internet of Things start-up from Munich. The company uses artificial intelligence (AI) to develop sensor-based systems that enable predictive maintenance of industrial plants. Konux has its headquarters in Munich and is registered in Palo Alto, California, as an American public limited company.", "wikipedia_link": "https://en.wikipedia.org/wiki/Konux", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 75, "country": "United States", "website": "http://www.descarteslabs.com/", "crunchbase": {"text": "1e2e9b39-9d64-69d6-2852-be5dd6b9cea6", "url": "https://www.crunchbase.com/organization/descartes-labs"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/descartes-labs"], "stage": "Growth", "name": "Descartes Labs", "patent_name": "descartes labs", "continent": "North America", "local_logo": "descartes_labs.png", "aliases": "Descartes Labs Inc; Descartes Labs, Inc", "permid_links": [{"text": 5044030418, "url": "https://permid.org/1-5044030418"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Enabling a better understanding of the physical world through the scalable analysis of geospatial data.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Change detection", "field_count": 2}, {"field_name": "Synthetic aperture radar", "field_count": 2}, {"field_name": "Analytics", "field_count": 1}, {"field_name": "Deep learning", "field_count": 1}, {"field_name": "Data stream mining", "field_count": 1}, {"field_name": "F1 score", "field_count": 1}, {"field_name": "Normalization (statistics)", "field_count": 1}, {"field_name": "Visual search", "field_count": 1}, {"field_name": "Visualization", "field_count": 1}, {"field_name": "Compressed sensing", "field_count": 1}], "clusters": [{"cluster_id": 77869, "cluster_count": 4}, {"cluster_id": 83977, "cluster_count": 2}, {"cluster_id": 7965, "cluster_count": 2}, {"cluster_id": 14263, "cluster_count": 2}, {"cluster_id": 15221, "cluster_count": 1}, {"cluster_id": 6913, "cluster_count": 1}, {"cluster_id": 83142, "cluster_count": 1}, {"cluster_id": 58382, "cluster_count": 1}, {"cluster_id": 10889, "cluster_count": 1}, {"cluster_id": 24687, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 9}, {"ref_CSET_id": 75, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 2}, {"ref_CSET_id": 1950, "referenced_count": 1}, {"ref_CSET_id": 27, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}, {"ref_CSET_id": 635, "referenced_count": 1}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "remote_sensing_imagery_segmentation", "task_count": 3}, {"referent": "change_detection", "task_count": 3}, {"referent": "classification_tasks", "task_count": 2}, {"referent": "land_cover_classification", "task_count": 2}, {"referent": "synthetic_aperture_radar", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "land_cover_mapping", "task_count": 1}, {"referent": "supervised_learning", "task_count": 1}, {"referent": "visual_localization", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 2}, {"referent": "deep_voice_3", "method_count": 2}, {"referent": "generative_adversarial_networks", "method_count": 2}, {"referent": "mad_learning", "method_count": 2}, {"referent": "vqa_models", "method_count": 1}, {"referent": "deep_belief_network", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "hopfield_layer", "method_count": 1}, {"referent": "inception_module", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 8, 5, 3, 12, 13, 9, 7, 5, 0], "total": 62, "isTopResearch": false, "rank": 588}, "ai_publications": {"counts": [0, 0, 2, 2, 1, 1, 7, 3, 1, 0, 0], "total": 17, "isTopResearch": false, "rank": 330}, "ai_publications_growth": {"counts": [], "total": -74.60317460317461, "isTopResearch": false, "rank": 1525}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 7, 9, 11, 29, 84, 165, 204, 189, 8], "total": 706, "isTopResearch": false, "rank": 226}, "cv_pubs": {"counts": [0, 0, 1, 1, 1, 1, 7, 2, 1, 0, 0], "total": 14, "isTopResearch": true, "rank": 171}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 3.5, 4.5, 11.0, 29.0, 12.0, 55.0, 204.0, 0, 0], "total": 41.529411764705884, "isTopResearch": false, "rank": 122}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085}, "ai_jobs": {"counts": null, "total": 11, "rank": 829}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Descartes Labs is the first company founded to create a geospatial data refinery to fuel predictive models. We combine the most scalable geospatial data processing and modeling platform with a massive, diverse geospatial library. Our talented team of scientists are recognized leaders in the field, helping enterprise customers create competitive advantage through scientifically validated analytics.\nWe serve hundreds of global companies, governments, and impact organizations around the world\u2014across industries that include agriculture, mining and metals, oil and gas, shipping and logistics, power and renewables, insurance, and more.", "company_site_link": "https://www.descarteslabs.com/company/#about", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 392, "country": "United States", "website": "http://coatue.com/", "crunchbase": {"text": "d41a176d-2d63-8120-abdd-09962ffac419", "url": "https://www.crunchbase.com/organization/coatue-management"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/coatue-management"], "stage": "Unknown", "name": "Coatue Management", "patent_name": "coatue management", "continent": "North America", "local_logo": "coatue_management.png", "aliases": "Coatue; Coatue Management Llc; Coatue Management, L.L.C", "permid_links": [{"text": 4297003678, "url": "https://permid.org/1-4297003678"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Coatue invests in public and private equity markets focusing on the technology, media, and telecommunications industries.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": "Coatue is a global technology-focused investment manager led by Founder and Portfolio Manager Philippe Laffont.\nCoatue invests in both the public and private markets with a focus on technology, media, and telecommunications, as well as the consumer and healthcare sectors. Total assets under management amounted to more than $25 billion as of May 21, 2020.", "wikipedia_link": "https://en.wikipedia.org/wiki/Coatue_Management", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2, "country": "China", "website": "http://www.17zuoye.com/", "crunchbase": {"text": "a79a6ae8-3c74-0db7-7e6b-b4f7662d37e8", "url": "https://www.crunchbase.com/organization/17zuoye"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/\u4e00\u8d77\u4f5c\u4e1a\u7f51"], "stage": "Mature", "name": "17zuoye", "patent_name": "17zuoye", "continent": "Asia", "local_logo": "17zuoye.png", "aliases": "17 Education & Technology Group; 17Zuoye Corporation; Shanghai Hexu Information Technology Co.,Ltd; Yiqi Jiaoyu Keji; Yiqi Zuoye; \u4e00\u8d77\u4f5c\u4e1a; \u4e00\u8d77\u6559\u80b2\u79d1\u6280; \u4e0a\u6d77\u4e00\u8d77\u6559\u80b2\u79d1\u6280\u62db\u8058\u4fe1\u606f", "permid_links": [{"text": 5078563037, "url": "https://permid.org/1-5078563037"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "17zuoye is an online learning platform for K-12 students as well as teachers and parents.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 1960, "cluster_count": 1}], "company_references": [], "tasks": [{"referent": "disease_detection", "task_count": 1}, {"referent": "knowledge_tracing", "task_count": 1}], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0], "total": 3, "isTopResearch": false, "rank": 857}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Academic & Educational Services", "business_sector": "Academic & Educational Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "\u4e00\u8d77\u6559\u80b2\u79d1\u6280\uff08Nasdaq\uff1aYQ\uff09\u662f\u5168\u7403\u77e5\u540d\u7684K12\u667a\u80fd\u6559\u80b2\u5e73\u53f0\u3002\u6000\u7740\u201c\u8ba9\u5b66\u4e60\u6210\u4e3a\u7f8e\u597d\u4f53\u9a8c\u201d\u7684\u4f7f\u547d\uff0c\u4e00\u8d77\u6559\u80b2\u79d1\u6280\u81f4\u529b\u4e8e\u7528\u5148\u8fdb\u7684\u6559\u80b2\u79d1\u6280\u3001\u4f18\u8d28\u7684\u6559\u80b2\u5185\u5bb9\u548c\u6301\u7eed\u7684\u6559\u80b2\u70ed\u60c5\uff0c\u4e3aK12\u9636\u6bb5\u7684\u5b66\u6821\u3001\u5bb6\u5ead\u3001\u793e\u4f1a\u6559\u80b2\u573a\u666f\uff0c\u63d0\u4f9b\u66f4\u4e3a\u9ad8\u6548\u3001\u7f8e\u597d\u7684\u4ea7\u54c1\u548c\u4f53\u9a8c\uff0c\u5f00\u542f\u667a\u80fd\u6559\u80b2\u65b0\u65f6\u4ee3\u3002", "company_site_link": "https://www.17zuoye.com/help/education.vpage", "description_retrieval_date": "2021-03-16", "company_site_description_translation": "Together Education Technology (Nasdaq: YQ) is a world-renowned K12 intelligent education platform. With the mission of \"making learning a wonderful experience\", Together Educational Technology is committed to using advanced educational technology, high-quality educational content and continuous educational enthusiasm to provide more efficient and more efficient educational scenarios for schools, families and society at the K12 stage. Wonderful products and experiences open up a new era of intelligent education."}, {"cset_id": 654, "country": "United States", "website": "https://www.researchsquare.com/", "crunchbase": {"text": "5b5588ef-a383-4362-bd1f-ee969bc6b47e", "url": "https://www.crunchbase.com/organization/research-square"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/research-square-co"], "stage": "Unknown", "name": "Research Square", "patent_name": "research square", "continent": "North America", "local_logo": "research_square.png", "aliases": "Research Square Aje Llc; Research Square Company", "permid_links": [{"text": 5044523901, "url": "https://permid.org/1-5044523901"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Research Square offers research communication, and pre-publication platform.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 1, 5, 1, 1, 2, 1, 2, 0], "total": 14, "isTopResearch": false, "rank": 875}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085}, "ai_jobs": {"counts": null, "total": 7, "rank": 944}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Research Square lets you share your work early, gain feedback from the community, and start making changes to your manuscript prior to peer review in a journal. You can also learn about breakthroughs in your field and comment on new discoveries.", "company_site_link": "https://www.researchsquare.com/researchers/preprintss", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 369, "country": "United States", "website": "https://www.buoyhealth.com", "crunchbase": {"text": "502542b2-2779-f701-7e1c-521ca5711b8b", "url": "https://www.crunchbase.com/organization/buoy-health"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/buoyhealth"], "stage": "Growth", "name": "Buoy Health", "patent_name": "buoy health", "continent": "North America", "local_logo": "buoy_health.png", "aliases": "Buoy; Buoy Health, Inc", "permid_links": [{"text": 5043330517, "url": "https://permid.org/1-5043330517"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Buoy is an AI-driven digital assistant that helps patients self-diagnose and triage to the appropriate care.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We help people make the best decisions about their health", "company_site_link": "https://www.buoyhealth.com/company", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1434, "country": "United States", "website": "https://lightmatter.co/", "crunchbase": {"text": "6336b646-f964-40b7-9f0d-b77b667bfadb", "url": "https://www.crunchbase.com/organization/lightmatter-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lightmatter"], "stage": "Growth", "name": "Lightmatter", "patent_name": "lightmatter", "continent": "North America", "local_logo": "lightmatter.png", "aliases": "Lightmatter Inc; Lightmatter, Inc", "permid_links": [{"text": 5061190532, "url": "https://permid.org/1-5061190532"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Lightmatter uses light to create photonic compute chips specialized for AI.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Deep learning", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}], "clusters": [{"cluster_id": 2503, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 949, "referenced_count": 1}], "tasks": [{"referent": "face_recognition", "task_count": 1}, {"referent": "translation", "task_count": 1}, {"referent": "quantum_machine_learning", "task_count": 1}], "methods": [{"referent": "reinforcement_learning", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 2, 5, 5, 3, 2, 0], "total": 17, "isTopResearch": false, "rank": 839}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -50.0, "isTopResearch": false, "rank": 1441}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "isTopResearch": false, "rank": 881}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0.0, 2.0, 0, 0], "total": 1.0, "isTopResearch": false, "rank": 871}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 5, 6, 10, 1, 0, 0], "total": 22, "table": null, "rank": 307}, "ai_patents_growth": {"counts": [], "total": 43.333333333333336, "table": null, "rank": 234}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 50, 60, 100, 10, 0, 0], "total": 220, "table": null, "rank": 307}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 4, 5, 5, 1, 0, 0], "total": 15, "table": "industry", "rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 2, 1, 5, 0, 0, 0], "total": 8, "table": "industry", "rank": 185}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 55}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 1, 2, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Lightmatter is building the engines that will power discoveries, drive progress, and reduce our impact on the planet.", "company_site_link": "https://lightmatter.co/story/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 160, "country": "United Kingdom", "website": "https://www.huma.com/", "crunchbase": {"text": "b741c5f3-ebc6-1c53-6f1e-8fbdbd028a79", "url": "https://www.crunchbase.com/organization/medopad"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/humaforhealth"], "stage": "Growth", "name": "Huma", "patent_name": "huma", "continent": "Europe", "local_logo": "huma.png", "aliases": "Huma; Huma Therapeutics; Huma Therapeutics Limited; Huma Therapeutics Ltd; Medopad; Medopad Ltd", "permid_links": [{"text": 5042172471, "url": "https://permid.org/1-5042172471"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Huma provides a digital health platform used for predictive care and research.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 272, "cluster_count": 1}, {"cluster_id": 12463, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 1}, {"ref_CSET_id": 734, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [{"referent": "decision_making", "task_count": 1}, {"referent": "ecg_risk_stratification", "task_count": 1}, {"referent": "covid_19_tracking", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 1}, {"referent": "dicenet", "method_count": 1}, {"referent": "deepwalk", "method_count": 1}, {"referent": "double_q_learning", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 2, 1, 6, 15, 10, 0], "total": 34, "isTopResearch": false, "rank": 689}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 0, 0], "total": 2, "isTopResearch": false, "rank": 683}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 3, 8, 1], "total": 12, "isTopResearch": false, "rank": 740}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1.5, 0, 0], "total": 6.0, "isTopResearch": false, "rank": 682}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Healthcare", "business_sector": "Healthcare Services & Equipment"}, {"cset_id": 2923, "country": "United States", "website": "mythics.com", "crunchbase": {"text": "25c3d448-c059-b2a3-15ee-f99d210b2a7d", "url": "https://www.crunchbase.com/organization/mythics-inc-"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/mythics"], "stage": "Unknown", "name": "Mythics Inc", "patent_name": "mythics inc", "continent": "North America", "local_logo": "mythics_inc.png", "aliases": "Mythics", "permid_links": [{"text": 5052533495, "url": "https://permid.org/1-5052533495"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Mythics is a integrator of Oracle systems, consultancy, manager of services, and elite.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": null, "rank": 655}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 20, 0, 0, 0], "total": 20, "table": null, "rank": 655}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "industry", "rank": 445}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 2, "table": "application", "rank": 191}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 298}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": "Mythic Entertainment (which has also been known as BioWare Mythic, EA Mythic, Inc. and Interworld Productions) was a video game developer in Fairfax, Virginia that was most widely recognized for developing the 2001 massively multiplayer online role-playing game Dark Age of Camelot. Mythic was a prolific creator of multiplayer online games following its establishment in the mid-1990s.", "wikipedia_link": "https://en.wikipedia.org/wiki/Mythic_Entertainment", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3129, "country": "China", "website": "https://www.newchinalife.com/", "crunchbase": {"text": " 86a39a17-629d-94e9-4754-2baed7aff746 ", "url": " https://www.crunchbase.com/organization/new-china-life-insurance-co-ltd "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/new-china-life-insuranceco-ltd-"], "stage": "Mature", "name": "New China Life Insurance", "patent_name": "New China Life Insurance", "continent": "Asia", "local_logo": null, "aliases": "New China Life Insurance; New China Life Insurance Company Ltd; \u65b0\u534e\u4eba\u5bff\u4fdd\u9669\u80a1\u4efd\u6709\u9650\u516c\u53f8", "permid_links": [{"text": 4297985039, "url": "https://permid.org/1-4297985039"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "HKG:1336", "url": "https://www.google.com/finance/quote/1336:HKG"}], "market_full": [{"text": "BER:NCL", "url": "https://www.google.com/finance/quote/BER:NCL"}, {"text": "MUN:NCL", "url": "https://www.google.com/finance/quote/MUN:NCL"}, {"text": "SHH:601336", "url": "https://www.google.com/finance/quote/601336:SHH"}, {"text": "HKG:1336", "url": "https://www.google.com/finance/quote/1336:HKG"}, {"text": "STU:NCL", "url": "https://www.google.com/finance/quote/NCL:STU"}, {"text": "DEU:NCL", "url": "https://www.google.com/finance/quote/DEU:NCL"}, {"text": "FRA:NCL", "url": "https://www.google.com/finance/quote/FRA:NCL"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 2, 0], "total": 3, "isTopResearch": false, "rank": 1148, "sp500_rank": 428}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "sp500_rank": 364}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "sp500_rank": 361}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "sp500_rank": 267}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "sp500_rank": 214}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "sp500_rank": 357}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "sp500_rank": 169}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "sp500_rank": 308}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "sp500_rank": 159}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "sp500_rank": 255}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "sp500_rank": 208}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "sp500_rank": 192}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "sp500_rank": 251}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "sp500_rank": 205}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085, "sp500_rank": 346}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153, "sp500_rank": 356}}, "sector": "Financials", "business_sector": "Insurance"}, {"cset_id": 2791, "country": "United States", "website": "http://dayzim.com/", "crunchbase": {"text": "00e423e7-bcd7-f1ff-aa6d-9ee06387dc3e", "url": "https://www.crunchbase.com/organization/day-zimmermann"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/day-&-zimmermann"], "stage": "Unknown", "name": "Day & Zimmermann Group Inc/The", "patent_name": "day & zimmermann group inc/the", "continent": "North America", "local_logo": "day_&_zimmermann_group_inc_the.png", "aliases": "Day & Zimmermann; Day & Zimmermann Group Inc; The Day & Zimmermann Group Inc", "permid_links": [{"text": 4296264238, "url": "https://permid.org/1-4296264238"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "A specialize in construction & engineering, staffing and defense solutions for leading corporations and governments around the world.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "The Day & Zimmermann is a privately held company in the fields of construction, engineering, staffing and ammunition manufacture, operating out of 150 locations worldwide. Its corporate office is at 1500 Spring Garden Street in Philadelphia, Pennsylvania.", "wikipedia_link": "https://en.wikipedia.org/wiki/Day_%26_Zimmermann", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 2821, "country": "United States", "website": "https://www.asrc.com/", "crunchbase": {"text": "6875bb53-951c-bcce-eb73-65ef41f2e66b", "url": "https://www.crunchbase.com/organization/arctic-slope-regional-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/arcticsloperegionalcorporation"], "stage": "Unknown", "name": "Arctic Slope Regional Corp", "patent_name": "arctic slope regional corp", "continent": "North America", "local_logo": "arctic_slope_regional_corp.png", "aliases": "Arctic Slope Regional; Arctic Slope Regional Corporation; Asrc", "permid_links": [{"text": 4296137107, "url": "https://permid.org/1-4296137107"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "ASRC provides energy services, petroleum refining and marketing, engineering and construction.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 2327, "cluster_count": 1}, {"cluster_id": 31122, "cluster_count": 1}, {"cluster_id": 24721, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 184, "referenced_count": 1}], "tasks": [{"referent": "fast_vehicle_detection", "task_count": 1}, {"referent": "crack_detection", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}], "methods": [{"referent": "meta_learning_algorithms", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "wfst", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [10, 2, 3, 7, 2, 24, 2, 6, 2, 2, 0], "total": 60, "isTopResearch": false, "rank": 591}, "ai_publications": {"counts": [1, 0, 0, 0, 0, 0, 0, 2, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [1, 1, 4, 2, 1, 1, 2, 1, 4, 10, 0], "total": 27, "isTopResearch": false, "rank": 654}, "cv_pubs": {"counts": [1, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 392}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [1.0, 0, 0, 0, 0, 0, 0, 0.5, 0, 0, 0], "total": 9.0, "isTopResearch": false, "rank": 573}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 33, "rank": 1085}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Consumer Non-Cyclicals", "business_sector": "Consumer Goods Conglomerates", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Arctic Slope Regional Corporation\u2019s mission is to actively manage our businesses, our lands and resources, our investments and our relationships to enhance I\u00f1upiaq cultural and economic freedom \u2013 with continuity, responsibility and integrity.", "company_site_link": "https://www.asrc.com/about/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 145, "country": "United States", "website": "https://www.landing.ai/", "crunchbase": {"text": "44135aa7-3c38-4667-a0ce-db543dbc1e82", "url": "https://www.crunchbase.com/organization/landing-ai"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/landing-ai"], "stage": "Growth", "name": "Landing Ai", "patent_name": "landing ai", "continent": "North America", "local_logo": "landing_ai.png", "aliases": "Landing.Ai", "permid_links": [{"text": 5081146244, "url": "https://permid.org/1-5081146244"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Landing AI applies AI and deep learning to help manufacturers solve challenging visual inspection problems and generate business value.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [{"cluster_id": 25609, "cluster_count": 2}, {"cluster_id": 9819, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 21}, {"ref_CSET_id": 163, "referenced_count": 10}, {"ref_CSET_id": 87, "referenced_count": 8}, {"ref_CSET_id": 184, "referenced_count": 4}, {"ref_CSET_id": 245, "referenced_count": 3}, {"ref_CSET_id": 23, "referenced_count": 3}, {"ref_CSET_id": 209, "referenced_count": 2}, {"ref_CSET_id": 112, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 145, "referenced_count": 2}], "tasks": [{"referent": "artificial_intelligence_and_machine_learning", "task_count": 1}, {"referent": "image_captioning", "task_count": 1}, {"referent": "system_identification", "task_count": 1}], "methods": [{"referent": "sniper", "method_count": 2}, {"referent": "causal_inference", "method_count": 2}, {"referent": "image_models", "method_count": 1}, {"referent": "softplus", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 1148}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 13, 76, 111, 78, 1], "total": 279, "isTopResearch": false, "rank": 340}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 13.0, 38.0, 0, 0, 0], "total": 93.0, "isTopResearch": false, "rank": 35}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 1, 0, 0], "total": 4, "table": null, "rank": 565}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 30, 0, 10, 0, 0], "total": 40, "table": null, "rank": 565}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 61}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 32, "rank": 1097}, "ai_jobs": {"counts": null, "total": 12, "rank": 812}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Landing AI is an industrial AI company that provides enterprise-wide transformation programs and solutions. By providing an end-to-end AI platform, Landing AI enables customers to create, deploy and scale AI-powered industrial computer vision applications such as defect detection faster and with higher accuracy. The mission of Landing AI is to empower companies to jumpstart AI adoption, propel teams toward success and create practical business value today. Founded by Dr. Andrew Ng, co-founder of Coursera, and founding lead of Google Brain, the team at Landing AI is uniquely positioned to help companies across the globe successfully move their AI projects from proof of concept to full-scale production.", "company_site_link": "https://www.landing.ai/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 241, "country": "United States", "website": "https://www.syntiant.com/", "crunchbase": {"text": "c3cda9cc-b0ca-46f5-80a8-ecfa87def21c", "url": "https://www.crunchbase.com/organization/syntiant"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/syntiant-corp"], "stage": "Mature", "name": "Syntiant", "patent_name": "syntiant", "continent": "North America", "local_logo": "syntiant.png", "aliases": "Syntiant Corp", "permid_links": [{"text": 5057956901, "url": "https://permid.org/1-5057956901"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Syntiant is a deep learning tech company providing AI voice and sensor solutions.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 2, 0, 1, 3, 1, 0], "total": 7, "isTopResearch": false, "rank": 1006}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 0.0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 11, 2, 0, 2, 0, 0, 0], "total": 15, "table": null, "rank": 355}, "ai_patents_growth": {"counts": [], "total": -90.9090909090909, "table": null, "rank": 1582}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 110, 20, 0, 20, 0, 0, 0], "total": 150, "table": null, "rank": 355}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 249}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 7, 0, 0, 1, 0, 0, 0], "total": 8, "table": "industry", "rank": 273}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 308}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 55}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 2, 1, 0, 1, 0, 0, 0], "total": 4, "table": "application", "rank": 127}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 32, "rank": 1097}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Founded in 2017 and led by a veteran management team of accomplished tech executives, scientists, hardware and software engineers with deep ties to the semiconductor industry, Syntiant\u2019s architecture was built from the ground up to run deep learning algorithms.", "company_site_link": "https://www.syntiant.com/contact", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3101, "country": "United States", "website": "https://coterra.com/", "crunchbase": {"text": "13020a26-23cd-4d12-b950-0aac3f6b4be6", "url": "https://www.crunchbase.com/organization/coterra-energy"}, "child_crunchbase": [{"text": "c2c44907-e8bd-aa3c-f748-1ddff178c242", "url": "https://www.crunchbase.com/organization/cabot-oil-gas-corporation"}], "linkedin": ["https://www.linkedin.com/company/coterra-energy"], "stage": "Mature", "name": "Coterra", "patent_name": "Coterra", "continent": "North America", "local_logo": "coterra.png", "aliases": "Coterra; Coterra Energy; Coterra Energy Inc; Coterra Energy, Inc", "permid_links": [{"text": 4295903660, "url": "https://permid.org/1-4295903660"}], "parent_info": null, "agg_child_info": "Cabot Oil & Gas", "unagg_child_info": null, "market_filt": [{"text": "NYSE:CTRA", "url": "https://www.google.com/finance/quote/CTRA:NYSE"}], "market_full": [{"text": "DUS:XCQ", "url": "https://www.google.com/finance/quote/DUS:XCQ"}, {"text": "FRA:XCQ", "url": "https://www.google.com/finance/quote/FRA:XCQ"}, {"text": "GER:XCQX", "url": "https://www.google.com/finance/quote/GER:XCQX"}, {"text": "ASE:CTRA", "url": "https://www.google.com/finance/quote/ASE:CTRA"}, {"text": "MCX:CTRA-RM", "url": "https://www.google.com/finance/quote/CTRA-RM:MCX"}, {"text": "MEX:CTRA*", "url": "https://www.google.com/finance/quote/CTRA*:MEX"}, {"text": "SAO:C1OG34", "url": "https://www.google.com/finance/quote/C1OG34:SAO"}, {"text": "STU:XCQ", "url": "https://www.google.com/finance/quote/STU:XCQ"}, {"text": "NYQ:CTRA", "url": "https://www.google.com/finance/quote/CTRA:NYQ"}, {"text": "BER:XCQ", "url": "https://www.google.com/finance/quote/BER:XCQ"}, {"text": "NYSE:CTRA", "url": "https://www.google.com/finance/quote/CTRA:NYSE"}, {"text": "DEU:COG", "url": "https://www.google.com/finance/quote/COG:DEU"}, {"text": "LSE:0HRZ", "url": "https://www.google.com/finance/quote/0HRZ:LSE"}, {"text": "BRN:XCQ", "url": "https://www.google.com/finance/quote/BRN:XCQ"}, {"text": "MUN:XCQ", "url": "https://www.google.com/finance/quote/MUN:XCQ"}], "crunchbase_description": "Coterra Energy is an energy company positioned to deliver sustainable returns.", "groups": {"sp500": false, "global500": true}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 0, 1, 0, 1, 0], "total": 3, "isTopResearch": false, "rank": 1148, "fortune500_rank": 376}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954, "fortune500_rank": 271}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930, "fortune500_rank": 265}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911, "fortune500_rank": 256}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 32, "rank": 1097, "fortune500_rank": 465}, "ai_jobs": {"counts": null, "total": 6, "rank": 970, "fortune500_rank": 431}}, "sector": "Energy", "business_sector": "Energy - Fossil Fuels"}, {"cset_id": 1873, "country": "China", "website": "http://www.baicgroup.com.cn/", "crunchbase": {"text": null, "url": null}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/baic"], "stage": "Unknown", "name": "Beijing Automotive Group", "patent_name": "Beijing Automotive Group", "continent": "Asia", "local_logo": null, "aliases": "Beijing Automotive Group; Beijing Automotive Industry Holding Co. Ltd; Beiqi Chanye Touzi; \u5317\u6c7d\u4ea7\u4e1a\u6295\u8d44; \u5317\u6c7d\u4ea7\u6295", "permid_links": [{"text": 4298377248, "url": "https://permid.org/1-4298377248"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Region of interest", "field_count": 1}], "clusters": [{"cluster_id": 15678, "cluster_count": 2}, {"cluster_id": 5136, "cluster_count": 1}, {"cluster_id": 24157, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 1873, "referenced_count": 1}], "tasks": [{"referent": "autonomous_driving", "task_count": 2}, {"referent": "traffic_sign_recognition", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "vehicle_detection", "task_count": 1}, {"referent": "developmental_learning", "task_count": 1}], "methods": [{"referent": "trpo", "method_count": 1}, {"referent": "momentum_rules", "method_count": 1}, {"referent": "nt_xent", "method_count": 1}, {"referent": "hit_detector", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "ghost_module", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [4, 5, 4, 5, 5, 8, 8, 5, 3, 6, 0], "total": 53, "isTopResearch": false, "rank": 608, "sp500_rank": 327}, "ai_publications": {"counts": [0, 0, 0, 1, 0, 2, 0, 1, 0, 0, 0], "total": 4, "isTopResearch": false, "rank": 573, "sp500_rank": 275}, "ai_publications_growth": {"counts": [], "total": -100.0, "isTopResearch": false, "rank": 1554, "sp500_rank": 449}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 4, 2, 6, 0], "total": 12, "isTopResearch": false, "rank": 740, "sp500_rank": 305}, "cv_pubs": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463, "sp500_rank": 215}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": true, "rank": 243, "sp500_rank": 140}, "citations_per_article": {"counts": [0, 0, 0, 0.0, 0, 0.0, 0, 4.0, 0, 0, 0], "total": 3.0, "isTopResearch": false, "rank": 779, "sp500_rank": 312}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 3, 1, 1, 2, 1, 0, 0], "total": 8, "table": null, "rank": 443, "sp500_rank": 203}, "ai_patents_growth": {"counts": [], "total": 11.111111111111109, "table": null, "rank": 326, "sp500_rank": 152}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 30, 10, 10, 20, 10, 0, 0], "total": 80, "table": null, "rank": 443, "sp500_rank": 203}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "sp500_rank": 164}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "sp500_rank": 170}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 180, "sp500_rank": 119}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526, "sp500_rank": 225}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "industry", "rank": 381, "sp500_rank": 174}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "sp500_rank": 146}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0], "total": 1, "table": "application", "rank": 290, "sp500_rank": 156}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0], "total": 2, "table": "application", "rank": 450, "sp500_rank": 196}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298, "sp500_rank": 165}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 32, "rank": 1097, "sp500_rank": 347}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153, "sp500_rank": 356}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 2975, "country": "United States", "website": "http://sawdeysolutionservices.com/", "crunchbase": {"text": "0188d23f-82f7-4e53-bee7-e6a94a900449", "url": "https://www.crunchbase.com/organization/sawdey-solution-services"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sawdey-solution-services"], "stage": "Unknown", "name": "Sawdey Solution Services Inc", "patent_name": "sawdey solution services inc", "continent": "North America", "local_logo": "sawdey_solution_services_inc.png", "aliases": "Sawdey Solution Services; Sawdey Solution Services Incorporated; Sawdey Solution Services, Inc", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Sawdey Solution Services provides professional services to Dept. of Defense, Dept. of Homeland Security, Federal Agencies & more.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 32, "rank": 1097}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "The DoD\u2019s Cybersecurity Maturity Model Certification (CMMC) is a new and unfamiliar requirement for many companies. Through acquired knowledge and experience, we\u2019re offering innovative solutions to reduce the level of stress and effort on businesses looking to become CMMC compliant. We are here to help answer your questions and provide advice on obtaining CMMC certification.", "company_site_link": "http://sawdeysolutionservices.com/", "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 3043, "country": "United States", "website": "https://www.tyonek.com/", "crunchbase": {"text": "1b0727af-c130-48b8-9f28-0155186ff9af", "url": "https://www.crunchbase.com/organization/tyonek-native-corporation"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/tyonek-native-corp"], "stage": "Unknown", "name": "Tyonek Native Corp", "patent_name": "tyonek native corp", "continent": "North America", "local_logo": "tyonek_native_corp.png", "aliases": "Tyonek; Tyonek Native Corporation", "permid_links": [], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Tyonek Native Corporation provides defense engineering and manufacturing, aircraft maintenance, information technology services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 32, "rank": 1097}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231}}, "sector": "Unknown", "business_sector": "Unknown"}, {"cset_id": 797, "country": "Japan", "website": "https://www.yaskawa.co.jp/", "crunchbase": {"text": "a0fba635-e4fa-7b36-f0a4-412aab258417", "url": "https://www.crunchbase.com/organization/yaskawa-electric-corporation"}, "child_crunchbase": [{"text": "ead33534-6f88-4b92-8af6-0559436ee993", "url": "https://www.crunchbase.com/organization/yaskawa-america"}], "linkedin": ["https://www.linkedin.com/company/yaskawa_", "https://www.linkedin.com/company/yaskawa-america-inc"], "stage": "Mature", "name": "Yaskawa", "patent_name": "yaskawa", "continent": "Asia", "local_logo": "yaskawa.png", "aliases": "\u5b89\u5ddd\u96fb\u6a5f", "permid_links": [{"text": 4295880715, "url": "https://permid.org/1-4295880715"}, {"text": 4296861097, "url": "https://permid.org/1-4296861097"}], "parent_info": null, "agg_child_info": "Yaskawa America, Inc.", "unagg_child_info": null, "market_filt": [{"text": "TYO:6506", "url": "https://www.google.com/finance/quote/6506:tyo"}], "market_full": [{"text": "MUN:6506", "url": "https://www.google.com/finance/quote/6506:mun"}, {"text": "HAN:6506", "url": "https://www.google.com/finance/quote/6506:han"}, {"text": "TYO:6506", "url": "https://www.google.com/finance/quote/6506:tyo"}, {"text": "DUS:6506", "url": "https://www.google.com/finance/quote/6506:dus"}, {"text": "FWB:6506", "url": "https://www.google.com/finance/quote/6506:fwb"}, {"text": "FRA:6506", "url": "https://www.google.com/finance/quote/6506:fra"}, {"text": "OTCPINK:YASKY", "url": "https://www.google.com/finance/quote/otcpink:yasky"}], "crunchbase_description": "The Yaskawa Electric Corporation is a Japanese manufacturer of servos.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Robot", "field_count": 8}, {"field_name": "Servomotor", "field_count": 2}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Reinforcement learning", "field_count": 1}, {"field_name": "Fuzzy logic", "field_count": 1}, {"field_name": "Heuristic", "field_count": 1}, {"field_name": "Swarm behaviour", "field_count": 1}, {"field_name": "Calibration (statistics)", "field_count": 1}, {"field_name": "Salience (neuroscience)", "field_count": 1}], "clusters": [{"cluster_id": 14142, "cluster_count": 3}, {"cluster_id": 262, "cluster_count": 3}, {"cluster_id": 3201, "cluster_count": 2}, {"cluster_id": 4573, "cluster_count": 2}, {"cluster_id": 17698, "cluster_count": 2}, {"cluster_id": 9378, "cluster_count": 1}, {"cluster_id": 1055, "cluster_count": 1}, {"cluster_id": 2204, "cluster_count": 1}, {"cluster_id": 58409, "cluster_count": 1}, {"cluster_id": 52895, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 10}, {"ref_CSET_id": 797, "referenced_count": 6}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 115, "referenced_count": 2}, {"ref_CSET_id": 795, "referenced_count": 1}, {"ref_CSET_id": 790, "referenced_count": 1}, {"ref_CSET_id": 798, "referenced_count": 1}, {"ref_CSET_id": 1636, "referenced_count": 1}, {"ref_CSET_id": 23, "referenced_count": 1}], "tasks": [{"referent": "robots", "task_count": 8}, {"referent": "industrial_robots", "task_count": 7}, {"referent": "steering_control", "task_count": 4}, {"referent": "mobile_robot", "task_count": 2}, {"referent": "image_manipulation", "task_count": 1}, {"referent": "few_shot_regression", "task_count": 1}, {"referent": "point_processes", "task_count": 1}, {"referent": "locomotion", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "motion_planning", "task_count": 1}], "methods": [{"referent": "value_function_estimation", "method_count": 2}, {"referent": "position_sensitive_roialign", "method_count": 1}, {"referent": "griffin_lim_algorithm", "method_count": 1}, {"referent": "gradient_clipping", "method_count": 1}, {"referent": "distributed_shampoo", "method_count": 1}, {"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "reinforcement_learning", "method_count": 1}, {"referent": "counting_methods", "method_count": 1}, {"referent": "wgan_gp", "method_count": 1}, {"referent": "gaussian_process", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [18, 20, 13, 18, 12, 17, 14, 13, 8, 9, 0], "total": 142, "isTopResearch": false, "rank": 463}, "ai_publications": {"counts": [7, 7, 3, 5, 3, 2, 3, 4, 0, 1, 0], "total": 35, "isTopResearch": false, "rank": 216}, "ai_publications_growth": {"counts": [], "total": -33.33333333333333, "isTopResearch": false, "rank": 1401}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [4, 6, 12, 25, 46, 62, 62, 89, 95, 70, 5], "total": 476, "isTopResearch": false, "rank": 275}, "cv_pubs": {"counts": [1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 3, "isTopResearch": true, "rank": 344}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [7, 3, 3, 5, 2, 2, 2, 4, 0, 1, 0], "total": 29, "isTopResearch": true, "rank": 66}, "citations_per_article": {"counts": [0.5714285714285714, 0.8571428571428571, 4.0, 5.0, 15.333333333333334, 31.0, 20.666666666666668, 22.25, 0, 70.0, 0], "total": 13.6, "isTopResearch": false, "rank": 437}}, "patents": {"ai_patents": {"counts": [2, 1, 1, 2, 9, 1, 5, 5, 3, 0, 0], "total": 29, "table": null, "rank": 273}, "ai_patents_growth": {"counts": [], "total": 103.7037037037037, "table": null, "rank": 111}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [20, 10, 10, 20, 90, 10, 50, 50, 30, 0, 0], "total": 290, "table": null, "rank": 273}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 158}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [2, 1, 0, 1, 6, 1, 4, 0, 2, 0, 0], "total": 17, "table": "industry", "rank": 49}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 3, 0, 1, 0, 0, 0, 0], "total": 4, "table": "industry", "rank": 86}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 122}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 261}, "Knowledge_Representation": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [2, 1, 1, 1, 9, 1, 5, 0, 2, 0, 0], "total": 22, "table": "application", "rank": 85}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 14}, "Computer_Vision": {"counts": [0, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0], "total": 6, "table": "application", "rank": 300}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0], "total": 2, "table": "application", "rank": 243}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 32, "rank": 1097}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Industrials", "business_sector": "Industrial Goods", "wikipedia_description": "The Yaskawa Electric Corporation (\u682a\u5f0f\u4f1a\u793e\u5b89\u5ddd\u96fb\u6a5f, Kabushiki-gaisha Yasukawa Denki) (Formerly The Yaskawa Electronic Distributor Association (\u5b89\u5ddd\u96fb\u6a5f\u96fb\u5b50\u30c7\u30a3\u30b9\u30c8\u30ea\u30d3\u30e5\u30fc\u30bf\u5354\u4f1a, Yasukawadenki denshi disutoriby\u016bta ky\u014dkai)) is a Japanese manufacturer of servos, motion controllers, AC motor drives, switches and industrial robots. Their Motoman robots are heavy duty industrial robots used in welding, packaging, assembly, coating, cutting, material handling and general automation.", "wikipedia_link": "https://en.wikipedia.org/wiki/Yaskawa_Electric_Corporation", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 1732, "country": "United States", "website": "http://www.brownandcaldwell.com/", "crunchbase": {"text": "582d697d-757d-43bb-86af-a1623550f051", "url": "https://www.crunchbase.com/organization/brown-and-caldwell"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/brown-and-caldwell"], "stage": "Unknown", "name": "Brown And Caldwell", "patent_name": "brown and caldwell", "continent": "North America", "local_logo": "brown_and_caldwell.png", "aliases": null, "permid_links": [{"text": 5001064652, "url": "https://permid.org/1-5001064652"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Brown and Caldwell is the largest engineering consulting firm solely focused on the U.S. environmental sector.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [10, 12, 82, 38, 69, 80, 17, 25, 21, 24, 0], "total": 378, "isTopResearch": false, "rank": 323}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 32, "rank": 1097}, "ai_jobs": {"counts": null, "total": 0, "rank": 1349}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We use our skills and talents in engineering, science, consulting, and construction to safeguard water, maintain vital infrastructure and restore habitats to keep our communities thriving. By applying creativity and technical rigor, we deliver solutions that resonate with our clients and help them reach their goals.", "company_site_link": "https://brownandcaldwell.com/about/", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 8, "country": "United States", "website": "https://www.affectiva.com/", "crunchbase": {"text": "5a28722c-4892-939f-552e-da2bef5ab366", "url": "https://www.crunchbase.com/organization/affectiva"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/affectiva_2"], "stage": "Mature", "name": "Affectiva", "patent_name": "affectiva", "continent": "North America", "local_logo": "affectiva.png", "aliases": "Affectiva Inc; Affectiva, Inc", "permid_links": [{"text": 5000582910, "url": "https://permid.org/1-5000582910"}], "parent_info": "Smart Eye (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Affectiva is a developer of an emotion-recognition software designed to analyze subtle facial and vocal expressions.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Facial expression", "field_count": 9}, {"field_name": "Hallucinating", "field_count": 2}, {"field_name": "Gesture", "field_count": 1}, {"field_name": "Classifier (UML)", "field_count": 1}, {"field_name": "Affective computing", "field_count": 1}, {"field_name": "Transfer of learning", "field_count": 1}, {"field_name": "Graphical model", "field_count": 1}, {"field_name": "Robustness (computer science)", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}, {"field_name": "RGB color model", "field_count": 1}], "clusters": [{"cluster_id": 73775, "cluster_count": 12}, {"cluster_id": 228, "cluster_count": 4}, {"cluster_id": 1338, "cluster_count": 3}, {"cluster_id": 10371, "cluster_count": 2}, {"cluster_id": 13938, "cluster_count": 1}, {"cluster_id": 1467, "cluster_count": 1}, {"cluster_id": 579, "cluster_count": 1}, {"cluster_id": 4634, "cluster_count": 1}, {"cluster_id": 60338, "cluster_count": 1}, {"cluster_id": 60830, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 8, "referenced_count": 43}, {"ref_CSET_id": 101, "referenced_count": 39}, {"ref_CSET_id": 163, "referenced_count": 33}, {"ref_CSET_id": 87, "referenced_count": 18}, {"ref_CSET_id": 6, "referenced_count": 17}, {"ref_CSET_id": 184, "referenced_count": 7}, {"ref_CSET_id": 785, "referenced_count": 3}, {"ref_CSET_id": 201, "referenced_count": 3}, {"ref_CSET_id": 2800, "referenced_count": 2}, {"ref_CSET_id": 2119, "referenced_count": 2}], "tasks": [{"referent": "classification", "task_count": 4}, {"referent": "facial_expression_analysis", "task_count": 4}, {"referent": "facial_expression_recognition", "task_count": 3}, {"referent": "drowsiness_detection", "task_count": 2}, {"referent": "facial_action_unit_detection", "task_count": 2}, {"referent": "action_unit_detection", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "motion_synthesis", "task_count": 2}, {"referent": "smile_recognition", "task_count": 2}, {"referent": "face_recognition", "task_count": 2}], "methods": [{"referent": "auto_classifier", "method_count": 6}, {"referent": "gan", "method_count": 4}, {"referent": "1d_cnn", "method_count": 2}, {"referent": "vqa_models", "method_count": 2}, {"referent": "hit_detector", "method_count": 2}, {"referent": "q_learning", "method_count": 2}, {"referent": "meta_learning_algorithms", "method_count": 2}, {"referent": "computer_vision", "method_count": 2}, {"referent": "discriminators", "method_count": 2}, {"referent": "causal_inference", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [6, 2, 7, 5, 4, 3, 2, 6, 3, 1, 0], "total": 39, "isTopResearch": false, "rank": 667}, "ai_publications": {"counts": [6, 1, 7, 3, 2, 2, 1, 4, 3, 0, 0], "total": 29, "isTopResearch": false, "rank": 244}, "ai_publications_growth": {"counts": [], "total": 58.333333333333336, "isTopResearch": false, "rank": 56}, "ai_pubs_top_conf": {"counts": [2, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0], "total": 4, "isTopResearch": false, "rank": 169}, "citation_counts": {"counts": [7, 23, 46, 71, 149, 166, 188, 152, 177, 100, 4], "total": 1083, "isTopResearch": false, "rank": 183}, "cv_pubs": {"counts": [6, 1, 5, 3, 1, 2, 0, 4, 2, 0, 0], "total": 24, "isTopResearch": true, "rank": 128}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [1.1666666666666667, 23.0, 6.571428571428571, 23.666666666666668, 74.5, 83.0, 188.0, 38.0, 59.0, 0, 0], "total": 37.3448275862069, "isTopResearch": false, "rank": 146}}, "patents": {"ai_patents": {"counts": [2, 0, 0, 0, 2, 0, 3, 2, 0, 0, 0], "total": 9, "table": null, "rank": 424}, "ai_patents_growth": {"counts": [], "total": -66.66666666666667, "table": null, "rank": 1550}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [20, 0, 0, 0, 20, 0, 30, 20, 0, 0, 0], "total": 90, "table": null, "rank": 424}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 158}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 87}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 345}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 191}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [1, 0, 0, 0, 2, 0, 2, 1, 0, 0, 0], "total": 6, "table": "application", "rank": 300}, "Analytics_and_Algorithms": {"counts": [2, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 191}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 31, "rank": 1105}, "ai_jobs": {"counts": null, "total": 19, "rank": 706}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": "Affectiva is a software company that builds artificial intelligence that understands human emotions, cognitive states, activities and the objects people use, by analyzing facial and vocal expressions. The company spun out of MIT Media Lab and created the new technology category of Artificial Emotional Intelligence (Emotion AI).", "wikipedia_link": "https://en.wikipedia.org/wiki/Affectiva", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 211, "country": "United States", "website": "http://www.qventus.com", "crunchbase": {"text": "9d3f54be-267f-c8b9-334b-09a2453ce71b", "url": "https://www.crunchbase.com/organization/analyticsmd"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/qventus-inc"], "stage": "Growth", "name": "Qventus", "patent_name": "qventus", "continent": "North America", "local_logo": "qventus.png", "aliases": "Qventus, Inc", "permid_links": [{"text": 5051003496, "url": "https://permid.org/1-5051003496"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Qventus focuses on optimizing decisions in hospitals in real time to reduce costs, improve quality, and experience.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 1, 0, 0, 0, 4, 0, 1, 0, 0], "total": 6, "isTopResearch": false, "rank": 1030}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 31, "rank": 1105}, "ai_jobs": {"counts": null, "total": 11, "rank": 829}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Manage Covid demand, support frontline teams, and improve margins using\nAI and behavioral science", "company_site_link": "http://www.qventus.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2061, "country": "Japan", "website": "https://www.globalsuzuki.com/", "crunchbase": {"text": " 6badd361-62c4-4975-a649-601b6efe462e ", "url": " https://www.crunchbase.com/organization/suzuki-motor "}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/suzuki"], "stage": "Mature", "name": "Suzuki Motor", "patent_name": "Suzuki Motor", "continent": "Asia", "local_logo": null, "aliases": "Suzuki Motor; Suzuki Motor Co., Ltd; Suzuki Motor Corporation; \u30b9\u30ba\u30ad", "permid_links": [{"text": 4295877384, "url": "https://permid.org/1-4295877384"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "TYO:7269", "url": "https://www.google.com/finance/quote/7269:TYO"}], "market_full": [{"text": "MUN:SUK0", "url": "https://www.google.com/finance/quote/MUN:SUK0"}, {"text": "FRA:SUK", "url": "https://www.google.com/finance/quote/FRA:SUK"}, {"text": "STU:SUK", "url": "https://www.google.com/finance/quote/STU:SUK"}, {"text": "BER:SUK", "url": "https://www.google.com/finance/quote/BER:SUK"}, {"text": "TYO:7269", "url": "https://www.google.com/finance/quote/7269:TYO"}, {"text": "DUS:SUK", "url": "https://www.google.com/finance/quote/DUS:SUK"}, {"text": "DEU:7269", "url": "https://www.google.com/finance/quote/7269:DEU"}], "crunchbase_description": null, "groups": {"sp500": true, "global500": false}, "fields": [{"field_name": "Orientation (computer vision)", "field_count": 2}, {"field_name": "Reinforcement learning", "field_count": 2}, {"field_name": "Activity recognition", "field_count": 1}, {"field_name": "Tracking (particle physics)", "field_count": 1}, {"field_name": "Robot", "field_count": 1}, {"field_name": "Robotic arm", "field_count": 1}], "clusters": [{"cluster_id": 16136, "cluster_count": 1}, {"cluster_id": 38663, "cluster_count": 1}, {"cluster_id": 3282, "cluster_count": 1}, {"cluster_id": 43387, "cluster_count": 1}, {"cluster_id": 42852, "cluster_count": 1}, {"cluster_id": 88896, "cluster_count": 1}, {"cluster_id": 4310, "cluster_count": 1}, {"cluster_id": 54613, "cluster_count": 1}, {"cluster_id": 73490, "cluster_count": 1}, {"cluster_id": 3763, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 9}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 786, "referenced_count": 2}, {"ref_CSET_id": 1784, "referenced_count": 2}, {"ref_CSET_id": 205, "referenced_count": 1}, {"ref_CSET_id": 820, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 2061, "referenced_count": 1}], "tasks": [{"referent": "point_processes", "task_count": 2}, {"referent": "classification", "task_count": 2}, {"referent": "image_processing", "task_count": 2}, {"referent": "topological_data_analysis", "task_count": 2}, {"referent": "activity_detection", "task_count": 1}, {"referent": "cancer", "task_count": 1}, {"referent": "lung_cancer", "task_count": 1}, {"referent": "automl", "task_count": 1}, {"referent": "joint_entity_and_relation_extraction", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}], "methods": [{"referent": "double_q_learning", "method_count": 2}, {"referent": "reinforcement_learning", "method_count": 2}, {"referent": "mad_learning", "method_count": 1}, {"referent": "vqa_models", "method_count": 1}, {"referent": "dcgan", "method_count": 1}, {"referent": "generative_adversarial_networks", "method_count": 1}, {"referent": "general", "method_count": 1}, {"referent": "pixelcnn", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "image_to_image_translation", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "sp500_rank": 1}, "all_publications": {"counts": [70, 74, 74, 111, 78, 87, 100, 71, 93, 41, 1], "total": 800, "isTopResearch": false, "rank": 215, "sp500_rank": 153}, "ai_publications": {"counts": [3, 3, 1, 3, 0, 5, 2, 2, 4, 0, 0], "total": 23, "isTopResearch": false, "rank": 280, "sp500_rank": 163}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199, "sp500_rank": 99}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "sp500_rank": 160}, "citation_counts": {"counts": [3, 7, 13, 17, 15, 22, 17, 21, 39, 20, 2], "total": 176, "isTopResearch": false, "rank": 404, "sp500_rank": 183}, "cv_pubs": {"counts": [1, 0, 0, 1, 0, 0, 1, 0, 2, 0, 0], "total": 5, "isTopResearch": true, "rank": 287, "sp500_rank": 146}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "sp500_rank": 193}, "robotics_pubs": {"counts": [2, 1, 1, 0, 0, 3, 1, 1, 0, 0, 0], "total": 9, "isTopResearch": true, "rank": 124, "sp500_rank": 89}, "citations_per_article": {"counts": [1.0, 2.3333333333333335, 13.0, 5.666666666666667, 0, 4.4, 8.5, 10.5, 9.75, 0, 0], "total": 7.6521739130434785, "isTopResearch": false, "rank": 617, "sp500_rank": 234}}, "patents": {"ai_patents": {"counts": [2, 1, 1, 4, 2, 0, 1, 0, 1, 0, 0], "total": 12, "table": null, "rank": 384, "sp500_rank": 183}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583, "sp500_rank": 468}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "sp500_rank": 1}, "all_patents": {"counts": [20, 10, 10, 40, 20, 0, 10, 0, 10, 0, 0], "total": 120, "table": null, "rank": 384, "sp500_rank": 183}, "Physical_Sciences_and_Engineering": {"counts": [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "table": null, "rank": 158, "sp500_rank": 111}, "Life_Sciences": {"counts": [0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 199, "sp500_rank": 114}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335, "sp500_rank": 161}, "Transportation": {"counts": [1, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 133, "sp500_rank": 96}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 167}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "sp500_rank": 96}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "sp500_rank": 7}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "sp500_rank": 13}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 71}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "sp500_rank": 67}, "Personal_Devices_and_Computing": {"counts": [1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 394, "sp500_rank": 183}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "sp500_rank": 161}, "Telecommunications": {"counts": [0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0], "total": 2, "table": "industry", "rank": 308, "sp500_rank": 149}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "sp500_rank": 82}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "sp500_rank": 226}, "Energy_Management": {"counts": [2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 97, "sp500_rank": 78}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "sp500_rank": 58}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "sp500_rank": 20}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "sp500_rank": 63}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "sp500_rank": 87}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "sp500_rank": 131}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365, "sp500_rank": 154}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428, "sp500_rank": 206}, "Control": {"counts": [1, 0, 1, 2, 1, 0, 0, 0, 0, 0, 0], "total": 5, "table": "application", "rank": 182, "sp500_rank": 118}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "sp500_rank": 65}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "sp500_rank": 26}, "Computer_Vision": {"counts": [0, 1, 0, 3, 1, 0, 1, 0, 1, 0, 0], "total": 7, "table": "application", "rank": 288, "sp500_rank": 148}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "sp500_rank": 202}, "Measuring_and_Testing": {"counts": [0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0], "total": 2, "table": "application", "rank": 243, "sp500_rank": 146}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 31, "rank": 1105, "sp500_rank": 348}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094, "sp500_rank": 346}}, "sector": "Consumer Cyclicals", "business_sector": "Automobiles & Auto Parts"}, {"cset_id": 123, "country": "China", "website": "http://www.iluvatar.ai", "crunchbase": {"text": "60c8f7ea-2c1c-48f6-a725-09f6a467613d", "url": "https://www.crunchbase.com/organization/iluvatar-corex"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/iluvatar-corex-inc"], "stage": "Growth", "name": "Iluvatar CoreX", "patent_name": "iluvatar corex", "continent": "Asia", "local_logo": "iluvatar_corex.png", "aliases": "Nanjing Iluvatar Infotech Co Ltd; Nanjing Tianshu Zhixin Technology Co. Ltd; \u4e0a\u6d77\u5929\u6570\u667a\u82af\u534a\u5bfc\u4f53\u6709\u9650\u516c\u53f8; \u5929\u6570\u667a\u82af", "permid_links": [{"text": 5071397654, "url": "https://permid.org/1-5071397654"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Iluvatar CoreX is a developer of high-performance computing solutions including System-on-a-Chip (SoC) chipset and its software platform.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [{"ref_CSET_id": 184, "referenced_count": 2}, {"ref_CSET_id": 127, "referenced_count": 1}, {"ref_CSET_id": 327, "referenced_count": 1}, {"ref_CSET_id": 123, "referenced_count": 1}, {"ref_CSET_id": 163, "referenced_count": 1}], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 1302}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 3, 1, 8, 5, 5, 0], "total": 22, "isTopResearch": false, "rank": 676}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 463}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 3.0, 0, 0, 0, 0, 0], "total": 22.0, "isTopResearch": false, "rank": 279}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 6, 0, 0, 0, 0, 0], "total": 6, "table": null, "rank": 487}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 60, 0, 0, 0, 0, 0], "total": 60, "table": null, "rank": 487}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 5, 0, 0, 0, 0, 0], "total": 5, "table": "industry", "rank": 336}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 240}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 3, 0, 0, 0, 0, 0], "total": 3, "table": "application", "rank": 390}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 31, "rank": 1105}, "ai_jobs": {"counts": null, "total": 3, "rank": 1094}}, "sector": "Technology", "business_sector": "Technology Equipment", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 240, "country": "United States", "website": "https://www.suki.ai/", "crunchbase": {"text": "a78fa84b-82da-4a82-9f5c-213f8313a172", "url": "https://www.crunchbase.com/organization/sukihq"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/sukihq"], "stage": "Growth", "name": "Suki Ai", "patent_name": "suki ai", "continent": "North America", "local_logo": "suki_ai.png", "aliases": "Learning Motors; Robin; Suki; Suki Ai Inc", "permid_links": [{"text": 5063739589, "url": "https://permid.org/1-5063739589"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Suki is a voice-based digital assistant for doctors.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 31, "rank": 1105}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Suki is an AI-powered, voice-enabled digital assistant for doctors. We want to give our users superpowers to make them happier and more productive while solving some of the biggest problems in healthcare.", "company_site_link": "https://www.suki.ai/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 207, "country": "United States", "website": "https://www.pymetrics.ai/", "crunchbase": {"text": "23713fed-b32f-1e96-69cc-5b8155b347c7", "url": "https://www.crunchbase.com/organization/pymetrics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/pymetrics"], "stage": "Growth", "name": "Pymetrics", "patent_name": "pymetrics", "continent": "North America", "local_logo": "pymetrics.png", "aliases": "Pymetrics Inc; Pymetrics, Inc", "permid_links": [{"text": 5040253950, "url": "https://permid.org/1-5040253950"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Pymetrics develops neuroscience-based assessment and prediction technology for staffing services.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 1, 4, 3, 4, 0], "total": 12, "isTopResearch": false, "rank": 907}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 30, "rank": 1110}, "ai_jobs": {"counts": null, "total": 10, "rank": 845}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Pymetrics helps companies build the workforce of the future, using behavioral science and audited AI technology, resulting in more diverse teams and more efficient processes.", "company_site_link": "https://www.pymetrics.ai", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 188, "country": "United States", "website": "http://www.orbitalinsight.com/", "crunchbase": {"text": "8c23e2ba-6667-6ffc-7218-76da1207d9aa", "url": "https://www.crunchbase.com/organization/orbital-insight-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/orbital-insight-inc-"], "stage": "Mature", "name": "Orbital Insight", "patent_name": "orbital insight", "continent": "North America", "local_logo": "orbital_insight.png", "aliases": "Orbital Insight, Inc", "permid_links": [{"text": 5042368326, "url": "https://permid.org/1-5042368326"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Orbital Insight builds SaaS technology to understand what happens on and to the Earth with AI and machine learning", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Active learning (machine learning)", "field_count": 1}, {"field_name": "Support vector machine", "field_count": 1}], "clusters": [{"cluster_id": 43828, "cluster_count": 1}, {"cluster_id": 28186, "cluster_count": 1}, {"cluster_id": 83142, "cluster_count": 1}, {"cluster_id": 6635, "cluster_count": 1}, {"cluster_id": 56946, "cluster_count": 1}, {"cluster_id": 7541, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 8}, {"ref_CSET_id": 163, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 3}, {"ref_CSET_id": 27, "referenced_count": 2}, {"ref_CSET_id": 6, "referenced_count": 2}, {"ref_CSET_id": 1126, "referenced_count": 1}, {"ref_CSET_id": 161, "referenced_count": 1}, {"ref_CSET_id": 223, "referenced_count": 1}, {"ref_CSET_id": 184, "referenced_count": 1}, {"ref_CSET_id": 115, "referenced_count": 1}], "tasks": [{"referent": "density_estimation", "task_count": 1}, {"referent": "semantic_segmentation", "task_count": 1}, {"referent": "semi_supervised_semantic_segmentation", "task_count": 1}, {"referent": "autonomous_navigation", "task_count": 1}, {"referent": "skills_assessment", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "polsar_image_classification", "task_count": 1}, {"referent": "unsupervised_pre_training", "task_count": 1}, {"referent": "segmentation", "task_count": 1}, {"referent": "land_cover_mapping", "task_count": 1}], "methods": [{"referent": "recurrent_neural_networks", "method_count": 2}, {"referent": "skip_connections", "method_count": 1}, {"referent": "one_shot_aggregation", "method_count": 1}, {"referent": "q_learning", "method_count": 1}, {"referent": "video_sampling", "method_count": 1}, {"referent": "ggs_nns", "method_count": 1}, {"referent": "1d_cnn", "method_count": 1}, {"referent": "googlenet", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 1, 1, 0, 5, 1, 1, 2, 1, 2, 0], "total": 14, "isTopResearch": false, "rank": 875}, "ai_publications": {"counts": [0, 1, 0, 0, 1, 1, 0, 2, 1, 0, 0], "total": 6, "isTopResearch": false, "rank": 514}, "ai_publications_growth": {"counts": [], "total": -75.0, "isTopResearch": false, "rank": 1526}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 1, 0, 0, 0, 5, 13, 3, 11, 0], "total": 33, "isTopResearch": false, "rank": 643}, "cv_pubs": {"counts": [0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0], "total": 4, "isTopResearch": true, "rank": 313}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": true, "rank": 305}, "citations_per_article": {"counts": [0, 0.0, 0, 0, 0.0, 0.0, 0, 6.5, 3.0, 0, 0], "total": 5.5, "isTopResearch": false, "rank": 697}}, "patents": {"ai_patents": {"counts": [0, 0, 1, 2, 0, 1, 1, 0, 1, 0, 0], "total": 6, "table": null, "rank": 487}, "ai_patents_growth": {"counts": [], "total": -50.0, "table": null, "rank": 1509}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 10, 20, 0, 10, 10, 0, 10, 0, 0], "total": 60, "table": null, "rank": 487}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 1, 2, 0, 1, 0, 0, 1, 0, 0], "total": 5, "table": "application", "rank": 318}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 277}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 298}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 30, "rank": 1110}, "ai_jobs": {"counts": null, "total": 9, "rank": 880}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "In 1972, in a single photograph, \u201cThe Blue Marble\u201d captured Earth\u2019s fragility and vulnerability and inspired a surge of environmental activism and desire to learn more about our planet. As our perspective evolves, so does our ability to learn more about the world\u2019s economic, social, and environmental changes and gain the knowledge needed to make more informed decisions. Orbital Insight helps organizations understand truths about an increasingly interconnected world.", "company_site_link": "https://orbitalinsight.com/company", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 1400, "country": "United States", "website": "http://amprobotics.com", "crunchbase": {"text": "258ced84-7c9e-3fba-8bfe-bd406c026c88", "url": "https://www.crunchbase.com/organization/amp-robotics"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/amp-robotics"], "stage": "Growth", "name": "AMP Robotics", "patent_name": "amp robotics", "continent": "North America", "local_logo": "amp_robotics.png", "aliases": "Amp Robotics Corp", "permid_links": [{"text": 5054881811, "url": "https://permid.org/1-5054881811"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "AMP Robotics is a pioneer in AI, robotics, and infrastructure for the waste and recycling industry.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 3, "table": null, "rank": 606}, "ai_patents_growth": {"counts": [], "total": -75.0, "table": null, "rank": 1561}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 20, 10, 0, 0, 0, 0, 0], "total": 30, "table": null, "rank": 606}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "table": "industry", "rank": 125}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 2, 1, 0, 0, 0, 0, 0], "total": 3, "table": "industry", "rank": 131}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 290}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0], "total": 1, "table": "application", "rank": 510}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 30, "rank": 1110}, "ai_jobs": {"counts": null, "total": 6, "rank": 970}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "At AMP Robotics, we\u2019re reimagining and actively modernizing the world\u2019s recycling infrastructure. We\u2019re doing this by applying AI and robotics to economically recover commodities reclaimed as raw materials for the global supply chain. Headquartered and with manufacturing operations in Colorado, we build and deploy technology that solves many of the central challenges of recycling and shifts the economics of the industry to make it more efficient, cost-effective, scalable, and sustainable. With hundreds of systems installed across three continents, we\u2019re increasing the value that can be extracted from recyclable material through superior separation, purity enhancement, and identification of new end markets for recycling and reuse.", "company_site_link": "https://www.amprobotics.com/about-us", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 7, "country": "United States", "website": "http://www.aeye.ai", "crunchbase": {"text": "45ea769b-96ac-225a-623c-4ce674f7a589", "url": "https://www.crunchbase.com/organization/aeye-inc"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/aeye-inc."], "stage": "Mature", "name": "Aeye", "patent_name": "aeye", "continent": "North America", "local_logo": "aeye.png", "aliases": "Aeye, Inc", "permid_links": [{"text": 5040276086, "url": "https://permid.org/1-5040276086"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "AEye develops AI-powered LiDAR systems for vehicle autonomy, advanced driver assistance systems, and robotic vision applications.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 30, "rank": 1110}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Unknown", "business_sector": "Unknown", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "AEye creates high-performance, active, AI-driven LiDAR systems for vehicle autonomy, advanced driver-assistance, and robotic vision applications to save lives and propel the future of transportation.", "company_site_link": "http://www.aeye.ai", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 3051, "country": "United States", "website": "https://www.teamscci.com/", "crunchbase": {"text": "cdc8a652-2287-4573-b3af-2cdbef2866ae", "url": "https://www.crunchbase.com/organization/southeastern-computer-consultants"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/scci"], "stage": "Unknown", "name": "Southeastern Computer Consultants Inc", "patent_name": "southeastern computer consultants inc", "continent": "North America", "local_logo": "southeastern_computer_consultants_inc.png", "aliases": "Southeastern Computer Consultants, Inc", "permid_links": [{"text": 4297392495, "url": "https://permid.org/1-4297392495"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Southeastern Computer Consultants provides software engineering, information assurance, logistics, and training services", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 1422}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 30, "rank": 1110}, "ai_jobs": {"counts": null, "total": 2, "rank": 1153}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Since 1977, Southeastern Computer Consultants, Inc. (SCCI) has delivered intelligent software, system engineering, and training solutions to serve a range of customers in state and federal government. With offices across the country, including near the metro DC area, and as an approved OASIS, Seaport-e, NAWCTSD, and C5 OTA vendor, SCCI provides the competitive edge you need. Our skilled staff is comprised of more than 25 percent veterans with decades of experience providing expert military training to the US Navy, Army, Air Force, and Marine Corps. Let us use our experience to better serve your needs.", "company_site_link": "https://www.teamscci.com/about", "description_retrieval_date": "2021-03-15", "company_site_description_translation": null}, {"cset_id": 2237, "country": "United States", "website": "https://www.broadridge.com/", "crunchbase": {"text": "9aec1f0b-13db-ca09-2185-d93605448f0c", "url": "https://www.crunchbase.com/organization/broadridge"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/broadridge-financial-services-inc."], "stage": "Mature", "name": "Broadridge Financial Solutions", "patent_name": "broadridge financial solutions", "continent": "North America", "local_logo": "broadridge_financial_solutions.png", "aliases": "Broadridge; Broadridge Financial Solutions, Inc", "permid_links": [{"text": 4295902623, "url": "https://permid.org/1-4295902623"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:BR", "url": "https://www.google.com/finance/quote/br:nyse"}], "market_full": [{"text": "HAN:5B9", "url": "https://www.google.com/finance/quote/5b9:han"}, {"text": "ASE:BR", "url": "https://www.google.com/finance/quote/ase:br"}, {"text": "BER:5B9", "url": "https://www.google.com/finance/quote/5b9:ber"}, {"text": "LSE:0HPW", "url": "https://www.google.com/finance/quote/0hpw:lse"}, {"text": "SAO:B1RF34", "url": "https://www.google.com/finance/quote/b1rf34:sao"}, {"text": "FRA:5B9", "url": "https://www.google.com/finance/quote/5b9:fra"}, {"text": "STU:5B9", "url": "https://www.google.com/finance/quote/5b9:stu"}, {"text": "MUN:5B9", "url": "https://www.google.com/finance/quote/5b9:mun"}, {"text": "NYSE:BR", "url": "https://www.google.com/finance/quote/br:nyse"}, {"text": "MCX:BR-RM", "url": "https://www.google.com/finance/quote/br-rm:mcx"}, {"text": "NYQ:BR", "url": "https://www.google.com/finance/quote/br:nyq"}, {"text": "DEU:BR", "url": "https://www.google.com/finance/quote/br:deu"}], "crunchbase_description": "Broadridge is a provider of investor communications and technology solutions for broker dealers, banks, mutual funds and corporate issuers.", "groups": {"sp500": false, "global500": true}, "fields": [{"field_name": "Deep learning", "field_count": 1}], "clusters": [{"cluster_id": 48527, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 2}, {"ref_CSET_id": 87, "referenced_count": 1}], "tasks": [], "methods": [{"referent": "recurrent_neural_networks", "method_count": 1}, {"referent": "symbolic_deep_learning", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "polya_gamma_augmentation", "method_count": 1}, {"referent": "graph_convolutional_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1, "fortune500_rank": 1}, "all_publications": {"counts": [0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0], "total": 5, "isTopResearch": false, "rank": 1063, "fortune500_rank": 359}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0], "total": 1, "isTopResearch": false, "rank": 772, "fortune500_rank": 210}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199, "fortune500_rank": 51}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397, "fortune500_rank": 99}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 3, 19, 11, 16, 0], "total": 49, "isTopResearch": false, "rank": 586, "fortune500_rank": 161}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608, "fortune500_rank": 160}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374, "fortune500_rank": 98}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436, "fortune500_rank": 134}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0.0, 0, 0, 0, 0, 0], "total": 49.0, "isTopResearch": false, "rank": 98, "fortune500_rank": 25}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363, "fortune500_rank": 122}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1, "fortune500_rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 861, "fortune500_rank": 252}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251, "fortune500_rank": 85}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353, "fortune500_rank": 132}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335, "fortune500_rank": 112}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310, "fortune500_rank": 103}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 304, "fortune500_rank": 103}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162, "fortune500_rank": 55}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11, "fortune500_rank": 9}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17, "fortune500_rank": 6}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 33}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102, "fortune500_rank": 27}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 682, "fortune500_rank": 218}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304, "fortune500_rank": 94}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520, "fortune500_rank": 172}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141, "fortune500_rank": 55}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499, "fortune500_rank": 167}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226, "fortune500_rank": 72}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99, "fortune500_rank": 38}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26, "fortune500_rank": 13}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95, "fortune500_rank": 33}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197, "fortune500_rank": 76}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261, "fortune500_rank": 79}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365, "fortune500_rank": 136}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428, "fortune500_rank": 145}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394, "fortune500_rank": 140}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108, "fortune500_rank": 49}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38, "fortune500_rank": 16}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640, "fortune500_rank": 195}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411, "fortune500_rank": 153}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418, "fortune500_rank": 139}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 30, "rank": 1110, "fortune500_rank": 466}, "ai_jobs": {"counts": null, "total": 1, "rank": 1231, "fortune500_rank": 474}}, "sector": "Industrials", "business_sector": "Industrial & Commercial Services", "wikipedia_description": "Broadridge Financial Solutions is a public corporate services company founded in 2007 as a spin-off from Automatic Data Processing.", "wikipedia_link": "https://en.wikipedia.org/wiki/Broadridge_Financial_Solutions", "company_site_description": null, "company_site_link": null, "description_retrieval_date": "2021-03-18", "company_site_description_translation": null}, {"cset_id": 459, "country": "United States", "website": "http://fyusion.com/", "crunchbase": {"text": "486913ad-4eb8-f025-386a-ee90bb845aa6", "url": "https://www.crunchbase.com/organization/fyusion"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/fyusion-inc"], "stage": "Growth", "name": "Fyusion, Inc.", "patent_name": "fyusion, inc.", "continent": "North America", "local_logo": "fyusion,_inc.png", "aliases": "Fyusion Inc; Fyusion, Inc", "permid_links": [{"text": 5042934664, "url": "https://permid.org/1-5042934664"}], "parent_info": "Cox Automotive (Acquired)", "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Fyusion develops products powered by 3D computer vision and machine learning.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Virtual reality", "field_count": 1}, {"field_name": "Augmented reality", "field_count": 1}, {"field_name": "Point cloud", "field_count": 1}, {"field_name": "Object (computer science)", "field_count": 1}], "clusters": [{"cluster_id": 3446, "cluster_count": 4}, {"cluster_id": 34162, "cluster_count": 1}, {"cluster_id": 5590, "cluster_count": 1}, {"cluster_id": 12947, "cluster_count": 1}, {"cluster_id": 19337, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 18}, {"ref_CSET_id": 87, "referenced_count": 11}, {"ref_CSET_id": 184, "referenced_count": 5}, {"ref_CSET_id": 163, "referenced_count": 5}, {"ref_CSET_id": 6, "referenced_count": 4}, {"ref_CSET_id": 127, "referenced_count": 2}, {"ref_CSET_id": 671, "referenced_count": 2}, {"ref_CSET_id": 23, "referenced_count": 2}, {"ref_CSET_id": 58, "referenced_count": 2}, {"ref_CSET_id": 734, "referenced_count": 2}], "tasks": [{"referent": "motion_capture", "task_count": 2}, {"referent": "video_captioning", "task_count": 1}, {"referent": "classification", "task_count": 1}, {"referent": "object_skeleton_detection", "task_count": 1}, {"referent": "bird_view_synthesis", "task_count": 1}, {"referent": "image_annotation", "task_count": 1}, {"referent": "multi_view_learning", "task_count": 1}, {"referent": "scientific_concept_extraction", "task_count": 1}], "methods": [{"referent": "vqa_models", "method_count": 1}, {"referent": "3d_representations", "method_count": 1}, {"referent": "bp_transformer", "method_count": 1}, {"referent": "mad_learning", "method_count": 1}, {"referent": "aggmo", "method_count": 1}, {"referent": "linear_warmup_with_linear_decay", "method_count": 1}, {"referent": "video_sampling", "method_count": 1}, {"referent": "image_representations", "method_count": 1}, {"referent": "end_to_end_memory_network", "method_count": 1}, {"referent": "appo", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [1, 0, 0, 0, 1, 1, 2, 5, 2, 0, 0], "total": 12, "isTopResearch": false, "rank": 907}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 1, 2, 4, 1, 0, 0], "total": 8, "isTopResearch": false, "rank": 455}, "ai_publications_growth": {"counts": [], "total": -25.0, "isTopResearch": false, "rank": 1365}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0], "total": 3, "isTopResearch": false, "rank": 188}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 1, 16, 92, 147, 105, 0], "total": 361, "isTopResearch": false, "rank": 310}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 1, 2, 3, 1, 0, 0], "total": 7, "isTopResearch": true, "rank": 252}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 1.0, 8.0, 23.0, 147.0, 0, 0], "total": 45.125, "isTopResearch": false, "rank": 109}}, "patents": {"ai_patents": {"counts": [0, 2, 0, 1, 1, 2, 7, 5, 2, 0, 0], "total": 20, "table": null, "rank": 323}, "ai_patents_growth": {"counts": [], "total": 107.14285714285715, "table": null, "rank": 106}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 20, 0, 10, 10, 20, 70, 50, 20, 0, 0], "total": 200, "table": null, "rank": 323}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 216}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 2, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 6, "table": "industry", "rank": 305}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 2, 1, 0, 0, 0], "total": 3, "table": "industry", "rank": 141}, "Telecommunications": {"counts": [0, 2, 0, 1, 1, 1, 4, 3, 1, 0, 0], "total": 13, "table": "industry", "rank": 153}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 4, "table": "industry", "rank": 233}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 2, 2, 0, 0, 0], "total": 4, "table": "application", "rank": 198}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 2, 0, 0, 1, 2, 7, 5, 2, 0, 0], "total": 19, "table": "application", "rank": 194}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 1, 1, 2, 0, 0, 0, 0], "total": 4, "table": "application", "rank": 189}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 29, "rank": 1116}, "ai_jobs": {"counts": null, "total": 8, "rank": 908}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "We combine 3D imaging with artificial intelligence to create immersive customer experiences.", "company_site_link": "http://fyusion.com/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 1440, "country": "United States", "website": "https://www.obsidiansecurity.com/", "crunchbase": {"text": "921ad279-4899-c4d6-68b1-3a3739a70b01", "url": "https://www.crunchbase.com/organization/obsidian-security"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/obsidiansecurity"], "stage": "Growth", "name": "Obsidian Security", "patent_name": "obsidian security", "continent": "North America", "local_logo": "obsidian_security.png", "aliases": "Obsidian; Obsidian Security, Inc", "permid_links": [{"text": 5056396902, "url": "https://permid.org/1-5056396902"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Obsidian Security is a threat detection and posture management for business-critical saas applications.", "groups": {"sp500": false, "global500": false}, "fields": [], "clusters": [], "company_references": [], "tasks": [], "methods": [], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0], "total": 2, "isTopResearch": false, "rank": 1210}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 954}, "ai_publications_growth": {"counts": [], "total": 0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 930}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 608}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 911}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": -100.0, "table": null, "rank": 1583}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 240}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0], "total": 1, "table": "industry", "rank": 381}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 29, "rank": 1116}, "ai_jobs": {"counts": null, "total": 5, "rank": 1002}}, "sector": "Technology", "business_sector": "Software & IT Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "Founded by opinionated cybersecurity veterans and former competitors from Carbon Black and Cylance, Obsidian enables organizations to safely advance their mission in the cloud.", "company_site_link": "https://www.obsidiansecurity.com/company/", "description_retrieval_date": "2021-03-16", "company_site_description_translation": null}, {"cset_id": 543, "country": "United States", "website": "https://lendbuzz.com", "crunchbase": {"text": "46b44fc4-ebf7-b7a3-27d1-8512a91cc8eb", "url": "https://www.crunchbase.com/organization/lendbuzz"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/lendbuzz"], "stage": "Growth", "name": "LendBuzz", "patent_name": "lendbuzz", "continent": "North America", "local_logo": "lendbuzz.png", "aliases": "Lendbuzz Inc; Lendbuzz, Inc", "permid_links": [{"text": 5064579731, "url": "https://permid.org/1-5064579731"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [], "market_full": [], "crunchbase_description": "Lendbuzz develops an AI-based auto finance platform for people with a thin or no credit history.", "groups": {"sp500": false, "global500": false}, "fields": [{"field_name": "Inference", "field_count": 1}, {"field_name": "Pixel", "field_count": 1}, {"field_name": "Convolutional neural network", "field_count": 1}], "clusters": [{"cluster_id": 34467, "cluster_count": 1}, {"cluster_id": 1943, "cluster_count": 1}, {"cluster_id": 855, "cluster_count": 1}], "company_references": [{"ref_CSET_id": 101, "referenced_count": 9}, {"ref_CSET_id": 161, "referenced_count": 7}, {"ref_CSET_id": 163, "referenced_count": 4}, {"ref_CSET_id": 223, "referenced_count": 3}, {"ref_CSET_id": 87, "referenced_count": 2}, {"ref_CSET_id": 2422, "referenced_count": 1}, {"ref_CSET_id": 37, "referenced_count": 1}, {"ref_CSET_id": 671, "referenced_count": 1}, {"ref_CSET_id": 170, "referenced_count": 1}, {"ref_CSET_id": 635, "referenced_count": 1}], "tasks": [{"referent": "image_forensics", "task_count": 1}, {"referent": "ocr", "task_count": 1}, {"referent": "medical_code_prediction", "task_count": 1}, {"referent": "information_extraction", "task_count": 1}, {"referent": "optical_character_recognition", "task_count": 1}, {"referent": "face_reconstruction", "task_count": 1}, {"referent": "image_restoration", "task_count": 1}, {"referent": "classification", "task_count": 1}], "methods": [{"referent": "3d_representations", "method_count": 1}, {"referent": "computer_vision", "method_count": 1}, {"referent": "convolutional_neural_networks", "method_count": 1}], "articles": {"highly_cited": {"counts": [2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2], "total": 22, "isTopResearch": false, "rank": 1}, "all_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 2, 0], "total": 4, "isTopResearch": false, "rank": 1105}, "ai_publications": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], "total": 3, "isTopResearch": false, "rank": 618}, "ai_publications_growth": {"counts": [], "total": 0.0, "isTopResearch": false, "rank": 199}, "ai_pubs_top_conf": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": false, "rank": 397}, "citation_counts": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 2, 7, 0], "total": 9, "isTopResearch": false, "rank": 774}, "cv_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0], "total": 3, "isTopResearch": true, "rank": 344}, "nlp_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 374}, "robotics_pubs": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "isTopResearch": true, "rank": 436}, "citations_per_article": {"counts": [0, 0, 0, 0, 0, 0, 0, 0.0, 2.0, 7.0, 0], "total": 3.0, "isTopResearch": false, "rank": 779}}, "patents": {"ai_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": null, "rank": 728}, "ai_patents_growth": {"counts": [], "total": 0, "table": null, "rank": 363}, "ai_patent_applications": {"total": 42, "table": null, "rank": 1}, "all_patents": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0], "total": 10, "table": null, "rank": 728}, "Physical_Sciences_and_Engineering": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 251}, "Life_Sciences": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 353}, "Security__eg_cybersecurity": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 335}, "Transportation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "industry", "rank": 310}, "Industrial_and_Manufacturing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Education": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 162}, "Document_Mgt_and_Publishing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 11}, "Military": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 17}, "Agricultural": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Computing_in_Government": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 102}, "Personal_Devices_and_Computing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0], "total": 1, "table": "industry", "rank": 526}, "Banking_and_Finance": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 304}, "Telecommunications": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 520}, "Networks__eg_social_IOT_etc": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 141}, "Business": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 499}, "Energy_Management": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 226}, "Entertainment": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 99}, "Nanotechnology": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 26}, "Semiconductors": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 95}, "Language_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 197}, "Speech_Processing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 261}, "Knowledge_Representation": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 365}, "Planning_and_Scheduling": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 428}, "Control": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": "application", "rank": 394}, "Distributed_AI": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 108}, "Robotics": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 38}, "Computer_Vision": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 640}, "Analytics_and_Algorithms": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 411}, "Measuring_and_Testing": {"counts": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "total": 0, "table": null, "rank": 418}}, "other_metrics": {"tt1_jobs": {"counts": null, "total": 29, "rank": 1116}, "ai_jobs": {"counts": null, "total": 4, "rank": 1048}}, "sector": "Financials", "business_sector": "Banking & Investment Services", "wikipedia_description": null, "wikipedia_link": null, "company_site_description": "A smarter car loan for internationals.", "company_site_link": "https://lendbuzz.com", "description_retrieval_date": "2021-03-17", "company_site_description_translation": null}, {"cset_id": 2515, "country": "United States", "website": "https://www.udr.com/", "crunchbase": {"text": "bdfa5080-dcfd-a623-ca20-2d2b153ae8b5", "url": "https://www.crunchbase.com/organization/udr"}, "child_crunchbase": [], "linkedin": ["https://www.linkedin.com/company/udr"], "stage": "Mature", "name": "UDR, Inc.", "patent_name": "udr, inc.", "continent": "North America", "local_logo": "udr,_inc.png", "aliases": "Udr; Udr Inc; United Dominion Realty Trust\u00ae; United Dominion Residential Communities", "permid_links": [{"text": 4295905170, "url": "https://permid.org/1-4295905170"}], "parent_info": null, "agg_child_info": null, "unagg_child_info": null, "market_filt": [{"text": "NYSE:UDR", "url": "https://w